maint.mk: fix some fallout
[pspp] / ChangeLog
1 2010-04-02  Eric Blake  <eblake@redhat.com>
2
3         maint.mk: fix some fallout
4         * NEWS: Document the incompatible change, and its effect on cfg.mk.
5         * top/maint.mk (sc_prohibit_test_minus_ao): Update.
6
7 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
8
9         maint.mk: _sc_search_regexp: generalize and rename from _prohibit_regexp
10         * top/maint.mk (_sc_search_regexp): Rename from _prohibit_regexp.
11         (sc_cast_of_argument_to_free): Adapt to use _sc_search_regexp.
12         (sc_cast_of_x_alloc_return_value): Likewise.
13         (sc_cast_of_alloca_return_value): Likewise.
14         (sc_space_tab): Likewise.
15         (sc_prohibit_atoi_atof): Likewise.
16         (sc_prohibit_magic_number_exit): Likewise.
17         (sc_error_exit_success): Likewise.
18         (sc_file_system): Likewise.
19         (sc_prohibit_have_config_h): Likewise.
20         (sc_require_config_h): Likewise.
21         (sc_prohibit_HAVE_MBRTOWC): Likewise.
22         (sc_obsolete_symbols): Likewise.
23         (sc_changelog): Likewise.
24         (sc_program_name): Likewise.
25         (sc_the_the): Likewise.
26         (sc_trailing_blank): Likewise.
27         (sc_two_space_separator_in_usage): Likewise.
28         (sc_useless_cpp_parens): Likewise.
29         (sc_GPL_version): Likewise.
30         (sc_GFDL_version): Likewise.
31         (sc_texinfo_acronym): Likewise.
32         (sc_prohibit_cvs_keyword): Likewise.
33         (sc_prohibit_stat_st_blocks): Likewise.
34         (sc_prohibit_S_IS_definition): Likewise.
35         (sc_redundant_const): Likewise.
36         (sc_makefile_TAB_only_indentation): Likewise.
37         (sc_m4_quote_check): Likewise.
38         (sc_makefile_path_separator_check): Likewise.
39         (sc_copyright_check): Likewise.
40         (sc_Wundef_boolean): Likewise.
41         (sc_vulnerable_makefile_CVE-2009-4029): Likewise.
42
43         maint.mk: match 0 or more whitespace-before-function-call '('
44         * top/maint.mk (sc_error_exit_success): Relax regexp to match uses
45         that have zero or two-and-more spaces between the function name
46         and the open parenthesis.
47         (sc_error_message_warn_fatal): Likewise.
48         (sc_error_message_uppercase): Likewise.
49         (sc_error_message_period): Likewise.
50
51 2010-03-31  Eric Blake  <eblake@redhat.com>
52
53         maint.mk: check for [ as well as test
54         * top/maint.mk (sc_prohibit_test_minus_ao): Extend test.
55         Based on a libvirt report by Matthias Bolte.
56
57         gnumakefile: don't squelch _version output
58         * top/GNUmakefile (_version): Create one-shot dependency rather
59         than using $(shell) when version must be regenerated.
60         (_autoreconf): Run verbosely, by default.
61
62         sys_time: avoid compiler warnings
63         * lib/sys_time.in.h (includes): Ensure gcc pragma is
64         unconditional, fixing regression from 2010-03-29.
65         Reported by Simon Josefsson.
66
67 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
68
69         maint.mk: s/_header_without_use/_sc_header_without_use/
70         * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
71         (sc_prohibit_assert_without_use): Use the new name.
72         (sc_prohibit_close_stream_without_use): Likewise.
73         (sc_prohibit_getopt_without_use): Likewise.
74         (sc_prohibit_quotearg_without_use): Likewise.
75         (sc_prohibit_quote_without_use): Likewise.
76         (sc_prohibit_long_options_without_use): Likewise.
77         (sc_prohibit_inttostr_without_use): Likewise.
78         (sc_prohibit_ignore_value_without_use): Likewise.
79         (sc_prohibit_error_without_use): Likewise.
80         (sc_prohibit_xalloc_without_use): Likewise.
81         (sc_prohibit_hash_without_use): Likewise.
82         (sc_prohibit_hash_pjw_without_use): Likewise.
83         (sc_prohibit_safe_read_without_use): Likewise.
84         (sc_prohibit_argmatch_without_use): Likewise.
85         (sc_prohibit_canonicalize_without_use): Likewise.
86         (sc_prohibit_root_dev_ino_without_use): Likewise.
87         (sc_prohibit_openat_without_use): Likewise.
88         (sc_prohibit_c_ctype_without_use): Likewise.
89         (sc_prohibit_signal_without_use): Likewise.
90         (sc_prohibit_intprops_without_use): Likewise.
91
92 2010-03-30  Eric Blake  <eblake@redhat.com>
93
94         maint: improve module indicators
95         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
96         (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
97         columns, and avoid extra macro expansion.
98
99         fdopendir: work around FreeBSD bug
100         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
101         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
102         * modules/dirent (Makefile.am): Substitute it.
103         * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
104         declaration.
105         * doc/posix-functions/fdopendir.texi (fdopendir): Document the
106         fix.
107         Reported by Christian Weisgerber <naddy@mips.inka.de>.
108
109 2010-03-29  Bruno Haible  <bruno@clisp.org>
110
111         Emit #pragma system_header after the inclusion guard, not before.
112         * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
113         guard that spans the entire file, not before. This enables an
114         optimization in GCC's preprocessor.
115         * lib/ctype.in.h: Likewise.
116         * lib/dirent.in.h: Likewise.
117         * lib/errno.in.h: Likewise.
118         * lib/float.in.h: Likewise.
119         * lib/getopt.in.h: Likewise.
120         * lib/iconv.in.h: Likewise.
121         * lib/langinfo.in.h: Likewise.
122         * lib/locale.in.h: Likewise.
123         * lib/math.in.h: Likewise.
124         * lib/netdb.in.h: Likewise.
125         * lib/netinet_in.in.h: Likewise.
126         * lib/pty.in.h: Likewise.
127         * lib/sched.in.h: Likewise.
128         * lib/se-selinux.in.h: Likewise.
129         * lib/search.in.h: Likewise.
130         * lib/spawn.in.h: Likewise.
131         * lib/stdarg.in.h: Likewise.
132         * lib/stdint.in.h: Likewise.
133         * lib/string.in.h: Likewise.
134         * lib/strings.in.h: Likewise.
135         * lib/sys_file.in.h: Likewise.
136         * lib/sys_ioctl.in.h: Likewise.
137         * lib/sys_time.in.h: Likewise.
138         * lib/sys_times.in.h: Likewise.
139         * lib/sys_utsname.in.h: Likewise.
140         * lib/sys_wait.in.h: Likewise.
141         * lib/sysexits.in.h: Likewise.
142         * lib/wctype.in.h: Likewise.
143
144 2010-03-28  James Youngman  <jay@gnu.org>
145
146         save-cwd: don't leak a file descriptor when the caller execs.
147         * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
148         saved file descriptor.
149         * modules/save-cwd (Depends-on): Depend on cloexec.
150
151 2010-03-29  Bruno Haible  <bruno@clisp.org>
152
153         Remove vestiges of fts-lgpl module.
154         * lib/fts_.h: Assume GNULIB_FTS is 1.
155         * lib/fts.c: Likewise.
156         * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
157
158 2010-03-28  Bruno Haible  <bruno@clisp.org>
159
160         Fix definition of tests witness macro.
161         * gnulib-tool (func_import): Fix definition of witness macro.
162
163 2010-03-28  Bruno Haible  <bruno@clisp.org>
164
165         Fix ioctl's protoype on glibc systems.
166         * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
167         _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
168         * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
169         * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
170         signature. If not, arrange to replace the ioctl function.
171         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
172         REPLACE_IOCTL.
173         * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
174         * doc/posix-functions/ioctl.texi: Mention the glibc problem.
175         Reported by Ludovic Courtès <ludo@gnu.org>.
176
177 2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
178
179         exclude: fix the case of globs vs. EXCLUDE_INCLUDE
180         * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
181         made it so grep -r --include=GLOB* ... did not work.
182
183 2010-03-26  Jim Meyering  <meyering@redhat.com>
184             Eric Blake  <eblake@redhat.com>
185
186         maint.mk: prohibit use of test's -o and -a operators
187         * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
188
189 2010-03-28  Bruno Haible  <bruno@clisp.org>
190
191         Remove unused GNULIB_XYZ macro definitions.
192         * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
193         invocation.
194
195 2010-03-28  Bruno Haible  <bruno@clisp.org>
196
197         Mark privileged tests modules.
198         * modules/idpriv-drop-tests (Status): New section.
199         * modules/idpriv-droptemp-tests (Status): New section.
200
201 2010-03-28  Bruno Haible  <bruno@clisp.org>
202
203         Split C++ tests into separate tests modules.
204         * modules/dirent-c++-tests: New file, extracted from
205         modules/dirent-tests.
206         * modules/dirent-tests: Depend on it.
207         * modules/fcntl-h-c++-tests: New file, extracted from
208         modules/fcntl-h-tests.
209         * modules/fcntl-h-tests: Depend on it.
210         * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
211         * modules/glob-tests: Depend on it.
212         * modules/iconv-h-c++-tests: New file, extracted from
213         modules/iconv-h-tests.
214         * modules/iconv-h-tests: Depend on it.
215         * modules/langinfo-c++-tests: New file, extracted from
216         modules/langinfo-tests.
217         * modules/langinfo-tests: Depend on it.
218         * modules/locale-c++-tests: New file, extracted from
219         modules/locale-tests.
220         * modules/locale-tests: Depend on it.
221         * modules/math-c++-tests: New file, extracted from modules/math-tests.
222         * modules/math-tests: Depend on it.
223         * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
224         * modules/pty-tests: Depend on it.
225         * modules/search-c++-tests: New file, extracted from
226         modules/search-tests.
227         * modules/search-tests: Depend on it.
228         * modules/signal-c++-tests: New file, extracted from
229         modules/signal-tests.
230         * modules/signal-tests: Depend on it.
231         * modules/spawn-c++-tests: New file, extracted from
232         modules/spawn-tests.
233         * modules/spawn-tests: Depend on it.
234         * modules/stdio-c++-tests: New file, extracted from
235         modules/stdio-tests.
236         * modules/stdio-tests: Depend on it.
237         * modules/stdlib-c++-tests: New file, extracted from
238         modules/stdlib-tests.
239         * modules/stdlib-tests: Depend on it.
240         * modules/string-c++-tests: New file, extracted from
241         modules/string-tests.
242         * modules/string-tests: Depend on it.
243         * modules/sys_ioctl-c++-tests: New file, extracted from
244         modules/sys_ioctl-tests.
245         * modules/sys_ioctl-tests: Depend on it.
246         * modules/sys_select-c++-tests: New file, extracted from
247         modules/sys_select-tests.
248         * modules/sys_select-tests: Depend on it.
249         * modules/sys_socket-c++-tests: New file, extracted from
250         modules/sys_socket-tests.
251         * modules/sys_socket-tests: Depend on it.
252         * modules/sys_stat-c++-tests: New file, extracted from
253         modules/sys_stat-tests.
254         * modules/sys_stat-tests: Depend on it.
255         * modules/sys_time-c++-tests: New file, extracted from
256         modules/sys_time-tests.
257         * modules/sys_time-tests: Depend on it.
258         * modules/time-c++-tests: New file, extracted from modules/time-tests.
259         * modules/time-tests: Depend on it.
260         * modules/unistd-c++-tests: New file, extracted from
261         modules/unistd-tests.
262         * modules/unistd-tests: Depend on it.
263         * modules/wchar-c++-tests: New file, extracted from
264         modules/wchar-tests.
265         * modules/wchar-tests: Depend on it.
266         * modules/wctype-c++-tests: New file, extracted from
267         modules/wctype-tests.
268         * modules/wctype-tests: Depend on it.
269         Reported by Simon Josefsson.
270
271 2010-03-28  Bruno Haible  <bruno@clisp.org>
272
273         gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
274         * gnulib-tool (func_exists_module): New function, extracted from
275         func_verify_module.
276         (func_verify_module): Use it.
277         (func_get_dependencies): Synthetize a dependency from 'foo-tests' to
278         'foo' only if 'foo' exists.
279         * doc/gnulib.texi (Extra tests modules): Explain how to split a tests
280         module.
281
282 2010-03-28  Bruno Haible  <bruno@clisp.org>
283
284         gnulib-tool: Add support for special categories of tests.
285         * gnulib-tool: New options --with-c++-tests, --with-longrunning-tests,
286         --with-privileged-tests, --with-unportable-tests, --with-all-tests.
287         (func_usage): Document them.
288         (inc_cxx_tests, inc_longrunning_tests, inc_privileged_tests,
289         inc_unportable_tests, inc_all_tests): New variables.
290         (func_acceptable): Consider these variables.
291         (func_modules_transitive_closure): Make it work when the 'Status' field
292         consists of multiple words.
293         (func_import): Store and restore the values of inc_cxx_tests,
294         inc_longrunning_tests, inc_privileged_tests, inc_unportable_tests,
295         inc_all_tests in gnulib-comp.m4.
296         (func_create_testdir): Set inc_all_tests to true.
297         * doc/gnulib.texi (Extra tests modules): New section.
298         Suggested by Jim Meyering.
299
300 2010-03-28  Bruno Haible  <bruno@clisp.org>
301
302         ansi-c++-opt: Allow turning off the C++ build by default.
303         * m4/ansi-c++.m4 (gl_CXX_CHOICE): Let CXX_CHOICE default to 'no' if
304         gl_CXX_CHOICE_DEFAULT_NO is defined.
305         Requested by Eric Blake.
306
307 2010-03-28  Bruno Haible  <bruno@clisp.org>
308
309         unistd: Avoid #define replacements in C++ mode.
310         * lib/unistd.in.h (socket, connect, accept, bind, getpeername,
311         getsockname, getsockopt, listen, recv, send, recvfrom, sendto,
312         setsockopt, shutdown, select): In C++, attach a warning to the function
313         if possible, rather than #defining the symbol to a dysfunctional alias.
314         Reported by John W. Eaton <jwe@gnu.org>.
315
316 2010-03-28  Bruno Haible  <bruno@clisp.org>
317
318         Fix link errors on mingw.
319         * lib/sys_ioctl.in.h (ioctl): Fix declaration idiom.
320         * modules/sys_ioctl-tests (Makefile.am): Link test-sys_ioctl-c++ with
321         $(LIBSOCKET).
322         * modules/sys_select-tests (Makefile.am): Link test-sys_select-c++ with
323         $(LIBSOCKET).
324
325 2010-03-28  Bruno Haible  <bruno@clisp.org>
326             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
327
328         lib-ignore: Determine different options for different compilers.
329         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Set a variable which
330         depends on the current language (C/C++/Fortran). Don't set LDFLAGS.
331         Add comments.
332         (_gl_IGNORE_UNUSED_LIBRARIES_OPTIONS): New macro.
333         * NEWS: Mention the change.
334
335 2010-03-27  Bruno Haible  <bruno@clisp.org>
336
337         Remove unused GNULIB_XYZ macro definitions.
338         * modules/dup3 (configure.ac): Remove gl_MODULE_INDICATOR invocation.
339         * modules/fseek (configure.ac): Likewise.
340         * modules/ioctl (configure.ac): Likewise.
341         * modules/open (configure.ac): Likewise.
342         * modules/stdlib-safer (configure.ac): Likewise.
343
344 2010-03-27  Bruno Haible  <bruno@clisp.org>
345
346         Add a remark about certain modules.
347         * modules/malloc (Comment): New section.
348         * modules/realloc (Comment): Likewise.
349         * modules/sigpipe (Comment): Likewise.
350
351 2010-03-27  Bruno Haible  <bruno@clisp.org>
352
353         Resolve conflict between the two kinds of module indicators.
354         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Define
355         GNULIB_TEST_XYZ instead of GNULIB_XYZ.
356         * modules/canonicalize (configure.ac): Invoke
357         gl_MODULE_INDICATOR_FOR_TESTS.
358         * tests/test-canonicalize-lgpl.c: Test GNULIB_TEST_XYZ instead of
359         GNULIB_XYZ.
360         * tests/test-dirent-c++.cc: Likewise.
361         * tests/test-dirent-safer.c: Likewise.
362         * tests/test-dup2.c: Likewise.
363         * tests/test-fchdir.c: Likewise.
364         * tests/test-fcntl-h-c++.cc: Likewise.
365         * tests/test-getopt.c: Likewise.
366         * tests/test-getopt.h: Likewise.
367         * tests/test-langinfo-c++.cc: Likewise.
368         * tests/test-locale-c++.cc: Likewise.
369         * tests/test-math-c++.cc: Likewise.
370         * tests/test-pty-c++.cc: Likewise.
371         * tests/test-search-c++.cc: Likewise.
372         * tests/test-signal-c++.cc: Likewise.
373         * tests/test-spawn-c++.cc: Likewise.
374         * tests/test-stdio-c++.cc: Likewise.
375         * tests/test-stdlib-c++.cc: Likewise.
376         * tests/test-string-c++.cc: Likewise.
377         * tests/test-sys_ioctl-c++.cc: Likewise.
378         * tests/test-sys_select-c++.cc: Likewise.
379         * tests/test-sys_socket-c++.cc: Likewise.
380         * tests/test-sys_stat-c++.cc: Likewise.
381         * tests/test-sys_time-c++.cc: Likewise.
382         * tests/test-time-c++.cc: Likewise.
383         * tests/test-unistd-c++.cc: Likewise.
384         * tests/test-wchar-c++.cc: Likewise.
385         * tests/uninorm/test-u8-nfc.c: Likewise.
386         * tests/uninorm/test-u8-nfd.c: Likewise.
387         * tests/uninorm/test-u8-nfkc.c: Likewise.
388         * tests/uninorm/test-u8-nfkd.c: Likewise.
389         * tests/uninorm/test-u16-nfc.c: Likewise.
390         * tests/uninorm/test-u16-nfd.c: Likewise.
391         * tests/uninorm/test-u16-nfkc.c: Likewise.
392         * tests/uninorm/test-u16-nfkd.c: Likewise.
393         * tests/uninorm/test-u32-nfc.c: Likewise.
394         * tests/uninorm/test-u32-nfc-big.c: Likewise.
395         * tests/uninorm/test-u32-nfd.c: Likewise.
396         * tests/uninorm/test-u32-nfd-big.c: Likewise.
397         * tests/uninorm/test-u32-nfkc.c: Likewise.
398         * tests/uninorm/test-u32-nfkc-big.c: Likewise.
399         * tests/uninorm/test-u32-nfkd.c: Likewise.
400         * tests/uninorm/test-u32-nfkd-big.c: Likewise.
401         * tests/uninorm/test-u32-normalize-big.c: Likewise.
402
403 2010-03-27  Bruno Haible  <bruno@clisp.org>
404
405         Distinguish two kinds of module indicators.
406         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Renamed from
407         gl_MODULE_INDICATOR.
408         (gl_MODULE_INDICATOR): New macro.
409         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
410         gl_MODULE_INDICATOR_FOR_TESTS instead of gl_MODULE_INDICATOR.
411         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
412         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
413         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
414         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
415         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
416         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
417         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
418         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
419         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
420         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
421         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
422         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
423         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
424         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
425         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
426         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
427         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
428         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
429         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
430         * modules/cloexec (configure.ac): Likewise.
431         * modules/getopt-gnu (configure.ac): Likewise.
432         * modules/uninorm/u8-normalize (configure.ac): Likewise.
433         * modules/uninorm/u16-normalize (configure.ac): Likewise.
434         * modules/uninorm/u32-normalize (configure.ac): Likewise.
435         * modules/fdopendir (configure.ac): Invoke gl_MODULE_INDICATOR.
436
437 2010-03-27  Bruno Haible  <bruno@clisp.org>
438
439         New module description field 'Comment'.
440         * gnulib-tool: New option --extract-comment.
441         (func_usage): Document it.
442         (sed_extract_prog, sed_extract_field_header): Support 'Comment' field.
443         (func_get_comment): New function.
444         * modules/TEMPLATE-EXTENDED: Add a blank Comment field.
445
446 2010-03-27  Bruno Haible  <bruno@clisp.org>
447
448         Addendum to 2010-02-07 commit.
449         * gnulib-tool (func_usage): Document --extract-applicability option.
450
451 2010-03-27  Bruno Haible  <bruno@clisp.org>
452
453         Use GNULIB_POSIXCHECK instead of GNULIB_PORTCHECK.
454         * lib/time.in.h (asctime, asctime_r, ctime, ctime_r): Test
455         GNULIB_POSIXCHECK, not GNULIB_PORTCHECK. Provide compile-time warnings
456         rather than link errors.
457
458 2010-03-27  Bruno Haible  <bruno@clisp.org>
459
460         Avoid side effects from tests-related modules on the compilation of lib.
461         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_CONDITION): New macro.
462         (gl_MODULE_INDICATOR_SET_VARIABLE): Use its expansion as a value.
463         * gnulib-tool (func_emit_tests_Makefile_am): Accept a witness_macro
464         parameter. Emit into AM_CPPFLAGS a definition of the designated C
465         macro.
466         (func_import): Define a witness macro. Assign it a value that depends
467         on the current package. Override gl_MODULE_INDICATOR_CONDITION for the
468         tests-related modules.
469         (func_create_testdir): Update func_emit_tests_Makefile_am invocation.
470         Reported by Jim Meyering.
471
472 2010-03-27  Bruno Haible  <bruno@clisp.org>
473
474         Factorize common .m4 code.
475         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE): New macro.
476         * m4/arpa_inet_h.m4 (gl_ARPA_INET_MODULE_INDICATOR): Use it.
477         * m4/ctype.m4 (gl_CTYPE_MODULE_INDICATOR): Likewise.
478         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Likewise.
479         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
480         * m4/iconv_h.m4 (gl_ICONV_MODULE_INDICATOR): Likewise.
481         * m4/inttypes.m4 (gl_INTTYPES_MODULE_INDICATOR): Likewise.
482         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
483         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
484         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
485         * m4/netdb_h.m4 (gl_NETDB_MODULE_INDICATOR): Likewise.
486         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
487         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
488         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
489         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
490         * m4/stddef_h.m4 (gl_STDDEF_MODULE_INDICATOR): Likewise.
491         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
492         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
493         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
494         * m4/strings_h.m4 (gl_STRINGS_MODULE_INDICATOR): Likewise.
495         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_MODULE_INDICATOR): Likewise.
496         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
497         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
498         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
499         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
500         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
501         * m4/sys_times_h.m4 (gl_SYS_TIMES_MODULE_INDICATOR): Likewise.
502         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_MODULE_INDICATOR): Likewise.
503         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Likewise.
504         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
505         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
506         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
507
508 2010-03-27  Bruno Haible  <bruno@clisp.org>
509
510         Fix a compilation error on Cygwin with g++ >= 4.3.
511         * lib/sys_stat.in.h (lchmod): Don't warn about the use of this function
512         if it is undefined or if we alias it to chmod.
513         (lstat): Don't warn about the use of this function if it is undefined
514         or if we alias it to stat.
515         Reported by Simon Josefsson.
516
517 2010-03-27  Bruno Haible  <bruno@clisp.org>
518
519         * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Renamed from gl_GETLOGIN.
520         * modules/getlogin (configure.ac): Update.
521
522         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Renamed from gl_GETLOGIN_R.
523         * modules/getlogin_r (configure.ac): Update.
524
525         * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Renamed from gl_INET_NTOP.
526         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Update.
527         * modules/inet_ntop (configure.ac): Update.
528
529         * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Renamed from gl_INET_PTON.
530         * modules/inet_pton (configure.ac): Update.
531
532         * m4/mbslen.m4 (gl_FUNC_MBSLEN): Renamed from gl_MBSLEN.
533         * modules/mbslen (configure.ac): Update.
534
535         * m4/pty.m4 (gl_FUNC_FORKPTY): Renamed from gl_FORKPTY.
536         (gl_FUNC_OPENPTY): Renamed from gl_OPENPTY.
537         * modules/forkpty (configure.ac): Update.
538         * modules/openpty (configure.ac): Update.
539
540 2010-03-26  Simon Josefsson  <simon@josefsson.org>
541
542         * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is
543         no *.texi files.  Reported by Eric Blake <eblake@redhat.com>.
544
545 2010-03-25  Eric Blake  <eblake@redhat.com>
546
547         maint: use pragma consistently across replacement headers
548         * lib/ctype.in.h (system_header): Hoist for consistent placement.
549         * lib/dirent.in.h (system_header): Likewise.
550         * lib/errno.in.h (system_header): Likewise.
551         * lib/float.in.h (system_header): Likewise.
552         * lib/getopt.in.h (system_header): Likewise.
553         * lib/iconv.in.h (system_header): Likewise.
554         * lib/inttypes.in.h (system_header): Likewise.
555         * lib/langinfo.in.h (system_header): Likewise.
556         * lib/locale.in.h (system_header): Likewise.
557         * lib/math.in.h (system_header): Likewise.
558         * lib/netdb.in.h (system_header): Likewise.
559         * lib/netinet_in.in.h (system_header): Likewise.
560         * lib/pty.in.h (system_header): Likewise.
561         * lib/sched.in.h (system_header): Likewise.
562         * lib/se-selinux.in.h (system_header): Likewise.
563         * lib/search.in.h (system_header): Likewise.
564         * lib/spawn.in.h (system_header): Likewise.
565         * lib/stdarg.in.h (system_header): Likewise.
566         * lib/stdint.in.h (system_header): Likewise.
567         * lib/string.in.h (system_header): Likewise.
568         * lib/strings.in.h (system_header): Likewise.
569         * lib/sys_file.in.h (system_header): Likewise.
570         * lib/sys_ioctl.in.h (system_header): Likewise.
571         * lib/sys_socket.in.h (system_header): Likewise.
572         * lib/sys_times.in.h (system_header): Likewise.
573         * lib/sys_utsname.in.h (system_header): Likewise.
574         * lib/sys_wait.in.h (system_header): Likewise.
575         * lib/sysexits.in.h (system_header): Likewise.
576         * lib/unistd.in.h (system_header): Likewise.
577         * lib/wctype.in.h (system_header): Likewise.
578
579         arpa/inet: fix mingw compilation warning
580         * lib/arpa_inet.in.h (system_header): Hoist to be unconditional.
581         Reported by Matthew Bolte.
582
583 2010-03-25  Bruno Haible  <bruno@clisp.org>
584
585         Avoid collision between gnulib wrapper and libintl wrapper.
586         * lib/printf.c (printf): Don't define if a printf wrapper is already
587         defined in intl/printf.c.
588         Reported by Michel Boaventura <michel@michelboaventura.com>.
589
590 2010-03-25  Bruno Haible  <bruno@clisp.org>
591
592         Use ANSI C.
593         * lib/readutmp.h (getutent): Provide ANSI C prototype.
594
595 2010-03-25  Bruno Haible  <bruno@clisp.org>
596
597         Minor formatting changes.
598         * lib/acosl.c: Insert space before function argument list.
599         * lib/argz.c: Likewise.
600         * lib/asinl.c: Likewise.
601         * lib/expl.c: Likewise.
602         * lib/gen-uni-tables.c: Likewise.
603         * lib/gettext.h: Likewise.
604         * lib/glthread/lock.h: Likewise.
605         * lib/tanl.c: Likewise.
606         * lib/uniname/uniname.c: Likewise.
607         * tests/test-idpriv-drop.c: Likewise.
608         * tests/test-idpriv-droptemp.c: Likewise.
609         * tests/test-lock.c: Likewise.
610         * tests/test-tls.c: Likewise.
611         * lib/argp-help.c: Insert space before function-like macro argument
612         list.
613         * lib/memcmp.c: Likewise.
614         * tests/test-base64.c: Likewise.
615         * lib/localename.c: Insert space before sizeof's argument list.
616         * lib/safe-alloc.h: Likewise.
617         * lib/file-set.h: Insert space before macro argument list.
618         * tests/test-argp.c: Likewise.
619         * lib/argp-namefrob.h: Insert space before function parameter list.
620         * lib/getaddrinfo.c: Likewise.
621         * lib/netdb.in.h: Likewise.
622         * lib/parse-duration.h: Likewise.
623         * lib/parse-duration.c: Likewise.
624         * lib/poll.c: Likewise.
625         * lib/select.c: Likewise.
626         * lib/trim.h: Likewise.
627         * tests/test-usleep.c: Likewise.
628         * lib/ldexpl.c: Insert space before function parameter list and before
629         function argument list.
630         * lib/logl.c: Likewise.
631         * lib/sqrtl.c: Likewise.
632         * lib/trim.c: Likewise.
633         * lib/cosl.c: Use GNU style indentation. Insert space before function
634         argument list.
635         * lib/sinl.c: Likewise.
636         * lib/tsearch.c: Insert space after 'for'.
637         Reported by Jim Meyering.
638
639 2010-03-23  Pádraig Brady  <P@draigBrady.com>  (tiny change)
640
641         * maint.mk (sc_Wundef_boolean): Check for the presence of the
642         config header before grepping, as it's not present before
643         autoreconf/configure are run.  Reported by Simon Josefsson.
644
645 2010-03-23  Bruno Haible  <bruno@clisp.org>
646
647         pt_chown: Make it work with automake < 1.11.
648         * modules/pt_chown (Makefile.am): Define pkglibexecdir.
649         Reported by Simon Josefsson.
650
651 2010-03-23  Bruno Haible  <bruno@clisp.org>
652
653         pt_chown: Don't depend on GPLed modules.
654         * lib/pt_chown.c: Don't include idpriv.h.
655         (main): Don't drop privileges.
656         * modules/pt_chown (Depends-on): Remove idpriv-drop.
657         Reported by Simon Josefsson.
658
659 2010-03-24  Simon Josefsson  <simon@josefsson.org>
660
661         * top/maint.mk (sc_texinfo_acronym): Add rule, based on
662         suggestions from karl@freefriends.org (Karl Berry).
663
664 2010-03-22  Eric Blake  <eblake@redhat.com>
665
666         gethostname: further tweaks
667         * lib/unistd.in.h (includes): Only worry about <winsock2.h> if we
668         are overriding gethostname.
669         Suggested by Bruno Haible.
670
671 2010-03-21  Bruno Haible  <bruno@clisp.org>
672
673         Fix comments.
674         * lib/forkpty.c (rpl_forkpty): Fix comment.
675         * lib/openpty.c (rpl_openpty): Likewise.
676         Reported by Eric Blake.
677
678 2010-03-22  Eric Blake  <eblake@redhat.com>
679
680         gethostname: fix build on mingw
681         * lib/unistd.in.h (includes): Work around fact that mingw
682         <winsock2.h> re-includes <unistd.h>, by avoiding any
683         redeclarations if we are being included by <winsock2.h>.
684         Reported by Matthias Bolte.
685
686 2010-03-21  Bruno Haible  <bruno@clisp.org>
687
688         forkpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
689         * lib/forkpty.c (forkpty): New replacement function, from glibc with
690         modifications.
691         * lib/pty.in.h (forkpty): Update declaration. Add comments.
692         * m4/pty.m4 (gl_FORKPTY): If forkpty is not declared, arrange to
693         provide the replacement.
694         * modules/forkpty (Depends-on): Add openpty, login_tty.
695         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_FORKPTY.
696         * modules/pty (Makefile.am): Substitute HAVE_FORKPTY.
697         * doc/glibc-functions/forkpty.texi: More supported platforms.
698         * config/srclist.txt: Add forkpty.c (commented).
699
700 2010-03-21  Bruno Haible  <bruno@clisp.org>
701
702         * modules/forkpty-tests: Use the common TEMPLATE-TESTS.
703         (Makefile.am): Verify that PTY_LIB is defined.
704
705         * modules/openpty-tests: Use the common TEMPLATE-TESTS.
706
707 2010-03-21  Bruno Haible  <bruno@clisp.org>
708
709         Tests for module 'login_tty'.
710         * modules/login_tty-tests: New file.
711         * tests/test-login_tty.c: New file.
712
713         New module 'login_tty'.
714         * lib/login_tty.c: New file.
715         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): New macro.
716         * modules/login_tty: New file.
717         * doc/glibc-functions/login_tty.texi: Mention the new module.
718
719 2010-03-21  Bruno Haible  <bruno@clisp.org>
720
721         login_tty: Documentation.
722         * doc/glibc-functions/login_tty.texi: New file.
723         * doc/gnulib.texi (Glibc <utmp.h>): Include it.
724
725 2010-03-21  Bruno Haible  <bruno@clisp.org>
726
727         pty: Consistent macro naming.
728         * m4/pty_h.m4 (gl_PTY_H): Renamed from gl_PTY.
729         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): Update.
730         * modules/pty (configure.ac): Update.
731
732 2010-03-21  Bruno Haible  <bruno@clisp.org>
733
734         Tests for openpty: Make stricter.
735         * tests/test-openpty.c (main): Add test of canonical processing and
736         erase.
737         * modules/openpty-tests (Makefile.am): Verify that PTY_LIB is defined.
738
739         openpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
740         * lib/openpty.c (openpty): New replacement function.
741         * lib/pty.in.h: Include <termios.h>.
742         (openpty): Update declaration. Add comments.
743         * m4/pty.m4 (gl_OPENPTY): Require AC_USE_SYSTEM_EXTENSIONS. If openpty
744         is not declared, arrange to provide the replacement. Check for _getpty
745         and posix_openpt.
746         * modules/openpty (Depends-on): Add extensions, fcntl-h, ioctl.
747         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_OPENPTY.
748         * modules/pty (Makefile.am): Substitute HAVE_OPENPTY.
749         * modules/pty-tests (test_pty_c___LDADD): New variable.
750         * doc/glibc-functions/openpty.texi: More supported platforms.
751
752 2010-03-21  Bruno Haible  <bruno@clisp.org>
753
754         setenv: Tweaks.
755         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Include necessary headers in
756         the test program.
757         * doc/posix-functions/setenv.texi: Update platforms list.
758
759 2010-03-21  Bruno Haible  <bruno@clisp.org>
760
761         New module 'unlockpt'.
762         * lib/unlockpt.c: New file, from glibc with modifications.
763         * m4/unlockpt.m4: New file.
764         * modules/unlockpt: New file.
765         * lib/stdlib.in.h (unlockpt): New declaration.
766         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether unlockpt is declared.
767         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_UNLOCKPT, HAVE_UNLOCKPT.
768         * modules/stdlib (Makefile.am): Substitute GNULIB_UNLOCKPT,
769         HAVE_UNLOCKPT.
770         * doc/posix-functions/unlockpt.texi: Mention the new module.
771         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::unlockpt.
772         * config/srclist.txt: Add unlockpt.c (commented).
773
774 2010-03-21  Jim Meyering  <meyering@redhat.com>
775
776         maint.mk: prohibit inclusion of "intprops.h" without use
777         * top/maint.mk (sc_prohibit_intprops_without_use): New rule.
778
779 2010-03-21  Bruno Haible  <bruno@clisp.org>
780
781         New module 'grantpt'.
782         * lib/grantpt.c: New file, from glibc with modifications.
783         * m4/grantpt.m4: New file.
784         * modules/grantpt: New file.
785         * lib/stdlib.in.h (grantpt): New declaration.
786         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether grantpt is declared.
787         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GRANTPT, HAVE_GRANTPT.
788         * modules/stdlib (Makefile.am): Substitute GNULIB_GRANTPT,
789         HAVE_GRANTPT.
790         * doc/posix-functions/grantpt.texi: Mention the new module.
791         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::grantpt.
792         * config/srclist.txt: Add grantpt.c (commented).
793
794 2010-03-21  Bruno Haible  <bruno@clisp.org>
795
796         New module 'pt_chown'.
797         * lib/pt_chown.c: New file, from glibc with modifications.
798         * lib/pty-private.h: New file, from glibc with modifications.
799         * modules/pt_chown: New file.
800         * config/srclist.txt: Add pt_chown.c, pty-private.h (commented).
801
802 2010-03-21  Bruno Haible  <bruno@clisp.org>
803
804         Tests for module 'ptsname'.
805         * modules/ptsname-tests: New file.
806         * tests/test-ptsname.c: New file.
807
808         New module 'ptsname'.
809         * lib/ptsname.c: New file, from glibc with modifications.
810         * m4/ptsname.m4: New file.
811         * modules/ptsname: New file.
812         * lib/stdlib.in.h (ptsname): New declaration.
813         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether ptsname is declared.
814         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PTSNAME, HAVE_PTSNAME.
815         * modules/stdlib (Makefile.am): Substitute GNULIB_PTSNAME,
816         HAVE_PTSNAME.
817         * doc/posix-functions/ptsname.texi: Mention the new module.
818         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::ptsname.
819         * config/srclist.txt: Add ptsname.c (commented).
820
821 2010-03-21  Bruno Haible  <bruno@clisp.org>
822
823         Tests for module 'ttyname_r'.
824         * modules/ttyname_r-tests: New file.
825         * tests/test-ttyname_r.c: New file.
826
827         New module 'ttyname_r'.
828         * lib/ttyname_r.c: New file.
829         * m4/ttyname_r.m4: New file.
830         * modules/ttyname_r: New file.
831         * lib/unistd.in.h (ttyname_r): New declaration.
832         * m4/unistd_h.m4 (gl_UNISTD_H): Check whether ttyname_r is declared.
833         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_TTYNAME_R, HAVE_TTYNAME_R.
834         * modules/unistd (Makefile.am): Substitute GNULIB_TTYNAME_R,
835         HAVE_TTYNAME_R.
836         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::ttyname_r.
837         * doc/posix-functions/ttyname_r.texi: Mention the new module.
838
839 2010-03-20  Bruno Haible  <bruno@clisp.org>
840
841         signal: Undefine macro definitions in C++ mode.
842         * lib/signal.in.h (sigismember, sigemptyset, sigaddset, sigdelset,
843         sigfillset): Undefine macro definitions from the system header in C++
844         mode.
845         Reported by John W. Eaton <jwe@gnu.org>.
846
847 2010-03-20  Bruno Haible  <bruno@clisp.org>
848
849         Ensure no #include statements inside extern "C" { ... }.
850         * lib/obstack.h: Shrink extern "C" { ... } region so that it does not
851         contain #include statements.
852         * lib/time.in.h: Likewise.
853
854 2010-03-20  Bruno Haible  <bruno@clisp.org>
855
856         Make _GL_WARN_ON_USE usable in C++ and C mode in the same compilation.
857         * build-aux/warn-on-use.h (_GL_WARN_EXTERN_C): New macro.
858         (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Likewise.
859         Reported by John W. Eaton <jwe@gnu.org>.
860
861 2010-03-20  Bruno Haible  <bruno@clisp.org>
862
863         * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit.
864         Reported by Jim Meyering.
865
866 2010-03-20  Bruno Haible  <bruno@clisp.org>
867
868         pipe: Set errno upon failure.
869         * lib/pipe.h: Specify that when -1 is returned, errno is set.
870         * lib/pipe.c (create_pipe): Set errno when returning -1. Use the right
871         errno value in error message.
872
873 2010-03-20  Bruno Haible  <bruno@clisp.org>
874             Jim Meyering  <meyering@redhat.com>
875
876         lchown: Avoid "unused variable" warning.
877         * lib/lchown.c (rpl_lchown): Move variable 'st' into #if block.
878
879 2010-03-20  Bruno Haible  <bruno@clisp.org>
880
881         Work around unlink() bug on MacOS X 10.5.6.
882         * lib/unlink.c (rpl_unlink): If UNLINK_PARENT_BUG is defined, fail when
883         attempting to unlink a parent directory.
884         * m4/unlink.m4 (gl_FUNC_UNLINK): Require AC_CANONICAL_HOST. Test for
885         MacOS X 10.5 bug. If the bug is present, define UNLINK_PARENT_BUG and
886         activate for the replacement function.
887         * doc/posix-functions/unlink.texi: Mention the MacOS X 10.5 bug.
888
889 2010-03-20  Bruno Haible  <bruno@clisp.org>
890
891         Fix link errors on Solaris 8.
892         * modules/dirent-tests (test_dirent_c___LDADD): Add LIB_NANOSLEEP.
893         * modules/wctype-tests (test_wctype_c___LDADD): Likewise.
894
895 2010-03-19  Jim Meyering  <meyering@redhat.com>
896
897         regcomp.c: make non-_LIBC implementation of build_range_exp consistent
898         The _LIBC implementation of build_range_exp correctly honors the
899         RE_NO_EMPTY_RANGES flag when checking for reversed range endpoints.
900         However, the non-_LIBC implementation would ignore that syntax-bit
901         flag and return REG_ERANGE unconditionally.
902         This change makes it honor that flag.
903         * lib/regcomp.c (build_range_exp) [!_LIBC]: Add a parameter: "syntax".
904         Make two pointer parameters "const".
905         Use "syntax" bits in order to honor RE_NO_EMPTY_RANGES.
906         (parse_bracket_exp): Update caller.
907
908         regex.m4: correct the reversed range endpoint ([b-a]) test
909         * m4/regex.m4: When requiring that [b-a] evoke failure,
910         use RE_NO_EMPTY_RANGES.  This makes this entire configure-time
911         test pass once again for x86-based systems.
912
913 2010-03-19  Bruno Haible  <bruno@clisp.org>
914
915         scandir: Fix link error on Solaris 8.
916         * lib/scandir.c (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New fallback
917         macros.
918
919 2010-03-19  Bruno Haible  <bruno@clisp.org>
920
921         getusershell: Fix documentation.
922         * doc/glibc-functions/endusershell.texi: Refer to the getusershell
923         module.
924         * doc/glibc-functions/setusershell.texi: Likewise.
925
926         getusershell: Provide declaration, missing on Solaris 9.
927         * lib/unistd.in.h (getusershell, setusershell, endusershell): Declare
928         also if HAVE_GETUSERSHELL && !HAVE_DECL_GETUSERSHELL.
929         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): When the function exists,
930         check whether it is declared. Set HAVE_DECL_GETUSERSHELL.
931         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
932         HAVE_DECL_GETUSERSHELL, not HAVE_GETUSERSHELL.
933         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETUSERSHELL, not
934         HAVE_GETUSERSHELL.
935         * doc/glibc-functions/getusershell.texi: Mention the Solaris problem.
936
937 2010-03-19  Bruno Haible  <bruno@clisp.org>
938
939         wctype: Provide iswblank function.
940         * lib/wctype.in.h (iswblank): Provide a replacement also when iswcntrl
941         exists and is fine.
942         * m4/wctype_h.m4 (gl_WCTYPE_H): Also check whether iswcntrl exists.
943         * modules/wctype (Makefile.am): Substitute HAVE_ISWBLANK.
944         * tests/test-wctype.c (main): Re-enable the iswblank tests.
945         * doc/posix-functions/iswblank.texi: Update.
946
947 2010-03-19  Bruno Haible  <bruno@clisp.org>
948
949         Tests of module 'pty' in C++ mode.
950         * modules/pty-tests: New file.
951         * tests/test-pty-c++.cc: New file.
952         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
953
954 2010-03-19  Eric Blake  <eblake@redhat.com>
955
956         logb: fix documentation
957         * doc/posix-functions/logb.texi (logb): Gnulib fixes the cygwin
958         1.5 declaration bug.
959
960         forkpty, openpty: prefer glibc's const-safe prototype
961         * lib/forkpty.c (rpl_forkpty): New file.
962         * lib/openpty.c (rpl_openpty): Likewise.
963         * modules/forkpty (Files): Distribute it.
964         * modules/openpty (Files): Likewise.
965         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.  Move decl
966         check...
967         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): ...here.  Request
968         replacement for for non-const BSD signature.
969         * modules/pty (Makefile.am): Substitute witnesses.
970         * lib/pty.in.h (forkpty, openpty): Declare replacements.
971         * tests/test-forkpty.c: Update signature check.
972         * tests/test-openpty.c: Likewise.
973         * doc/glibc-functions/forkpty.texi (forkpty): Document the fix.
974         * doc/glibc-functions/openpty.texi (openpty): Likewise.
975
976         forkpty, openpty: split functions into new modules
977         * modules/pty (Makefile.am): Substitute new witnesses.
978         (Libraries): Move library detection...
979         * modules/forkpty: ...into new module.
980         * modules/openpty: Another new module.
981         * modules/pty-tests: Rename and split...
982         * modules/forkpty-tests: ...to this...
983         * modules/openpty-tests: ...and this.
984         * tests/test-pty.c: Rename and split...
985         * tests/test-forkpty.c: ...to this...
986         * tests/test-openpty.c: ...and this.
987         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.
988         (gl_PTY): Split library searching...
989         * m4/pty.m4 (gl_PTY_LIB): ...into new file.
990         (gl_FORKPTY, gl_OPENPTY): New macros.
991         * lib/pty.in.h (forkpty, openpty): Honor new witnesses.
992         * NEWS: Mention the split.
993         * MODULES.html.sh (Misc): Document the modules.
994         * doc/glibc-functions/forkpty.texi (forkpty): Likewise.
995         * doc/glibc-functions/openpty.texi (openpty): Likewise.
996
997         pty: improve replacement header
998         * lib/pty.in.h: New file.
999         * modules/pty (Files): Ship it.
1000         (Makefile.am): Always build replacement.
1001         * m4/pty.m4: Rename...
1002         * m4/pty_h.m4: ...to this.
1003         (gl_PTY): Modernize setting of witness macros; update check of
1004         forkpty to take proper advantage of cache.
1005         (gl_PTY_MODULE_INDICATOR, gl_PTY_H_DEFAULTS): New macros.
1006
1007         getopt: avoid compiler warning
1008         * lib/getopt.c (attribute_hidden): Remove unused macro.
1009
1010 2010-03-18  Bruno Haible  <bruno@clisp.org>
1011
1012         Fix link errors on Solaris 8.
1013         * modules/iconv-h-tests (test_iconv_h_c___LDADD): Add LIB_NANOSLEEP.
1014         * modules/search-tests (test_search_c___LDADD): Likewise.
1015         * modules/signal-tests (test_signal_c___LDADD): Likewise.
1016         * modules/spawn-tests (test_spawn_c___LDADD): Likewise.
1017         * modules/stdio-tests (test_stdio_c___LDADD): Likewise.
1018         * modules/sys_select-tests (test_sys_select_c___LDADD): Likewise.
1019         * modules/sys_socket-tests (test_sys_socket_c___LDADD): Likewise.
1020         * modules/sys_time-tests (test_sys_time_c___LDADD): Likewise.
1021         * modules/wchar-tests (test_wchar_c___LDADD): Likewise.
1022
1023 2010-03-18  Bruno Haible  <bruno@clisp.org>
1024
1025         Fix bug introduced on 2010-03-14.
1026         * m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): New macro.
1027         (gl_SPAWN_H): Require it.
1028         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Likewise.
1029         Reported by Simon Josefsson.
1030
1031 2010-03-18  Bruno Haible  <bruno@clisp.org>
1032
1033         Fix typo introduced on 2009-12-31.
1034         * m4/spawn_h.m4 (gl_SPAWN_H): Check for the declaration of
1035         posix_spawn_file_actions_adddup2.
1036
1037 2010-03-17  Bert Wesarg  <bert.wesarg@googlemail.com>  (tiny change)
1038         and Eric Blake  <eblake@redhat.com>
1039
1040         test-vc-list-files-git: make more robust
1041         * tests/test-vc-list-files-git.sh: Unset problematic environment
1042         variables.  Chain commands together.
1043
1044 2010-03-17  Ludovic Courtès <ludo@gnu.org>  (tiny change)
1045
1046         * m4/pty.m4: Unset $ac_cv_have_decl_forkpty before the second
1047         `AC_CHECK_DECL' invocation.
1048
1049 2010-03-15  Sergey Poznyakoff  <gray@gnu.org.ua>
1050
1051         * lib/inttostr.c (inttostr): Make sure the invocation of verify
1052         appears before executable statements. Suggested by Petr Sumbera
1053         <Petr.Sumbera@Sun.COM>.
1054
1055 2010-03-14  Bruno Haible  <bruno@clisp.org>
1056
1057         * tests/test-flock.c (test_exclusive): Comment out a test that causes
1058         portability problems. Instead use a simpler test.
1059         (main): Check that invalid arguments are rejected only on Linux.
1060
1061 2010-03-14  Bruno Haible  <bruno@clisp.org>
1062
1063         Fix bug introduced on 2009-12-31.
1064         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
1065         gl_PREREQ_SYS_H_WINSOCK2 always.
1066         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise. Remove
1067         SYS_SOCKET_H variable.
1068         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Remove test for flock.
1069         Update comments.
1070         * m4/ctype.m4 (gl_CTYPE_H): Update comments.
1071         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
1072         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
1073         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
1074         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Likewise.
1075
1076 2010-03-14  Bruno Haible  <bruno@clisp.org>
1077
1078         Fix values returned by sinl, cosl.
1079         * lib/trigl.h: Add specification comments.
1080         * lib/sincosl.c (kernel_sinl, kernel_cosl): Fix comments and formula
1081         that combines the values from the precomputed table with the values of
1082         the Chebyshev polynomials.
1083
1084 2010-03-14  Bruno Haible  <bruno@clisp.org>
1085
1086         Fix compilation error when modules 'posix_spawn[p]' are not used.
1087         * m4/spawn_h.m4 (gl_SPAWN_H): Set HAVE_POSIX_SPAWN here.
1088         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): ... not here.
1089
1090 2010-03-14  Bruno Haible  <bruno@clisp.org>
1091
1092         Fix compilation error on mingw when module 'time_r' is not used.
1093         * lib/time.in.h (localtime_r, gmtime_r): Declare only if GNULIB_TIME_R
1094         is 1.
1095         * tests/test-time-c++.cc (localtime_r, gmtime_r): Likewise.
1096         * modules/time_r (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1097         * modules/time (Makefile.am): Substitute GNULIB_TIME_R.
1098         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_TIME_R.
1099
1100 2010-03-14  Bruno Haible  <bruno@clisp.org>
1101
1102         Fix compilation error with Sun C.
1103         * lib/strtol.c: Use LLONG_MIN instead of GCC specific LONG_LONG_MIN.
1104         Use LLONG_MAX instead of GCC specific LONG_LONG_MAX. Use ULLONG_MAX
1105         instead of GCC specific ULONG_LONG_MAX.
1106         * lib/xstrtoll.c: Likewise.
1107         * lib/xstrtoull.c: Likewise.
1108
1109 2010-03-13  Bruno Haible  <bruno@clisp.org>
1110
1111         Allow the user to disable C++ code and tests.
1112         * m4/ansi-c++.m4 (gl_CXX_CHOICE): New macro.
1113         (gl_PROG_ANSI_CXX): Require it.
1114
1115 2010-03-13  Bruno Haible  <bruno@clisp.org>
1116
1117         * DEPENDENCIES (libtool): Mention libtool 2.2.x requirement in special
1118         cases.
1119
1120 2010-03-13  Bruno Haible  <bruno@clisp.org>
1121
1122         Test that gnulib does not break the standard C++ headers.
1123         * tests/test-locale-c++2.cc: New file.
1124         * modules/locale-tests (Files): Add it.
1125         (Makefile.am): Compile it for test-locale-c++.
1126         * tests/test-math-c++2.cc: New file.
1127         * modules/math-tests (Files): Add it.
1128         (Makefile.am): Compile it for test-math-c++.
1129         * tests/test-signal-c++2.cc: New file.
1130         * modules/signal-tests (Files): Add it.
1131         (Makefile.am): Compile it for test-signal-c++.
1132         * tests/test-stdio-c++2.cc: New file.
1133         * modules/stdio-tests (Files): Add it.
1134         (Makefile.am): Compile it for test-stdio-c++.
1135         * tests/test-stdlib-c++2.cc: New file.
1136         * modules/stdlib-tests (Files): Add it.
1137         (Makefile.am): Compile it for test-stdlib-c++.
1138         * tests/test-string-c++2.cc: New file.
1139         * modules/string-tests (Files): Add it.
1140         (Makefile.am): Compile it for test-string-c++.
1141         * tests/test-time-c++2.cc: New file.
1142         * modules/time-tests (Files): Add it.
1143         (Makefile.am): Compile it for test-time-c++.
1144         Reported by John W. Eaton <jwe@gnu.org>.
1145
1146 2010-03-13  Bruno Haible  <bruno@clisp.org>
1147
1148         * gnulib-tool (func_usage): Clarify which options are available for
1149         --create-testdir and --create-megatestdir.
1150
1151 2010-03-13  Bruno Haible  <bruno@clisp.org>
1152
1153         Fix compilation error with glibc >= 2.10 and g++ >= 4.4.
1154         * build-aux/warn-on-use.h (_GL_WARN_ON_USE_CXX): New macro.
1155         * build-aux/c++defs.h (_GL_CXXALIASWARN1): New macro.
1156         * lib/string.in.h (memchr, memrchr, rawmemchr, strchrnul, strpbrk,
1157         strstr, strcasestr): Use _GL_CXXALIASWARN1 instead of _GL_CXXALIASWARN
1158         when appropriate.
1159         Reported by Jim Meyering.
1160
1161 2010-03-12  Simon Josefsson  <simon@josefsson.org>
1162
1163         * gnulib-tool (func_import): Explain origin of code.
1164
1165 2010-03-12  Bruno Haible  <bruno@clisp.org>
1166
1167         Fix problem with automake's definition of CXXLINK.
1168         * gnulib-tool (func_create_testdir): After LT_INIT, also use LT_LANG.
1169         Reported by Simon Josefsson and Ludovic Courtès.
1170
1171 2010-03-12  Bruno Haible  <bruno@clisp.org>
1172
1173         * doc/gnulib-intro.texi (Steady Development): Mention Ian Beckwith's
1174         stable releases.
1175
1176 2010-03-11  Bruno Haible  <bruno@clisp.org>
1177
1178         Fix problems with overloaded C++ definitions of memchr, strpbrk, etc.
1179         * build-aux/c++defs.h (_GL_CXXALIAS_SYS_CAST2): Make it work regardless
1180         whether the system provides one variant or multiple variants of the
1181         function.
1182         * lib/string.in.h (memchr, strpbrk): Use _GL_CXXALIAS_SYS_CAST2 for all
1183         C++ compilers.
1184         (memrchr, rawmemchr, strchrnul, strstr, strcasestr): Use
1185         _GL_CXXALIAS_SYS_CAST2 instead of _GL_CXXALIAS_SYS.
1186         Reported by Jim Meyering.
1187
1188 2010-03-09  Simon Josefsson  <simon@josefsson.org>
1189
1190         * gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
1191
1192 2010-03-08  Bruno Haible  <bruno@clisp.org>
1193
1194         gnulib-tool: Add support for --libtool in --create-testdir.
1195         * gnulib-tool (LIBTOOLPATH, LIBTOOLIZE): New variables.
1196         (func_create_testdir): Emit LT_INIT invocations. Invoke LIBTOOLIZE.
1197
1198 2010-03-08  Eric Blake  <eblake@redhat.com>
1199
1200         gnulib-tool.texi: mention possibility of git submodule
1201         * doc/gnulib-tool.texi (VCS Issues): Add details about using git
1202         submodules.
1203         * doc/.gitignore: Ignore another generated file.
1204
1205 2010-03-08  Karl Berry  <karl@gnu.org>
1206
1207         * doc/gnulib-tool.texi (VCS Issues): Mention third option
1208         of committing gnulib files while skipping others.
1209
1210 2010-03-07  Bruno Haible  <bruno@clisp.org>
1211
1212         Tests of module 'wctype' in C++ mode.
1213         * tests/test-wctype-c++.cc: New file.
1214         * modules/wctype-tests (Files): Add it and tests/signature.h.
1215         (Depends-on): Add ansi-c++-opt.
1216         (Makefile.am): Arrange to compile and run test-wctype-c++.
1217
1218         Tests of module 'wchar' in C++ mode.
1219         * tests/test-wchar-c++.cc: New file.
1220         * modules/wchar-tests (Files): Add it and tests/signature.h.
1221         (Depends-on): Add ansi-c++-opt.
1222         (Makefile.am): Arrange to compile and run test-wchar-c++.
1223         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Invoke
1224         gl_MODULE_INDICATOR.
1225
1226         Tests of module 'unistd' in C++ mode.
1227         * tests/test-unistd-c++.cc: New file.
1228         * modules/unistd-tests (Files): Add it and tests/signature.h.
1229         (Depends-on): Add ansi-c++-opt.
1230         (Makefile.am): Arrange to compile and run test-unistd-c++.
1231         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Invoke
1232         gl_MODULE_INDICATOR.
1233
1234         Tests of module 'time' in C++ mode.
1235         * tests/test-time-c++.cc: New file.
1236         * modules/time-tests (Files): Add it and tests/signature.h.
1237         (Depends-on): Add ansi-c++-opt.
1238         (Makefile.am): Arrange to compile and run test-time-c++.
1239         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1240
1241         Tests of module 'sys_time' in C++ mode.
1242         * tests/test-sys_time-c++.cc: New file.
1243         * modules/sys_time-tests (Files): Add it and tests/signature.h.
1244         (Depends-on): Add ansi-c++-opt.
1245         (Makefile.am): Arrange to compile and run test-sys_time-c++.
1246         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Invoke
1247         gl_MODULE_INDICATOR.
1248
1249         Tests of module 'sys_stat' in C++ mode.
1250         * tests/test-sys_stat-c++.cc: New file.
1251         * modules/sys_stat-tests (Files): Add it and tests/signature.h.
1252         (Depends-on): Add ansi-c++-opt.
1253         (Makefile.am): Arrange to compile and run test-sys_stat-c++.
1254         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Invoke
1255         gl_MODULE_INDICATOR.
1256
1257         Tests of module 'sys_socket' in C++ mode.
1258         * tests/test-sys_socket-c++.cc: New file.
1259         * modules/sys_socket-tests (Files): Add it and tests/signature.h.
1260         (Depends-on): Add ansi-c++-opt.
1261         (Makefile.am): Arrange to compile and run test-sys_socket-c++.
1262         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Invoke
1263         gl_MODULE_INDICATOR.
1264
1265         Tests of module 'sys_select' in C++ mode.
1266         * tests/test-sys_select-c++.cc: New file.
1267         * modules/sys_select-tests (Files): Add it and tests/signature.h.
1268         (Depends-on): Add ansi-c++-opt.
1269         (Makefile.am): Arrange to compile and run test-sys_select-c++.
1270         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Invoke
1271         gl_MODULE_INDICATOR.
1272
1273         Tests of module 'sys_ioctl' in C++ mode.
1274         * tests/test-sys_ioctl-c++.cc: New file.
1275         * modules/sys_ioctl-tests (Files): Add it and tests/signature.h.
1276         (Depends-on): Add ansi-c++-opt.
1277         (Makefile.am): Arrange to compile and run test-sys_ioctl-c++.
1278         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Invoke
1279         gl_MODULE_INDICATOR.
1280
1281         Tests of module 'string' in C++ mode.
1282         * tests/test-string-c++.cc: New file.
1283         * modules/string-tests (Files): Add it and tests/signature.h.
1284         (Depends-on): Add ansi-c++-opt.
1285         (Makefile.am): Arrange to compile and run test-string-c++.
1286         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Invoke
1287         gl_MODULE_INDICATOR.
1288
1289         Tests of module 'stdlib' in C++ mode.
1290         * tests/test-stdlib-c++.cc: New file.
1291         * modules/stdlib-tests (Files): Add it and tests/signature.h.
1292         (Depends-on): Add ansi-c++-opt.
1293         (Makefile.am): Arrange to compile and run test-stdlib-c++.
1294         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Invoke
1295         gl_MODULE_INDICATOR.
1296
1297         Tests of module 'stdio' in C++ mode.
1298         * tests/test-stdio-c++.cc: New file.
1299         * modules/stdio-tests (Files): Add it and tests/signature.h.
1300         (Depends-on): Add ansi-c++-opt.
1301         (Makefile.am): Arrange to compile and run test-stdio-c++.
1302         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Invoke
1303         gl_MODULE_INDICATOR.
1304
1305         Tests of module 'spawn' in C++ mode.
1306         * tests/test-spawn-c++.cc: New file.
1307         * modules/spawn-tests (Files): Add it and tests/signature.h.
1308         (Depends-on): Add ansi-c++-opt.
1309         (Makefile.am): Arrange to compile and run test-spawn-c++.
1310         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Invoke
1311         gl_MODULE_INDICATOR.
1312
1313         Tests of module 'signal' in C++ mode.
1314         * tests/test-signal-c++.cc: New file.
1315         * modules/signal-tests (Files): Add it and tests/signature.h.
1316         (Depends-on): Add ansi-c++-opt.
1317         (Makefile.am): Arrange to compile and run test-signal-c++.
1318         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Invoke
1319         gl_MODULE_INDICATOR.
1320
1321         Tests of module 'search' in C++ mode.
1322         * tests/test-search-c++.cc: New file.
1323         * modules/search-tests (Files): Add it and tests/signature.h.
1324         (Depends-on): Add ansi-c++-opt.
1325         (Makefile.am): Arrange to compile and run test-search-c++.
1326         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Invoke
1327         gl_MODULE_INDICATOR.
1328
1329         Tests of module 'math' in C++ mode.
1330         * tests/test-math-c++.cc: New file.
1331         * modules/math-tests (Files): Add it and tests/signature.h.
1332         (Depends-on): Add ansi-c++-opt.
1333         (Makefile.am): Arrange to compile and run test-math-c++.
1334         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1335
1336         Tests of module 'locale' in C++ mode.
1337         * tests/test-locale-c++.cc: New file.
1338         * modules/locale-tests (Files): Add it and tests/signature.h.
1339         (Depends-on): Add ansi-c++-opt.
1340         (Makefile.am): Arrange to compile and run test-locale-c++.
1341         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Invoke
1342         gl_MODULE_INDICATOR.
1343
1344         Tests of module 'langinfo' in C++ mode.
1345         * tests/test-langinfo-c++.cc: New file.
1346         * modules/langinfo-tests (Files): Add it and tests/signature.h.
1347         (Depends-on): Add ansi-c++-opt.
1348         (Makefile.am): Arrange to compile and run test-langinfo-c++.
1349         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Invoke
1350         gl_MODULE_INDICATOR.
1351
1352         Tests of module 'iconv-h' in C++ mode.
1353         * tests/test-iconv-h-c++.cc: New file.
1354         * modules/iconv-h-tests (Files): Add it and tests/signature.h.
1355         (Depends-on): Add ansi-c++-opt.
1356         (Makefile.am): Arrange to compile and run test-iconv-h-c++.
1357
1358         Tests of module 'glob' in C++ mode.
1359         * tests/test-glob-c++.cc: New file.
1360         * modules/glob-tests (Files): Add it.
1361         (Depends-on): Add ansi-c++-opt.
1362         (Makefile.am): Arrange to compile and run test-glob-c++.
1363
1364         Tests of module 'fcntl-h' in C++ mode.
1365         * tests/test-fcntl-h-c++.cc: New file.
1366         * modules/fcntl-h-tests (Files): Add it and tests/signature.h.
1367         (Depends-on): Add ansi-c++-opt.
1368         (Makefile.am): Arrange to compile and run test-fcntl-h-c++.
1369         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Invoke
1370         gl_MODULE_INDICATOR.
1371
1372         Tests of module 'dirent' in C++ mode.
1373         * tests/test-dirent-c++.cc: New file.
1374         * modules/dirent-tests (Files): Add it and tests/signature.h.
1375         (Depends-on): Add ansi-c++-opt.
1376         (Makefile.am): Arrange to compile and run test-dirent-c++.
1377         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
1378         gl_MODULE_INDICATOR.
1379
1380         New module 'ansi-c++-opt'.
1381         * modules/ansi-c++-opt: New file.
1382         * m4/ansi-c++.m4: New file, from GNU gettext with modifications.
1383
1384         Document C++ namespace mode.
1385         * doc/gnulib.texi (A C++ namespace for gnulib): New section.
1386
1387         wctype: Avoid #define replacements in C++ mode.
1388         * lib/wctype.in.h: Include c++defs.h, warn-on-use.h.
1389         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
1390         iswprint, iswpunct, iswspace, iswupper, iswxdigit, towlower, towupper):
1391         In C++, define a namespaced alias symbol.
1392         * m4/wctype_h.m4 (gl_WCTYPE_H): Don't set WCTYPE_H.
1393         * modules/wctype (Depends-on): Add c++defs, warn-on-use.
1394         (Makefile.am): Provide a wctype.h replacement always. Update wctype.h
1395         rule.
1396
1397         wchar: Avoid #define replacements in C++ mode.
1398         * lib/wchar.in.h: Include c++defs.h.
1399         (btowc, wctob, mbsinit, mbrtowc, mbrlen, mbsrtowcs, mbsnrtowcs,
1400         wcrtomb, wcsrtombs, wcsnrtombs): In C++, define a namespaced alias
1401         symbol.
1402         (wcwidth): Likewise. Fix prototype to be POSIX compliant.
1403         * modules/wchar (Depends-on): Add c++defs.
1404         (Makefile.am): Update wchar.h rule.
1405
1406         unistd: Avoid #define replacements in C++ mode.
1407         * lib/unistd.in.h: Include c++defs.h.
1408         (chown, close, dup, dup2, dup3, euidaccess, faccessat, fchdir,
1409         fchownat, fsync, ftruncate, getcwd, getdomainname, getdtablesize,
1410         getgroups, gethostname, getlogin, getlogin_r, getpagesize,
1411         getusershell, setusershell, endusershell, lchown, link, linkat, lseek,
1412         pipe2, pread, readlink, readlinkat, rmdir, sleep, symlink, symlinkat,
1413         unlink, unlinkat, usleep, write): In C++, define a namespaced alias
1414         symbol.
1415         (environ): Update.
1416         * modules/unistd (Depends-on): Add c++defs.
1417         (Makefile.am): Update unistd.h rule.
1418
1419         time: Avoid #define replacements in C++ mode.
1420         * lib/time.in.h: Include c++defs.h, warn-on-use.h.
1421         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): In C++,
1422         define a namespaced alias symbol.
1423         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): New macro.
1424         (gl_HEADER_TIME_H_DEFAULTS): Initialize also GNULIB_MKTIME,
1425         GNULIB_NANOSLEEP, GNULIB_STRPTIME, GNULIB_TIMEGM.
1426         * modules/time (Depends-on): Add c++defs, warn-on-use.
1427         (Makefile.am): Update time.h rule.
1428         * modules/mktime (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1429         * modules/nanosleep (configure.ac): Likewise.
1430         * modules/strptime (configure.ac): Likewise.
1431         * modules/timegm (configure.ac): Likewise.
1432
1433         sys_time: Avoid #define replacements in C++ mode.
1434         * lib/sys_time.in.h: Include c++defs.h.
1435         (gettimeofday): In C++, define a namespaced alias symbol.
1436         * modules/sys_time (Depends-on): Add c++defs.
1437         (Makefile.am): Update sys/time.h rule.
1438
1439         sys_stat: Avoid #define replacements in C++ mode.
1440         * lib/sys_stat.in.h: Include c++defs.h.
1441         (fchmodat, fstat, fstatat, futimens, lchmod, lstat, mkdir, mkdirat,
1442         mkfifo, mkfifoat, mknod, mknodat, utimensat): In C++, define a
1443         namespaced alias symbol.
1444         In C++, define a namespaced alias symbol.
1445         * modules/sys_stat (Depends-on): Add c++defs.
1446         (Makefile.am): Update sys/stat.h rule.
1447
1448         sys_socket: Avoid #define replacements in C++ mode.
1449         * lib/sys_socket.in.h: Handle the case of recursive include on Cygwin.
1450         Include c++defs.h. Include warn-on-use.h earlier. Enable the function
1451         definitions also when the system has a <sys/socket.h>.
1452         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
1453         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, accept4):
1454         In C++, define a namespaced alias symbol.
1455         * modules/sys_socket (Depends-on): Add c++defs.
1456         (Makefile.am): Update sys/socket.h rule.
1457
1458         sys_select: Avoid #define replacements in C++ mode.
1459         * lib/sys_select.in.h: Include c++defs.h. Enable the function
1460         definitions also when the system has a <sys/select.h>.
1461         (select): In C++, define a namespaced alias symbol.
1462         * modules/sys_select (Depends-on): Add c++defs.
1463         (Makefile.am): Update sys/select.h rule.
1464
1465         sys_ioctl: Avoid #define replacements in C++ mode.
1466         * lib/sys_ioctl.in.h: Include c++defs.h.
1467         (ioctl): In C++, define a namespaced alias symbol.
1468         * modules/sys_ioctl (Depends-on): Add c++defs.
1469         (Makefile.am): Update sys/ioctl.h rule.
1470
1471         string: Avoid #define replacements in C++ mode.
1472         * lib/string.in.h: Include c++defs.h.
1473         (stpncpy): Define to rpl_stpncpy, not gnu_stpncpy.
1474         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
1475         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
1476         strcasestr, strtok_r, mbslen, mbschr, mbsrchr, mbspbrk, strerror,
1477         strsignal, strverscmp): In C++, define a namespaced alias symbol.
1478         * modules/string (Depends-on): Add c++defs.
1479         (Makefile.am): Update string.h rule.
1480
1481         stdlib: Avoid #define replacements in C++ mode.
1482         * lib/stdlib.in.h: Include c++defs.h.
1483         (atoll, calloc, canonicalize_file_name, getloadavg, getsubopt, malloc,
1484         mkdtemp, mkostemp, mkostemps, mkstemp, mkstemps, putenv, random_r,
1485         srandom_r, initstate_r, setstate_r, realloc, realpath, rpmatch, setenv,
1486         strtod, strtoll, strtoull, unsetenv): In C++, define a namespaced alias
1487         symbol.
1488         * modules/stdlib (Depends-on): Add c++defs.
1489         (Makefile.am): Update stdlib.h rule.
1490
1491         stdio: Avoid #define replacements in C++ mode.
1492         * lib/stdio.in.h: Include c++defs.h.
1493         (dprintf, fclose, fflush, fopen, fprintf, fpurge, fputc, fputs,
1494         freopen, fseek, fseeko, ftell, ftello, fwrite, getdelim, getline,
1495         obstack_printf, obstack_vprintf, perror, popen, printf, fputc, putchar,
1496         puts, remove, rename, renameat, snprintf, sprintf, asprintf, vasprintf,
1497         vdprintf, vfprintf, vprintf, vsnprintf, vsprintf): In C++, define a
1498         namespaced alias symbol.
1499         * modules/stdio (Depends-on): Add c++defs.
1500         (Makefile.am): Update stdio.h rule.
1501
1502         spawn: Avoid #define replacements in C++ mode.
1503         * lib/spawn.in.h: Include c++defs.h.
1504         (posix_spawn, posix_spawnp, posix_spawnattr_init,
1505         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
1506         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
1507         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
1508         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
1509         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
1510         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
1511         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
1512         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
1513         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
1514         In C++, define a namespaced alias symbol.
1515         * modules/spawn (Depends-on): Add c++defs.
1516         (Makefile.am): Update spawn.h rule.
1517
1518         signal: Avoid #define replacements in C++ mode.
1519         * lib/signal.in.h: Include c++defs.h.
1520         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
1521         sigpending, sigprocmask, signal, raise, sigaction): In C++, define a
1522         namespaced alias symbol.
1523         * modules/signal (Depends-on): Add c++defs.
1524         (Makefile.am): Update signal.h rule.
1525
1526         search: Avoid #define replacements in C++ mode.
1527         * lib/search.in.h: Include c++defs.h.
1528         (_gl_search_compar_fn, _gl_search_action_fn): New types.
1529         (tsearch, tfind, tdelete, twalk): In C++, define a namespaced alias
1530         symbol.
1531         * modules/search (Depends-on): Add c++defs.
1532         (Makefile.am): Update search.h rule.
1533
1534         math: Avoid #define replacements in C++ mode.
1535         * lib/math.in.h: Include c++defs.h.
1536         (frexp, acosl, asinl, atanl, ceilf, ceill, cosl, expl, floorf, floorl,
1537         frexpl, ldexpl, logl, roundf, round, roundl, sinl, sqrtl, tanl, truncf,
1538         trunc, truncl): In C++, define a namespaced alias symbol.
1539         * modules/math (Depends-on): Add c++defs.
1540         (Makefile.am): Update math.h rule.
1541
1542         locale: Avoid #define replacements in C++ mode.
1543         * lib/locale.in.h: Include c++defs.h.
1544         (duplocale): In C++, define a namespaced alias symbol.
1545         * m4/locale_h.m4 (gl_LOCALE_H_DEFAULTS): Initialize HAVE_DUPLOCALE.
1546         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Set HAVE_DUPLOCALE.
1547         * modules/locale (Depends-on): Add c++defs.
1548         (Makefile.am): Update locale.h rule. Substitute HAVE_DUPLOCALE.
1549
1550         langinfo: Avoid #define replacements in C++ mode.
1551         * lib/langinfo.in.h: Include c++defs.h.
1552         (nl_langinfo): In C++, define a namespaced alias symbol.
1553         * modules/langinfo (Depends-on): Add c++defs.
1554         (Makefile.am): Update langinfo.h rule.
1555
1556         iconv-h: Avoid #define replacements in C++ mode.
1557         * lib/iconv.in.h: Include c++defs.h, warn-on-use.h.
1558         (iconv_open, iconv, iconv_close): In C++, define a namespaced alias
1559         symbol.
1560         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
1561         whenever iconv is present.
1562         * modules/iconv-h (Depends-on): Add c++defs, warn-on-use.
1563         (Makefile.am): Update iconv.h rule.
1564
1565         glob: Avoid #define replacements in C++ mode.
1566         * lib/glob.in.h: Include c++defs.h, warn-on-use.h.
1567         (_gl_glob_errfunc_fn): New type.
1568         (glob, globfree, glob_pattern_p): In C++, define a namespaced alias
1569         symbol.
1570         * modules/glob (Depends-on): Add c++defs, warn-on-use.
1571         (Makefile.am): Update glob.h rule.
1572
1573         fcntl-h: Avoid #define replacements in C++ mode.
1574         * lib/fcntl.in.h: Include c++defs.h.
1575         (fcntl, open, openat): In C++, define a namespaced alias symbol.
1576         * modules/fcntl-h (Depends-on): Add c++defs.
1577         (Makefile.am): Update fcntl.h rule.
1578
1579         dirent: Avoid #define replacements in C++ mode.
1580         * lib/dirent.in.h: Include c++defs.h.
1581         (closedir, fdopendir, opendir, scandir, alphasort): In C++, define a
1582         namespaced alias symbol.
1583         (dirfd): Update declaration.
1584         * modules/dirent (Depends-on): Add c++defs.
1585         (Makefile.am): Update dirent.h rule.
1586
1587         ctype: Make it usable in C++ code.
1588         * lib/ctype.in.h: Include c++defs.h.
1589         (isblank): Declare as extern "C".
1590         * modules/ctype (Depends-on): Add c++defs.
1591         (Makefile.am): Update ctype.h rule.
1592
1593         New module 'c++defs'.
1594         * modules/c++defs: New file.
1595         * build-aux/c++defs.h: New file.
1596         Reported by John W. Eaton <jwe@gnu.org>.
1597
1598 2010-03-07  Bruno Haible  <bruno@clisp.org>
1599
1600         logb: Provide missing declaration for Cygwin.
1601         * lib/math.in.h (logb): New declaration.
1602         * m4/logb.m4: New file.
1603         * modules/logb (Files): Add m4/logb.m4.
1604         (Depends-on): Add math.
1605         (configure.ac): Invoke gl_FUNC_LOGB, gl_MATH_MODULE_INDICATOR.
1606         * m4/math_h.m4 (gl_MATH_H): Check also for logb declaration.
1607         (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOGB, HAVE_DECL_LOGB.
1608         * modules/math (Makefile.am): Substitute GNULIB_LOGB, HAVE_DECL_LOGB.
1609         * doc/posix-functions/logb.texi: Mention the Cygwin bug.
1610
1611 2010-03-07  Bruno Haible  <bruno@clisp.org>
1612
1613         Fix test-cond link error.
1614         * tests/test-cond.c: Include <stdio.h>.
1615
1616 2010-03-07  Bruno Haible  <bruno@clisp.org>
1617
1618         Fix test-dirent-safer link error.
1619         * modules/dirent-safer-tests (Makefile.am): Define
1620         test_dirent_safer_LDADD.
1621
1622 2010-03-07  Bruno Haible  <bruno@clisp.org>
1623
1624         * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
1625         among default module list.
1626
1627 2010-03-07  Bruno Haible  <bruno@clisp.org>
1628
1629         Fix link error on platforms with GNU libiconv.
1630         * modules/unistr/u8-strcoll-tests (Makefile): Define
1631         test_u8_strcoll_LDADD.
1632         * modules/unistr/u16-strcoll-tests (Makefile): Define
1633         test_u16_strcoll_LDADD.
1634         * modules/unistr/u32-strcoll-tests (Makefile): Define
1635         test_u32_strcoll_LDADD.
1636
1637 2010-03-07  Bruno Haible  <bruno@clisp.org>
1638
1639         Use POSIX declarations for socket functions.
1640         * lib/sys_socket.in.h (rpl_connect, rpl_accept, rpl_bind,
1641         rpl_getpeername, rpl_getsockname, rpl_recv, rpl_send, rpl_recvfrom,
1642         rpl_sendto): Change declaration to match POSIX.
1643         * lib/connect.c (rpl_connect): Likewise.
1644         * lib/accept.c (rpl_accept): Likewise.
1645         * lib/bind.c (rpl_bind): Likewise.
1646         * lib/getpeername.c (rpl_getpeername): Likewise.
1647         * lib/getsockname.c (rpl_getsockname): Likewise.
1648         * lib/recv.c (rpl_recv): Likewise.
1649         * lib/send.c (rpl_send): Likewise.
1650         * lib/recvfrom.c (rpl_recvfrom): Likewise.
1651         * lib/sendto.c (rpl_sendto): Likewise.
1652
1653 2010-03-06  Bruno Haible  <bruno@clisp.org>
1654
1655         Clarify access, euidaccess, faccessat.
1656         * doc/posix-functions/faccessat.texi: Mention security problem under
1657         "Other problems", not "Portability problems".
1658         * doc/posix-functions/access.texi: Likewise. Mention a related security
1659         problem.
1660         * doc/glibc-functions/euidaccess.texi: Mention security problems.
1661         * lib/euidaccess.c: Add comments about platforms.
1662         * lib/unistd.in.h (access, euidaccess): Add warnings.
1663
1664 2010-03-07  Bruno Haible  <bruno@clisp.org>
1665
1666         Ensure posix_spawnattr_{get,set}sched{policy,param} are defined.
1667         * lib/spawn.in.h (POSIX_SPAWN_SETSCHEDPARAM): Define fallback.
1668         (POSIX_SPAWN_SETSCHEDULER): Likewise.
1669         (POSIX_SPAWN_USEVFORK): Define in a way that works when
1670         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
1671         (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy): Also
1672         declare when POSIX_SPAWN_SETSCHEDULER is zero.
1673         (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam): Also
1674         declare when POSIX_SPAWN_SETSCHEDPARAM is zero.
1675         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Test whether
1676         POSIX_SPAWN_SETSCHEDULER or POSIX_SPAWN_SETSCHEDPARAM are zero.
1677         * modules/posix_spawnattr_getschedparam (configure.ac): Enable the
1678         replacement also when POSIX_SPAWN_SETSCHEDPARAM is zero.
1679         * modules/posix_spawnattr_setschedparam (configure.ac): Likewise.
1680         * modules/posix_spawnattr_getschedpolicy (configure.ac): Enable the
1681         replacement also when POSIX_SPAWN_SETSCHEDULER is zero.
1682         * modules/posix_spawnattr_setschedpolicy (configure.ac): Likewise.
1683         * lib/spawnattr_getschedparam.c (posix_spawnattr_getschedparam): Do
1684         nothing if POSIX_SPAWN_SETSCHEDPARAM is zero.
1685         * lib/spawnattr_setschedparam.c (posix_spawnattr_setschedparam):
1686         Likewise.
1687         * lib/spawnattr_getschedpolicy.c (posix_spawnattr_getschedpolicy): Do
1688         nothing if POSIX_SPAWN_SETSCHEDULER is zero.
1689         * lib/spawnattr_setschedpolicy.c (posix_spawnattr_setschedpolicy):
1690         Likewise.
1691         * tests/test-spawn.c (main): Make it work when
1692         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
1693
1694 2010-03-07  Bruno Haible  <bruno@clisp.org>
1695
1696         Fix incorrect Makefile.am generation in German locale.
1697         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1698         Execute sed command with character range in C locale.
1699
1700 2010-03-06  Bruno Haible  <bruno@clisp.org>
1701
1702         Tests for module 'iconv-h'.
1703         * modules/iconv-h-tests: New file.
1704         * tests/test-iconv-h.c: New file.
1705
1706         New module 'iconv-h'.
1707         * modules/iconv-h: New file.
1708         * modules/iconv_open (Files): Remove lib/iconv.in.h, m4/iconv_h.m4.
1709         (Depends-on): Add iconv-h. Remove include_next, arg-nonnull.
1710         (configure.ac): Remove gl_ICONV_H.
1711         (Makefile.am): Remove rule for iconv.h.
1712
1713 2010-03-06  Bruno Haible  <bruno@clisp.org>
1714
1715         More consistent naming of *.m4 files.
1716         * m4/wctype_h.m4: Renamed from m4/wctype.m4.
1717         * modules/wctype (Files): Update.
1718
1719         More consistent naming of *.m4 files.
1720         * m4/wchar_h.m4: Renamed from m4/wchar.m4.
1721         * modules/wchar (Files): Update.
1722
1723 2010-03-06  Jim Meyering  <meyering@redhat.com>
1724
1725         euidaccess: relax license to LGPLv2+
1726         * modules/euidaccess (License): Relax to LGPLv2+.
1727
1728 2010-03-06  Bruno Haible  <bruno@clisp.org>
1729
1730         Prefer lib_SOURCES over unconditional AC_LIBOBJ.
1731         * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation.
1732         (Makefile.am): Augment lib_SOURCES instead.
1733
1734 2010-03-04  Jim Meyering  <meyering@redhat.com>
1735
1736         utime: remove obsolete module
1737         This module, like autoconf's AC_FUNC_UTIME_NULL macro, has been
1738         unnecessary for years, and has been marked as obsolete for 10 months.
1739         * modules/utime: Remove file.
1740         * lib/utime.c: Remove file.
1741         * m4/utime.m4: Remove file.
1742         * m4/utimes-null.m4: Remove file.
1743         * doc/posix-functions/utime.texi (utime): Remove reference to
1744         the module.  Move the sole "fixed by gnulib" item into the
1745         "problems not fixed by Gnulib" list.
1746         * MODULES.html.sh (func_all_modules): Remove reference to "utime".
1747
1748 2010-03-05  Simon Josefsson  <simon@josefsson.org>
1749
1750         * modules/exit (License): Relax license to LGPLv2+.
1751         (Status): Mark as obsolete.
1752         * NEWS: Mention deprecated 'exit' module.
1753         * doc/posix-functions/exit.texi: Recommend 'stdlib' module instead
1754         of now obsolete 'exit'.
1755
1756 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1757
1758         fts-lgpl: remove unused module
1759         * modules/fts-lgpl: Remove.
1760         * MODULES.html.sh (func_all_modules): Adjust.
1761         * check-module (find_included_lib_files): Adjust.
1762         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove.
1763
1764 2010-03-02  Ben Walton  <bwalton@artsci.utoronto.ca>  (tiny change)
1765
1766         copy-acl: enhance Solaris ACL error handling
1767         * lib/copy-acl.c (qcopy_acl): Also ignore EOPNOTSUPP.
1768         * lib/set-mode-acl.c (qset_acl): Likewise.
1769
1770 2010-03-02  Bruno Haible  <bruno@clisp.org>
1771
1772         spawn: Don't override the system defined values on FreeBSD 8.
1773         * lib/spawn.in.h (POSIX_SPAWN_RESETIDS, POSIX_SPAWN_SETPGROUP,
1774         POSIX_SPAWN_SETSIGDEF, POSIX_SPAWN_SETSIGMASK,
1775         POSIX_SPAWN_SETSCHEDPARAM, POSIX_SPAWN_SETSCHEDULER): Don't redefine
1776         if HAVE_POSIX_SPAWN is 1.
1777         Reported by Johan van Selst <johans@stack.nl> via Eric Blake.
1778
1779 2010-03-01  Bruno Haible  <bruno@clisp.org>
1780
1781         * doc/gnulib-tool.texi (Initial import): Clarify the requirements
1782         regarding Automake.
1783
1784 2010-02-25  Bruno Haible  <bruno@clisp.org>
1785
1786         Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
1787         * gnulib-tool: Define 'echo' as a function only before the ksh alias
1788         setting, not afterwards.
1789         Reported by Ben Walton <bwalton@artsci.utoronto.ca>.
1790
1791 2010-02-24  Eric Blake  <eblake@redhat.com>
1792
1793         bootstrap, git-version-gen: use timestamp
1794         * build-aux/git-version-gen (scriptversion): Force UTC.
1795         * build-aux/bootstrap (scriptversion): New variable.
1796
1797         bootstrap: allow older git
1798         * build-aux/bootstrap (GNULIB_SRCDIR): Add fallback if git is
1799         older than 1.6.4.  Requested by the libvirt project.
1800
1801 2010-02-23  Eric Blake  <eblake@redhat.com>
1802
1803         warn-on-use: work with old autoconf
1804         * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Accomodate older
1805         AS_VAR semantics of autoconf 2.60.
1806         Reported by Bruno Haible.
1807
1808         bootstrap: improve some comments
1809         * build-aux/bootstrap: Drop unneeded emacs hint.  Add some
1810         clarification comments.
1811
1812         gettimeofday: provide correct function
1813         * lib/gettimeofday.c (gettimeofday): Provide rpl_gettimeofday only
1814         when replacement is declared, otherwise provide gettimeofday.
1815         Reported by Michael Goffioul.
1816
1817 2010-02-23  Jim Meyering  <meyering@redhat.com>
1818
1819         lib-ignore: relax license to "unlimited", not LGPLv2+
1820         * modules/lib-ignore (License): Relax to "unlimited".
1821
1822 2010-02-23  Jim Meyering  <meyering@redhat.com>
1823
1824         lib-ignore: relax license to LGPLv2+
1825         * modules/lib-ignore (License): Relax to LGPLv2+.
1826
1827 2010-02-22  Eric Blake  <eblake@redhat.com>
1828
1829         lseek: avoid bash 3.2 broken pipe bug
1830         * m4/lseek.m4 (gl_FUNC_LSEEK): Drain pipe, to avoid spurious
1831         warning from bash 3.2.
1832         Reported by Ben Pfaff, with analysis from Bruno Haible.
1833
1834         bootstrap: support non-FSF copyright holder
1835         * build-aux/bootstrap (COPYRIGHT_HOLDER, with_gettext): Allow
1836         bootstrap.conf override of COPYRIGHT_HOLDER.
1837         (MSGID_BUGS_ADDRESS): Allow URL rather than email.
1838
1839         bootstrap: interoperate with gettext 0.14.1
1840         * build-aux/bootstrap (slurp): Fix typo when using older gettext.
1841
1842         bootstrap: allow for alternate submodule location
1843         * build-aux/bootstrap (gnulib_path): New variable; use instead of
1844         hardcoding submodule location.
1845         (gnulib_mk): Allow direct use of Makefile.am.
1846
1847         bootstrap: use GNULIB_SRCDIR to reduce disk usage
1848         * build-aux/bootstrap (GNULIB_SRCDIR): If set, use as a reference,
1849         rather than reconfiguring where the submodule points.
1850
1851         gettimeofday: restore support for platforms that lack function
1852         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Also compile
1853         replacement if function is missing.
1854         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_DEFAULTS): New witness.
1855         * modules/sys_time (Makefile.am): Substitute it.
1856         * lib/sys_time.in.h (gettimeofday): Check it.
1857         Reported by Michael Goffioul.
1858
1859 2010-02-21  Bruno Haible  <bruno@clisp.org>
1860
1861         * lib/stdio.in.h (obstack_printf): Fix typo.
1862
1863 2010-02-21  Jose E. Marchesi  <jemarch@gnu.org>
1864
1865         vc-list-files: use bzr ls's -R option
1866         * build-aux/vc-list-files: Invoke bazaar to generate a recursive
1867         list of versioned files based on 'dir' (usage of -R in 'bzr ls').
1868
1869 2010-02-21  Jim Meyering  <meyering@redhat.com>
1870
1871         init.sh: fix EXEEXT shims to work also for names like test-prog
1872         * tests/init.sh: Re-exec a better shell, when needed.
1873         If the current shell lacks support for posix $(...), an init.sh-using
1874         test will now try to find a shell that supports that.  If EXEEXT is
1875         nonempty, we also require support for hyphen-in-alias-name and shell
1876         substitutions like ${var#glob}.  Failure to find such a shell results
1877         in a skipped test.
1878
1879 2010-02-21  Bruno Haible  <bruno@clisp.org>
1880
1881         Really work around around "broken pipe" error message from bash 3.2.
1882         * gnulib-tool (func_reset_sigpipe): Remove function.
1883         (echo): In bash 3.2, define to a function that uses printf.
1884         Analyzed by Ralf Wildenhues, Chet Ramey, Ben Pfaff.
1885
1886 2010-02-20  Bruno Haible  <bruno@clisp.org>
1887
1888         Restore support for automake 1.9.6 with autoconf 2.61.
1889         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Ensure MKDIR_P is AC_SUBSTed.
1890         Reported by James Youngman <jay@gnu.org>.
1891
1892 2010-02-20  Bruno Haible  <bruno@clisp.org>
1893
1894         Improve *printf warning condition.
1895         * lib/stdio.in.h (fprintf, printf, vfprintf, vprintf): Emit warning
1896         also if GNULIB_POSIXCHECK is defined, the *-posix module is not used,
1897         and the function is overridden due to SIGPIPE emulation.
1898
1899 2010-02-20  Bruno Haible  <bruno@clisp.org>
1900
1901         * lib/stdio.in.h: Tweak comments.
1902
1903 2010-02-19  Bruno Haible  <bruno@clisp.org>
1904
1905         Make it easier to find modules. New gnulib-tool option '--find'.
1906         * gnulib-tool: New option --find.
1907         (func_usage): Document it.
1908         (func_sanitize_modulelist): New function, extracted from
1909         func_all_modules.
1910         (func_all_modules): Invoke it.
1911         * doc/gnulib-tool.texi (Which modules?): New node.
1912
1913 2010-02-18  Markus Duft <mduft@gentoo.org>  (tiny change)
1914
1915         * lib/sys_select.in.h: Provide select replacement even if
1916         sys/select.h exists on a system, for Interix.
1917
1918 2010-02-18  Jim Meyering  <meyering@redhat.com>
1919
1920         init.sh: don't use $(...) just yet
1921         * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...),
1922         to accommodate e.g., Solaris' /bin/sh.
1923
1924 2010-02-17  Bruno Haible  <bruno@clisp.org>
1925
1926         * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem.
1927         Reported by Ludovic Courtès <ludo@gnu.org>.
1928
1929 2010-02-16  Simon Josefsson  <simon@josefsson.org>
1930
1931         * modules/userspec-tests (test_userspec_LDADD): Add variable, for
1932         linking with -lintl.
1933
1934 2010-02-17  Simon Josefsson  <simon@josefsson.org>
1935
1936         * lib/netdb.in.h (AI_V4MAPPED, AI_ALL, AI_ADDRCONFIG): Define to 0
1937         if not provided by the system's netdb.h.  Reported by
1938         ludo@gnu.org (Ludovic Courtès).
1939
1940 2010-02-15  Jim Meyering  <meyering@redhat.com>
1941
1942         init.sh: improve portability and efficiency
1943         * tests/init.sh (find_exe_basenames_): Remove unnecessary use of
1944         "dummy" in a for loop.
1945         Use '!', not '^' to select the complement of a character set used
1946         in a "case" statement.
1947         Use shell variable manipulation, a la ${...%.exe}, rather than sed.
1948         Suggestions from Eric Blake.
1949
1950         init.sh: automatically accommodate programs with the .exe suffix
1951         Automatically arrange for an invocation of "prog" to execute the
1952         program named "prog$EXEEXT" (usually prog.exe).  Thus, all invocations
1953         may use the simpler "prog", yet still work when built on a system
1954         that requires specifying the added suffix.
1955         Do this by constructing a function named "prog" that invokes
1956         "prog.exe" for each .exe file in selected directories.
1957         * tests/init.sh (find_exe_basenames_): New function.
1958         (create_exe_shim_functions_): New function.
1959         (path_prepend_): Use it.
1960
1961         maint.mk: mark syntax-check sc_*.m rules as .PHONY
1962         * top/maint.mk ($(syntax-check-rules)): Add .PHONY, so that
1963         "make -t syntax-check" doesn't create a ton of sc_*.m files.
1964
1965 2010-02-14  Jim Meyering  <meyering@redhat.com>
1966
1967         maint.mk: prohibit inclusion of "hash-pjw.h" without_use
1968         * top/maint.mk (sc_prohibit_hash_without_use): Re-add "@".
1969         (sc_prohibit_hash_pjw_without_use): New rule.
1970
1971         maint.mk: allow the default upload destination dir to be overridden
1972         * top/maint.mk (upload_dest_dir_): Define with a default that
1973         preserves the status quo.
1974         (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
1975         Reported by Peter Simons.
1976
1977         maint.mk: prohibit inclusion of "hash.h" without_use
1978         * top/maint.mk (sc_prohibit_hash_without_use): New rule.
1979
1980 2010-02-10  Jim Meyering  <meyering@redhat.com>
1981
1982         maint.mk: prohibit inclusion of "ignore-value.h" without_use
1983         * top/maint.mk (sc_prohibit_ignore_value_without_use): New rule.
1984
1985 2010-02-09  Eric Blake  <ebb9@byu.net>
1986         and Bruno Haible  <bruno@clisp.org>
1987
1988         obstack-printf-posix: ensure declaration
1989         * m4/obstack-printf.m4 (gl_DECL_OBSTACK_PRINTF): New macro,
1990         extracted from gl_FUNC_OBSTACK_PRINTF.
1991         (gl_FUNC_OBSTACK_PRINTF): Invoke it.
1992         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
1993         Likewise.
1994         * lib/stdio.in.h (obstack_printf, obstack_vprintf): Declare also
1995         if GNULIB_OBSTACK_PRINTF_POSIX is 1 and GNULIB_OBSTACK_PRINTF is
1996         0.
1997
1998 2010-02-08  Bruno Haible  <bruno@clisp.org>
1999
2000         gnulib-tool: Fix typo in 2010-02-07 commit.
2001         * gnulib-tool (func_get_dependencies): Fix typo in last commit.
2002         Reported by Eric Blake.
2003
2004 2010-02-07  Bruno Haible  <bruno@clisp.org>
2005
2006         gnulib-tool: Fix up caching patches.
2007         * gnulib-tool: New options --cache-modules, --no-cache-modules. Remove
2008         option --no-cache. Use associative arrays when supported by the shell.
2009         (sed_comments): New variable.
2010         (modcache): Renamed from do_cache.
2011         (sed_extract_field_header): Renamed from sed_extract_cache_prog. Don't
2012         abbreviate unnecessarily.
2013         (have_associative): New variable.
2014         (func_cache_var): Define correctly for bash 1.x. Define in an optimized
2015         way also for ksh and zsh.
2016         (func_init_sed_convert_to_cache_statements): New function, extracted
2017         from func_cache_lookup_module. Add support for associative arrays.
2018         Don't set the c_MODULE_cached variable here. Ignore all lines before
2019         the first field header. Remove only the final newline, not all trailing
2020         newlines. Support empty fields correctly. Limit the use of 'eval' to
2021         assignments.
2022         (func_get_description, func_get_status, func_get_notice,
2023         func_get_applicability, func_get_filelist, func_get_dependencies,
2024         func_get_autoconf_early_snippet, func_get_autoconf_snippet,
2025         func_get_automake_snippet, func_get_include_directive,
2026         func_get_link_directive, func_get_license, func_get_maintainer):
2027         Update documentation. List the unoptimized code first. Add support for
2028         associative arrays. Limit the use of 'eval' to assignments.
2029         (func_get_applicability): Undo stylistic pessimisations.
2030         (func_get_automake_snippet, func_get_include_directive): Reduce code
2031         duplication.
2032         (func_modules_transitive_closure, func_modules_add_dummy,
2033         func_modules_notice, func_modules_to_filelist, func_add_file,
2034         func_update_file, func_emit_lib_Makefile_am, func_emit_po_Makevars,
2035         func_emit_po_POTFILES_in, func_emit_tests_Makefile_am, func_import,
2036         func_create_testdir, func_create_megatestdir): Update documentation.
2037
2038 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2039
2040         * gnulib-tool (func_cache_lookup_module): Store the module name
2041         belonging to the cache variable; error out if two different
2042         module names map to the same cache variable name.
2043
2044 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2045
2046         gnulib-tool: Make caching optional.
2047         * gnulib-tool: Accept option --no-cache, turning off $do_cache.
2048         Update matching short versions of --no-changelog.
2049         (func_usage): Update.
2050         (sed_extract_cache_prog): Renamed from ...
2051         (sed_extract_prog): ... this; revert to old extraction script.
2052         (func_get_description, func_get_status)
2053         (func_get_notice, func_get_applicability, func_get_filelist)
2054         (func_get_dependencies, func_get_autoconf_early_snippet)
2055         (func_get_autoconf_snippet, func_get_automake_snippet)
2056         (func_get_include_directive, func_get_link_directive)
2057         (func_get_license, func_get_maintainer): If $do_cache is false,
2058         use old, non-caching extraction scripts.
2059         Suggestion by Bruno Haible.
2060
2061 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2062
2063         gnulib-tool: cache module metainformation.
2064         * gnulib-tool (sed_extract_prog): Match newline before each
2065         header, and rewrite header to a shell variable suffix.
2066         (func_cache_var, func_cache_lookup_module): New functions,
2067         to turn a module name into a cache variable prefix, and to
2068         look up and cache module metainformation.
2069         (func_get_description, func_get_status)
2070         (func_get_notice, func_get_applicability, func_get_filelist)
2071         (func_get_dependencies, func_get_autoconf_early_snippet)
2072         (func_get_autoconf_snippet, func_get_automake_snippet)
2073         (func_get_include_directive, func_get_link_directive)
2074         (func_get_license, func_get_maintainer): Use
2075         func_cache_lookup_module.
2076
2077 2010-02-07  Bruno Haible  <bruno@clisp.org>
2078
2079         fnctl: Fix missing dependency.
2080         * modules/fcntl (Depends-on): Add getdtablesize.
2081         Reported by John W. Eaton <jwe@gnu.org>.
2082
2083 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2084
2085         Argp: fix recognition of short alias options.
2086
2087         * lib/argp-parse.c (convert_options): Fix improper use of
2088         `|' between character values.
2089         * tests/test-argp.c (group1_option): New alias option
2090         --read (-r).
2091         (group1_parser): Special handling for 'r'.
2092         (test15): New test case.
2093         (test_fun): Add test15.
2094         * tests/test-argp-2.sh: Update expected --help and --usage
2095         outputs.
2096
2097 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2098
2099         * tests/test-argp.c: Fix indentation.
2100
2101 2010-02-04  Eric Blake  <ebb9@byu.net>
2102
2103         gettimeofday: expose type of second argument
2104         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Do better detection
2105         of glibc extension signature, and define GETTIMEOFDAY_TIMEZONE.
2106         * tests/test-gettimeofday.c: Use it to silence warning.
2107         * doc/posix-functions/gettimeofday.texi (gettimeofday): Document
2108         the issue.
2109
2110 2010-02-03  Jim Meyering  <meyering@redhat.com>
2111
2112         regcomp.c: avoid the sole warning from gcc's -Wtype-limits
2113         * lib/regcomp.c (TYPE_SIGNED): Define.
2114         (parse_dup_op): Use it to avoid the sole warning from -Wtype-limits.
2115
2116         regcomp.c: avoid a new -Wshadow warning
2117         * lib/regcomp.c (create_initial_state): Do not shadow local "err".
2118
2119 2010-02-01  Jim Meyering  <meyering@redhat.com>
2120
2121         removing useless parentheses in cpp #define directives
2122         For motivation, see commit c0221df4, "define STREQ(a,b)
2123         consistently, removing useless parentheses"
2124         * lib/memcmp.c (CMP_LT_OR_GT): Remove useless parentheses.
2125         * lib/mountlist.c (MNT_IGNORE): Likewise.
2126         * lib/trim.h (trim, trim_trailing, trim_leading): Likewise.
2127
2128 2010-02-01  Eric Blake  <ebb9@byu.net>
2129
2130         sys_time: use link-warning
2131         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Split defaults...
2132         (gl_HEADER_SYS_TIME_H_DEFAULTS): ...into new macro.
2133         (gl_SYS_TIME_MODULE_INDICATOR): New macro.
2134         * modules/sys_time (Depends-on): Add warn-on-use.
2135         (Makefile.am): Always build replacement.
2136         (configure.ac): Update substitutions.
2137         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY)
2138         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Include defaults, and no longer
2139         bother with SYS_TIME_H.
2140         * modules/gettimeofday (configure.ac): Declare indicator.
2141         * lib/sys_time.in.h (gettimeofday): Warn if gnulib module is not
2142         in use.
2143
2144         closein-tests: silence compiler warning
2145         * tests/test-closein.c (main): Ignore fread result.
2146         * modules/closein-tests (Depends-on): Add ignore-value.
2147
2148         tests: silence warning about system return
2149         * tests/test-areadlink-with-size.c (main): Ignore system result.
2150         * tests/test-areadlink.c (main): Likewise.
2151         * tests/test-areadlinkat-with-size.c (main): Likewise.
2152         * tests/test-areadlinkat.c (main): Likewise.
2153         * tests/test-canonicalize-lgpl.c (main): Likewise.
2154         * tests/test-canonicalize.c (main): Likewise.
2155         * tests/test-chown.c (main): Likewise.
2156         * tests/test-fchownat.c (main): Likewise.
2157         * tests/test-fdutimensat.c (main): Likewise.
2158         * tests/test-fstatat.c (main): Likewise.
2159         * tests/test-futimens.c (main): Likewise.
2160         * tests/test-lchown.c (main): Likewise.
2161         * tests/test-link.c (main): Likewise.
2162         * tests/test-linkat.c (main): Likewise.
2163         * tests/test-lstat.c (main): Likewise.
2164         * tests/test-mkdir.c (main): Likewise.
2165         * tests/test-mkdirat.c (main): Likewise.
2166         * tests/test-mkfifo.c (main): Likewise.
2167         * tests/test-mkfifoat.c (main): Likewise.
2168         * tests/test-mknod.c (main): Likewise.
2169         * tests/test-readlink.c (main): Likewise.
2170         * tests/test-remove.c (main): Likewise.
2171         * tests/test-rename.c (main): Likewise.
2172         * tests/test-renameat.c (main): Likewise.
2173         * tests/test-rmdir.c (main): Likewise.
2174         * tests/test-symlink.c (main): Likewise.
2175         * tests/test-symlinkat.c (main): Likewise.
2176         * tests/test-unlink.c (main): Likewise.
2177         * tests/test-unlinkat.c (main): Likewise.
2178         * tests/test-utimens.c (main): Likewise.
2179         * tests/test-utimensat.c (main): Likewise.
2180         * modules/areadlink-tests (Depends-on): Add ignore-value.
2181         * modules/areadlink-with-size-tests (Depends-on): Likewise.
2182         * modules/areadlinkat-tests (Depends-on): Likewise.
2183         * modules/areadlinkat-with-size-tests (Depends-on): Likewise.
2184         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
2185         * modules/canonicalize-tests (Depends-on): Likewise.
2186         * modules/chown-tests (Depends-on): Likewise.
2187         * modules/fdutimensat-tests (Depends-on): Likewise.
2188         * modules/futimens-tests (Depends-on): Likewise.
2189         * modules/lchown-tests (Depends-on): Likewise.
2190         * modules/link-tests (Depends-on): Likewise.
2191         * modules/linkat-tests (Depends-on): Likewise.
2192         * modules/lstat-tests (Depends-on): Likewise.
2193         * modules/mkdir-tests (Depends-on): Likewise.
2194         * modules/mkfifo-tests (Depends-on): Likewise.
2195         * modules/mkfifoat-tests (Depends-on): Likewise.
2196         * modules/mknod-tests (Depends-on): Likewise.
2197         * modules/openat-tests (Depends-on): Likewise.
2198         * modules/readlink-tests (Depends-on): Likewise.
2199         * modules/remove-tests (Depends-on): Likewise.
2200         * modules/rename-tests (Depends-on): Likewise.
2201         * modules/renameat-tests (Depends-on): Likewise.
2202         * modules/rmdir-tests (Depends-on): Likewise.
2203         * modules/symlink-tests (Depends-on): Likewise.
2204         * modules/symlinkat-tests (Depends-on): Likewise.
2205         * modules/unlink-tests (Depends-on): Likewise.
2206         * modules/utimens-tests (Depends-on): Likewise.
2207         * modules/utimensat-tests (Depends-on): Likewise.
2208
2209 2010-01-31  Bruno Haible  <bruno@clisp.org>
2210
2211         Perform the same test for many <math.h> functions.
2212         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC,
2213         gl_COMMON_DOUBLE_MATHFUNC_TEST): New macros.
2214         * m4/sqrt.m4 (gl_FUNC_SQRT): Invoke gl_COMMON_DOUBLE_MATHFUNC instead
2215         of gl_MATHFUNC.
2216         * modules/acos (configure.ac): Likewise.
2217         * modules/asin (configure.ac): Likewise.
2218         * modules/atan (configure.ac): Likewise.
2219         * modules/atan2 (configure.ac): Likewise.
2220         * modules/cbrt (configure.ac): Likewise.
2221         * modules/copysign (configure.ac): Likewise.
2222         * modules/cos (configure.ac): Likewise.
2223         * modules/cosh (configure.ac): Likewise.
2224         * modules/erf (configure.ac): Likewise.
2225         * modules/erfc (configure.ac): Likewise.
2226         * modules/exp (configure.ac): Likewise.
2227         * modules/fmod (configure.ac): Likewise.
2228         * modules/hypot (configure.ac): Likewise.
2229         * modules/j0 (configure.ac): Likewise.
2230         * modules/j1 (configure.ac): Likewise.
2231         * modules/jn (configure.ac): Likewise.
2232         * modules/lgamma (configure.ac): Likewise.
2233         * modules/log (configure.ac): Likewise.
2234         * modules/log10 (configure.ac): Likewise.
2235         * modules/log1p (configure.ac): Likewise.
2236         * modules/pow (configure.ac): Likewise.
2237         * modules/remainder (configure.ac): Likewise.
2238         * modules/sin (configure.ac): Likewise.
2239         * modules/sinh (configure.ac): Likewise.
2240         * modules/tan (configure.ac): Likewise.
2241         * modules/tanh (configure.ac): Likewise.
2242         * modules/y0 (configure.ac): Likewise.
2243         * modules/y1 (configure.ac): Likewise.
2244         * modules/yn (configure.ac): Likewise.
2245         Suggested by Paolo Bonzini.
2246
2247 2010-01-31  Bruno Haible  <bruno@clisp.org>
2248
2249         * m4/getline.m4 (gl_FUNC_GETLINE): Add comment about REPLACE_GETLINE.
2250
2251 2010-01-31  Bruno Haible  <bruno@clisp.org>
2252
2253         Work around getdelim() bug on FreeBSD 8.0.
2254         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Test whether getdelim supports an
2255         initially NULL line. Set REPLACE_GETDELIM if getdelim exists but does
2256         not work.
2257         * lib/stdio.in.h (getdelim): Define as an alias if REPLACE_GETDELIM
2258         is 1.
2259         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize REPLACE_GETDELIM.
2260         * modules/stdio (Makefile.am): Also substitute REPLACE_GETDELIM.
2261         * tests/test-getdelim.c (main): Also test result for a NULL buffer and
2262         a non-zero size.
2263         * doc/posix-functions/getdelim.texi: Mention the FreeBSD bug.
2264
2265 2010-01-31  Bruno Haible  <bruno@clisp.org>
2266
2267         Work around getline() bug on FreeBSD 8.0.
2268         * m4/getline.m4 (gl_FUNC_GETLINE): Also test result for a NULL buffer
2269         and a non-zero size.
2270         * tests/test-getline.c (main): Likewise.
2271         * doc/posix-functions/getline.texi: Mention the FreeBSD bug.
2272         Reported by Dennis <noordsij@cs.helsinki.fi> via Eric Blake.
2273
2274 2010-01-28  Eric Blake  <ebb9@byu.net>
2275
2276         regex: fix build failure
2277         * lib/regex_internal.h (__GNUC_PREREQ): Define for non-glibc
2278         platforms.
2279
2280 2010-01-28  Jim Meyering  <meyering@redhat.com>
2281
2282         regex: do not ignore memory allocation failure
2283         * lib/regex_internal.c (create_cd_newstate): Detect
2284         re_node_set_init_copy failure.   Extracted from glibc commit
2285         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2286
2287         regex: sync more white-space changes from libc
2288         * lib/regex_internal.c: White-space only changes.
2289         * lib/regexec.c: Likewise.
2290
2291         regex: add many uses of __attribute_warn_unused_result__
2292         * lib/regex_internal.c: Use __attribute_warn_unused_result__.
2293         * lib/regexec.c: Likewise.
2294         Extracted from a messy glibc commit.
2295
2296         regcomp.c: spelling and merge-artifact from glibc
2297         * lib/regcomp.c: Merge remainder of glibc's
2298         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2299
2300         regcomp.c: sync white-space changes from glibc
2301         * lib/regcomp.c: Merge to accommodate white space
2302         changes from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2303
2304         regcomp.c: do not ignore internal return values
2305         * lib/regcomp.c: Do not ignore internal return values.
2306         This is from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c,
2307         but without its white-space changes and spelling fixes.
2308
2309         regex_internal.h: define __attribute_warn_unused_result__
2310         * lib/regex_internal.h (__attribute_warn_unused_result__): Define.
2311
2312         maint: add a syntax-check rule to check for vulnerable Makefile.in
2313         * top/maint.mk (sc_vulnerable_makefile_CVE-2009-4029): New rule.
2314
2315 2010-01-27  Jim Meyering  <meyering@redhat.com>
2316
2317         ncftpput-ftp: clean up spaces
2318         * build-aux/ncftpput-ftp: Make Copyright line consistent.
2319         Remove trailing blanks.
2320
2321 2010-01-27  Simon Josefsson  <simon@josefsson.org>
2322
2323         * build-aux/git-version-gen: Fix copyright statement.
2324         * build-aux/gnupload: Likewise.
2325         * tests/test-arcfour.c: Likewise.
2326         * tests/test-arctwo.c: Likewise.
2327         * tests/test-count-one-bits.c: Likewise.
2328         * tests/test-crc.c: Likewise.
2329         * tests/test-des.c: Likewise.
2330         * tests/test-gc-arcfour.c: Likewise.
2331         * tests/test-gc-arctwo.c: Likewise.
2332         * tests/test-gc-des.c: Likewise.
2333         * tests/test-gc-hmac-md5.c: Likewise.
2334         * tests/test-gc-hmac-sha1.c: Likewise.
2335         * tests/test-gc-md2.c: Likewise.
2336         * tests/test-gc-md4.c: Likewise.
2337         * tests/test-gc-md5.c: Likewise.
2338         * tests/test-gc-pbkdf2-sha1.c: Likewise.
2339         * tests/test-gc-rijndael.c: Likewise.
2340         * tests/test-gc-sha1.c: Likewise.
2341         * tests/test-gc.c: Likewise.
2342         * tests/test-gethostname.c: Likewise.
2343         * tests/test-gettimeofday.c: Likewise.
2344         * tests/test-hash.c: Likewise.
2345         * tests/test-hmac-md5.c: Likewise.
2346         * tests/test-hmac-sha1.c: Likewise.
2347         * tests/test-md2.c: Likewise.
2348         * tests/test-md4.c: Likewise.
2349         * tests/test-md5.c: Likewise.
2350         * tests/test-memchr.c: Likewise.
2351         * tests/test-memchr2.c: Likewise.
2352         * tests/test-memcmp.c: Likewise.
2353         * tests/test-memmem.c: Likewise.
2354         * tests/test-memrchr.c: Likewise.
2355         * tests/test-rawmemchr.c: Likewise.
2356         * tests/test-read-file.c: Likewise.
2357         * tests/test-rijndael.c: Likewise.
2358         * tests/test-sockets.c: Likewise.
2359         * tests/test-strchrnul.c: Likewise.
2360         * tests/test-strstr.c: Likewise.
2361         * tests/test-strtod.c: Likewise.
2362         * build-aux/ncftpput-ftp: Likewise.
2363
2364 2010-01-26  Eric Blake  <ebb9@byu.net>
2365
2366         ignore-value: update recommended header name
2367         * modules/ignore-value (Include): Only use <> for headers that
2368         exist in glibc.
2369
2370 2010-01-26  Jim Meyering  <meyering@redhat.com>
2371
2372         test-userspec.c: avoid compiler warnings
2373         * tests/test-userspec.c (main): Avoid shadowing ("uid"),
2374         and "initialization discards qualifiers..." warnings.
2375         Put the first "uid" in its own scope, and make char* members "const".
2376
2377 2010-01-25  Bruno Haible  <bruno@clisp.org>
2378
2379         gnulib-tool: Make warning diagnostics consistent.
2380         * gnulib-tool (func_warning): New function.
2381         Use it everywhere where gnulib-tool produces output to stderr and it is
2382         not a fatal error.
2383
2384 2010-01-25  Bruno Haible  <bruno@clisp.org>
2385
2386         Fix test dependencies.
2387         * modules/xstrtol-tests (Depends-on): Add inttypes.
2388         * modules/xstrtoll-tests (Depends-on): Likewise. Remove xstrtoll.
2389
2390 2010-01-25 Pádraig Brady <P@draigBrady.com>
2391
2392         syntax-check: detect incorrect boolean macro values in config.h
2393         * modules/maintainer-makefile (configure.ac): Parameterize the location
2394         of config.h which will be available to makefiles as $(CONFIG_INCLUDE).
2395         The logic is from Eric Blake and the location indicated by Jim Meyering.
2396         Note the more natural CONFIG_HEADER name is prohibited by automake
2397         for backwards compatibility reasons.
2398         * top/maint.mk (sc_Wundef_boolean): New rule.
2399
2400 2010-01-25  Jim Meyering  <meyering@redhat.com>
2401
2402         bootstrap: detect MacOS 10.6's shasum, too
2403         * build-aux/bootstrap: Also recognize MacOS 10.6's shasum.
2404         Suggested by Thomas Treichl <Thomas.Treichl@gmx.net>.
2405
2406 2010-01-23  Jim Meyering  <meyering@redhat.com>
2407
2408         xstrtoll: new module
2409         * modules/xstrtoll: New file.
2410         * MODULES.html.sh (Numeric conversion functions): Add xstrtoll.
2411         * lib/xstrtol.h [HAVE_LONG_LONG_INT]: Declare xstrtoll and xstrtoull.
2412         * lib/xstrtoll.c, lib/xstrtoull.c: New files.
2413         ./configure fails if you use this module and lack "long long".
2414         * modules/xstrtoll-tests: New module.
2415         * tests/test-xstrtoll.c, tests/test-xstrtoull.c: New files.
2416         * tests/test-xstrtoll.sh: Like test-xstrtol.c, but use the
2417         new init.sh-based test framework.
2418
2419 2010-01-24  Bruno Haible  <bruno@clisp.org>
2420
2421         Tests for module 'yn'.
2422         * modules/yn-tests: New file.
2423         * tests/test-yn.c: New file.
2424
2425         Tests for module 'y1'.
2426         * modules/y1-tests: New file.
2427         * tests/test-y1.c: New file.
2428
2429         Tests for module 'y0'.
2430         * modules/y0-tests: New file.
2431         * tests/test-y0.c: New file.
2432
2433         Tests for module 'tanh'.
2434         * modules/tanh-tests: New file.
2435         * tests/test-tanh.c: New file.
2436
2437         Tests for module 'tan'.
2438         * modules/tan-tests: New file.
2439         * tests/test-tan.c: New file.
2440
2441         Tests for module 'sqrt'.
2442         * modules/sqrt-tests: New file.
2443         * tests/test-sqrt.c: New file.
2444
2445         Tests for module 'sinh'.
2446         * modules/sinh-tests: New file.
2447         * tests/test-sinh.c: New file.
2448
2449         Tests for module 'sin'.
2450         * modules/sin-tests: New file.
2451         * tests/test-sin.c: New file.
2452
2453         Tests for module 'rint'.
2454         * modules/rint-tests: New file.
2455         * tests/test-rint.c: New file.
2456
2457         Tests for module 'remainder'.
2458         * modules/remainder-tests: New file.
2459         * tests/test-remainder.c: New file.
2460
2461         Tests for module 'pow'.
2462         * modules/pow-tests: New file.
2463         * tests/test-pow.c: New file.
2464
2465         Tests for module 'nextafter'.
2466         * modules/nextafter-tests: New file.
2467         * tests/test-nextafter.c: New file.
2468
2469         Tests for module 'modf'.
2470         * modules/modf-tests: New file.
2471         * tests/test-modf.c: New file.
2472
2473         Tests for module 'logb'.
2474         * modules/logb-tests: New file.
2475         * tests/test-logb.c: New file.
2476
2477         Tests for module 'log1p'.
2478         * modules/log1p-tests: New file.
2479         * tests/test-log1p.c: New file.
2480
2481         Tests for module 'log10'.
2482         * modules/log10-tests: New file.
2483         * tests/test-log10.c: New file.
2484
2485         Tests for module 'log'.
2486         * modules/log-tests: New file.
2487         * tests/test-log.c: New file.
2488
2489         Tests for module 'lgamma'.
2490         * modules/lgamma-tests: New file.
2491         * tests/test-lgamma.c: New file.
2492
2493         Tests for module 'ldexp'.
2494         * modules/ldexp-tests: New file.
2495         * tests/test-ldexp.c: New file.
2496
2497         Tests for module 'jn'.
2498         * modules/jn-tests: New file.
2499         * tests/test-jn.c: New file.
2500
2501         Tests for module 'j1'.
2502         * modules/j1-tests: New file.
2503         * tests/test-j1.c: New file.
2504
2505         Tests for module 'j0'.
2506         * modules/j0-tests: New file.
2507         * tests/test-j0.c: New file.
2508
2509         Tests for module 'hypot'.
2510         * modules/hypot-tests: New file.
2511         * tests/test-hypot.c: New file.
2512
2513         Tests for module 'fmod'.
2514         * modules/fmod-tests: New file.
2515         * tests/test-fmod.c: New file.
2516
2517         Tests for module 'fabs'.
2518         * modules/fabs-tests: New file.
2519         * tests/test-fabs.c: New file.
2520
2521         Tests for module 'exp'.
2522         * modules/exp-tests: New file.
2523         * tests/test-exp.c: New file.
2524
2525         Tests for module 'erfc'.
2526         * modules/erfc-tests: New file.
2527         * tests/test-erfc.c: New file.
2528
2529         Tests for module 'erf'.
2530         * modules/erf-tests: New file.
2531         * tests/test-erf.c: New file.
2532
2533         Tests for module 'cosh'.
2534         * modules/cosh-tests: New file.
2535         * tests/test-cosh.c: New file.
2536
2537         Tests for module 'cos'.
2538         * modules/cos-tests: New file.
2539         * tests/test-cos.c: New file.
2540
2541         Tests for module 'copysign'.
2542         * modules/copysign-tests: New file.
2543         * tests/test-copysign.c: New file.
2544
2545         Tests for module 'cbrt'.
2546         * modules/cbrt-tests: New file.
2547         * tests/test-cbrt.c: New file.
2548
2549         Tests for module 'atan2'.
2550         * modules/atan2-tests: New file.
2551         * tests/test-atan2.c: New file.
2552
2553         Tests for module 'atan'.
2554         * modules/atan-tests: New file.
2555         * tests/test-atan.c: New file.
2556
2557         Tests for module 'asin'.
2558         * modules/asin-tests: New file.
2559         * tests/test-asin.c: New file.
2560
2561         Tests for module 'acos'.
2562         * modules/acos-tests: New file.
2563         * tests/test-acos.c: New file.
2564
2565 2010-01-24  Bruno Haible  <bruno@clisp.org>
2566
2567         Fix tests for common <math.h> functions.
2568         * m4/mathfunc.m4 (gl_MATHFUNC): Take two additional parameters. Use a
2569         code snippet that references the function pointer, rather than merely
2570         calling the function. Substitute the FUNC_LIBM variable.
2571         * m4/sqrt.m4 (gl_FUNC_SQRT): Update gl_MATHFUNC invocation.
2572         * modules/acos (configure.ac): Likewise.
2573         * modules/asin (configure.ac): Likewise.
2574         * modules/atan (configure.ac): Likewise.
2575         * modules/atan2 (configure.ac): Likewise.
2576         * modules/cbrt (configure.ac): Likewise.
2577         * modules/copysign (configure.ac): Likewise.
2578         * modules/cos (configure.ac): Likewise.
2579         * modules/cosh (configure.ac): Likewise.
2580         * modules/erf (configure.ac): Likewise.
2581         * modules/erfc (configure.ac): Likewise.
2582         * modules/exp (configure.ac): Likewise.
2583         * modules/fabs (configure.ac): Likewise.
2584         * modules/fmod (configure.ac): Likewise.
2585         * modules/hypot (configure.ac): Likewise.
2586         * modules/j0 (configure.ac): Likewise.
2587         * modules/j1 (configure.ac): Likewise.
2588         * modules/jn (configure.ac): Likewise.
2589         * modules/ldexp (configure.ac): Likewise.
2590         * modules/lgamma (configure.ac): Likewise.
2591         * modules/log (configure.ac): Likewise.
2592         * modules/log10 (configure.ac): Likewise.
2593         * modules/log1p (configure.ac): Likewise.
2594         * modules/logb (configure.ac): Likewise.
2595         * modules/modf (configure.ac): Likewise.
2596         * modules/nextafter (configure.ac): Likewise.
2597         * modules/pow (configure.ac): Likewise.
2598         * modules/remainder (configure.ac): Likewise.
2599         * modules/rint (configure.ac): Likewise.
2600         * modules/sin (configure.ac): Likewise.
2601         * modules/sinh (configure.ac): Likewise.
2602         * modules/tan (configure.ac): Likewise.
2603         * modules/tanh (configure.ac): Likewise.
2604         * modules/y0 (configure.ac): Likewise.
2605         * modules/y1 (configure.ac): Likewise.
2606         * modules/yn (configure.ac): Likewise.
2607
2608 2010-01-24  Bruno Haible  <bruno@clisp.org>
2609
2610         Tests: Defeat inlining of math functions by GCC >= 4.3.0.
2611         * tests/test-acosl.c (x): New variable.
2612         (main): Store argument in x and fetch it from x.
2613         * tests/test-asinl.c (x): New variable.
2614         (main): Store argument in x and fetch it from x.
2615         * tests/test-atanl.c (x): New variable.
2616         (main): Store argument in x and fetch it from x.
2617         * tests/test-cosl.c (x): New variable.
2618         (main): Store argument in x and fetch it from x.
2619         * tests/test-expl.c (x): New variable.
2620         (main): Store argument in x and fetch it from x.
2621         * tests/test-logl.c (x): New variable.
2622         (main): Store argument in x and fetch it from x.
2623         * tests/test-sinl.c (x): New variable.
2624         (main): Store argument in x and fetch it from x.
2625         * tests/test-sqrtl.c (x): New variable.
2626         (main): Store argument in x and fetch it from x.
2627         * tests/test-tanl.c (x): New variable.
2628         (main): Store argument in x and fetch it from x.
2629
2630 2010-01-24  Bruno Haible  <bruno@clisp.org>
2631
2632         Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
2633         * gnulib-tool (func_emit_tests_Makefile_am): Add EXEEXT and srcdir
2634         assignments to the initial TESTS_ENVIRONMENT.
2635         * doc/gnulib.texi (Unit test modules): Document it.
2636         * modules/acl-tests (Makefile.am): Drop EXEEXT assignment from
2637         TESTS_ENVIRONMENT.
2638         * modules/btowc-tests (Makefile.am): Likewise.
2639         * modules/c-stack-tests (Makefile.am): Likewise.
2640         * modules/c-strcase-tests (Makefile.am): Likewise.
2641         * modules/copy-file-tests (Makefile.am): Likewise.
2642         * modules/mbmemcasecmp-tests (Makefile.am): Likewise.
2643         * modules/mbmemcasecoll-tests (Makefile.am): Likewise.
2644         * modules/mbrtowc-tests (Makefile.am): Likewise.
2645         * modules/mbscasecmp-tests (Makefile.am): Likewise.
2646         * modules/mbscasestr-tests (Makefile.am): Likewise.
2647         * modules/mbschr-tests (Makefile.am): Likewise.
2648         * modules/mbscspn-tests (Makefile.am): Likewise.
2649         * modules/mbsinit-tests (Makefile.am): Likewise.
2650         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
2651         * modules/mbsnrtowcs-tests (Makefile.am): Likewise.
2652         * modules/mbspbrk-tests (Makefile.am): Likewise.
2653         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
2654         * modules/mbsrchr-tests (Makefile.am): Likewise.
2655         * modules/mbsrtowcs-tests (Makefile.am): Likewise.
2656         * modules/mbsspn-tests (Makefile.am): Likewise.
2657         * modules/mbsstr-tests (Makefile.am): Likewise.
2658         * modules/nl_langinfo-tests (Makefile.am): Likewise.
2659         * modules/unicase/locale-language-tests (Makefile.am): Likewise.
2660         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
2661         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
2662         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
2663         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
2664         * modules/uniwbrk/ulc-wordbreaks-tests (Makefile.am): Likewise.
2665         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
2666         * modules/wcrtomb-tests (Makefile.am): Likewise.
2667         * modules/wcsnrtombs-tests (Makefile.am): Likewise.
2668         * modules/wcsrtombs-tests (Makefile.am): Likewise.
2669         * modules/quotearg-tests (Makefile.am): Drop EXEEXT and srcdir
2670         assignments from TESTS_ENVIRONMENT.
2671         * modules/argp-tests (Makefile.am): Drop TESTS_ENVIRONMENT
2672         augmentation.
2673         * modules/argp-version-etc-tests (Makefile.am): Likewise.
2674         * modules/atexit-tests (Makefile.am): Likewise.
2675         * modules/binary-io-tests (Makefile.am): Likewise.
2676         * modules/closein-tests (Makefile.am): Likewise.
2677         * modules/dprintf-posix-tests (Makefile.am): Likewise.
2678         * modules/exclude-tests (Makefile.am): Likewise.
2679         * modules/fflush-tests (Makefile.am): Likewise.
2680         * modules/fpending-tests (Makefile.am): Likewise.
2681         * modules/fprintf-posix-tests (Makefile.am): Likewise.
2682         * modules/freadahead-tests (Makefile.am): Likewise.
2683         * modules/freadptr-tests (Makefile.am): Likewise.
2684         * modules/freadseek-tests (Makefile.am): Likewise.
2685         * modules/fseek-tests (Makefile.am): Likewise.
2686         * modules/fseeko-tests (Makefile.am): Likewise.
2687         * modules/ftell-tests (Makefile.am): Likewise.
2688         * modules/ftello-tests (Makefile.am): Likewise.
2689         * modules/idpriv-drop-tests (Makefile.am): Likewise.
2690         * modules/idpriv-droptemp-tests (Makefile.am): Likewise.
2691         * modules/lseek-tests (Makefile.am): Likewise.
2692         * modules/parse-duration-tests (Makefile.am): Likewise.
2693         * modules/perror-tests (Makefile.am): Likewise.
2694         * modules/pipe-filter-gi-tests (Makefile.am): Likewise.
2695         * modules/pipe-filter-ii-tests (Makefile.am): Likewise.
2696         * modules/pipe-tests (Makefile.am): Likewise.
2697         * modules/pread-tests (Makefile.am): Likewise.
2698         * modules/printf-posix-tests (Makefile.am): Likewise.
2699         * modules/select-tests (Makefile.am): Likewise.
2700         * modules/sigpipe-tests (Makefile.am): Likewise.
2701         * modules/tsearch-tests (Makefile.am): Likewise.
2702         * modules/unicase/ulc-casecmp-tests (Makefile.am): Likewise.
2703         * modules/unicase/ulc-casecoll-tests (Makefile.am): Likewise.
2704         * modules/uniname/uniname-tests (Makefile.am): Likewise.
2705         * modules/uniwidth/width-tests (Makefile.am): Likewise.
2706         * modules/vdprintf-posix-tests (Makefile.am): Likewise.
2707         * modules/version-etc-tests (Makefile.am): Likewise.
2708         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
2709         * modules/vprintf-posix-tests (Makefile.am): Likewise.
2710         * modules/xalloc-die-tests (Makefile.am): Likewise.
2711         * modules/xprintf-posix-tests (Makefile.am): Likewise.
2712         * modules/xstrtoimax-tests (Makefile.am): Likewise.
2713         * modules/xstrtol-tests (Makefile.am): Likewise.
2714         * modules/xstrtoumax-tests (Makefile.am): Likewise.
2715         * modules/yesno-tests (Makefile.am): Likewise.
2716         Suggested by Jim Meyering.
2717
2718 2010-01-24  Bruno Haible  <bruno@clisp.org>
2719
2720         More documentation.
2721         * doc/gnulib.texi (Writing modules): New chapter.
2722         (Miscellaneous Notes): Move sections "Comments" and "Header files" to
2723         the new chapter.
2724
2725 2010-01-24  Jim Meyering  <meyering@redhat.com>
2726
2727         maint.mk: do not prepend "./" after filtering
2728         * top/maint.mk (_prepend_srcdir_prefix): New variable
2729         (VC_LIST_EXCEPT): Use it to avoid prepending (post-filter)
2730         "./" when $(srcdir) is ".".
2731
2732         define STREQ(a,b) consistently, removing useless parentheses
2733         #define STREQ(a, b) (strcmp ((a), (b)) == 0) is over-parenthesized,
2734         since the only risk is that "a" or "b" contains an unparenthesized
2735         comma, but if either did that, STREQ would have 3 or more arguments.
2736         Hence, #define STREQ(a, b) (strcmp (a, b) == 0) is better.
2737         * lib/fts.c (STREQ): Remove unnecessary parentheses.
2738         * lib/hash-triple.c (STREQ): Likewise.
2739         * tests/test-argv-iter.c (STREQ): Use a and b, not s1 and s2.
2740         * lib/getugroups.c (STREQ): Likewise.
2741
2742 2010-01-23  Jim Meyering  <meyering@redhat.com>
2743
2744         maint.mk: fix syntax-check in a non-srcdir build directory
2745         * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash,
2746         introduced in my 2010-01-21 commit, a6da6c45.  Reported by Eric Blake.
2747
2748 2010-01-22  Jim Meyering  <meyering@redhat.com>
2749
2750         userspec: add unit tests
2751         * tests/test-userspec.c: New file.
2752         * modules/userspec-tests: Likewise.
2753
2754 2010-01-21  Jim Meyering  <meyering@redhat.com>
2755
2756         maint.mk: handle source file names containing "." robustly
2757         * top/maint.mk (_dot_escaped_srcdir): Define.
2758         (VC_LIST): Use it in LHS of sed substitution.
2759
2760 2010-01-21  Jiri Denemark  <jdenemar@redhat.com>
2761
2762         maint.mk: fix VC_LIST_EXCEPT for srcdir != builddir
2763         * top/maint.mk (VC_LIST_EXCEPT): Preprocess the output of
2764         $(VC_LIST) to remove a prefix of '$(srcdir)/', so that it works
2765         from a non-srcdir build.
2766
2767 2010-01-20  Eric Blake  <ebb9@byu.net>
2768
2769         warn-on-use: use instead of link-warning
2770         * modules/stdio (Depends-on, Makefile.am): Drop link-warning.
2771         * modules/unistd (Depends-on, Makefile.am): Likewise.
2772         * modules/arpa_inet (Depends-on): Replace link-warning with
2773         warn-on-use.
2774         (Makefile.am): Update rules accordingly.
2775         * modules/ctype (Depends-on, Makefile.am): Likewise.
2776         * modules/dirent (Depends-on, Makefile.am): Likewise.
2777         * modules/fcntl-h (Depends-on, Makefile.am): Likewise.
2778         * modules/inttypes (Depends-on, Makefile.am): Likewise.
2779         * modules/langinfo (Depends-on, Makefile.am): Likewise.
2780         * modules/locale (Depends-on, Makefile.am): Likewise.
2781         * modules/math (Depends-on, Makefile.am): Likewise.
2782         * modules/search (Depends-on, Makefile.am): Likewise.
2783         * modules/signal (Depends-on, Makefile.am): Likewise.
2784         * modules/spawn (Depends-on, Makefile.am): Likewise.
2785         * modules/stdlib (Depends-on, Makefile.am): Likewise.
2786         * modules/string (Depends-on, Makefile.am): Likewise.
2787         * modules/strings (Depends-on, Makefile.am): Likewise.
2788         * modules/sys_file (Depends-on, Makefile.am): Likewise.
2789         * modules/sys_ioctl (Depends-on, Makefile.am): Likewise.
2790         * modules/sys_select (Depends-on, Makefile.am): Likewise.
2791         * modules/sys_socket (Depends-on, Makefile.am): Likewise.
2792         * modules/sys_stat (Depends-on, Makefile.am): Likewise.
2793         * modules/sys_times (Depends-on, Makefile.am): Likewise.
2794         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
2795         * modules/wchar (Depends-on, Makefile.am): Likewise.
2796         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Check which functions
2797         should be poisoned.
2798         * m4/ctype.m4 (gl_CTYPE_H): Likewise.
2799         * m4/dirent_h.m4 (gl_DIRENT_H): Likewise.
2800         * m4/fcntl_h.m4 (gl_FCNTL_H): Likewise.
2801         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
2802         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
2803         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
2804         * m4/math_h.m4 (gl_MATH_H): Likewise.
2805         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
2806         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
2807         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
2808         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
2809         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
2810         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
2811         * m4/strings_h.m4 (gl_HEADER_STRINGS_H_BODY): Likewise.
2812         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H_DEFAULTS): Likewise.
2813         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise.
2814         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
2815         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
2816         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
2817         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
2818         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
2819         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
2820         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
2821         * lib/arpa_inet.in.h: Use _GL_WARN_ON_USE instead of
2822         GL_LINK_WARNING.
2823         * lib/ctype.in.h: Likewise.
2824         * lib/dirent.in.h: Likewise.
2825         * lib/fcntl.in.h: Likewise.
2826         * lib/inttypes.in.h: Likewise.
2827         * lib/langinfo.in.h: Likewise.
2828         * lib/locale.in.h: Likewise.
2829         * lib/math.in.h: Likewise.
2830         * lib/search.in.h: Likewise.
2831         * lib/signal.in.h: Likewise.
2832         * lib/spawn.in.h: Likewise.
2833         * lib/stdio.in.h: Likewise.
2834         * lib/stdlib.in.h: Likewise.
2835         * lib/string.in.h: Likewise.
2836         * lib/strings.in.h: Likewise.
2837         * lib/sys_file.in.h: Likewise.
2838         * lib/sys_ioctl.in.h: Likewise.
2839         * lib/sys_select.in.h: Likewise.
2840         * lib/sys_socket.in.h: Likewise.
2841         * lib/sys_stat.in.h: Likewise.
2842         * lib/sys_times.in.h: Likewise.
2843         * lib/sys_utsname.in.h: Likewise.
2844         * lib/unistd.in.h: Likewise.
2845         * lib/wchar.in.h: Likewise.
2846
2847 2010-01-20  Bruno Haible  <bruno@clisp.org>
2848
2849         Avoid duplicate -lm.
2850         * m4/isnan.m4 (gl_ISNAN): Avoid duplicate -lm in $ISNAN_LIBM.
2851         * m4/round.m4 (gl_FUNC_ROUND): Avoid duplicate -lm in $ROUND_LIBM.
2852         * m4/roundf.m4 (gl_FUNC_ROUNDF): Avoid duplicate -lm in $ROUNDF_LIBM.
2853         * m4/roundl.m4 (gl_FUNC_ROUNDL): Avoid duplicate -lm in $ROUNDL_LIBM.
2854         * m4/acosl.m4 (gl_FUNC_ACOSL): Avoid duplicate -lm in $ACOSL_LIBM.
2855         * m4/cosl.m4 (gl_FUNC_COSL): Avoid duplicate -lm in $COSL_LIBM.
2856         * m4/logl.m4 (gl_FUNC_LOGL): Avoid duplicate -lm in $LOGL_LIBM.
2857         * m4/sinl.m4 (gl_FUNC_SINL): Avoid duplicate -lm in $SINL_LIBM.
2858         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Avoid duplicate -lm in $SQRTL_LIBM.
2859         * m4/tanl.m4 (gl_FUNC_TANL): Avoid duplicate -lm in $TANL_LIBM.
2860         * m4/asinl.m4 (gl_FUNC_ASINL): Same change, for consistency.
2861         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
2862         Reported by Paolo Bonzini.
2863
2864 2010-01-19  Bruno Haible  <bruno@clisp.org>
2865
2866         langinfo, nl_langinfo: Relicense under LGPLv2+.
2867         * modules/langinfo (License): Change to LGPLv2+.
2868         * modules/nl_langinfo (License): Likewise.
2869         Patch by David Lutterkort <lutter@redhat.com>.
2870
2871 2010-01-19  Bruno Haible  <bruno@clisp.org>
2872
2873         Avoid compilation error with cc on OSF/1 5.1.
2874         * lib/fcntl.in.h: Include <unistd.h> after the #include_next <fcntl.h>
2875         statement, not before.
2876         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2877
2878 2010-01-18  Bruno Haible  <bruno@clisp.org>
2879
2880         Avoid a link error due to the __printf__ symbol.
2881         * lib/stdio.in.h (__attribute__): Define to empty also for gcc 2.5.x
2882         and 2.6.x.
2883         (__format__, __printf__): Remove definitions.
2884         * lib/argp-fmtstream.h: Likewise.
2885         * lib/argp.h: Likewise.
2886         * lib/error.h: Likewise.
2887         * lib/vasnprintf.h: Likewise.
2888         * lib/xprintf.h: Likewise.
2889         * lib/xvasprintf.h: Likewise.
2890         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2891
2892 2010-01-18  Bruno Haible  <bruno@clisp.org>
2893
2894         Tests for module 'tanl'.
2895         * modules/tanl-tests: New file.
2896         * tests/test-tanl.c: New file.
2897
2898         Tests for module 'sqrtl'.
2899         * modules/sqrtl-tests: New file.
2900         * tests/test-sqrtl.c: New file.
2901
2902         Tests for module 'sinl'.
2903         * modules/sinl-tests: New file.
2904         * tests/test-sinl.c: New file.
2905
2906         Tests for module 'logl'.
2907         * modules/logl-tests: New file.
2908         * tests/test-logl.c: New file.
2909
2910         Tests for module 'expl'.
2911         * modules/expl-tests: New file.
2912         * tests/test-expl.c: New file.
2913
2914         Tests for module 'cosl'.
2915         * modules/cosl-tests: New file.
2916         * tests/test-cosl.c: New file.
2917
2918         Tests for module 'atanl'.
2919         * modules/atanl-tests: New file.
2920         * tests/test-atanl.c: New file.
2921
2922         Tests for module 'asinl'.
2923         * modules/asinl-tests: New file.
2924         * tests/test-asinl.c: New file.
2925
2926         Tests for module 'acosl'.
2927         * modules/acosl-tests: New file.
2928         * tests/test-acosl.c: New file.
2929
2930         New modules acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
2931         * lib/math.in.h (acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl,
2932         tanl): Use the standard gnulib idiom.
2933         * lib/cosl.c: Don't include trigl.c and sincosl.c.
2934         * lib/sinl.c: Likewise.
2935         * lib/tanl.c: Don't include trigl.c.
2936         (kernel_tanl): Make static.
2937         * lib/sincosl.c: Include trigl.h first.
2938         * lib/trigl.c: Likewise.
2939         * m4/acosl.m4: New file.
2940         * m4/asinl.m4: New file.
2941         * m4/atanl.m4: New file.
2942         * m4/cosl.m4: New file.
2943         * m4/expl.m4: New file.
2944         * m4/logl.m4: New file.
2945         * m4/sinl.m4: New file.
2946         * m4/sqrtl.m4: New file.
2947         * m4/tanl.m4: New file.
2948         * m4/mathl.m4: Remove file.
2949         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_* and HAVE_*
2950         variables for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
2951         Don't initialize GNULIB_MATHL.
2952         * modules/acosl: New file.
2953         * modules/asinl: New file.
2954         * modules/atanl: New file.
2955         * modules/cosl: New file.
2956         * modules/expl: New file.
2957         * modules/logl: New file.
2958         * modules/sinl: New file.
2959         * modules/sqrtl: New file.
2960         * modules/tanl: New file.
2961         * modules/math (Makefile.am): Substitute GNULIB_* and HAVE_* variables
2962         for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl. Don't
2963         substitute GNULIB_MATHL.
2964         * modules/mathl: Rewritten.
2965         * doc/posix-functions/acosl.texi: Mention the 'acosl' module.
2966         * doc/posix-functions/asinl.texi: Mention the 'asinl' module.
2967         * doc/posix-functions/atanl.texi: Mention the 'atanl' module.
2968         * doc/posix-functions/cosl.texi: Mention the 'cosl' module.
2969         * doc/posix-functions/expl.texi: Mention the 'expl' module.
2970         * doc/posix-functions/logl.texi: Mention the 'logl' module.
2971         * doc/posix-functions/sinl.texi: Mention the 'sinl' module.
2972         * doc/posix-functions/sqrtl.texi: Mention the 'sqrtl' module.
2973         * doc/posix-functions/tanl.texi: Mention the 'tanl' module.
2974
2975 2010-01-18  Bruno Haible  <bruno@clisp.org>
2976
2977         sqrt: Make gl_FUNC_SQRT requirable.
2978         * m4/sqrt.m4: New file.
2979         * modules/sqrt (Files): Add it.
2980         (configure.ac): Invoke gl_FUNC_SQRT.
2981
2982 2010-01-18  Bruno Haible  <bruno@clisp.org>
2983
2984         New modules for common <math.h> functions.
2985         * m4/mathfunc.m4: New file.
2986         * modules/acos: New file.
2987         * modules/asin: New file.
2988         * modules/atan: New file.
2989         * modules/atan2: New file.
2990         * modules/cbrt: New file.
2991         * modules/copysign: New file.
2992         * modules/cos: New file.
2993         * modules/cosh: New file.
2994         * modules/erf: New file.
2995         * modules/erfc: New file.
2996         * modules/exp: New file.
2997         * modules/fabs: New file.
2998         * modules/fmod: New file.
2999         * modules/hypot: New file.
3000         * modules/j0: New file.
3001         * modules/j1: New file.
3002         * modules/jn: New file.
3003         * modules/ldexp: New file.
3004         * modules/lgamma: New file.
3005         * modules/log: New file.
3006         * modules/log10: New file.
3007         * modules/log1p: New file.
3008         * modules/logb: New file.
3009         * modules/modf: New file.
3010         * modules/nextafter: New file.
3011         * modules/pow: New file.
3012         * modules/remainder: New file.
3013         * modules/rint: New file.
3014         * modules/sin: New file.
3015         * modules/sinh: New file.
3016         * modules/sqrt: New file.
3017         * modules/tan: New file.
3018         * modules/tanh: New file.
3019         * modules/y0: New file.
3020         * modules/y1: New file.
3021         * modules/yn: New file.
3022         * doc/posix-functions/acos.texi: Mention the 'acos' module.
3023         * doc/posix-functions/asin.texi: Mention the 'asin' module.
3024         * doc/posix-functions/atan.texi: Mention the 'atan' module.
3025         * doc/posix-functions/atan2.texi: Mention the 'atan2' module.
3026         * doc/posix-functions/cbrt.texi: Mention the 'cbrt' module.
3027         * doc/posix-functions/copysign.texi: Mention the 'copysign' module.
3028         * doc/posix-functions/cos.texi: Mention the 'cos' module.
3029         * doc/posix-functions/cosh.texi: Mention the 'cosh' module.
3030         * doc/posix-functions/erf.texi: Mention the 'erf' module.
3031         * doc/posix-functions/erfc.texi: Mention the 'erfc' module.
3032         * doc/posix-functions/exp.texi: Mention the 'exp' module.
3033         * doc/posix-functions/fabs.texi: Mention the 'fabs' module.
3034         * doc/posix-functions/fmod.texi: Mention the 'fmod' module.
3035         * doc/posix-functions/hypot.texi: Mention the 'hypot' module.
3036         * doc/posix-functions/j0.texi: Mention the 'j0' module.
3037         * doc/posix-functions/j1.texi: Mention the 'j1' module.
3038         * doc/posix-functions/jn.texi: Mention the 'jn' module.
3039         * doc/posix-functions/ldexp.texi: Mention the 'ldexp' module.
3040         * doc/posix-functions/lgamma.texi: Mention the 'lgamma' module.
3041         * doc/posix-functions/log.texi: Mention the 'log' module.
3042         * doc/posix-functions/log10.texi: Mention the 'log10' module.
3043         * doc/posix-functions/log1p.texi: Mention the 'log1p' module.
3044         * doc/posix-functions/logb.texi: Mention the 'logb' module.
3045         * doc/posix-functions/modf.texi: Mention the 'modf' module.
3046         * doc/posix-functions/nextafter.texi: Mention the 'nextafter' module.
3047         * doc/posix-functions/pow.texi: Mention the 'pow' module.
3048         * doc/posix-functions/remainder.texi: Mention the 'remainder' module.
3049         * doc/posix-functions/rint.texi: Mention the 'rint' module.
3050         * doc/posix-functions/sin.texi: Mention the 'sin' module.
3051         * doc/posix-functions/sinh.texi: Mention the 'sinh' module.
3052         * doc/posix-functions/sqrt.texi: Mention the 'sqrt' module.
3053         * doc/posix-functions/tan.texi: Mention the 'tan' module.
3054         * doc/posix-functions/tanh.texi: Mention the 'tanh' module.
3055         * doc/posix-functions/y0.texi: Mention the 'y0' module.
3056         * doc/posix-functions/y1.texi: Mention the 'y1' module.
3057         * doc/posix-functions/yn.texi: Mention the 'yn' module.
3058
3059 2010-01-18  Jim Meyering  <meyering@redhat.com>
3060
3061         ignore-value: relax license to LGPLv2+
3062         * modules/ignore-value (License): Relax to LGPLv2+.
3063
3064         getdate: don't leak when TZ contains two or more '"'s
3065         * lib/getdate.y (get_date): Don't leak a copy of TZ for each
3066         double quote in TZ after the first one.
3067
3068         readtokens: do not leak internal token_lengths buffer
3069         * lib/readtokens.c (readtokens): Free the local, lengths,
3070         when the supplied "token_lengths" parameter is NULL.
3071
3072 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3073
3074         Fix a couple of missing LIBTHREAD link failures on AIX.
3075         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add
3076         $(LIBTHREAD).
3077         * modules/strsignal-tests (test_strsignal_LDADD): Likewise.
3078
3079         Link test-poll against INET_PTON_LIB.
3080         * modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
3081         for inet_pton on Solaris 10.
3082
3083 2010-01-17  Bruno Haible  <bruno@clisp.org>
3084
3085         unistdio/*-sprintf: Fix typo in module description.
3086         * modules/unistdio/u8-sprintf (Depends-on): Fix typo.
3087         * modules/unistdio/u8-u8-sprintf (Depends-on): Likewise.
3088         * modules/unistdio/u16-sprintf (Depends-on): Likewise.
3089         * modules/unistdio/u16-u16-sprintf (Depends-on): Likewise.
3090         * modules/unistdio/u32-sprintf (Depends-on): Likewise.
3091         * modules/unistdio/u32-u32-sprintf (Depends-on): Likewise.
3092         * modules/unistdio/ulc-sprintf (Depends-on): Likewise.
3093         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3094
3095 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3096
3097         gnulib-tool: fix filelist for AIX, HP-UX ksh.
3098         * gnulib-tool (func_filter_filelist): Do not quote possibly-empty
3099         variables in shell case patterns, for AIX and HP-UX ksh.
3100
3101         Split large sed scripts, for HP-UX sed.
3102         * modules/stdio: Split sed scripts around 50 sed commands,
3103         to avoid HP-UX limit of 99 commands, in the near future.
3104         * modules/string: Likewise.
3105         * modules/unistd: Likewise.
3106
3107         gnulib-tool: avoid writing in the current directory.
3108         * gnulib-tool (func_emit_lib_Makefile_am)
3109         (func_emit_tests_Makefile_am): Put temporary files in $tmp,
3110         not in the current directory, so concurrent gnulib-tool
3111         instances do not interfere.
3112
3113 2010-01-16  Jim Meyering  <meyering@redhat.com>
3114
3115         doc: update users.txt
3116         * users.txt: Add grep.
3117         (diffutils, gzip): Update URLs.
3118
3119 2010-01-12  Bruno Haible  <bruno@clisp.org>
3120
3121         posix_spawn: Avoid test failure on Cygwin.
3122         * tests/test-posix_spawn3.c (DATA_FILENAME) [CYGWIN]: Use less risky
3123         characters.
3124         Reported by Simon Josefsson.
3125
3126 2010-01-12  Bruno Haible  <bruno@clisp.org>
3127
3128         * tests/test-cond.c (main): When skipping the test, show the reason.
3129
3130 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3131
3132         * lib/striconv.c (str_cd_iconv): Avoid if before free.
3133
3134 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3135
3136         * top/maint.mk (VC_LIST_EXCEPT): Filter list through
3137         VC_LIST_ALWAYS_EXCLUDE_REGEX.
3138
3139 2010-01-12  Eric Blake  <ebb9@byu.net>
3140
3141         build: guarantee AS_VAR_IF
3142         * m4/warnings.m4 (gl_WARN_ADD): Use autoconf name.
3143         (gl_AS_VAR_IF): Move...
3144         * m4/gnulib-common.m4 (AS_VAR_IF): ...here.
3145         Reported by Simon Josefsson.
3146
3147 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3148
3149         * lib/stdio.in.h: Fix typo.
3150
3151 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3152
3153         * m4/gc.m4: Check if linking to libgcrypt also needs linking to
3154         libgpg-error.
3155
3156 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3157
3158         * tests/test-xalloc-die.sh: Use $EXEEXT.
3159
3160 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3161             Bruno Haible  <bruno@clisp.org>
3162
3163         getlogin, getlogin_r: Avoid test failure.
3164         * tests/test-getlogin.c: Include <stdio.h>.
3165         (main): Skip the test when the function fails because stdin is not a
3166         tty.
3167         * tests/test-getlogin_r.c: Include <stdio.h>.
3168         (main): Skip the test when the function fails because stdin is not a
3169         tty.
3170
3171 2010-01-11  Eric Blake  <ebb9@byu.net>
3172
3173         tests: avoid more large file warnings
3174         * tests/test-fflush.c: Avoid warning about ftell use.
3175         * tests/test-fseek.c: Avoid warning about fseek use.
3176
3177 2010-01-10  Bruno Haible  <bruno@clisp.org>
3178
3179         nproc: Work better on Linux when /proc and /sys are not mounted.
3180         * lib/nproc.c (num_processors): Use num_processors_via_affinity_mask ()
3181         as lower bound when, on glibc/Linux systems,
3182         sysconf (_SC_NPROCESSORS_CONF) returns 1.
3183         Suggested by Pádraig Brady <P@draigbrady.com>.
3184         Reported by Dmitry V. Levin <ldv@altlinux.org>.
3185
3186         nproc: Refactor.
3187         * lib/nproc.c (num_processors_via_affinity_mask): New function,
3188         extracted from num_processors.
3189         (num_processors): Call it.
3190
3191 2010-01-11  Jim Meyering  <meyering@redhat.com>
3192
3193         utimecmp: avoid new warning from upcoming gcc-4.5.0
3194         * lib/utimecmp.c (BILLION): Define using #define rather than an
3195         anonymous enum, to placate upcoming gcc-4.5.0's -Wenum-compare.
3196
3197 2010-01-11  Eric Blake  <ebb9@byu.net>
3198
3199         math: add portability warnings for classification macros
3200         * modules/math (Depends-on): Add warn-on-use.
3201         (Makefile.am): Provide new substitutions.
3202         * m4/math_h.m4 (gl_MATH_H): Require inline.
3203         * lib/math.in.h (_GL_WARN_REAL_FLOATING_DECL)
3204         (_GL_WARN_REAL_FLOATING_IMPL): New helper macros.
3205         (isfinite, isinf, isnan, signbit) [GNULIB_POSIXCHECK]: Use them to
3206         implement warnings.
3207
3208         unistd: warn on use of environ without module
3209         * modules/unistd (Depends-on): Add warn-on-use.
3210         (Makefile.am): Provide new substitutions.
3211         * m4/unistd_h.m4 (gl_UNISTD_H): Check for inline and environ.
3212         * lib/unistd.in.h (environ): Wrap with a warning helper function.
3213
3214         stdio: warn on suspicious uses
3215         * modules/stdio (Depends-on): Add warn-on-use.
3216         (Makefile.am): Provide new substitutions.
3217         * m4/stdio_h.m4 (gl_STDIO_H): Check for inline, ftello, and
3218         fseeko.
3219         * lib/stdio.in.h (gets): Always warn on use.
3220         (fseek, ftell): Adjust when warnings are issued, and honor
3221         _GL_NO_LARGE_FILES as a way to silence the warning.
3222         * tests/test-fpurge.c [!GNULIB_FSEEK]: Use new means to squelch
3223         any warning about large file offsets.
3224         * tests/test-freadable.c [!GNULIB_FSEEK]: Likewise.
3225         * tests/test-freading.c [!GNULIB_FSEEK]: Likewise.
3226         * tests/test-fseeko.c [!GNULIB_FSEEK]: Likewise.
3227         * tests/test-ftell.c [!GNULIB_FSEEK]: Likewise.
3228         * tests/test-ftello.c [!GNULIB_FSEEK]: Likewise.
3229         * tests/test-fwritable.c [!GNULIB_FSEEK]: Likewise.
3230         * tests/test-fwriting.c [!GNULIB_FSEEK]: Likewise.
3231         * tests/test-getopt.c [!GNULIB_FTELL]: Likewise.
3232
3233         warn-on-use: new module
3234         * modules/warn-on-use: New file.
3235         * build-aux/warn-on-use.h: Likewise.
3236         * m4/warn-on-use.m4: Likewise.
3237         * MODULES.html.sh (Support for building): Mention it.
3238
3239 2010-01-10  Bruno Haible  <bruno@clisp.org>
3240
3241         Tests for module 'unistr/u32-strdup'.
3242         * modules/unistr/u32-strdup-tests: New file.
3243         * tests/unistr/test-u32-strdup.c: New file.
3244
3245         Tests for module 'unistr/u16-strdup'.
3246         * modules/unistr/u16-strdup-tests: New file.
3247         * tests/unistr/test-u16-strdup.c: New file.
3248
3249         Tests for module 'unistr/u8-strdup'.
3250         * modules/unistr/u8-strdup-tests: New file.
3251         * tests/unistr/test-u8-strdup.c: New file.
3252         * tests/unistr/test-strdup.h: New file.
3253
3254         Tests for module 'unistr/u32-strncmp'.
3255         * modules/unistr/u32-strncmp-tests: New file.
3256         * tests/unistr/test-u32-strncmp.c: New file.
3257
3258         Tests for module 'unistr/u16-strncmp'.
3259         * modules/unistr/u16-strncmp-tests: New file.
3260         * tests/unistr/test-u16-strncmp.c: New file.
3261
3262         Tests for module 'unistr/u8-strncmp'.
3263         * modules/unistr/u8-strncmp-tests: New file.
3264         * tests/unistr/test-u8-strncmp.c: New file.
3265         * tests/unistr/test-strncmp.h: New file.
3266
3267         Tests for module 'unistr/u32-strcoll'.
3268         * modules/unistr/u32-strcoll-tests: New file.
3269         * tests/unistr/test-u32-strcoll.c: New file.
3270
3271         Tests for module 'unistr/u16-strcoll'.
3272         * modules/unistr/u16-strcoll-tests: New file.
3273         * tests/unistr/test-u16-strcoll.c: New file.
3274
3275         Tests for module 'unistr/u8-strcoll'.
3276         * modules/unistr/u8-strcoll-tests: New file.
3277         * tests/unistr/test-u8-strcoll.c: New file.
3278
3279         Tests for module 'unistr/u32-strcmp'.
3280         * modules/unistr/u32-strcmp-tests: New file.
3281         * tests/unistr/test-u32-strcmp.c: New file.
3282         * tests/unistr/test-u32-strcmp.h: New file.
3283
3284         Tests for module 'unistr/u16-strcmp'.
3285         * modules/unistr/u16-strcmp-tests: New file.
3286         * tests/unistr/test-u16-strcmp.c: New file.
3287         * tests/unistr/test-u16-strcmp.h: New file.
3288
3289         Tests for module 'unistr/u8-strcmp'.
3290         * modules/unistr/u8-strcmp-tests: New file.
3291         * tests/unistr/test-u8-strcmp.c: New file.
3292         * tests/unistr/test-u8-strcmp.h: New file.
3293         * tests/unistr/test-strcmp.h: New file.
3294
3295         Tests for module 'unistr/u32-strncat'.
3296         * modules/unistr/u32-strncat-tests: New file.
3297         * tests/unistr/test-u32-strncat.c: New file.
3298
3299         Tests for module 'unistr/u16-strncat'.
3300         * modules/unistr/u16-strncat-tests: New file.
3301         * tests/unistr/test-u16-strncat.c: New file.
3302
3303         Tests for module 'unistr/u8-strncat'.
3304         * modules/unistr/u8-strncat-tests: New file.
3305         * tests/unistr/test-u8-strncat.c: New file.
3306         * tests/unistr/test-strncat.h: New file.
3307
3308         Tests for module 'unistr/u32-strcat'.
3309         * modules/unistr/u32-strcat-tests: New file.
3310         * tests/unistr/test-u32-strcat.c: New file.
3311
3312         Tests for module 'unistr/u16-strcat'.
3313         * modules/unistr/u16-strcat-tests: New file.
3314         * tests/unistr/test-u16-strcat.c: New file.
3315
3316         Tests for module 'unistr/u8-strcat'.
3317         * modules/unistr/u8-strcat-tests: New file.
3318         * tests/unistr/test-u8-strcat.c: New file.
3319         * tests/unistr/test-strcat.h: New file.
3320
3321         Tests for module 'unistr/u32-stpncpy'.
3322         * modules/unistr/u32-stpncpy-tests: New file.
3323         * tests/unistr/test-u32-stpncpy.c: New file.
3324
3325         Tests for module 'unistr/u16-stpncpy'.
3326         * modules/unistr/u16-stpncpy-tests: New file.
3327         * tests/unistr/test-u16-stpncpy.c: New file.
3328
3329         Tests for module 'unistr/u8-stpncpy'.
3330         * modules/unistr/u8-stpncpy-tests: New file.
3331         * tests/unistr/test-u8-stpncpy.c: New file.
3332         * tests/unistr/test-stpncpy.h: New file.
3333
3334         Tests for module 'unistr/u32-strncpy'.
3335         * modules/unistr/u32-strncpy-tests: New file.
3336         * tests/unistr/test-u32-strncpy.c: New file.
3337
3338         Tests for module 'unistr/u16-strncpy'.
3339         * modules/unistr/u16-strncpy-tests: New file.
3340         * tests/unistr/test-u16-strncpy.c: New file.
3341
3342         Tests for module 'unistr/u8-strncpy'.
3343         * modules/unistr/u8-strncpy-tests: New file.
3344         * tests/unistr/test-u8-strncpy.c: New file.
3345         * tests/unistr/test-strncpy.h: New file.
3346
3347         Tests for module 'unistr/u32-stpcpy'.
3348         * modules/unistr/u32-stpcpy-tests: New file.
3349         * tests/unistr/test-u32-stpcpy.c: New file.
3350
3351         Tests for module 'unistr/u16-stpcpy'.
3352         * modules/unistr/u16-stpcpy-tests: New file.
3353         * tests/unistr/test-u16-stpcpy.c: New file.
3354
3355         Tests for module 'unistr/u8-stpcpy'.
3356         * modules/unistr/u8-stpcpy-tests: New file.
3357         * tests/unistr/test-u8-stpcpy.c: New file.
3358         * tests/unistr/test-stpcpy.h: New file.
3359
3360         Tests for module 'unistr/u32-strcpy'.
3361         * modules/unistr/u32-strcpy-tests: New file.
3362         * tests/unistr/test-u32-strcpy.c: New file.
3363
3364         Tests for module 'unistr/u16-strcpy'.
3365         * modules/unistr/u16-strcpy-tests: New file.
3366         * tests/unistr/test-u16-strcpy.c: New file.
3367
3368         Tests for module 'unistr/u8-strcpy'.
3369         * modules/unistr/u8-strcpy-tests: New file.
3370         * tests/unistr/test-u8-strcpy.c: New file.
3371         * tests/unistr/test-strcpy.h: New file.
3372
3373         Tests for module 'unistr/u32-strnlen'.
3374         * modules/unistr/u32-strnlen-tests: New file.
3375         * tests/unistr/test-u32-strnlen.c: New file.
3376
3377         Tests for module 'unistr/u16-strnlen'.
3378         * modules/unistr/u16-strnlen-tests: New file.
3379         * tests/unistr/test-u16-strnlen.c: New file.
3380
3381         Tests for module 'unistr/u8-strnlen'.
3382         * modules/unistr/u8-strnlen-tests: New file.
3383         * tests/unistr/test-u8-strnlen.c: New file.
3384         * tests/unistr/test-strnlen.h: New file.
3385
3386         Tests for module 'unistr/u32-strlen'.
3387         * modules/unistr/u32-strlen-tests: New file.
3388         * tests/unistr/test-u32-strlen.c: New file.
3389
3390         Tests for module 'unistr/u16-strlen'.
3391         * modules/unistr/u16-strlen-tests: New file.
3392         * tests/unistr/test-u16-strlen.c: New file.
3393
3394         Tests for module 'unistr/u8-strlen'.
3395         * modules/unistr/u8-strlen-tests: New file.
3396         * tests/unistr/test-u8-strlen.c: New file.
3397
3398         Tests for module 'unistr/u32-prev'.
3399         * modules/unistr/u32-prev-tests: New file.
3400         * tests/unistr/test-u32-prev.c: New file.
3401
3402         Tests for module 'unistr/u16-prev'.
3403         * modules/unistr/u16-prev-tests: New file.
3404         * tests/unistr/test-u16-prev.c: New file.
3405
3406         Tests for module 'unistr/u8-prev'.
3407         * modules/unistr/u8-prev-tests: New file.
3408         * tests/unistr/test-u8-prev.c: New file.
3409
3410         Tests for module 'unistr/u32-next'.
3411         * modules/unistr/u32-next-tests: New file.
3412         * tests/unistr/test-u32-next.c: New file.
3413
3414         Tests for module 'unistr/u16-next'.
3415         * modules/unistr/u16-next-tests: New file.
3416         * tests/unistr/test-u16-next.c: New file.
3417
3418         Tests for module 'unistr/u8-next'.
3419         * modules/unistr/u8-next-tests: New file.
3420         * tests/unistr/test-u8-next.c: New file.
3421
3422         Tests for module 'unistr/u32-strmbtouc'.
3423         * modules/unistr/u32-strmbtouc-tests: New file.
3424         * tests/unistr/test-u32-strmbtouc.c: New file.
3425
3426         Tests for module 'unistr/u16-strmbtouc'.
3427         * modules/unistr/u16-strmbtouc-tests: New file.
3428         * tests/unistr/test-u16-strmbtouc.c: New file.
3429
3430         Tests for module 'unistr/u8-strmbtouc'.
3431         * modules/unistr/u8-strmbtouc-tests: New file.
3432         * tests/unistr/test-u8-strmbtouc.c: New file.
3433
3434         Tests for module 'unistr/u32-strmblen'.
3435         * modules/unistr/u32-strmblen-tests: New file.
3436         * tests/unistr/test-u32-strmblen.c: New file.
3437
3438         Tests for module 'unistr/u16-strmblen'.
3439         * modules/unistr/u16-strmblen-tests: New file.
3440         * tests/unistr/test-u16-strmblen.c: New file.
3441
3442         Tests for module 'unistr/u8-strmblen'.
3443         * modules/unistr/u8-strmblen-tests: New file.
3444         * tests/unistr/test-u8-strmblen.c: New file.
3445
3446         Tests for module 'unistr/u32-cpy-alloc'.
3447         * modules/unistr/u32-cpy-alloc-tests: New file.
3448         * tests/unistr/test-u32-cpy-alloc.c: New file.
3449
3450         Tests for module 'unistr/u16-cpy-alloc'.
3451         * modules/unistr/u16-cpy-alloc-tests: New file.
3452         * tests/unistr/test-u16-cpy-alloc.c: New file.
3453
3454         Tests for module 'unistr/u8-cpy-alloc'.
3455         * modules/unistr/u8-cpy-alloc-tests: New file.
3456         * tests/unistr/test-u8-cpy-alloc.c: New file.
3457         * tests/unistr/test-cpy-alloc.h: New file.
3458
3459         Tests for module 'unistr/u32-mbsnlen'.
3460         * modules/unistr/u32-mbsnlen-tests: New file.
3461         * tests/unistr/test-u32-mbsnlen.c: New file.
3462
3463         Tests for module 'unistr/u16-mbsnlen'.
3464         * modules/unistr/u16-mbsnlen-tests: New file.
3465         * tests/unistr/test-u16-mbsnlen.c: New file.
3466
3467         Tests for module 'unistr/u8-mbsnlen'.
3468         * modules/unistr/u8-mbsnlen-tests: New file.
3469         * tests/unistr/test-u8-mbsnlen.c: New file.
3470
3471         Tests for module 'unistr/u32-chr'.
3472         * modules/unistr/u32-chr-tests: New file.
3473         * tests/unistr/test-u32-chr.c: New file.
3474
3475         Tests for module 'unistr/u16-chr'.
3476         * modules/unistr/u16-chr-tests: New file.
3477         * tests/unistr/test-u16-chr.c: New file.
3478
3479         Tests for module 'unistr/u8-chr'.
3480         * modules/unistr/u8-chr-tests: New file.
3481         * tests/unistr/test-u8-chr.c: New file.
3482         * tests/unistr/test-chr.h: New file, based on tests/test-memchr.c.
3483
3484         Tests for module 'unistr/u32-cmp2'.
3485         * modules/unistr/u32-cmp2-tests: New file.
3486         * tests/unistr/test-u32-cmp2.c: New file.
3487
3488         Tests for module 'unistr/u16-cmp2'.
3489         * modules/unistr/u16-cmp2-tests: New file.
3490         * tests/unistr/test-u16-cmp2.c: New file.
3491
3492         Tests for module 'unistr/u8-cmp2'.
3493         * modules/unistr/u8-cmp2-tests: New file.
3494         * tests/unistr/test-u8-cmp2.c: New file.
3495         * tests/unistr/test-cmp2.h: New file, based on tests/unistr/test-cmp.h.
3496
3497         Tests for module 'unistr/u32-cmp'.
3498         * modules/unistr/u32-cmp-tests: New file.
3499         * tests/unistr/test-u32-cmp.c: New file.
3500
3501         Tests for module 'unistr/u16-cmp'.
3502         * modules/unistr/u16-cmp-tests: New file.
3503         * tests/unistr/test-u16-cmp.c: New file.
3504
3505         Tests for module 'unistr/u8-cmp'.
3506         * modules/unistr/u8-cmp-tests: New file.
3507         * tests/unistr/test-u8-cmp.c: New file.
3508         * tests/unistr/test-cmp.h: New file, based on tests/test-memcmp.c.
3509
3510         Tests for module 'unistr/u32-set'.
3511         * modules/unistr/u32-set-tests: New file.
3512         * tests/unistr/test-u32-set.c: New file.
3513
3514         Tests for module 'unistr/u16-set'.
3515         * modules/unistr/u16-set-tests: New file.
3516         * tests/unistr/test-u16-set.c: New file.
3517
3518         Tests for module 'unistr/u8-set'.
3519         * modules/unistr/u8-set-tests: New file.
3520         * tests/unistr/test-u8-set.c: New file.
3521         * tests/unistr/test-set.h: New file.
3522
3523         Tests for module 'unistr/u32-move'.
3524         * modules/unistr/u32-move-tests: New file.
3525         * tests/unistr/test-u32-move.c: New file.
3526
3527         Tests for module 'unistr/u16-move'.
3528         * modules/unistr/u16-move-tests: New file.
3529         * tests/unistr/test-u16-move.c: New file.
3530
3531         Tests for module 'unistr/u8-move'.
3532         * modules/unistr/u8-move-tests: New file.
3533         * tests/unistr/test-u8-move.c: New file.
3534         * tests/unistr/test-move.h: New file.
3535
3536         Tests for module 'unistr/u32-cpy'.
3537         * modules/unistr/u32-cpy-tests: New file.
3538         * tests/unistr/test-u32-cpy.c: New file.
3539
3540         Tests for module 'unistr/u16-cpy'.
3541         * modules/unistr/u16-cpy-tests: New file.
3542         * tests/unistr/test-u16-cpy.c: New file.
3543
3544         Tests for module 'unistr/u8-cpy'.
3545         * modules/unistr/u8-cpy-tests: New file.
3546         * tests/unistr/test-u8-cpy.c: New file.
3547         * tests/unistr/test-cpy.h: New file.
3548
3549 2010-01-09  Bruno Haible  <bruno@clisp.org>
3550
3551         Tests for module 'unistr/u32-uctomb'.
3552         * modules/unistr/u32-uctomb-tests: New file.
3553         * tests/unistr/test-u32-uctomb.c: New file.
3554
3555         Tests for module 'unistr/u16-uctomb'.
3556         * modules/unistr/u16-uctomb-tests: New file.
3557         * tests/unistr/test-u16-uctomb.c: New file.
3558
3559         Tests for module 'unistr/u8-uctomb'.
3560         * modules/unistr/u8-uctomb-tests: New file.
3561         * tests/unistr/test-u8-uctomb.c: New file.
3562
3563         Tests for module 'unistr/u32-mbtoucr'.
3564         * modules/unistr/u32-mbtoucr-tests: New file.
3565         * tests/unistr/test-u32-mbtoucr.c: New file.
3566
3567         Tests for module 'unistr/u16-mbtoucr'.
3568         * modules/unistr/u16-mbtoucr-tests: New file.
3569         * tests/unistr/test-u16-mbtoucr.c: New file.
3570
3571         Tests for module 'unistr/u8-mbtoucr'.
3572         * modules/unistr/u8-mbtoucr-tests: New file.
3573         * tests/unistr/test-u8-mbtoucr.c: New file.
3574
3575         Tests for module 'unistr/u32-mbtouc'.
3576         * modules/unistr/u32-mbtouc-tests: New file.
3577         * tests/unistr/test-u32-mbtouc.c: New file.
3578
3579         Tests for module 'unistr/u16-mbtouc'.
3580         * modules/unistr/u16-mbtouc-tests: New file.
3581         * tests/unistr/test-u16-mbtouc.c: New file.
3582
3583         Tests for module 'unistr/u8-mbtouc'.
3584         * modules/unistr/u8-mbtouc-tests: New file.
3585         * tests/unistr/test-u8-mbtouc.c: New file.
3586
3587         Tests for module 'unistr/u32-mbtouc-unsafe'.
3588         * modules/unistr/u32-mbtouc-unsafe-tests: New file.
3589         * tests/unistr/test-u32-mbtouc-unsafe.c: New file.
3590         * tests/unistr/test-u32-mbtouc.h: New file.
3591
3592         Tests for module 'unistr/u16-mbtouc-unsafe'.
3593         * modules/unistr/u16-mbtouc-unsafe-tests: New file.
3594         * tests/unistr/test-u16-mbtouc-unsafe.c: New file.
3595         * tests/unistr/test-u16-mbtouc.h: New file.
3596
3597         Tests for module 'unistr/u8-mbtouc-unsafe'.
3598         * modules/unistr/u8-mbtouc-unsafe-tests: New file.
3599         * tests/unistr/test-u8-mbtouc-unsafe.c: New file.
3600         * tests/unistr/test-u8-mbtouc.h: New file.
3601
3602         Tests for module 'unistr/u32-mblen'.
3603         * modules/unistr/u32-mblen-tests: New file.
3604         * tests/unistr/test-u32-mblen.c: New file.
3605
3606         Tests for module 'unistr/u16-mblen'.
3607         * modules/unistr/u16-mblen-tests: New file.
3608         * tests/unistr/test-u16-mblen.c: New file.
3609
3610         Tests for module 'unistr/u8-mblen'.
3611         * modules/unistr/u8-mblen-tests: New file.
3612         * tests/unistr/test-u8-mblen.c: New file.
3613
3614         Tests for module 'unistr/u32-to-u16'.
3615         * modules/unistr/u32-to-u16-tests: New file.
3616         * tests/unistr/test-u32-to-u16.c: New file.
3617
3618         Tests for module 'unistr/u32-to-u8'.
3619         * modules/unistr/u32-to-u8-tests: New file.
3620         * tests/unistr/test-u32-to-u8.c: New file.
3621
3622         Tests for module 'unistr/u16-to-u32'.
3623         * modules/unistr/u16-to-u32-tests: New file.
3624         * tests/unistr/test-u16-to-u32.c: New file.
3625
3626         Tests for module 'unistr/u16-to-u8'.
3627         * modules/unistr/u16-to-u8-tests: New file.
3628         * tests/unistr/test-u16-to-u8.c: New file.
3629
3630         Tests for module 'unistr/u8-to-u32'.
3631         * modules/unistr/u8-to-u32-tests: New file.
3632         * tests/unistr/test-u8-to-u32.c: New file.
3633
3634         Tests for module 'unistr/u8-to-u16'.
3635         * modules/unistr/u8-to-u16-tests: New file.
3636         * tests/unistr/test-u8-to-u16.c: New file.
3637
3638         Tests for module 'unistr/u32-check'.
3639         * modules/unistr/u32-check-tests: New file.
3640         * tests/unistr/test-u32-check.c: New file.
3641
3642         Tests for module 'unistr/u16-check'.
3643         * modules/unistr/u16-check-tests: New file.
3644         * tests/unistr/test-u16-check.c: New file.
3645
3646         Tests for module 'unistr/u8-check'.
3647         * modules/unistr/u8-check-tests: New file.
3648         * tests/unistr/test-u8-check.c: New file.
3649
3650         * tests/unictype/test-categ_byname.c: Include <stdbool.h>.
3651         (category_equals): New function.
3652         (main): Add more tests.
3653         * modules/unictype/category-byname-tests (Depends-on): Add stdbool.
3654
3655         * tests/unictype/test-bidi_byname.c (main): Add more tests.
3656
3657 2010-01-10  Bruno Haible  <bruno@clisp.org>
3658
3659         unistr/u*-strcoll: Try harder to distinguish different strings.
3660         * lib/unistr/u-strcoll.h (FUNC): When sl1 and sl2 are the same,
3661         compare s1 and s2 to see if they are different.
3662
3663 2010-01-10  Bruno Haible  <bruno@clisp.org>
3664
3665         unistr/u*-stpncpy: Fix the return value.
3666         * lib/unistr.h (u8_stpncpy, u16_stpncpy, u32_stpncpy): Make the
3667         description of the return value consistent with stpncpy in glibc.
3668         * lib/unistr/u-stpncpy.h (FUNC): Return the pointer past the last
3669         written non-NUL unit.
3670
3671 2010-01-10  Bruno Haible  <bruno@clisp.org>
3672
3673         unistr/u*-next: Add missing dependencies.
3674         * modules/unistr/u8-next (Depends-on): Add unistr/u8-strmbtouc.
3675         * modules/unistr/u16-next (Depends-on): Add unistr/u16-strmbtouc.
3676         * modules/unistr/u32-next (Depends-on): Add unistr/u32-strmbtouc.
3677
3678 2010-01-10  Bruno Haible  <bruno@clisp.org>
3679
3680         unistr/u8-mbsnlen: Fix return value for incomplete character.
3681         * lib/unistr/u8-mbsnlen.c (u8_mbsnlen): Use u8_mbtoucr instead of
3682         u8_mblen.
3683         * modules/unistr/u8-mbsnlen (Depends-on): Add unistr/u8-mbtoucr.
3684         Remove unistr/u8-mblen.
3685         * lib/unistr/u16-mbsnlen.c (u16_mbsnlen): Use u16_mbtoucr instead of
3686         u16_mblen.
3687         * modules/unistr/u16-mbsnlen (Depends-on): Add unistr/u16-mbtoucr.
3688         Remove unistr/u16-mblen.
3689
3690 2010-01-10  Bruno Haible  <bruno@clisp.org>
3691
3692         wchar: Fix compilation error when <wchar.h> is used from coreutils.
3693         * lib/wchar.in.h: Treat __need_wint_t like __need_mbstate_t.
3694         Reported by Brian Gough <bjg@gnu.org> and
3695         Chris Clayton <chris2553@googlemail.com> via
3696         Mike Frysinger <vapier@gentoo.org> and Jim Meyering <jim@meyering.net>.
3697
3698 2010-01-09  Bruno Haible  <bruno@clisp.org>
3699
3700         unistr/u16-to-u32: Reject invalid input.
3701         * lib/unistr/u16-to-u32.c (u16_to_u32): Call u16_mbtoucr instead of
3702         u16_mbtouc.
3703         * modules/unistr/u16-to-u32 (Depends-on): Add unistr/u16-mbtoucr.
3704         Remove unistr/u16-mbtouc.
3705
3706         unistr/u16-to-u8: Reject invalid input.
3707         * lib/unistr/u16-to-u8.c (u16_to_u8): Call u16_mbtoucr instead of
3708         u16_mbtouc.
3709         * modules/unistr/u16-to-u8 (Depends-on): Add unistr/u16-mbtoucr.
3710         Remove unistr/u16-mbtouc.
3711
3712         unistr/u8-to-u32: Reject invalid input.
3713         * lib/unistr/u8-to-u32.c (u8_to_u32): Call u8_mbtoucr instead of
3714         u8_mbtouc.
3715         * modules/unistr/u8-to-u32 (Depends-on): Add unistr/u8-mbtoucr.
3716         Remove unistr/u8-mbtouc.
3717
3718         unistr/u8-to-u16: Reject invalid input.
3719         * lib/unistr/u8-to-u16.c (u8_to_u16): Call u8_mbtoucr instead of
3720         u8_mbtouc.
3721         * modules/unistr/u8-to-u16 (Depends-on): Add unistr/u8-mbtoucr.
3722         Remove unistr/u8-mbtouc.
3723
3724 2010-01-09  Bruno Haible  <bruno@clisp.org>
3725
3726         Tests for module 'getlogin'.
3727         * modules/getlogin-tests: New file.
3728         * tests/test-getlogin.c: New file.
3729
3730         New module 'getlogin'.
3731         * lib/unistd.in.h (getlogin): New declaration.
3732         * lib/getlogin.c: New file.
3733         * m4/getlogin.m4: New file.
3734         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETLOGIN,
3735         HAVE_GETLOGIN.
3736         * modules/unistd (Makefile.am): Substitute GNULIB_GETLOGIN,
3737         HAVE_GETLOGIN.
3738         * modules/getlogin: New file.
3739         * doc/posix-functions/getlogin.texi: Mention the new module.
3740         Reported by John W. Eaton <jwe@gnu.org>.
3741
3742 2010-01-09  Bruno Haible  <bruno@clisp.org>
3743
3744         getlogin_r: Support for native Windows.
3745         * lib/getlogin_r.c: Include <windows.h>
3746         (getlogin_r): Implement for native Windows.
3747         * tests/test-getlogin_r.c (main): Also test with a huge buffer.
3748         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>
3749         via John W. Eaton <jwe@gnu.org>.
3750
3751 2010-01-09  Bruno Haible  <bruno@clisp.org>
3752
3753         getlogin_r: Small fixes.
3754         * lib/getlogin_r.c (getlogin_r): Don't set errno if the function
3755         succeeds.
3756         * m4/getlogin_r.m4 (gl_GETLOGIN_R): Require gl_USE_SYSTEM_EXTENSIONS
3757         before testing whether getlogin_r is declared. No need to set
3758         HAVE_DECL_GETLOGIN_R to 1.
3759         (gl_PREREQ_GETLOGIN_R): Don't check for the getlogin_r declaration.
3760
3761 2010-01-09  Bruno Haible  <bruno@clisp.org>
3762
3763         * lib/unistd.in.h (getlogin_r): Add comment.
3764
3765 2010-01-09  Bruno Haible  <bruno@clisp.org>
3766
3767         Tests for module 'getlogin_r'.
3768         * modules/getlogin_r-tests: New file.
3769         * tests/test-getlogin_r.c: New file.
3770
3771 2010-01-09  Jim Meyering  <meyering@redhat.com>
3772
3773         maint.mk: extend proper_name_utf8-vs-LIBICONV-checking rule
3774         * top/maint.mk (sc_proper_name_utf8_requires_ICONV): Adapt to work
3775         also when $(LIBICONV) is part of LDADD, rather than ${prog}_LDADD.
3776
3777 2010-01-08  Simon Josefsson  <simon@josefsson.org>
3778
3779         * lib/dup2.c (rpl_dup2): Improve comment.
3780
3781 2010-01-08  Eric Blake  <ebb9@byu.net>
3782
3783         maint.mk: allow packages to add makefile @@ exceptions
3784         * top/maint.mk (_makefile_at_at_check_exceptions): New hook.
3785         (sc_makefile_check): Rename...
3786         (sc_makefile_at_at_check): ...to this, and use hook.
3787
3788         dup2: work around mingw bug
3789         * lib/dup2.c (rpl_dup2): Sanitize return value on mingw.
3790         Reported by Simon Josefsson.
3791
3792 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
3793
3794         glob: Fix C++ compilation.
3795         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
3796         C++.
3797
3798 2010-01-07  Bruno Haible  <bruno@clisp.org>
3799
3800         Fix indentation of wctype.in.h, broken since 2007-01-06.
3801         * lib/wctype.in.h: Fix indentation of preprocessor directives.
3802
3803 2010-01-07  Bruno Haible  <bruno@clisp.org>
3804
3805         mbslen: Avoid collision with system function.
3806         * lib/string.in.h [MirBSD]: Include <wchar.h>.
3807         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
3808         * m4/mbslen.m4: New file.
3809         * modules/mbslen (Files): Add it.
3810         (configure.ac): Invoke gl_MBSLEN.
3811         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
3812         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
3813         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
3814         via Ian Beckwith <ianb@erislabs.net>.
3815
3816 2010-01-07  Bruno Haible  <bruno@clisp.org>
3817
3818         dirent: Document the last fix.
3819         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
3820
3821 2010-01-07  Bruno Haible  <bruno@clisp.org>
3822
3823         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
3824         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
3825         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
3826         va_list are defined.
3827         * doc/posix-headers/stdio.texi: Document the bug of missing types.
3828         Reported by Eric Blake.
3829
3830 2010-01-07  Bruno Haible  <bruno@clisp.org>
3831
3832         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
3833         * modules/xlist (Depends-on): Add 'list',
3834         * modules/xoset (Depends-on): Add 'oset'.
3835         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3836
3837 2010-01-07  Bruno Haible  <bruno@clisp.org>
3838
3839         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
3840         * doc/posix-functions/strncasecmp.texi: Likewise.
3841
3842 2010-01-07  Bruno Haible  <bruno@clisp.org>
3843
3844         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
3845
3846 2010-01-07  John W. Eaton  <jwe@octave.org>
3847
3848         wctype: allow C++ use
3849         * lib/wctype.in.h: Add extern "C" block for C++.
3850
3851 2010-01-06  Eric Blake  <ebb9@byu.net>
3852
3853         maint.mk: detect incorrect GFDL usage
3854         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
3855
3856 2010-01-06  Jim Meyering  <meyering@redhat.com>
3857         and Eric Blake  <ebb9@byu.net>
3858
3859         maint.mk: ignore multi-line copyright in NEWS
3860         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
3861
3862 2010-01-06  Eric Blake  <ebb9@byu.net>
3863
3864         select: add missing dependency
3865         * modules/select-tests (Depends-on): Move sockets dependency...
3866         * modules/select (Depends-on): ...here.
3867         Reported by Ian Beckwith.
3868
3869         doc: regenerate INSTALL
3870         * doc/INSTALL: Reflect recent autoconf update.
3871         * doc/INSTALL.ISO: Likewise.
3872         * doc/INSTALL.UTF-8: Likewise.
3873
3874         pread: fix compilation on glibc
3875         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
3876         Reported by Ralf Wildenhues.
3877
3878         dirent: fix test failure
3879         * lib/dirent.in.h (includes): Guarantee ino_t.
3880         Reported by Ralf Wildenhues.
3881
3882 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
3883
3884         linkat, renameat: avoid bad free
3885         * lib/at-func2.c (at_func2): Fix typo.
3886         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
3887
3888 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3889
3890         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
3891         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
3892         to avoid failure of symlink test later.
3893
3894 2010-01-06  Eric Blake  <ebb9@byu.net>
3895
3896         stdio, unistd: guarantee ssize_t
3897         * lib/unistd.in.h (includes): Ensure that types required by POSIX
3898         2008 are exposed when needed.
3899         * lib/stdio.in.h (includes): Likewise.
3900         Reported by Ralf Wildenhues.
3901
3902 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
3903
3904         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
3905         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
3906         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
3907
3908 2010-01-06  Jim Meyering  <meyering@redhat.com>
3909
3910         readtokens: this module *does* require xalloc.h
3911         It uses only functions that were omitted by the old syntax-check rule.
3912         * lib/readtokens.c: Include "xalloc.h" once again.
3913         * modules/readtokens (Depends-on): Add xalloc.
3914         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
3915
3916 2010-01-05  Eric Blake  <ebb9@byu.net>
3917
3918         maint: support 'make announcement' from a VPATH build
3919         * top/maint.mk (announcement): Look for correct NEWS file.
3920
3921 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
3922
3923         utimens (fdutimens): ignore a negative FD, per contract
3924         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
3925         when we have a valid file descriptor.  Otherwise, using a brand
3926         new glibc (with just-patched futimens that now fails with EBADF)
3927         would cause this function to fail with ENOSYS.
3928         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
3929         See also http://bugzilla.redhat.com/552320.
3930
3931 2010-01-05  Eric Blake  <ebb9@byu.net>
3932
3933         strcase: document what it provides
3934         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
3935         gnulib module.
3936         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
3937         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
3938
3939 2010-01-05  Jim Meyering  <meyering@redhat.com>
3940
3941         maint: remove useless inclusions of "xalloc.h"
3942         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
3943         * lib/readtokens.c: Likewise.
3944         * lib/same.c: Likewise.
3945         * modules/getloadavg (Depends-on): Remove xalloc.
3946         * modules/readtokens: Likewise.
3947         * modules/same: Likewise.
3948
3949         maint.mk: include 4 more function names in alloca.h-checking regexp
3950         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
3951         regexp.  Before, we would give a false-positive (saying alloca.h
3952         is included unnecessarily) when the only uses involved omitted symbols.
3953
3954         xalloc.h: use consistent formatting
3955         * lib/xalloc.h: Move declarations to start in the first column.
3956
3957 2010-01-05  Eric Blake  <ebb9@byu.net>
3958
3959         mkdir: avoid xalloc
3960         * lib/mkdir.c (includes): Drop unused header.
3961         Reported by John W. Eaton.
3962
3963 2010-01-04  Jim Meyering  <meyering@redhat.com>
3964
3965         nl_langinfo: avoid configure-time syntax error
3966         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
3967         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
3968         the empty string.  Don't let that provoke a shell syntax error.
3969
3970         regcomp, regexec, fnmatch: avoid array bounds read error
3971         * lib/regcomp.c (build_equiv_class): From glibc:
3972         Use only the low 24 bits of a findidx return value as an index
3973         into the weights array.  Patch by Ulrich Drepper:
3974         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
3975         * lib/regexec.c (check_node_accept_bytes): Likewise.
3976         * lib/fnmatch_loop.c (FCT): Likewise.
3977
3978         regcomp: skip collseq lookup when there are no rules
3979         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
3980         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
3981
3982         regcomp: recognize ill-formed { } expressions
3983         * lib/regcomp.c (parse_dup_op): From glibc:
3984         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
3985
3986         regcomp: fix typo in comment
3987         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
3988         s/satisfy/satisfies/.
3989
3990         regcomp: sync from glibc: remove dead store
3991         * lib/regcomp.c (duplicate_node_closure): Remove useless
3992         search_duplicated_node call and dead store.
3993
3994         regcomp: sync from glibc; always use nl_langinfo
3995         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
3996         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
3997         * modules/regex (Depends-on): Add nl_langinfo.
3998
3999 2010-01-04  Eric Blake  <ebb9@byu.net>
4000
4001         fdopendir: fix configure test
4002         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
4003
4004 2010-01-01  Bruno Haible  <bruno@clisp.org>
4005
4006         wchar: Remove unused configure check.
4007         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
4008
4009 2010-01-01  Eric Blake  <ebb9@byu.net>
4010
4011         headers: make check of system header explicit
4012         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
4013         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
4014         ourselves.
4015         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
4016         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4017         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
4018         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
4019         internals.
4020         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
4021         missing.
4022         Suggested by Bruno Haible.
4023
4024 2010-01-01  Jim Meyering  <meyering@redhat.com>
4025
4026         ChangeLog: tweak to eliminate unnecessary copyright line
4027         * ChangeLog: Remove a copyright line that was mistakenly updated
4028         by today's update-copyright run.  Reported by Eric Blake.
4029
4030         test-update-copyright: don't let envvar setting cause test failure
4031         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
4032
4033 2010-01-01  Bruno Haible  <bruno@clisp.org>
4034
4035         localename: Avoid gcc warning.
4036         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
4037         function if it is not used.
4038
4039 2010-01-01  Jim Meyering  <meyering@redhat.com>
4040
4041         update nearly all FSF copyright year lists to include 2010
4042         Use the same procedure as for 2009, outlined in
4043         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
4044
4045         version-etc: set COPYRIGHT_YEAR to 2010
4046         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
4047
4048 2009-12-31  Eric Blake  <ebb9@byu.net>
4049
4050         doc: correct availability of cygwin 1.5.x getopt
4051         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
4052         variables.
4053         * doc/posix-functions/opterr.texi (opterr): Likewise.
4054         * doc/posix-functions/optind.texi (optind): Likewise.
4055         * doc/posix-functions/optopt.texi (optopt): Likewise.
4056         * doc/posix-functions/tzname.texi (tzname): Likewise.
4057
4058         openat: update maintainer
4059         * modules/openat (Maintainer): Add myself.
4060
4061         utimens: avoid shadowing warning
4062         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
4063         buffers into one, to avoid shadowing, as well as avoiding a
4064         redundant stat.
4065         Reported by Jim Meyering.
4066
4067         test-dup2: avoid compiler warning
4068         * tests/test-dup2.c (is_inheritable): Only define if used.
4069
4070 2010-01-01  Bruno Haible  <bruno@clisp.org>
4071
4072         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
4073         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
4074         defined, use wctomb instead of wcrtomb.
4075
4076 2010-01-01  Bruno Haible  <bruno@clisp.org>
4077
4078         iconv: Reject native Solaris iconv.
4079         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
4080         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
4081
4082 2009-12-31  Bruno Haible  <bruno@clisp.org>
4083
4084         * tests/test-signal.c (main): Remove test of 'SIG'.
4085
4086 2009-12-31  Bruno Haible  <bruno@clisp.org>
4087
4088         spawn: Fix incomplete fix.
4089         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4090         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4091         warnings for GNULIB_POSIXCHECK again.
4092         Reported by Eric Blake.
4093
4094 2009-12-31  Bruno Haible  <bruno@clisp.org>
4095
4096         Avoid namespace pollution on glibc systems.
4097         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
4098         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
4099         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
4100         glibc systems.
4101
4102 2009-12-31  Bruno Haible  <bruno@clisp.org>
4103
4104         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
4105         (gl_REPLACE_WCHAR_H): Turn into a no-op.
4106         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
4107         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
4108         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
4109         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
4110         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
4111
4112 2009-12-31  Bruno Haible  <bruno@clisp.org>
4113
4114         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
4115         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
4116         afterwards.
4117
4118 2009-12-31  Bruno Haible  <bruno@clisp.org>
4119
4120         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
4121         SYS_UTSNAME_H.
4122
4123 2009-12-31  Bruno Haible  <bruno@clisp.org>
4124
4125         spawn: Fix misapplied patch.
4126         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4127         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4128         warnings for GNULIB_POSIXCHECK.
4129
4130 2009-12-31  Bruno Haible  <bruno@clisp.org>
4131
4132         times: Update after sys_times changed.
4133         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
4134         * modules/times (Files): Add it.
4135         (configure.ac): Invoke gl_FUNC_TIMES.
4136
4137 2009-12-31  Bruno Haible  <bruno@clisp.org>
4138
4139         Use AC_C_INLINE where necessary.
4140         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
4141         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
4142         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
4143         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
4144         * m4/mbfile.m4 (gl_MBFILE): Likewise.
4145         * m4/mbiter.m4 (gl_MBITER): Likewise.
4146         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
4147         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
4148         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
4149         * modules/u64 (configure.ac): Likewise.
4150
4151 2009-12-31  Bruno Haible  <bruno@clisp.org>
4152
4153         Use AC_C_INLINE instead of module 'inline' where possible.
4154         * modules/inline (Description): Clarify purpose.
4155         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
4156         * modules/count-one-bits (Depends-on): Remove inline.
4157         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
4158         * modules/openat (Depends-on): Remove inline.
4159         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
4160         instead of depending on module 'inline'.
4161         * modules/filevercmp (Depends-on, configure.ac): Likewise.
4162         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
4163         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
4164         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
4165         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
4166         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
4167         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
4168         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
4169         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
4170         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
4171         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
4172         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
4173         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
4174         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
4175         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
4176         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
4177         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
4178         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
4179         Likewise.
4180         * modules/unictype/property-ascii-hex-digit (Depends-on,
4181         configure.ac): Likewise.
4182         * modules/unictype/property-bidi-arabic-digit (Depends-on,
4183         configure.ac): Likewise.
4184         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
4185         configure.ac): Likewise.
4186         * modules/unictype/property-bidi-block-separator (Depends-on,
4187         configure.ac): Likewise.
4188         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
4189         configure.ac): Likewise.
4190         * modules/unictype/property-bidi-common-separator (Depends-on,
4191         configure.ac): Likewise.
4192         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
4193         Likewise.
4194         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
4195         configure.ac): Likewise.
4196         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
4197         configure.ac): Likewise.
4198         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
4199         configure.ac): Likewise.
4200         * modules/unictype/property-bidi-european-digit (Depends-on,
4201         configure.ac): Likewise.
4202         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
4203         configure.ac): Likewise.
4204         * modules/unictype/property-bidi-left-to-right (Depends-on,
4205         configure.ac): Likewise.
4206         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
4207         configure.ac): Likewise.
4208         * modules/unictype/property-bidi-other-neutral (Depends-on,
4209         configure.ac): Likewise.
4210         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
4211         Likewise.
4212         * modules/unictype/property-bidi-segment-separator (Depends-on,
4213         configure.ac): Likewise.
4214         * modules/unictype/property-bidi-whitespace (Depends-on,
4215         configure.ac): Likewise.
4216         * modules/unictype/property-combining (Depends-on, configure.ac):
4217         Likewise.
4218         * modules/unictype/property-composite (Depends-on, configure.ac):
4219         Likewise.
4220         * modules/unictype/property-currency-symbol (Depends-on,
4221         configure.ac): Likewise.
4222         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
4223         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
4224         Likewise.
4225         * modules/unictype/property-default-ignorable-code-point (Depends-on,
4226         configure.ac): Likewise.
4227         * modules/unictype/property-deprecated (Depends-on, configure.ac):
4228         Likewise.
4229         * modules/unictype/property-diacritic (Depends-on, configure.ac):
4230         Likewise.
4231         * modules/unictype/property-extender (Depends-on, configure.ac):
4232         Likewise.
4233         * modules/unictype/property-format-control (Depends-on, configure.ac):
4234         Likewise.
4235         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
4236         Likewise.
4237         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
4238         Likewise.
4239         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
4240         Likewise.
4241         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
4242         Likewise.
4243         * modules/unictype/property-hyphen (Depends-on, configure.ac):
4244         Likewise.
4245         * modules/unictype/property-id-continue (Depends-on, configure.ac):
4246         Likewise.
4247         * modules/unictype/property-id-start (Depends-on, configure.ac):
4248         Likewise.
4249         * modules/unictype/property-ideographic (Depends-on, configure.ac):
4250         Likewise.
4251         * modules/unictype/property-ids-binary-operator (Depends-on,
4252         configure.ac): Likewise.
4253         * modules/unictype/property-ids-trinary-operator (Depends-on,
4254         configure.ac): Likewise.
4255         * modules/unictype/property-ignorable-control (Depends-on,
4256         configure.ac): Likewise.
4257         * modules/unictype/property-iso-control (Depends-on, configure.ac):
4258         Likewise.
4259         * modules/unictype/property-join-control (Depends-on, configure.ac):
4260         Likewise.
4261         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
4262         Likewise.
4263         * modules/unictype/property-line-separator (Depends-on, configure.ac):
4264         Likewise.
4265         * modules/unictype/property-logical-order-exception (Depends-on,
4266         configure.ac): Likewise.
4267         * modules/unictype/property-lowercase (Depends-on, configure.ac):
4268         Likewise.
4269         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
4270         * modules/unictype/property-non-break (Depends-on, configure.ac):
4271         Likewise.
4272         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
4273         Likewise.
4274         * modules/unictype/property-numeric (Depends-on, configure.ac):
4275         Likewise.
4276         * modules/unictype/property-other-alphabetic (Depends-on,
4277         configure.ac): Likewise.
4278         * modules/unictype/property-other-default-ignorable-code-point
4279         (Depends-on, configure.ac): Likewise.
4280         * modules/unictype/property-other-grapheme-extend (Depends-on,
4281         configure.ac): Likewise.
4282         * modules/unictype/property-other-id-continue (Depends-on,
4283         configure.ac): Likewise.
4284         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
4285         Likewise.
4286         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
4287         Likewise.
4288         * modules/unictype/property-other-math (Depends-on, configure.ac):
4289         Likewise.
4290         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
4291         Likewise.
4292         * modules/unictype/property-paired-punctuation (Depends-on,
4293         configure.ac): Likewise.
4294         * modules/unictype/property-paragraph-separator (Depends-on,
4295         configure.ac): Likewise.
4296         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
4297         Likewise.
4298         * modules/unictype/property-pattern-white-space (Depends-on,
4299         configure.ac): Likewise.
4300         * modules/unictype/property-private-use (Depends-on, configure.ac):
4301         Likewise.
4302         * modules/unictype/property-punctuation (Depends-on, configure.ac):
4303         Likewise.
4304         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
4305         Likewise.
4306         * modules/unictype/property-radical (Depends-on, configure.ac):
4307         Likewise.
4308         * modules/unictype/property-sentence-terminal (Depends-on,
4309         configure.ac): Likewise.
4310         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
4311         Likewise.
4312         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
4313         * modules/unictype/property-terminal-punctuation (Depends-on,
4314         configure.ac): Likewise.
4315         * modules/unictype/property-titlecase (Depends-on, configure.ac):
4316         Likewise.
4317         * modules/unictype/property-unassigned-code-value (Depends-on,
4318         configure.ac): Likewise.
4319         * modules/unictype/property-unified-ideograph (Depends-on,
4320         configure.ac): Likewise.
4321         * modules/unictype/property-uppercase (Depends-on, configure.ac):
4322         Likewise.
4323         * modules/unictype/property-variation-selector (Depends-on,
4324         configure.ac): Likewise.
4325         * modules/unictype/property-white-space (Depends-on, configure.ac):
4326         Likewise.
4327         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
4328         Likewise.
4329         * modules/unictype/property-xid-start (Depends-on, configure.ac):
4330         Likewise.
4331         * modules/unictype/property-zero-width (Depends-on, configure.ac):
4332         Likewise.
4333         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
4334         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
4335         Likewise.
4336
4337 2009-12-31  Bruno Haible  <bruno@clisp.org>
4338
4339         Remove unnecessary AC_C_INLINE invocation.
4340         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
4341         since 2009-08-21.
4342
4343 2009-12-31  Jim Meyering  <meyering@redhat.com>
4344
4345         maint.mk: don't require explicit gpg_key_ID in cfg.mk
4346         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
4347         With this change, we can all remove the gpg_key_ID = ... definition
4348         from our respective cfg.mk files.
4349
4350         maint.mk: create announcement template in ~/, not in /tmp
4351         * top/maint.mk (emit_upload_commands): Adjust.
4352         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
4353         Remove temporary file, .ci-msg.
4354
4355 2009-12-31  Eric Blake  <ebb9@byu.net>
4356
4357         link-warning: always build headers with link warnings
4358         * modules/arpa_inet (Makefile.am): Always build replacement
4359         header.
4360         * modules/ctype (Makefile.am): Likewise.
4361         * modules/dirent (Makefile.am): Likewise.
4362         * modules/inttypes (Makefile.am): Likewise.
4363         * modules/langinfo (Makefile.am): Likewise.
4364         * modules/locale (Makefile.am): Likewise.
4365         * modules/spawn (Makefile.am): Likewise.
4366         * modules/sys_file (Makefile.am): Likewise.
4367         * modules/sys_ioctl (Makefile.am): Likewise.
4368         * modules/sys_select (Makefile.am): Likewise.
4369         * modules/sys_socket (Makefile.am): Likewise.
4370         * modules/sys_times (Makefile.am): Likewise.
4371         * modules/sys_utsname (Makefile.am): Likewise.
4372         * modules/sys_wait (Makefile.am): Likewise.
4373         * modules/wchar (Makefile.am): Likewise.
4374         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
4375         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
4376         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
4377         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
4378         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
4379         Likewise.
4380         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4381         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
4382         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
4383         Likewise.
4384         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
4385         Likewise.
4386         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
4387         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
4388         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
4389         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4390         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
4391         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
4392         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
4393         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
4394         (gl_WCHAR_H_DEFAULTS): Likewise.
4395
4396 2009-12-31  Eric Blake  <ebb9@byu.net>
4397
4398         signal, spawn: use link warnings
4399         * lib/signal.in.h (sigset_t): Make unconditional.
4400         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
4401         (sigpending, sigprocmask, sigaction): Add link warnings.
4402         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
4403         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
4404         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
4405         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
4406         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
4407         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
4408         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
4409         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
4410         (posix_spawn_file_actions_destroy)
4411         (posix_spawn_file_actions_addopen)
4412         (posix_spawn_file_actions_addclose)
4413         (posix_spawn_file_actions_adddup2): Likewise.
4414         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
4415         * tests/test-signal.c (main): Enhance test.
4416
4417         spawn: improve wrapper support
4418         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
4419         (gl_SPAWN_H_DEFAULTS): New defaults.
4420         * modules/spawn (Makefile.am): Substitute them.
4421         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
4422         Only declare if missing or broken.
4423
4424         sys_times, sys_utsname: use include_next
4425         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
4426         header.
4427         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
4428         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
4429         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
4430         * modules/sys_times (Depends-on): Add include_next.
4431         (Makefile.am): Substitute additional values.
4432         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
4433         * lib/sys_times.in.h (includes): Include native header, if
4434         available.
4435         * lib/sys_utsname.in.h (includes): Likewise.
4436         * tests/test-sys_times.c (main): Enhance test.
4437
4438         fdutimensat: revert prior patch
4439         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
4440         utimens.h.
4441         Reported by Bruno Haible.
4442
4443 2009-12-30  Eric Blake  <ebb9@byu.net>
4444
4445         sys_wait: drop link-warning dependency
4446         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
4447         link-warning efforts.
4448         * lib/sys_wait.in.h: Likewise.
4449
4450         fdutimensat: remove bogus dependency
4451         * modules/fdutimensat (Depends-on): Drop inline.
4452
4453         unistd: fix typo
4454         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
4455
4456 2009-12-30  Bruno Haible  <bruno@clisp.org>
4457
4458         Fix compilation error with Solaris cc.
4459         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
4460         * lib/unicase/u16-is-invariant.c: Likewise.
4461         * lib/unicase/u32-is-invariant.c: Likewise.
4462         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
4463
4464 2009-12-30  Bruno Haible  <bruno@clisp.org>
4465
4466         Fix test crash.
4467         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
4468         locales.
4469         Reported by Simon Josefsson <simon@josefsson.org>.
4470
4471 2009-12-30  Bruno Haible  <bruno@clisp.org>
4472
4473         Fix compilation error on most platforms.
4474         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
4475         Reported by Simon Josefsson <simon@josefsson.org>
4476         and Nelson H. F. Beebe <beebe@math.utah.edu>.
4477
4478 2009-12-30  Eric Blake  <ebb9@byu.net>
4479
4480         futimens, utimensat: work around ntfs-3g bug
4481         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
4482         a ctime bug is present, and expand workaround to cover ntfs-3g.
4483         * lib/utimens.c (fdutimens, lutimens): Likewise.
4484         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
4485         (validate_timespec): Adjust return value.
4486         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
4487         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
4488         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
4489
4490 2009-12-29  Eric Blake  <ebb9@byu.net>
4491
4492         link-warning: make usage consistent
4493         * modules/ctype (Depends-on): Add link-warning.
4494         (Makefile.am): Update rules accordingly.
4495         * modules/langinfo (Depends-on, Makefile.am): Likewise.
4496         * modules/locale (Depends-on, Makefile.am): Likewise.
4497         * modules/sys_file (Makefile.am): Likewise.
4498         * modules/getopt-posix (Makefile.am): Delete unused link warning
4499         efforts.
4500         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
4501         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
4502         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
4503         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
4504
4505         stdio: remove unused variables
4506         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
4507         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
4508         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
4509
4510         tests: test more substitute headers
4511         * modules/ctype-tests: New file.
4512         * modules/dirent-tests: Likewise.
4513         * modules/spawn-tests: Likewise.
4514         * modules/sys_file-tests: Likewise.
4515         * modules/sys_ioctl-tests: Likewise.
4516         * modules/sys_wait-tests: Likewise.
4517         * tests/test-ctype.c: Likewise.
4518         * tests/test-dirent.c: Likewise.
4519         * tests/test-spawn.c: Likewise.
4520         * tests/test-sys_file.c: Likewise.
4521         * tests/test-sys_ioctl.c: Likewise.
4522         * tests/test-sys_wait.c: Likewise.
4523         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
4524         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
4525         whether or not flock is in use.
4526
4527         tests: remove License section from module
4528         * modules/arpa_inet-tests: Remove unneeded section.
4529         * modules/byteswap-tests: Likewise.
4530         * modules/ceilf-tests: Likewise.
4531         * modules/ceill-tests: Likewise.
4532         * modules/crypto/des-tests: Likewise.
4533         * modules/crypto/gc-arcfour-tests: Likewise.
4534         * modules/crypto/gc-arctwo-tests: Likewise.
4535         * modules/crypto/gc-des-tests: Likewise.
4536         * modules/crypto/gc-hmac-md5-tests: Likewise.
4537         * modules/crypto/gc-hmac-sha1-tests: Likewise.
4538         * modules/crypto/gc-md2-tests: Likewise.
4539         * modules/crypto/gc-md4-tests: Likewise.
4540         * modules/crypto/gc-md5-tests: Likewise.
4541         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
4542         * modules/crypto/gc-rijndael-tests: Likewise.
4543         * modules/crypto/gc-sha1-tests: Likewise.
4544         * modules/crypto/gc-tests: Likewise.
4545         * modules/crypto/md2-tests: Likewise.
4546         * modules/crypto/md4-tests: Likewise.
4547         * modules/fcntl-h-tests: Likewise.
4548         * modules/floorf-tests: Likewise.
4549         * modules/floorl-tests: Likewise.
4550         * modules/frexp-nolibm-tests: Likewise.
4551         * modules/frexp-tests: Likewise.
4552         * modules/frexpl-nolibm-tests: Likewise.
4553         * modules/frexpl-tests: Likewise.
4554         * modules/getaddrinfo-tests: Likewise.
4555         * modules/inttypes-tests: Likewise.
4556         * modules/isfinite-tests: Likewise.
4557         * modules/isinf-tests: Likewise.
4558         * modules/ldexpl-tests: Likewise.
4559         * modules/locale-tests: Likewise.
4560         * modules/math-tests: Likewise.
4561         * modules/netdb-tests: Likewise.
4562         * modules/netinet_in-tests: Likewise.
4563         * modules/printf-frexp-tests: Likewise.
4564         * modules/printf-frexpl-tests: Likewise.
4565         * modules/priv-set-tests: Likewise.
4566         * modules/random_r-tests: Likewise.
4567         * modules/round-tests: Likewise.
4568         * modules/roundf-tests: Likewise.
4569         * modules/roundl-tests: Likewise.
4570         * modules/search-tests: Likewise.
4571         * modules/select-tests: Likewise.
4572         * modules/signal-tests: Likewise.
4573         * modules/stdbool-tests: Likewise.
4574         * modules/stddef-tests: Likewise.
4575         * modules/stdint-tests: Likewise.
4576         * modules/stdio-tests: Likewise.
4577         * modules/stdlib-tests: Likewise.
4578         * modules/string-tests: Likewise.
4579         * modules/strings-tests: Likewise.
4580         * modules/sys_select-tests: Likewise.
4581         * modules/sys_socket-tests: Likewise.
4582         * modules/sys_stat-tests: Likewise.
4583         * modules/sys_time-tests: Likewise.
4584         * modules/sys_utsname-tests: Likewise.
4585         * modules/sysexits-tests: Likewise.
4586         * modules/time-tests: Likewise.
4587         * modules/trunc-tests: Likewise.
4588         * modules/truncf-tests: Likewise.
4589         * modules/truncl-tests: Likewise.
4590         * modules/tsearch-tests: Likewise.
4591         * modules/unistd-tests: Likewise.
4592         * modules/wchar-tests: Likewise.
4593         * modules/wctype-tests: Likewise.
4594
4595         tests: fix license on several tests
4596         * tests/test-des.c: Update to GPLv3+.
4597         * tests/test-flock.c: Likewise.
4598         * tests/test-fsync.c: Likewise.
4599         * tests/test-futimens.h: Likewise.
4600         * tests/test-gc-arcfour.c: Likewise.
4601         * tests/test-gc-arctwo.c: Likewise.
4602         * tests/test-gc-des.c: Likewise.
4603         * tests/test-gc-hmac-md5.c: Likewise.
4604         * tests/test-gc-hmac-sha1.c: Likewise.
4605         * tests/test-gc-md2.c: Likewise.
4606         * tests/test-gc-md4.c: Likewise.
4607         * tests/test-gc-md5.c: Likewise.
4608         * tests/test-gc-pbkdf2-sha1.c: Likewise.
4609         * tests/test-gc-rijndael.c: Likewise.
4610         * tests/test-gc-sha1.c: Likewise.
4611         * tests/test-gc.c: Likewise.
4612         * tests/test-getcwd.c: Likewise.
4613         * tests/test-link.c: Likewise.
4614         * tests/test-link.h: Likewise.
4615         * tests/test-lutimens.h: Likewise.
4616         * tests/test-md2.c: Likewise.
4617         * tests/test-md4.c: Likewise.
4618         * tests/test-mkdir.h: Likewise.
4619         * tests/test-rename.c: Likewise.
4620         * tests/test-rename.h: Likewise.
4621         * tests/test-safe-alloc.c: Likewise.
4622         * tests/test-utimens-common.h: Likewise.
4623         * tests/test-utimens.h: Likewise.
4624
4625         maint: sync license texts
4626         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
4627         * doc/gpl-3.0.texi: Revert copyright year update.
4628         * doc/lgpl-3.0.texi: Likewise.
4629
4630 2009-12-29  Jim Meyering  <meyering@redhat.com>
4631
4632         update nearly all FSF copyright year lists to include 2009
4633         The files named by the following are exempted:
4634             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
4635               test -f "$dst" && { echo "$dst"; continue; }
4636               test -d "$dst" || continue
4637               echo "$dst"/$(basename "$src")
4638             done > exempt
4639             git ls-files tests/unictype >> exempt
4640         In the remaining files, convert to all-interval notation if
4641         - there is already at least one year interval like 2000-2003
4642         - the file is maintained by me
4643         - the file is in lib/uni*/, where that style already prevails
4644         Otherwise, use update-copyright's default.
4645
4646 2009-12-29  Simon Josefsson  <simon@josefsson.org>
4647         and Eric Blake  <ebb9@byu.net>
4648
4649         tests: don't require debug system() to pass
4650         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
4651         * tests/test-rmdir.h (test_rmdir_func): Likewise.
4652         * tests/test-unlink.h (test_unlink_func): Likewise.
4653         * tests/test-fstatat.c (main): ...into callers.
4654         * tests/test-lstat.c (main): Likewise.
4655         * tests/test-rmdir.c (main): Likewise.
4656         * tests/test-unlink.c (main): Likewise.
4657         * tests/test-unlinkat.c (main): Likewise.
4658         * tests/test-areadlink-with-size.c (main): Don't require a
4659         debug-only system call to pass, aiding cross-testing to mingw.
4660         * tests/test-areadlink.c (main): Likewise.
4661         * tests/test-areadlinkat-with-size.c (main): Likewise.
4662         * tests/test-areadlinkat.c (main): Likewise.
4663         * tests/test-canonicalize-lgpl.c (main): Likewise.
4664         * tests/test-canonicalize.c (main): Likewise.
4665         * tests/test-chown.c (main): Likewise.
4666         * tests/test-fchownat.c (main): Likewise.
4667         * tests/test-lchown.c (main): Likewise.
4668         * tests/test-fdutimensat.c (main): Likewise.
4669         * tests/test-futimens.c (main): Likewise.
4670         * tests/test-link.c (main): Likewise.
4671         * tests/test-linkat.c (main): Likewise.
4672         * tests/test-mkdir.c (main): Likewise.
4673         * tests/test-mkdirat.c (main): Likewise.
4674         * tests/test-mkfifo.c (main): Likewise.
4675         * tests/test-mkfifoat.c (main): Likewise.
4676         * tests/test-mknod.c (main): Likewise.
4677         * tests/test-readlink.c (main): Likewise.
4678         * tests/test-remove.c (main): Likewise.
4679         * tests/test-rename.c (main): Likewise.
4680         * tests/test-renameat.c (main): Likewise.
4681         * tests/test-symlink.c (main): Likewise.
4682         * tests/test-symlinkat.c (main): Likewise.
4683         * tests/test-utimens.c (main): Likewise.
4684         * tests/test-utimensat.c (main): Likewise.
4685
4686 2009-12-29  Simon Josefsson  <simon@josefsson.org>
4687
4688         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
4689         on $(UNUSED_PARAMETER_H) to avoid build failure.
4690
4691 2009-12-28  Jim Meyering  <meyering@redhat.com>
4692
4693         update-copyright: you may specify a max. line length other than 72
4694         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
4695
4696         maint: use consistent FSF copyright line syntax
4697         * lib/posixtm.c: Add missing comma in FSF copyright line.
4698         * lib/posixtm.h: Likewise.
4699         * lib/getugroups.c: Add missing ", Inc.".
4700
4701         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
4702         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
4703         FSF copyright line.  Remove trailing blanks.
4704
4705 2009-12-28  Eric Blake  <ebb9@byu.net>
4706
4707         test-dup2: reduce dependencies
4708         * modules/cloexec (Configure.ac): Set witness.
4709         * modules/dup2-tests (Depends-on): Drop cloexec.
4710         * tests/test-dup2.c (main): Skip portion of test if cloexec module
4711         not present.
4712         Suggested by Bruno Haible.
4713
4714 2009-12-26  Bruno Haible  <bruno@clisp.org>
4715
4716         Remove an unneeded dependency.
4717         * modules/fseterr (Depends-on): Remove dup2.
4718
4719 2009-12-26  Eric Blake  <ebb9@byu.net>
4720
4721         tests: use macros.h in more places
4722         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
4723         (ASSERT_STREAM): Provide default of stderr.
4724         * tests/test-dirent-safer.c: Include macros.h, using alternate
4725         stream for assertions.
4726         * tests/test-dup-safer.c: Likewise.
4727         * tests/test-freopen-safer.c: Likewise.
4728         * tests/test-getopt.c: Likewise.
4729         * tests/test-openat-safer.c: Likewise.
4730         * tests/test-pipe.c: Likewise.
4731         * tests/test-popen-safer.c: Likewise.
4732         * modules/dirent-safer-tests (Files): Include macros.h.
4733         * modules/unistd-safer-tests (Files): Likewise.
4734         * modules/freopen-safer-tests (Files): Likewise.
4735         * modules/getopt-posix-tests (Files): Likewise.
4736         * modules/openat-safer-tests (Files): Likewise.
4737         * modules/pipe-tests (Files): Likewise.
4738
4739 2009-12-26  Bruno Haible  <bruno@clisp.org>
4740
4741         javacomp: Portability fix.
4742         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
4743         that it also works on Solaris.
4744
4745 2009-12-26  Bruno Haible  <bruno@clisp.org>
4746
4747         localename: Fix storage allocation of gl_locale_name_thread's result.
4748         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
4749         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
4750         all platforms that have 'uselocale'.
4751         (gl_locale_name_thread_unsafe): New function, extracted from
4752         gl_locale_name_thread.
4753         (gl_locale_name_thread): Call struniq on all platforms that have
4754         'uselocale'.
4755         * tests/test-localename.c (test_locale_name_thread): Check that the
4756         resulting strings are permanently allocated.
4757         * modules/localename-tests (Depends-on): Add strdup.
4758
4759 2009-12-26  Bruno Haible  <bruno@clisp.org>
4760
4761         * tests/test-localename.c (categories): Fill in the strings.
4762
4763 2009-12-26  Jim Meyering  <meyering@redhat.com>
4764
4765         isdir: complete the removal of m4/isdir.m4
4766         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
4767
4768         isdir: clean up, since at least grep still uses it
4769         * lib/isdir.c: Include "isdir.h".
4770         (S_ISDIR): Remove now-unneeded definition.
4771         * modules/isdir (Files): Add lib/isdir.h.
4772         * lib/isdir.h: New file, with declaration.
4773         * m4/isdir.m4: Remove file -- unneeded.
4774
4775 2009-12-25  Bruno Haible  <bruno@clisp.org>
4776
4777         selinux-h: Make generated .h files standalone.
4778         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
4779         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
4780         * lib/se-selinux.in.h: Likewise.
4781         * modules/selinux-h (Depends-on): Add unused-parameter.
4782         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
4783         selinux/selinux.h and selinux/context.h.
4784         Suggested by Eric Blake.
4785
4786 2009-12-25  Bruno Haible  <bruno@clisp.org>
4787
4788         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
4789         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
4790         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
4791         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
4792         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
4793
4794 2009-12-24  Bruno Haible  <bruno@clisp.org>
4795
4796         openat: Fix warning.
4797         * lib/openat-proc.c: Include <unistd.h>.
4798
4799 2009-12-24  Bruno Haible  <bruno@clisp.org>
4800
4801         New module 'unused-parameter'.
4802         * build-aux/unused-parameter.h: New file, extracted from earlier
4803         gnulib-common.m4.
4804         * modules/unused-parameter: New file.
4805         * lib/unistr.h: Include unused-parameter.h.
4806         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
4807         _GL_UNUSED.
4808         * modules/unistr/base (Depends-on): Add unused-parameter.
4809
4810 2009-12-24  Bruno Haible  <bruno@clisp.org>
4811
4812         Add missing dependencies to 'extensions' module.
4813         * m4/extensions.m4: Add comment.
4814         * modules/accept4 (Depends-on): Add extensions.
4815         * modules/dup3 (Depends-on): Likewise.
4816         * modules/fcntl (Depends-on): Likewise.
4817         * modules/futimens (Depends-on): Likewise.
4818         * modules/mknod (Depends-on): Likewise.
4819         * modules/pipe2 (Depends-on): Likewise.
4820         * modules/stat-time (Depends-on): Likewise.
4821         * modules/strcasestr-simple (Depends-on): Likewise.
4822         * modules/strsignal (Depends-on): Likewise.
4823         * modules/utimensat (Depends-on): Likewise.
4824         * modules/localcharset (Depends-on): Likewise. Needed because of
4825         gl_FCNTL_O_FLAGS.
4826         * modules/wcrtomb (Depends-on): Likewise. Needed because of
4827         AC_TYPE_MBSTATE_T.
4828         * modules/wcsnrtombs (Depends-on): Likewise.
4829         * modules/wcsrtombs (Depends-on): Likewise.
4830
4831 2009-12-24  Bruno Haible  <bruno@clisp.org>
4832
4833         binary-io: Avoid gcc warning due to SET_BINARY.
4834         * lib/binary-io.h (SET_BINARY): Cast the result to void.
4835         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
4836
4837 2009-12-24  Bruno Haible  <bruno@clisp.org>
4838
4839         Avoid future namespace pollution on glibc systems.
4840         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
4841         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
4842         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
4843         glibc systems.
4844
4845 2009-12-24  Bruno Haible  <bruno@clisp.org>
4846
4847         Refactor common macros used in tests.
4848         * tests/macros.h: New file.
4849         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
4850         and/or <stdlib.h>, if appropriate.
4851         (ASSERT, SIZEOF): Remove macros.
4852         * tests/test-areadlink-with-size.c: Likewise.
4853         * tests/test-areadlinkat.c: Likewise.
4854         * tests/test-areadlinkat-with-size.c: Likewise.
4855         * tests/test-argmatch.c: Likewise.
4856         * tests/test-argv-iter.c: Likewise.
4857         * tests/test-array-mergesort.c: Likewise.
4858         * tests/test-array_list.c: Likewise.
4859         * tests/test-array_oset.c: Likewise.
4860         * tests/test-avltree_list.c: Likewise.
4861         * tests/test-avltree_oset.c: Likewise.
4862         * tests/test-avltreehash_list.c: Likewise.
4863         * tests/test-base64.c: Likewise.
4864         * tests/test-binary-io.c: Likewise.
4865         * tests/test-bitrotate.c: Likewise.
4866         * tests/test-btowc.c: Likewise.
4867         * tests/test-byteswap.c: Likewise.
4868         * tests/test-c-ctype.c: Likewise.
4869         * tests/test-c-stack.c: Likewise.
4870         * tests/test-c-strcasecmp.c: Likewise.
4871         * tests/test-c-strcasestr.c: Likewise.
4872         * tests/test-c-strncasecmp.c: Likewise.
4873         * tests/test-c-strstr.c: Likewise.
4874         * tests/test-canonicalize-lgpl.c: Likewise.
4875         * tests/test-canonicalize.c: Likewise.
4876         * tests/test-carray_list.c: Likewise.
4877         * tests/test-ceilf1.c: Likewise.
4878         * tests/test-ceilf2.c: Likewise.
4879         * tests/test-ceill.c: Likewise.
4880         * tests/test-chown.c: Likewise.
4881         * tests/test-cloexec.c: Likewise.
4882         * tests/test-copy-acl.c: Likewise.
4883         * tests/test-copy-file.c: Likewise.
4884         * tests/test-count-one-bits.c: Likewise.
4885         * tests/test-dprintf-posix.c: Likewise.
4886         * tests/test-dup2.c: Likewise.
4887         * tests/test-dup3.c: Likewise.
4888         * tests/test-duplocale.c: Likewise.
4889         * tests/test-fbufmode.c: Likewise.
4890         * tests/test-fchdir.c: Likewise.
4891         * tests/test-fchownat.c: Likewise.
4892         * tests/test-fcntl-safer.c: Likewise.
4893         * tests/test-fcntl.c: Likewise.
4894         * tests/test-fdopendir.c: Likewise.
4895         * tests/test-fdutimensat.c: Likewise.
4896         * tests/test-fflush2.c: Likewise.
4897         * tests/test-file-has-acl.c: Likewise.
4898         * tests/test-filevercmp.c: Likewise.
4899         * tests/test-flock.c: Likewise.
4900         * tests/test-floorf1.c: Likewise.
4901         * tests/test-floorf2.c: Likewise.
4902         * tests/test-floorl.c: Likewise.
4903         * tests/test-fnmatch.c: Likewise.
4904         * tests/test-fopen.h: Likewise.
4905         * tests/test-fpending.c: Likewise.
4906         * tests/test-fprintf-posix.c: Likewise.
4907         * tests/test-fpurge.c: Likewise.
4908         * tests/test-freadable.c: Likewise.
4909         * tests/test-freadahead.c: Likewise.
4910         * tests/test-freading.c: Likewise.
4911         * tests/test-freadptr.c: Likewise.
4912         * tests/test-freadptr2.c: Likewise.
4913         * tests/test-freadseek.c: Likewise.
4914         * tests/test-freopen.c: Likewise.
4915         * tests/test-frexp.c: Likewise.
4916         * tests/test-frexpl.c: Likewise.
4917         * tests/test-fseek.c: Likewise.
4918         * tests/test-fseeko.c: Likewise.
4919         * tests/test-fstatat.c: Likewise.
4920         * tests/test-fstrcmp.c: Likewise.
4921         * tests/test-fsync.c: Likewise.
4922         * tests/test-ftell.c: Likewise.
4923         * tests/test-ftello.c: Likewise.
4924         * tests/test-func.c: Likewise.
4925         * tests/test-futimens.c: Likewise.
4926         * tests/test-fwritable.c: Likewise.
4927         * tests/test-fwriting.c: Likewise.
4928         * tests/test-getcwd.c: Likewise.
4929         * tests/test-getdate.c: Likewise.
4930         * tests/test-getdelim.c: Likewise.
4931         * tests/test-getdtablesize.c: Likewise.
4932         * tests/test-getgroups.c: Likewise.
4933         * tests/test-getline.c: Likewise.
4934         * tests/test-getndelim2.c: Likewise.
4935         * tests/test-glob.c: Likewise.
4936         * tests/test-hash.c: Likewise.
4937         * tests/test-i-ring.c: Likewise.
4938         * tests/test-iconv-utf.c: Likewise.
4939         * tests/test-iconv.c: Likewise.
4940         * tests/test-idpriv-drop.c: Likewise.
4941         * tests/test-idpriv-droptemp.c: Likewise.
4942         * tests/test-inet_ntop.c: Likewise.
4943         * tests/test-inet_pton.c: Likewise.
4944         * tests/test-isblank.c: Likewise.
4945         * tests/test-isfinite.c: Likewise.
4946         * tests/test-isinf.c: Likewise.
4947         * tests/test-isnan.c: Likewise.
4948         * tests/test-isnand.h: Likewise.
4949         * tests/test-isnanf.h: Likewise.
4950         * tests/test-isnanl.h: Likewise.
4951         * tests/test-lchown.c: Likewise.
4952         * tests/test-ldexpl.c: Likewise.
4953         * tests/test-link.c: Likewise.
4954         * tests/test-linkat.c: Likewise.
4955         * tests/test-linked_list.c: Likewise.
4956         * tests/test-linkedhash_list.c: Likewise.
4957         * tests/test-localename.c: Likewise.
4958         * tests/test-lseek.c: Likewise.
4959         * tests/test-lstat.c: Likewise.
4960         * tests/test-mbmemcasecmp.c: Likewise.
4961         * tests/test-mbmemcasecoll.c: Likewise.
4962         * tests/test-mbrtowc.c: Likewise.
4963         * tests/test-mbscasecmp.c: Likewise.
4964         * tests/test-mbscasestr1.c: Likewise.
4965         * tests/test-mbscasestr2.c: Likewise.
4966         * tests/test-mbscasestr3.c: Likewise.
4967         * tests/test-mbscasestr4.c: Likewise.
4968         * tests/test-mbschr.c: Likewise.
4969         * tests/test-mbscspn.c: Likewise.
4970         * tests/test-mbsinit.c: Likewise.
4971         * tests/test-mbsncasecmp.c: Likewise.
4972         * tests/test-mbsnrtowcs.c: Likewise.
4973         * tests/test-mbspbrk.c: Likewise.
4974         * tests/test-mbspcasecmp.c: Likewise.
4975         * tests/test-mbsrchr.c: Likewise.
4976         * tests/test-mbsrtowcs.c: Likewise.
4977         * tests/test-mbsspn.c: Likewise.
4978         * tests/test-mbsstr1.c: Likewise.
4979         * tests/test-mbsstr2.c: Likewise.
4980         * tests/test-mbsstr3.c: Likewise.
4981         * tests/test-memchr.c: Likewise.
4982         * tests/test-memchr2.c: Likewise.
4983         * tests/test-memcmp.c: Likewise.
4984         * tests/test-memmem.c: Likewise.
4985         * tests/test-memrchr.c: Likewise.
4986         * tests/test-mkdir.c: Likewise.
4987         * tests/test-mkdirat.c: Likewise.
4988         * tests/test-mkfifo.c: Likewise.
4989         * tests/test-mkfifoat.c: Likewise.
4990         * tests/test-mknod.c: Likewise.
4991         * tests/test-nanosleep.c: Likewise.
4992         * tests/test-nl_langinfo.c: Likewise.
4993         * tests/test-obstack-printf.c: Likewise.
4994         * tests/test-open.c: Likewise.
4995         * tests/test-openat.c: Likewise.
4996         * tests/test-pipe-filter-gi1.c: Likewise.
4997         * tests/test-pipe-filter-gi2-main.c: Likewise.
4998         * tests/test-pipe-filter-ii1.c: Likewise.
4999         * tests/test-pipe-filter-ii2-main.c: Likewise.
5000         * tests/test-pipe2.c: Likewise.
5001         * tests/test-popen.h: Likewise.
5002         * tests/test-posixtm.c: Likewise.
5003         * tests/test-pread.c: Likewise.
5004         * tests/test-printf-frexp.c: Likewise.
5005         * tests/test-printf-frexpl.c: Likewise.
5006         * tests/test-printf-posix.c: Likewise.
5007         * tests/test-priv-set.c: Likewise.
5008         * tests/test-quotearg.c: Likewise.
5009         * tests/test-random_r.c: Likewise.
5010         * tests/test-rawmemchr.c: Likewise.
5011         * tests/test-rbtree_list.c: Likewise.
5012         * tests/test-rbtree_oset.c: Likewise.
5013         * tests/test-rbtreehash_list.c: Likewise.
5014         * tests/test-readlink.c: Likewise.
5015         * tests/test-remove.c: Likewise.
5016         * tests/test-rename.c: Likewise.
5017         * tests/test-renameat.c: Likewise.
5018         * tests/test-rmdir.c: Likewise.
5019         * tests/test-round1.c: Likewise.
5020         * tests/test-roundf1.c: Likewise.
5021         * tests/test-roundl.c: Likewise.
5022         * tests/test-safe-alloc.c: Likewise.
5023         * tests/test-sameacls.c: Likewise.
5024         * tests/test-set-mode-acl.c: Likewise.
5025         * tests/test-setenv.c: Likewise.
5026         * tests/test-sigaction.c: Likewise.
5027         * tests/test-signbit.c: Likewise.
5028         * tests/test-sleep.c: Likewise.
5029         * tests/test-snprintf-posix.c: Likewise.
5030         * tests/test-snprintf.c: Likewise.
5031         * tests/test-sprintf-posix.c: Likewise.
5032         * tests/test-stat-time.c: Likewise.
5033         * tests/test-stat.c: Likewise.
5034         * tests/test-strcasestr.c: Likewise.
5035         * tests/test-strchrnul.c: Likewise.
5036         * tests/test-strerror.c: Likewise.
5037         * tests/test-striconv.c: Likewise.
5038         * tests/test-striconveh.c: Likewise.
5039         * tests/test-striconveha.c: Likewise.
5040         * tests/test-strsignal.c: Likewise.
5041         * tests/test-strstr.c: Likewise.
5042         * tests/test-strtod.c: Likewise.
5043         * tests/test-strverscmp.c: Likewise.
5044         * tests/test-symlink.c: Likewise.
5045         * tests/test-symlinkat.c: Likewise.
5046         * tests/test-trunc1.c: Likewise.
5047         * tests/test-trunc2.c: Likewise.
5048         * tests/test-truncf1.c: Likewise.
5049         * tests/test-truncf2.c: Likewise.
5050         * tests/test-truncl.c: Likewise.
5051         * tests/test-uname.c: Likewise.
5052         * tests/test-unlink.c: Likewise.
5053         * tests/test-unlinkat.c: Likewise.
5054         * tests/test-unsetenv.c: Likewise.
5055         * tests/test-usleep.c: Likewise.
5056         * tests/test-utimens.c: Likewise.
5057         * tests/test-utimensat.c: Likewise.
5058         * tests/test-vasnprintf-posix.c: Likewise.
5059         * tests/test-vasnprintf-posix2.c: Likewise.
5060         * tests/test-vasnprintf.c: Likewise.
5061         * tests/test-vasprintf-posix.c: Likewise.
5062         * tests/test-vasprintf.c: Likewise.
5063         * tests/test-vdprintf-posix.c: Likewise.
5064         * tests/test-vfprintf-posix.c: Likewise.
5065         * tests/test-vprintf-posix.c: Likewise.
5066         * tests/test-vsnprintf-posix.c: Likewise.
5067         * tests/test-vsnprintf.c: Likewise.
5068         * tests/test-vsprintf-posix.c: Likewise.
5069         * tests/test-wcrtomb.c: Likewise.
5070         * tests/test-wcsnrtombs.c: Likewise.
5071         * tests/test-wcsrtombs.c: Likewise.
5072         * tests/test-wctype.c: Likewise.
5073         * tests/test-wcwidth.c: Likewise.
5074         * tests/test-xfprintf-posix.c: Likewise.
5075         * tests/test-xmemdup0.c: Likewise.
5076         * tests/test-xprintf-posix.c: Likewise.
5077         * tests/test-xvasprintf.c: Likewise.
5078         * tests/unicase/test-locale-language.c: Likewise.
5079         * tests/unicase/test-mapping-part1.h: Likewise.
5080         * tests/unicase/test-predicate-part1.h: Likewise.
5081         * tests/unicase/test-u8-casecmp.c: Likewise.
5082         * tests/unicase/test-u8-casecoll.c: Likewise.
5083         * tests/unicase/test-u8-casefold.c: Likewise.
5084         * tests/unicase/test-u8-is-cased.c: Likewise.
5085         * tests/unicase/test-u8-is-casefolded.c: Likewise.
5086         * tests/unicase/test-u8-is-lowercase.c: Likewise.
5087         * tests/unicase/test-u8-is-titlecase.c: Likewise.
5088         * tests/unicase/test-u8-is-uppercase.c: Likewise.
5089         * tests/unicase/test-u8-tolower.c: Likewise.
5090         * tests/unicase/test-u8-totitle.c: Likewise.
5091         * tests/unicase/test-u8-toupper.c: Likewise.
5092         * tests/unicase/test-u16-casecmp.c: Likewise.
5093         * tests/unicase/test-u16-casecoll.c: Likewise.
5094         * tests/unicase/test-u16-casefold.c: Likewise.
5095         * tests/unicase/test-u16-is-cased.c: Likewise.
5096         * tests/unicase/test-u16-is-casefolded.c: Likewise.
5097         * tests/unicase/test-u16-is-lowercase.c: Likewise.
5098         * tests/unicase/test-u16-is-titlecase.c: Likewise.
5099         * tests/unicase/test-u16-is-uppercase.c: Likewise.
5100         * tests/unicase/test-u16-tolower.c: Likewise.
5101         * tests/unicase/test-u16-totitle.c: Likewise.
5102         * tests/unicase/test-u16-toupper.c: Likewise.
5103         * tests/unicase/test-u32-casecmp.c: Likewise.
5104         * tests/unicase/test-u32-casecoll.c: Likewise.
5105         * tests/unicase/test-u32-casefold.c: Likewise.
5106         * tests/unicase/test-u32-is-cased.c: Likewise.
5107         * tests/unicase/test-u32-is-casefolded.c: Likewise.
5108         * tests/unicase/test-u32-is-lowercase.c: Likewise.
5109         * tests/unicase/test-u32-is-titlecase.c: Likewise.
5110         * tests/unicase/test-u32-is-uppercase.c: Likewise.
5111         * tests/unicase/test-u32-tolower.c: Likewise.
5112         * tests/unicase/test-u32-totitle.c: Likewise.
5113         * tests/unicase/test-u32-toupper.c: Likewise.
5114         * tests/unicase/test-ulc-casecmp.c: Likewise.
5115         * tests/unicase/test-ulc-casecoll.c: Likewise.
5116         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
5117         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
5118         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
5119         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
5120         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
5121         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
5122         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
5123         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
5124         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
5125         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
5126         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
5127         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
5128         * tests/unictype/test-bidi_byname.c: Likewise.
5129         * tests/unictype/test-bidi_name.c: Likewise.
5130         * tests/unictype/test-bidi_of.c: Likewise.
5131         * tests/unictype/test-bidi_test.c: Likewise.
5132         * tests/unictype/test-block_list.c: Likewise.
5133         * tests/unictype/test-block_of.c: Likewise.
5134         * tests/unictype/test-block_test.c: Likewise.
5135         * tests/unictype/test-categ_and.c: Likewise.
5136         * tests/unictype/test-categ_and_not.c: Likewise.
5137         * tests/unictype/test-categ_byname.c: Likewise.
5138         * tests/unictype/test-categ_name.c: Likewise.
5139         * tests/unictype/test-categ_none.c: Likewise.
5140         * tests/unictype/test-categ_of.c: Likewise.
5141         * tests/unictype/test-categ_or.c: Likewise.
5142         * tests/unictype/test-categ_test_withtable.c: Likewise.
5143         * tests/unictype/test-combining.c: Likewise.
5144         * tests/unictype/test-decdigit.c: Likewise.
5145         * tests/unictype/test-digit.c: Likewise.
5146         * tests/unictype/test-mirror.c: Likewise.
5147         * tests/unictype/test-numeric.c: Likewise.
5148         * tests/unictype/test-pr_byname.c: Likewise.
5149         * tests/unictype/test-pr_test.c: Likewise.
5150         * tests/unictype/test-predicate-part1.h: Likewise.
5151         * tests/unictype/test-scripts.c: Likewise.
5152         * tests/unictype/test-sy_c_ident.c: Likewise.
5153         * tests/unictype/test-sy_java_ident.c: Likewise.
5154         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
5155         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
5156         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
5157         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
5158         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
5159         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
5160         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
5161         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
5162         * tests/uninorm/test-canonical-decomposition.c: Likewise.
5163         * tests/uninorm/test-compat-decomposition.c: Likewise.
5164         * tests/uninorm/test-composition.c: Likewise.
5165         * tests/uninorm/test-decomposing-form.c: Likewise.
5166         * tests/uninorm/test-decomposition.c: Likewise.
5167         * tests/uninorm/test-u8-nfc.c: Likewise.
5168         * tests/uninorm/test-u8-nfd.c: Likewise.
5169         * tests/uninorm/test-u8-nfkc.c: Likewise.
5170         * tests/uninorm/test-u8-nfkd.c: Likewise.
5171         * tests/uninorm/test-u8-normcmp.c: Likewise.
5172         * tests/uninorm/test-u8-normcoll.c: Likewise.
5173         * tests/uninorm/test-u16-nfc.c: Likewise.
5174         * tests/uninorm/test-u16-nfd.c: Likewise.
5175         * tests/uninorm/test-u16-nfkc.c: Likewise.
5176         * tests/uninorm/test-u16-nfkd.c: Likewise.
5177         * tests/uninorm/test-u16-normcmp.c: Likewise.
5178         * tests/uninorm/test-u16-normcoll.c: Likewise.
5179         * tests/uninorm/test-u32-nfc.c: Likewise.
5180         * tests/uninorm/test-u32-nfd.c: Likewise.
5181         * tests/uninorm/test-u32-nfkc.c: Likewise.
5182         * tests/uninorm/test-u32-nfkd.c: Likewise.
5183         * tests/uninorm/test-u32-normalize-big.c: Likewise.
5184         * tests/uninorm/test-u32-normcmp.c: Likewise.
5185         * tests/uninorm/test-u32-normcoll.c: Likewise.
5186         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
5187         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
5188         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
5189         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
5190         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
5191         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
5192         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
5193         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
5194         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
5195         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
5196         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
5197         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
5198         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
5199         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
5200         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
5201         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
5202         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
5203         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
5204         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
5205         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
5206         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
5207         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
5208         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
5209         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
5210         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
5211         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
5212         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
5213         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
5214         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
5215         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
5216         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
5217         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
5218         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
5219         * tests/uniwidth/test-u8-strwidth.c: Likewise.
5220         * tests/uniwidth/test-u8-width.c: Likewise.
5221         * tests/uniwidth/test-u16-strwidth.c: Likewise.
5222         * tests/uniwidth/test-u16-width.c: Likewise.
5223         * tests/uniwidth/test-u32-strwidth.c: Likewise.
5224         * tests/uniwidth/test-u32-width.c: Likewise.
5225         * tests/uniwidth/test-uc_width.c: Likewise.
5226         * tests/uniwidth/test-uc_width2.c: Likewise.
5227         * modules/acl-tests (Files): Add tests/macros.h.
5228         * modules/areadlink-tests (Files): Likewise.
5229         * modules/areadlink-with-size-tests (Files): Likewise.
5230         * modules/areadlinkat-tests (Files): Likewise.
5231         * modules/areadlinkat-with-size-tests (Files): Likewise.
5232         * modules/argmatch-tests (Files): Likewise.
5233         * modules/argv-iter-tests (Files): Likewise.
5234         * modules/array-list-tests (Files): Likewise.
5235         * modules/array-mergesort-tests (Files): Likewise.
5236         * modules/array-oset-tests (Files): Likewise.
5237         * modules/avltree-list-tests (Files): Likewise.
5238         * modules/avltree-oset-tests (Files): Likewise.
5239         * modules/avltreehash-list-tests (Files): Likewise.
5240         * modules/base64-tests (Files): Likewise.
5241         * modules/binary-io-tests (Files): Likewise.
5242         * modules/bitrotate-tests (Files): Likewise.
5243         * modules/btowc-tests (Files): Likewise.
5244         * modules/byteswap-tests (Files): Likewise.
5245         * modules/c-ctype-tests (Files): Likewise.
5246         * modules/c-stack-tests (Files): Likewise.
5247         * modules/c-strcase-tests (Files): Likewise.
5248         * modules/c-strcasestr-tests (Files): Likewise.
5249         * modules/c-strstr-tests (Files): Likewise.
5250         * modules/canonicalize-lgpl-tests (Files): Likewise.
5251         * modules/canonicalize-tests (Files): Likewise.
5252         * modules/carray-list-tests (Files): Likewise.
5253         * modules/ceilf-tests (Files): Likewise.
5254         * modules/ceill-tests (Files): Likewise.
5255         * modules/chown-tests (Files): Likewise.
5256         * modules/cloexec-tests (Files): Likewise.
5257         * modules/copy-file-tests (Files): Likewise.
5258         * modules/count-one-bits-tests (Files): Likewise.
5259         * modules/dprintf-posix-tests (Files): Likewise.
5260         * modules/dup2-tests (Files): Likewise.
5261         * modules/dup3-tests (Files): Likewise.
5262         * modules/duplocale-tests (Files): Likewise.
5263         * modules/fbufmode-tests (Files): Likewise.
5264         * modules/fchdir-tests (Files): Likewise.
5265         * modules/fcntl-safer-tests (Files): Likewise.
5266         * modules/fcntl-tests (Files): Likewise.
5267         * modules/fdopendir-tests (Files): Likewise.
5268         * modules/fdutimensat-tests (Files): Likewise.
5269         * modules/fflush-tests (Files): Likewise.
5270         * modules/filevercmp-tests (Files): Likewise.
5271         * modules/flock-tests (Files): Likewise.
5272         * modules/floorf-tests (Files): Likewise.
5273         * modules/floorl-tests (Files): Likewise.
5274         * modules/fnmatch-tests (Files): Likewise.
5275         * modules/fopen-safer-tests (Files): Likewise.
5276         * modules/fopen-tests (Files): Likewise.
5277         * modules/fpending-tests (Files): Likewise.
5278         * modules/fprintf-posix-tests (Files): Likewise.
5279         * modules/fpurge-tests (Files): Likewise.
5280         * modules/freadable-tests (Files): Likewise.
5281         * modules/freadahead-tests (Files): Likewise.
5282         * modules/freading-tests (Files): Likewise.
5283         * modules/freadptr-tests (Files): Likewise.
5284         * modules/freadseek-tests (Files): Likewise.
5285         * modules/freopen-tests (Files): Likewise.
5286         * modules/frexp-nolibm-tests (Files): Likewise.
5287         * modules/frexp-tests (Files): Likewise.
5288         * modules/frexpl-nolibm-tests (Files): Likewise.
5289         * modules/frexpl-tests (Files): Likewise.
5290         * modules/fseek-tests (Files): Likewise.
5291         * modules/fseeko-tests (Files): Likewise.
5292         * modules/fstrcmp-tests (Files): Likewise.
5293         * modules/fsync-tests (Files): Likewise.
5294         * modules/ftell-tests (Files): Likewise.
5295         * modules/ftello-tests (Files): Likewise.
5296         * modules/func-tests (Files): Likewise.
5297         * modules/futimens-tests (Files): Likewise.
5298         * modules/fwritable-tests (Files): Likewise.
5299         * modules/fwriting-tests (Files): Likewise.
5300         * modules/getcwd-tests (Files): Likewise.
5301         * modules/getdate-tests (Files): Likewise.
5302         * modules/getdelim-tests (Files): Likewise.
5303         * modules/getdtablesize-tests (Files): Likewise.
5304         * modules/getgroups-tests (Files): Likewise.
5305         * modules/getline-tests (Files): Likewise.
5306         * modules/getndelim2-tests (Files): Likewise.
5307         * modules/glob-tests (Files): Likewise.
5308         * modules/hash-tests (Files): Likewise.
5309         * modules/i-ring-tests (Files): Likewise.
5310         * modules/iconv-tests (Files): Likewise.
5311         * modules/iconv_open-utf-tests (Files): Likewise.
5312         * modules/idpriv-drop-tests (Files): Likewise.
5313         * modules/idpriv-droptemp-tests (Files): Likewise.
5314         * modules/inet_ntop-tests (Files): Likewise.
5315         * modules/inet_pton-tests (Files): Likewise.
5316         * modules/isblank-tests (Files): Likewise.
5317         * modules/isfinite-tests (Files): Likewise.
5318         * modules/isinf-tests (Files): Likewise.
5319         * modules/isnan-tests (Files): Likewise.
5320         * modules/isnand-nolibm-tests (Files): Likewise.
5321         * modules/isnand-tests (Files): Likewise.
5322         * modules/isnanf-nolibm-tests (Files): Likewise.
5323         * modules/isnanf-tests (Files): Likewise.
5324         * modules/isnanl-nolibm-tests (Files): Likewise.
5325         * modules/isnanl-tests (Files): Likewise.
5326         * modules/lchown-tests (Files): Likewise.
5327         * modules/ldexpl-tests (Files): Likewise.
5328         * modules/link-tests (Files): Likewise.
5329         * modules/linkat-tests (Files): Likewise.
5330         * modules/linked-list-tests (Files): Likewise.
5331         * modules/linkedhash-list-tests (Files): Likewise.
5332         * modules/localename-tests (Files): Likewise.
5333         * modules/lseek-tests (Files): Likewise.
5334         * modules/lstat-tests (Files): Likewise.
5335         * modules/mbmemcasecmp-tests (Files): Likewise.
5336         * modules/mbmemcasecoll-tests (Files): Likewise.
5337         * modules/mbrtowc-tests (Files): Likewise.
5338         * modules/mbscasecmp-tests (Files): Likewise.
5339         * modules/mbscasestr-tests (Files): Likewise.
5340         * modules/mbschr-tests (Files): Likewise.
5341         * modules/mbscspn-tests (Files): Likewise.
5342         * modules/mbsinit-tests (Files): Likewise.
5343         * modules/mbsncasecmp-tests (Files): Likewise.
5344         * modules/mbsnrtowcs-tests (Files): Likewise.
5345         * modules/mbspbrk-tests (Files): Likewise.
5346         * modules/mbspcasecmp-tests (Files): Likewise.
5347         * modules/mbsrchr-tests (Files): Likewise.
5348         * modules/mbsrtowcs-tests (Files): Likewise.
5349         * modules/mbsspn-tests (Files): Likewise.
5350         * modules/mbsstr-tests (Files): Likewise.
5351         * modules/memchr-tests (Files): Likewise.
5352         * modules/memchr2-tests (Files): Likewise.
5353         * modules/memcmp-tests (Files): Likewise.
5354         * modules/memmem-tests (Files): Likewise.
5355         * modules/memrchr-tests (Files): Likewise.
5356         * modules/mkdir-tests (Files): Likewise.
5357         * modules/mkfifo-tests (Files): Likewise.
5358         * modules/mkfifoat-tests (Files): Likewise.
5359         * modules/mknod-tests (Files): Likewise.
5360         * modules/nanosleep-tests (Files): Likewise.
5361         * modules/nl_langinfo-tests (Files): Likewise.
5362         * modules/obstack-printf-tests (Files): Likewise.
5363         * modules/open-tests (Files): Likewise.
5364         * modules/openat-tests (Files): Likewise.
5365         * modules/pipe-filter-gi-tests (Files): Likewise.
5366         * modules/pipe-filter-ii-tests (Files): Likewise.
5367         * modules/pipe2-tests (Files): Likewise.
5368         * modules/popen-safer-tests (Files): Likewise.
5369         * modules/popen-tests (Files): Likewise.
5370         * modules/posixtm-tests (Files): Likewise.
5371         * modules/pread-tests (Files): Likewise.
5372         * modules/printf-frexp-tests (Files): Likewise.
5373         * modules/printf-frexpl-tests (Files): Likewise.
5374         * modules/printf-posix-tests (Files): Likewise.
5375         * modules/priv-set-tests (Files): Likewise.
5376         * modules/quotearg-tests (Files): Likewise.
5377         * modules/random_r-tests (Files): Likewise.
5378         * modules/rawmemchr-tests (Files): Likewise.
5379         * modules/rbtree-list-tests (Files): Likewise.
5380         * modules/rbtree-oset-tests (Files): Likewise.
5381         * modules/rbtreehash-list-tests (Files): Likewise.
5382         * modules/readlink-tests (Files): Likewise.
5383         * modules/remove-tests (Files): Likewise.
5384         * modules/rename-tests (Files): Likewise.
5385         * modules/renameat-tests (Files): Likewise.
5386         * modules/rmdir-tests (Files): Likewise.
5387         * modules/round-tests (Files): Likewise.
5388         * modules/roundf-tests (Files): Likewise.
5389         * modules/roundl-tests (Files): Likewise.
5390         * modules/safe-alloc-tests (Files): Likewise.
5391         * modules/setenv-tests (Files): Likewise.
5392         * modules/sigaction-tests (Files): Likewise.
5393         * modules/signbit-tests (Files): Likewise.
5394         * modules/sleep-tests (Files): Likewise.
5395         * modules/snprintf-posix-tests (Files): Likewise.
5396         * modules/snprintf-tests (Files): Likewise.
5397         * modules/sprintf-posix-tests (Files): Likewise.
5398         * modules/stat-tests (Files): Likewise.
5399         * modules/stat-time-tests (Files): Likewise.
5400         * modules/strcasestr-tests (Files): Likewise.
5401         * modules/strchrnul-tests (Files): Likewise.
5402         * modules/strerror-tests (Files): Likewise.
5403         * modules/striconv-tests (Files): Likewise.
5404         * modules/striconveh-tests (Files): Likewise.
5405         * modules/striconveha-tests (Files): Likewise.
5406         * modules/strsignal-tests (Files): Likewise.
5407         * modules/strstr-tests (Files): Likewise.
5408         * modules/strtod-tests (Files): Likewise.
5409         * modules/strverscmp-tests (Files): Likewise.
5410         * modules/symlink-tests (Files): Likewise.
5411         * modules/symlinkat-tests (Files): Likewise.
5412         * modules/trunc-tests (Files): Likewise.
5413         * modules/truncf-tests (Files): Likewise.
5414         * modules/truncl-tests (Files): Likewise.
5415         * modules/uname-tests (Files): Likewise.
5416         * modules/unicase/cased-tests (Files): Likewise.
5417         * modules/unicase/ignorable-tests (Files): Likewise.
5418         * modules/unicase/locale-language-tests (Files): Likewise.
5419         * modules/unicase/tolower-tests (Files): Likewise.
5420         * modules/unicase/totitle-tests (Files): Likewise.
5421         * modules/unicase/toupper-tests (Files): Likewise.
5422         * modules/unicase/u8-casecmp-tests (Files): Likewise.
5423         * modules/unicase/u8-casecoll-tests (Files): Likewise.
5424         * modules/unicase/u8-casefold-tests (Files): Likewise.
5425         * modules/unicase/u8-is-cased-tests (Files): Likewise.
5426         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
5427         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
5428         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
5429         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
5430         * modules/unicase/u8-tolower-tests (Files): Likewise.
5431         * modules/unicase/u8-totitle-tests (Files): Likewise.
5432         * modules/unicase/u8-toupper-tests (Files): Likewise.
5433         * modules/unicase/u16-casecmp-tests (Files): Likewise.
5434         * modules/unicase/u16-casecoll-tests (Files): Likewise.
5435         * modules/unicase/u16-casefold-tests (Files): Likewise.
5436         * modules/unicase/u16-is-cased-tests (Files): Likewise.
5437         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
5438         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
5439         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
5440         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
5441         * modules/unicase/u16-tolower-tests (Files): Likewise.
5442         * modules/unicase/u16-totitle-tests (Files): Likewise.
5443         * modules/unicase/u16-toupper-tests (Files): Likewise.
5444         * modules/unicase/u32-casecmp-tests (Files): Likewise.
5445         * modules/unicase/u32-casecoll-tests (Files): Likewise.
5446         * modules/unicase/u32-casefold-tests (Files): Likewise.
5447         * modules/unicase/u32-is-cased-tests (Files): Likewise.
5448         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
5449         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
5450         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
5451         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
5452         * modules/unicase/u32-tolower-tests (Files): Likewise.
5453         * modules/unicase/u32-totitle-tests (Files): Likewise.
5454         * modules/unicase/u32-toupper-tests (Files): Likewise.
5455         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
5456         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
5457         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
5458         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
5459         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
5460         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
5461         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
5462         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
5463         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
5464         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
5465         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
5466         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
5467         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
5468         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
5469         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
5470         * modules/unictype/bidicategory-name-tests (Files): Likewise.
5471         * modules/unictype/bidicategory-of-tests (Files): Likewise.
5472         * modules/unictype/bidicategory-test-tests (Files): Likewise.
5473         * modules/unictype/block-list-tests (Files): Likewise.
5474         * modules/unictype/block-of-tests (Files): Likewise.
5475         * modules/unictype/block-test-tests (Files): Likewise.
5476         * modules/unictype/category-C-tests (Files): Likewise.
5477         * modules/unictype/category-Cc-tests (Files): Likewise.
5478         * modules/unictype/category-Cf-tests (Files): Likewise.
5479         * modules/unictype/category-Cn-tests (Files): Likewise.
5480         * modules/unictype/category-Co-tests (Files): Likewise.
5481         * modules/unictype/category-Cs-tests (Files): Likewise.
5482         * modules/unictype/category-L-tests (Files): Likewise.
5483         * modules/unictype/category-Ll-tests (Files): Likewise.
5484         * modules/unictype/category-Lm-tests (Files): Likewise.
5485         * modules/unictype/category-Lo-tests (Files): Likewise.
5486         * modules/unictype/category-Lt-tests (Files): Likewise.
5487         * modules/unictype/category-Lu-tests (Files): Likewise.
5488         * modules/unictype/category-M-tests (Files): Likewise.
5489         * modules/unictype/category-Mc-tests (Files): Likewise.
5490         * modules/unictype/category-Me-tests (Files): Likewise.
5491         * modules/unictype/category-Mn-tests (Files): Likewise.
5492         * modules/unictype/category-N-tests (Files): Likewise.
5493         * modules/unictype/category-Nd-tests (Files): Likewise.
5494         * modules/unictype/category-Nl-tests (Files): Likewise.
5495         * modules/unictype/category-No-tests (Files): Likewise.
5496         * modules/unictype/category-P-tests (Files): Likewise.
5497         * modules/unictype/category-Pc-tests (Files): Likewise.
5498         * modules/unictype/category-Pd-tests (Files): Likewise.
5499         * modules/unictype/category-Pe-tests (Files): Likewise.
5500         * modules/unictype/category-Pf-tests (Files): Likewise.
5501         * modules/unictype/category-Pi-tests (Files): Likewise.
5502         * modules/unictype/category-Po-tests (Files): Likewise.
5503         * modules/unictype/category-Ps-tests (Files): Likewise.
5504         * modules/unictype/category-S-tests (Files): Likewise.
5505         * modules/unictype/category-Sc-tests (Files): Likewise.
5506         * modules/unictype/category-Sk-tests (Files): Likewise.
5507         * modules/unictype/category-Sm-tests (Files): Likewise.
5508         * modules/unictype/category-So-tests (Files): Likewise.
5509         * modules/unictype/category-Z-tests (Files): Likewise.
5510         * modules/unictype/category-Zl-tests (Files): Likewise.
5511         * modules/unictype/category-Zp-tests (Files): Likewise.
5512         * modules/unictype/category-Zs-tests (Files): Likewise.
5513         * modules/unictype/category-and-not-tests (Files): Likewise.
5514         * modules/unictype/category-and-tests (Files): Likewise.
5515         * modules/unictype/category-byname-tests (Files): Likewise.
5516         * modules/unictype/category-name-tests (Files): Likewise.
5517         * modules/unictype/category-none-tests (Files): Likewise.
5518         * modules/unictype/category-of-tests (Files): Likewise.
5519         * modules/unictype/category-or-tests (Files): Likewise.
5520         * modules/unictype/category-test-withtable-tests (Files): Likewise.
5521         * modules/unictype/combining-class-tests (Files): Likewise.
5522         * modules/unictype/ctype-alnum-tests (Files): Likewise.
5523         * modules/unictype/ctype-alpha-tests (Files): Likewise.
5524         * modules/unictype/ctype-blank-tests (Files): Likewise.
5525         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
5526         * modules/unictype/ctype-digit-tests (Files): Likewise.
5527         * modules/unictype/ctype-graph-tests (Files): Likewise.
5528         * modules/unictype/ctype-lower-tests (Files): Likewise.
5529         * modules/unictype/ctype-print-tests (Files): Likewise.
5530         * modules/unictype/ctype-punct-tests (Files): Likewise.
5531         * modules/unictype/ctype-space-tests (Files): Likewise.
5532         * modules/unictype/ctype-upper-tests (Files): Likewise.
5533         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
5534         * modules/unictype/decimal-digit-tests (Files): Likewise.
5535         * modules/unictype/digit-tests (Files): Likewise.
5536         * modules/unictype/mirror-tests (Files): Likewise.
5537         * modules/unictype/numeric-tests (Files): Likewise.
5538         * modules/unictype/property-alphabetic-tests (Files): Likewise.
5539         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
5540         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
5541         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
5542         Likewise.
5543         * modules/unictype/property-bidi-block-separator-tests (Files):
5544         Likewise.
5545         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
5546         Likewise.
5547         * modules/unictype/property-bidi-common-separator-tests (Files):
5548         Likewise.
5549         * modules/unictype/property-bidi-control-tests (Files): Likewise.
5550         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
5551         Likewise.
5552         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
5553         Likewise.
5554         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
5555         Likewise.
5556         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
5557         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
5558         Likewise.
5559         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
5560         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
5561         Likewise.
5562         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
5563         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
5564         * modules/unictype/property-bidi-segment-separator-tests (Files):
5565         Likewise.
5566         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
5567         * modules/unictype/property-byname-tests (Files): Likewise.
5568         * modules/unictype/property-combining-tests (Files): Likewise.
5569         * modules/unictype/property-composite-tests (Files): Likewise.
5570         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
5571         * modules/unictype/property-dash-tests (Files): Likewise.
5572         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
5573         * modules/unictype/property-default-ignorable-code-point-tests (Files):
5574         Likewise.
5575         * modules/unictype/property-deprecated-tests (Files): Likewise.
5576         * modules/unictype/property-diacritic-tests (Files): Likewise.
5577         * modules/unictype/property-extender-tests (Files): Likewise.
5578         * modules/unictype/property-format-control-tests (Files): Likewise.
5579         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
5580         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
5581         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
5582         * modules/unictype/property-hex-digit-tests (Files): Likewise.
5583         * modules/unictype/property-hyphen-tests (Files): Likewise.
5584         * modules/unictype/property-id-continue-tests (Files): Likewise.
5585         * modules/unictype/property-id-start-tests (Files): Likewise.
5586         * modules/unictype/property-ideographic-tests (Files): Likewise.
5587         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
5588         * modules/unictype/property-ids-trinary-operator-tests (Files):
5589         Likewise.
5590         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
5591         * modules/unictype/property-iso-control-tests (Files): Likewise.
5592         * modules/unictype/property-join-control-tests (Files): Likewise.
5593         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
5594         * modules/unictype/property-line-separator-tests (Files): Likewise.
5595         * modules/unictype/property-logical-order-exception-tests (Files):
5596         Likewise.
5597         * modules/unictype/property-lowercase-tests (Files): Likewise.
5598         * modules/unictype/property-math-tests (Files): Likewise.
5599         * modules/unictype/property-non-break-tests (Files): Likewise.
5600         * modules/unictype/property-not-a-character-tests (Files): Likewise.
5601         * modules/unictype/property-numeric-tests (Files): Likewise.
5602         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
5603         * modules/unictype/property-other-default-ignorable-code-point-tests
5604         (Files): Likewise.
5605         * modules/unictype/property-other-grapheme-extend-tests (Files):
5606         Likewise.
5607         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
5608         * modules/unictype/property-other-id-start-tests (Files): Likewise.
5609         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
5610         * modules/unictype/property-other-math-tests (Files): Likewise.
5611         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
5612         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
5613         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
5614         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
5615         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
5616         * modules/unictype/property-private-use-tests (Files): Likewise.
5617         * modules/unictype/property-punctuation-tests (Files): Likewise.
5618         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
5619         * modules/unictype/property-radical-tests (Files): Likewise.
5620         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
5621         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
5622         * modules/unictype/property-space-tests (Files): Likewise.
5623         * modules/unictype/property-terminal-punctuation-tests (Files):
5624         Likewise.
5625         * modules/unictype/property-test-tests (Files): Likewise.
5626         * modules/unictype/property-titlecase-tests (Files): Likewise.
5627         * modules/unictype/property-unassigned-code-value-tests (Files):
5628         Likewise.
5629         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
5630         * modules/unictype/property-uppercase-tests (Files): Likewise.
5631         * modules/unictype/property-variation-selector-tests (Files): Likewise.
5632         * modules/unictype/property-white-space-tests (Files): Likewise.
5633         * modules/unictype/property-xid-continue-tests (Files): Likewise.
5634         * modules/unictype/property-xid-start-tests (Files): Likewise.
5635         * modules/unictype/property-zero-width-tests (Files): Likewise.
5636         * modules/unictype/scripts-tests (Files): Likewise.
5637         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
5638         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
5639         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
5640         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
5641         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
5642         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
5643         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
5644         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
5645         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
5646         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
5647         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
5648         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
5649         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
5650         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
5651         * modules/uninorm/composition-tests (Files): Likewise.
5652         * modules/uninorm/decomposing-form-tests (Files): Likewise.
5653         * modules/uninorm/decomposition-tests (Files): Likewise.
5654         * modules/uninorm/filter-tests (Files): Likewise.
5655         * modules/uninorm/nfc-tests (Files): Likewise.
5656         * modules/uninorm/nfd-tests (Files): Likewise.
5657         * modules/uninorm/nfkc-tests (Files): Likewise.
5658         * modules/uninorm/nfkd-tests (Files): Likewise.
5659         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
5660         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
5661         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
5662         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
5663         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
5664         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
5665         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
5666         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
5667         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
5668         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
5669         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
5670         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
5671         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
5672         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
5673         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
5674         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
5675         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
5676         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
5677         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
5678         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
5679         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
5680         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
5681         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
5682         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
5683         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
5684         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
5685         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
5686         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
5687         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
5688         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
5689         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
5690         * modules/uniwidth/u8-width-tests (Files): Likewise.
5691         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
5692         * modules/uniwidth/u16-width-tests (Files): Likewise.
5693         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
5694         * modules/uniwidth/u32-width-tests (Files): Likewise.
5695         * modules/uniwidth/width-tests (Files): Likewise.
5696         * modules/unlink-tests (Files): Likewise.
5697         * modules/unsetenv-tests (Files): Likewise.
5698         * modules/usleep-tests (Files): Likewise.
5699         * modules/utimens-tests (Files): Likewise.
5700         * modules/utimensat-tests (Files): Likewise.
5701         * modules/vasnprintf-posix-tests (Files): Likewise.
5702         * modules/vasnprintf-tests (Files): Likewise.
5703         * modules/vasprintf-posix-tests (Files): Likewise.
5704         * modules/vasprintf-tests (Files): Likewise.
5705         * modules/vdprintf-posix-tests (Files): Likewise.
5706         * modules/vfprintf-posix-tests (Files): Likewise.
5707         * modules/vprintf-posix-tests (Files): Likewise.
5708         * modules/vsnprintf-posix-tests (Files): Likewise.
5709         * modules/vsnprintf-tests (Files): Likewise.
5710         * modules/vsprintf-posix-tests (Files): Likewise.
5711         * modules/wcrtomb-tests (Files): Likewise.
5712         * modules/wcsnrtombs-tests (Files): Likewise.
5713         * modules/wcsrtombs-tests (Files): Likewise.
5714         * modules/wctype-tests (Files): Likewise.
5715         * modules/wcwidth-tests (Files): Likewise.
5716         * modules/xmemdup0-tests (Files): Likewise.
5717         * modules/xprintf-posix-tests (Files): Likewise.
5718         * modules/xvasprintf-tests (Files): Likewise.
5719
5720 2009-12-24  Eric Blake  <ebb9@byu.net>
5721
5722         test-nanosleep: fix typo
5723         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
5724         patch.
5725         Reported by Bruno Haible.
5726
5727 2009-12-24  Bruno Haible  <bruno@clisp.org>
5728
5729         Reduce namespace pollution on glibc systems.
5730         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
5731         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
5732         systems.
5733         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
5734         <getopt.h> on glibc systems.
5735         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
5736         systems.
5737         * lib/fcntl.c: Include <unistd.h> here instead.
5738
5739 2009-12-24  Bruno Haible  <bruno@clisp.org>
5740
5741         * lib/stdlib.in.h (includes): Fix typo in today's commit.
5742
5743 2009-12-24  Eric Blake  <ebb9@byu.net>
5744
5745         tests: add signature checks
5746         * tests/signature.h (SIGNATURE_CHECK): New file.
5747         * modules/atexit-tests (Files): Use it.
5748         * modules/btowc-tests (Files): Likewise.
5749         * modules/canonicalize-lgpl-tests (Files): Likewise.
5750         * modules/ceilf-tests (Files): Likewise.
5751         * modules/ceill-tests (Files): Likewise.
5752         * modules/chown-tests (Files): Likewise.
5753         * modules/dprintf-posix-tests (Files): Likewise.
5754         * modules/dup2-tests (Files): Likewise.
5755         * modules/dup3-tests (Files): Likewise.
5756         * modules/duplocale-tests (Files): Likewise.
5757         * modules/fchdir-tests (Files): Likewise.
5758         * modules/fcntl-tests (Files): Likewise.
5759         * modules/fdopendir-tests (Files): Likewise.
5760         * modules/fflush-tests (Files): Likewise.
5761         * modules/flock-tests (Files): Likewise.
5762         * modules/floorf-tests (Files): Likewise.
5763         * modules/floorl-tests (Files): Likewise.
5764         * modules/fnmatch-tests (Files): Likewise.
5765         * modules/fopen-tests (Files): Likewise.
5766         * modules/fprintf-posix-tests (Files): Likewise.
5767         * modules/freopen-tests (Files): Likewise.
5768         * modules/frexp-nolibm-tests (Files): Likewise.
5769         * modules/frexp-tests (Files): Likewise.
5770         * modules/frexpl-nolibm-tests (Files): Likewise.
5771         * modules/frexpl-tests (Files): Likewise.
5772         * modules/fseek-tests (Files): Likewise.
5773         * modules/fseeko-tests (Files): Likewise.
5774         * modules/fsync-tests (Files): Likewise.
5775         * modules/ftell-tests (Files): Likewise.
5776         * modules/ftello-tests (Files): Likewise.
5777         * modules/futimens-tests (Files): Likewise.
5778         * modules/getaddrinfo-tests (Files): Likewise.
5779         * modules/getcwd-tests (Files): Likewise.
5780         * modules/getdelim-tests (Files): Likewise.
5781         * modules/getdtablesize-tests (Files): Likewise.
5782         * modules/getgroups-tests (Files): Likewise.
5783         * modules/gethostname-tests (Files): Likewise.
5784         * modules/getline-tests (Files): Likewise.
5785         * modules/getopt-posix-tests (Files): Likewise.
5786         * modules/gettimeofday-tests (Files): Likewise.
5787         * modules/glob-tests (Files): Likewise.
5788         * modules/iconv-tests (Files): Likewise.
5789         * modules/inet_ntop-tests (Files): Likewise.
5790         * modules/inet_pton-tests (Files): Likewise.
5791         * modules/isblank-tests (Files): Likewise.
5792         * modules/lchown-tests (Files): Likewise.
5793         * modules/ldexpl-tests (Files): Likewise.
5794         * modules/link-tests (Files): Likewise.
5795         * modules/linkat-tests (Files): Likewise.
5796         * modules/lseek-tests (Files): Likewise.
5797         * modules/lstat-tests (Files): Likewise.
5798         * modules/mbrtowc-tests (Files): Likewise.
5799         * modules/mbsinit-tests (Files): Likewise.
5800         * modules/mbsnrtowcs-tests (Files): Likewise.
5801         * modules/mbsrtowcs-tests (Files): Likewise.
5802         * modules/memchr-tests (Files): Likewise.
5803         * modules/memcmp-tests (Files): Likewise.
5804         * modules/memmem-tests (Files): Likewise.
5805         * modules/memrchr-tests (Files): Likewise.
5806         * modules/mkdir-tests (Files): Likewise.
5807         * modules/mkfifo-tests (Files): Likewise.
5808         * modules/mkfifoat-tests (Files): Likewise.
5809         * modules/mknod-tests (Files): Likewise.
5810         * modules/nanosleep-tests (Files): Likewise.
5811         * modules/nl_langinfo-tests (Files): Likewise.
5812         * modules/obstack-printf-tests (Files): Likewise.
5813         * modules/open-tests (Files): Likewise.
5814         * modules/openat-tests (Files): Likewise.
5815         * modules/perror-tests (Files): Likewise.
5816         * modules/pipe2-tests (Files): Likewise.
5817         * modules/poll-tests (Files): Likewise.
5818         * modules/popen-tests (Files): Likewise.
5819         * modules/posix_spawn-tests (Files): Likewise.
5820         * modules/posix_spawnp-tests (Files): Likewise.
5821         * modules/pread-tests (Files): Likewise.
5822         * modules/printf-posix-tests (Files): Likewise.
5823         * modules/pty-tests (Files): Likewise.
5824         * modules/random_r-tests (Files): Likewise.
5825         * modules/rawmemchr-tests (Files): Likewise.
5826         * modules/readlink-tests (Files): Likewise.
5827         * modules/remove-tests (Files): Likewise.
5828         * modules/rename-tests (Files): Likewise.
5829         * modules/renameat-tests (Files): Likewise.
5830         * modules/rmdir-tests (Files): Likewise.
5831         * modules/round-tests (Files): Likewise.
5832         * modules/roundf-tests (Files): Likewise.
5833         * modules/roundl-tests (Files): Likewise.
5834         * modules/select-tests (Files): Likewise.
5835         * modules/setenv-tests (Files): Likewise.
5836         * modules/sigaction-tests (Files): Likewise.
5837         * modules/sleep-tests (Files): Likewise.
5838         * modules/snprintf-posix-tests (Files): Likewise.
5839         * modules/snprintf-tests (Files): Likewise.
5840         * modules/sprintf-posix-tests (Files): Likewise.
5841         * modules/stat-tests (Files): Likewise.
5842         * modules/strcasestr-tests (Files): Likewise.
5843         * modules/strchrnul-tests (Files): Likewise.
5844         * modules/strerror-tests (Files): Likewise.
5845         * modules/strsignal-tests (Files): Likewise.
5846         * modules/strstr-tests (Files): Likewise.
5847         * modules/strtod-tests (Files): Likewise.
5848         * modules/strverscmp-tests (Files): Likewise.
5849         * modules/symlink-tests (Files): Likewise.
5850         * modules/symlinkat-tests (Files): Likewise.
5851         * modules/times-tests (Files): Likewise.
5852         * modules/trunc-tests (Files): Likewise.
5853         * modules/truncf-tests (Files): Likewise.
5854         * modules/truncl-tests (Files): Likewise.
5855         * modules/tsearch-tests (Files): Likewise.
5856         * modules/uname-tests (Files): Likewise.
5857         * modules/unlink-tests (Files): Likewise.
5858         * modules/unsetenv-tests (Files): Likewise.
5859         * modules/usleep-tests (Files): Likewise.
5860         * modules/utimensat-tests (Files): Likewise.
5861         * modules/vasprintf-tests (Files): Likewise.
5862         * modules/vdprintf-posix-tests (Files): Likewise.
5863         * modules/vfprintf-posix-tests (Files): Likewise.
5864         * modules/vprintf-posix-tests (Files): Likewise.
5865         * modules/vsnprintf-posix-tests (Files): Likewise.
5866         * modules/vsnprintf-tests (Files): Likewise.
5867         * modules/vsprintf-posix-tests (Files): Likewise.
5868         * modules/wcrtomb-tests (Files): Likewise.
5869         * modules/wcsnrtombs-tests (Files): Likewise.
5870         * modules/wcsrtombs-tests (Files): Likewise.
5871         * modules/wcwidth-tests (Files): Likewise.
5872         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
5873         * tests/test-isinf.c (isinf): Likewise.
5874         * tests/test-isnan.c (isnan): Likewise.
5875         * tests/test-signbit.c (signbit): Likewise.
5876         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
5877         declaration, either as macro or with correct signature.
5878         (select): Ensure function under test is declared with correct
5879         signature in correct header.
5880         * tests/test-atexit.c (atexit): Likewise.
5881         * tests/test-btowc.c (btowc): Likewise.
5882         * tests/test-canonicalize-lgpl.c (realpath)
5883         (canonicalize_file_name): Likewise.
5884         * tests/test-ceilf1.c (ceilf): Likewise.
5885         * tests/test-ceill.c (ceill): Likewise.
5886         * tests/test-chown.c (chown): Likewise.
5887         * tests/test-dprintf-posix.c (dprintf): Likewise.
5888         * tests/test-dup2.c (dup2): Likewise.
5889         * tests/test-dup3.c (dup3): Likewise.
5890         * tests/test-duplocale.c (duplocale): Likewise.
5891         * tests/test-fchdir.c (fchdir): Likewise.
5892         * tests/test-fchownat.c (fchownat): Likewise.
5893         * tests/test-fcntl.c (fcntl): Likewise.
5894         * tests/test-fdopendir.c (fdopendir): Likewise.
5895         * tests/test-fflush.c (fflush): Likewise.
5896         * tests/test-flock.c (flock): Likewise.
5897         * tests/test-floorf1.c (floorf): Likewise.
5898         * tests/test-floorl.c (floorl): Likewise.
5899         * tests/test-fnmatch.c (fnmatch): Likewise.
5900         * tests/test-fopen.c (fopen): Likewise.
5901         * tests/test-fprintf-posix.c (fprintf): Likewise.
5902         * tests/test-freopen.c (freopen): Likewise.
5903         * tests/test-frexp.c (frexp): Likewise.
5904         * tests/test-frexpl.c (frexpl): Likewise.
5905         * tests/test-fseek.c (fseek): Likewise.
5906         * tests/test-fseeko.c (fseeko): Likewise.
5907         * tests/test-fstatat.c (fstatat): Likewise.
5908         * tests/test-fsync.c (fsync): Likewise.
5909         * tests/test-ftell.c (ftell): Likewise.
5910         * tests/test-ftello.c (ftello): Likewise.
5911         * tests/test-futimens.c (futimens): Likewise.
5912         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
5913         (gai_strerror): Likewise.
5914         * tests/test-getcwd.c (getcwd): Likewise.
5915         * tests/test-getdelim.c (getdelim): Likewise.
5916         * tests/test-getdtablesize.c (getdtablesize): Likewise.
5917         * tests/test-getgroups.c (getgroups): Likewise.
5918         * tests/test-gethostname.c (gethostname): Likewise.
5919         * tests/test-getline.c (getline): Likewise.
5920         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
5921         Likewise.
5922         * tests/test-gettimeofday.c (gettimeofday): Likewise.
5923         * tests/test-glob.c (glob, globfree): Likewise.
5924         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
5925         * tests/test-inet_ntop.c (inet_ntop): Likewise.
5926         * tests/test-inet_pton.c (inet_pton): Likewise.
5927         * tests/test-isblank.c (isblank): Likewise.
5928         * tests/test-lchown.c (lchown): Likewise.
5929         * tests/test-ldexpl.c (ldexpl): Likewise.
5930         * tests/test-link.c (link): Likewise.
5931         * tests/test-linkat.c (linkat): Likewise.
5932         * tests/test-lseek.c (lseek): Likewise.
5933         * tests/test-lstat.c (lstat): Likewise.
5934         * tests/test-mbrtowc.c (mbrtowc): Likewise.
5935         * tests/test-mbsinit.c (mbsinit): Likewise.
5936         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
5937         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
5938         * tests/test-memchr.c (memchr): Likewise.
5939         * tests/test-memcmp.c (memcmp): Likewise.
5940         * tests/test-memmem.c (memmem): Likewise.
5941         * tests/test-memrchr.c (memrchr): Likewise.
5942         * tests/test-mkdir.c (mkdir): Likewise.
5943         * tests/test-mkdirat.c (mkdirat): Likewise.
5944         * tests/test-mkfifo.c (mkfifo): Likewise.
5945         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
5946         * tests/test-mknod.c (mknod): Likewise.
5947         * tests/test-nanosleep.c (nanosleep): Likewise.
5948         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
5949         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
5950         Likewise.
5951         * tests/test-open.c (open): Likewise.
5952         * tests/test-openat.c (openat): Likewise.
5953         * tests/test-perror.c (perror): Likewise.
5954         * tests/test-pipe2.c (pipe2): Likewise.
5955         * tests/test-poll.c (poll): Likewise.
5956         * tests/test-popen.c (popen, pclose): Likewise.
5957         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
5958         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
5959         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
5960         (posix_spawn_file_actions_destroy)
5961         (posix_spawn_file_actions_addclose)
5962         (posix_spawn_file_actions_addopen)
5963         (posix_spawn_file_actions_adddup2): Likewise.
5964         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
5965         * tests/test-pread.c (pread): Likewise.
5966         * tests/test-printf-posix.c (printf): Likewise.
5967         * tests/test-pty.c (openpty, forkpty): Likewise.
5968         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
5969         (random_r): Likewise.
5970         * tests/test-rawmemchr.c (rawmemchr): Likewise.
5971         * tests/test-readlink.c (readlink): Likewise.
5972         * tests/test-remove.c (remove): Likewise.
5973         * tests/test-rename.c (rename): Likewise.
5974         * tests/test-renameat.c (renameat): Likewise.
5975         * tests/test-rmdir.c (rmdir): Likewise.
5976         * tests/test-round1.c (round): Likewise.
5977         * tests/test-roundf1.c (roundf): Likewise.
5978         * tests/test-roundl.c (roundl): Likewise.
5979         * tests/test-setenv.c (setenv): Likewise.
5980         * tests/test-sigaction.c (sigaction): Likewise.
5981         * tests/test-sleep.c (sleep): Likewise.
5982         * tests/test-snprintf.c (snprintf): Likewise.
5983         * tests/test-sprintf-posix.c (sprintf): Likewise.
5984         * tests/test-stat.c (stat): Likewise.
5985         * tests/test-stpncpy.c (stpncpy): Likewise.
5986         * tests/test-strcasestr.c (strcasestr): Likewise.
5987         * tests/test-strchrnul.c (strchrnul): Likewise.
5988         * tests/test-strerror.c (strerror): Likewise.
5989         * tests/test-strsignal.c (strsignal): Likewise.
5990         * tests/test-strstr.c (strstr): Likewise.
5991         * tests/test-strtod.c (strtod): Likewise.
5992         * tests/test-strverscmp.c (strverscmp): Likewise.
5993         * tests/test-symlink.c (symlink): Likewise.
5994         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
5995         * tests/test-times.c (times): Likewise.
5996         * tests/test-trunc1.c (trunc): Likewise.
5997         * tests/test-truncf1.c (truncf): Likewise.
5998         * tests/test-truncl.c (truncl): Likewise.
5999         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
6000         Likewise.
6001         * tests/test-uname.c (uname): Likewise.
6002         * tests/test-unlink.c (unlink): Likewise.
6003         * tests/test-unlinkat.c (unlinkat): Likewise.
6004         * tests/test-unsetenv.c (unsetenv): Likewise.
6005         * tests/test-usleep.c (usleep): Likewise.
6006         * tests/test-utimensat.c (utimensat): Likewise.
6007         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
6008         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
6009         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
6010         * tests/test-vprintf-posix.c (vprintf): Likewise.
6011         * tests/test-vsnprintf.c (vsnprintf): Likewise.
6012         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
6013         * tests/test-wcrtomb.c (wcrtomb): Likewise.
6014         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
6015         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
6016         * tests/test-wcwidth.c (wcwidth): Likewise.
6017
6018         build: pull in conditional headers during GNULIB_POSIXCHECK
6019         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
6020         definitions from any conditionally-included headers.
6021         * lib/stdlib.in.h (includes): Likewise.
6022         * lib/unistd.in.h (includes): Likewise.
6023
6024 2009-12-24  Bruno Haible  <bruno@clisp.org>
6025
6026         * tests/test-argv-iter.c: Include header file being tested immediately
6027         after config.h.
6028         * tests/test-base64.c: Likewise.
6029         * tests/test-flock.c: Likewise.
6030         * tests/test-fsync.c: Likewise.
6031         * tests/test-getdate.c: Likewise.
6032         * tests/test-getndelim2.c: Likewise.
6033         * tests/test-isfinite.c: Likewise.
6034         * tests/test-isinf.c: Likewise.
6035         * tests/test-strerror.c: Likewise.
6036         * tests/test-strsignal.c: Likewise.
6037
6038 2009-12-23  Eric Blake  <ebb9@byu.net>
6039
6040         unistd: work around cygwin bug
6041         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
6042         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
6043         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
6044
6045 2009-12-23  Bruno Haible  <bruno@clisp.org>
6046
6047         localename: More tests.
6048         * tests/test-localename.c (SIZEOF): New macro.
6049         (categories): New variable.
6050         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
6051         test_locale_name_default): Add test w.r.t. thread locale.
6052         (test_locale_name_thread): New function.
6053         (main): Invoke it.
6054
6055         localename: Make aware of thread locale.
6056         * lib/localename.h (gl_locale_name_thread): New declaration.
6057         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
6058         behaviour with respect to thread locale.
6059         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
6060         <langinfo.h>, glthread/lock.h.
6061         (SIZE_BITS): New macro.
6062         (string_hash): New function.
6063         (struct hash_node): New type.
6064         (HASH_TABLE_SIZE): New macro.
6065         (struniq_hash_table, struniq_lock): New variables.
6066         (struniq): New function.
6067         (gl_locale_name_thread): New function.
6068         (gl_locale_name): Invoke it.
6069         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
6070         * modules/localename (Depends-on): Add lock.
6071         Reported by Mike Gran <spk121@yahoo.com>.
6072
6073 2009-12-23  Eric Blake  <ebb9@byu.net>
6074
6075         va-args: new module
6076         * modules/va-args: New file.
6077         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
6078         * MODULES.html.sh (Core language properties): Mention it.
6079
6080         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
6081         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
6082         named alias for __attribute__((__unused__)).
6083         * lib/chown.c: Update client.
6084         * lib/fchmodat.c: Likewise.
6085         * lib/fts.c: Likewise.
6086         * lib/getdate.y: Likewise.
6087         * lib/getgroups.c: Likewise.
6088         * lib/getopt.c: Likewise.
6089         * lib/getugroups.c: Likewise.
6090         * lib/mkdir.c: Likewise.
6091         * lib/mkfifo.c: Likewise.
6092         * lib/mkfifoat.c: Likewise.
6093         * lib/mknod.c: Likewise.
6094         * lib/mknodat.c: Likewise.
6095         * lib/readlink.c: Likewise.
6096         * lib/se-context.in.h: Likewise.
6097         * lib/se-selinux.in.h: Likewise.
6098         * lib/sockets.c: Likewise.
6099         * lib/symlink.c: Likewise.
6100         * lib/symlinkat.c: Likewise.
6101         * lib/unicodeio.c: Likewise.
6102         * lib/unistr.h: Likewise.
6103         * tests/test-areadlink.c: Likewise.
6104         * tests/test-areadlinkat.c: Likewise.
6105         * tests/test-filenamecat.c: Likewise.
6106         * tests/test-fseeko.c: Likewise.
6107         * tests/test-ftello.c: Likewise.
6108         * tests/test-getdate.c: Likewise.
6109         * tests/test-getgroups.c: Likewise.
6110         * tests/test-gethostname.c: Likewise.
6111         * tests/test-quotearg.c: Likewise.
6112         * tests/test-version-etc.c: Likewise.
6113         * tests/test-xalloc-die.c: Likewise.
6114         * tests/test-xfprintf-posix.c: Likewise.
6115         * tests/test-xprintf-posix.c: Likewise.
6116         * tests/test-xvasprintf.c: Likewise.
6117
6118         tests: avoid compiler warnings
6119         * tests/test-fcntl.c (main): Delete unused parameters.
6120         * tests/test-freopen-safer.c (main): Likewise.
6121         * tests/test-xalloc-die.c (main): Mark unused parameters.
6122         * tests/test-fseeko.c (main): Likewise.
6123         * tests/test-ftello.c (main): Likewise.
6124         * tests/test-nanosleep.c (main): Avoid declaration warning.
6125         * tests/test-sleep.c (main): Likewise.
6126         * tests/test-unsetenv.c (main): Silence warning about string
6127         literal.
6128         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
6129
6130 2009-12-23  Bruno Haible  <bruno@clisp.org>
6131
6132         * tests/test-localename.c (test_locale_name): New function, extracted
6133         from main. Also test mixed situations.
6134         (test_locale_name_posix, test_locale_name_environ,
6135         test_locale_name_default): New functions.
6136         (main): Invoke them all.
6137         * modules/localename-tests (configure.ac): Test for newlocale.
6138
6139 2009-12-23  Bruno Haible  <bruno@clisp.org>
6140
6141         unistd: Ensure getcwd gets declared before being overridden.
6142         * lib/unistd.in.h: Conditionally include <io.h>.
6143
6144 2009-12-22  Bruno Haible  <bruno@clisp.org>
6145
6146         wchar: Diagnose broken combination of glibc and gcc versions and flags.
6147         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
6148         (gl_WCHAR_H): Invoke it.
6149         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
6150         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
6151         Reported by Karl Berry <karl@freefriends.org>.
6152
6153 2009-12-22  Eric Blake  <ebb9@byu.net>
6154
6155         math, unistd: avoid redundant includes
6156         * lib/math.in.h (isnan): No need to re-include <math.h>.
6157         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
6158
6159         getsubopt: work around cygwin bug
6160         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
6161         avoid conflicting with system getsubopt.
6162         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
6163         bug.
6164
6165         getopt: synchronize from glibc
6166         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
6167         parameter order.  Adjust all callers.
6168         (_getopt_internal_r, main): Adjust quoting in error messages.
6169         Drop considerations for outdated POSIX 1003.2 error message.
6170         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
6171         callers.
6172         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
6173
6174         test-getopt: test stderr behavior
6175         * modules/getopt-posix-tests (Depends-on): Add dup2.
6176         * tests/test-getopt.c (ASSERT): Avoid stderr.
6177         (main): Move stderr to a temporary file.
6178         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
6179         Instead, add parameter to inform caller if output occurred.
6180         (test_getopt): Adjust all existing tests to expect silence, and
6181         add new tests of leading ":".
6182         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6183         glibc shortcomings with leading "-:" or "+:" in optstring.
6184         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6185         Likewise.
6186         * doc/posix-functions/getopt.texi (getopt): Likewise.
6187
6188         test-getopt: enhance test
6189         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
6190         supports optind=0.
6191         * tests/test-getopt.c (OPTIND_MIN): Move...
6192         * tests/test-getopt.h (OPTIND_MIN): ...here.
6193         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
6194         Require that optind=0 works, since modern BSD supports it in
6195         addition to optreset, and since coreutils expects it.
6196         (test_getopt_long_only): New test.
6197         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6198         glibc shortcomings with 'W;', and enforcement of optind=0.
6199         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6200         Likewise.
6201
6202 2009-12-21  Bruno Haible  <bruno@clisp.org>
6203
6204         localename: Improvements for MacOS X and Cygwin.
6205         * lib/localename.h (gl_locale_name_environ): New declaration.
6206         * lib/localename.c (gl_locale_name_environ): New function, extracted from
6207         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
6208         (gl_locale_name_posix): Invoke it.
6209         (gl_locale_name_default): Add comments. Use Windows native API also on
6210         Cygwin.
6211
6212 2009-12-21  Bruno Haible  <bruno@clisp.org>
6213
6214         Update list of Win32 locale ids.
6215         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
6216         (LANG_SAMI): Renamed from LANG_SAAMI.
6217         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
6218         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
6219         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
6220         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
6221         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
6222         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
6223         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
6224         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
6225         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
6226         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
6227         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
6228         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
6229         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
6230         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
6231         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
6232         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
6233         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
6234         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
6235         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
6236         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
6237         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
6238         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
6239         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
6240         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
6241         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
6242         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
6243         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
6244         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
6245         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
6246         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
6247         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
6248         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
6249         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
6250         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
6251         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
6252         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
6253         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
6254         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
6255         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
6256         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
6257         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
6258         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
6259         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
6260         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
6261         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
6262         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
6263         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
6264         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
6265         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
6266         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
6267         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
6268         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
6269         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
6270         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
6271         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
6272         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
6273         Add more languages and countries for Sami, Sorbian. Add more countries
6274         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
6275         for Pashto. Change country for Syriac, Tswana.
6276
6277 2009-12-21  Eric Blake  <ebb9@byu.net>
6278
6279         test-utimens: avoid spurious failure
6280         * tests/test-chown.h (nap): Factor...
6281         * tests/nap.h: ...into new file.
6282         * tests/test-lchown.h (nap): Avoid duplication.
6283         * tests/test-utimens-common.h (nap): Use shared implementation,
6284         necessary on file systems with 1-second resolution.
6285         * modules/chown-tests (Files): Include new file.
6286         * modules/fdutimensat-tests (Files): Likewise.
6287         * modules/futimens-tests (Files): Likewise.
6288         * modules/lchown-tests (Files): Likewise.
6289         * modules/openat-tests (Files): Likewise.
6290         * modules/utimens-tests (Files): Likewise.
6291         * modules/utimensat-tests (Files): Likewise.
6292
6293 2009-12-19  Eric Blake  <ebb9@byu.net>
6294
6295         futimens, utimensat: work around Linux bug
6296         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
6297         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
6298         * lib/utimensat.c (rpl_utimensat): Work around it.
6299         * lib/futimens.c (rpl_futimens): Adjust comment.
6300
6301         utimens: work around Linux ctime bug
6302         * lib/utimens.c (detect_ctime_bug): New helper function.
6303         (update_timespec): Differentiate between workaround needed for
6304         this bug vs. what is needed for systems that lack utimensat.
6305         (fdutimens, lutimens): Work around bug.
6306
6307         utimens: check for ctime update
6308         * tests/test-utimens-common.h (check_ctime): Define.
6309         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
6310         * tests/test-futimens.h (test_futimens): Likewise.
6311         * tests/test-lutimens.h (test_lutimens): Likewise.
6312         * doc/posix-functions/futimens.texi (futimens): Document the bug.
6313         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
6314
6315 2009-12-19  Bruno Haible  <bruno@clisp.org>
6316
6317         dprintf-posix: Check against memory leak fixed on 2009-12-15.
6318         * tests/test-dprintf-posix2.sh: New file.
6319         * tests/test-dprintf-posix2.c: New file.
6320         * modules/dprintf-posix-tests (Files): Add them.
6321         (configure.ac): Check for getrlimit and setrlimit.
6322         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6323
6324 2009-12-19  Bruno Haible  <bruno@clisp.org>
6325
6326         fprintf-posix: Check against memory leak fixed on 2009-12-15.
6327         * tests/test-fprintf-posix3.sh: New file.
6328         * tests/test-fprintf-posix3.c: New file.
6329         * modules/fprintf-posix-tests (Files): Add them.
6330         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6331
6332 2009-12-19  Eric Blake  <ebb9@byu.net>
6333
6334         dirfd: fix prototype
6335         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
6336         * lib/dirfd.c (dirfd): Likewise.
6337
6338         canonicalize: reduce memory usage
6339         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
6340         allocation to size.
6341         Reported by Solar Designer <solar@openwall.com>.
6342
6343 2009-12-19  Bruno Haible  <bruno@clisp.org>
6344
6345         New module attribute 'Applicability'.
6346         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
6347         * gnulib-tool: New option --extract-applicability.
6348         (func_usage): Document it.
6349         (sed_extract_prog): Recognize it.
6350         (func_get_applicability): New function.
6351         (func_import): Generalize handling of 'link-warning' module.
6352         * modules/link-warning (Applicability): New section.
6353         * modules/arg-nonnull (Applicability): New section.
6354         Repoted by Simon Josefsson <simon@josefsson.org>.
6355
6356 2009-12-19  Bruno Haible  <bruno@clisp.org>
6357
6358         fflush: tweak
6359         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
6360         * lib/fseeko.c (rpl_fseeko): Likewise.
6361
6362 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
6363
6364         * lib/gl_list.h: Fix typo in comment.
6365
6366 2009-12-16  Eric Blake  <ebb9@byu.net>
6367
6368         fcntl: use to simplify other modules
6369         * modules/cloexec (Depends-on): Add fcntl.
6370         * modules/fchdir (Depends-on): Likewise.
6371         * modules/fd-safer-flag (Depends-on): Likewise.
6372         * modules/unistd-safer (Depends-on): Likewise.
6373         * modules/dup3 (configure.ac): Set module indicator.
6374         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
6375         missing.
6376         * lib/fchdir.c (_gl_register_dup): Fix comment.
6377         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
6378         * lib/dup-safer.c (dup_safer): Likewise.
6379         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
6380         * lib/dup3.c (dup3): Likewise.
6381         * tests/test-fchdir.c (main): Enhance test.
6382         Fixes a dup_cloexec bug reported by Ondřej Vašík.
6383
6384         fcntl: port portions of fcntl to mingw
6385         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
6386         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
6387         replacement for mingw.
6388         * modules/fcntl (Description): Update.
6389         (Depends-on): Add dup2.
6390         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
6391         * modules/fcntl-h (Makefile.am): Substitute it.
6392         * lib/fcntl.in.h (fcntl): Update declaration.
6393         (F_DUPFD, F_GETFD): New macros, when needed.
6394         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
6395         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
6396         * tests/test-fcntl.c (check_flags, main): Enhance test for items
6397         we now guarantee.
6398
6399         fcntl: work around cygwin bug in F_DUPFD
6400         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
6401         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
6402         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
6403         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
6404         * doc/posix-functions/fcntl.texi (fcntl): Document it.
6405
6406         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
6407         * modules/fcntl (Files): List new files.
6408         (configure.ac): Run a test.
6409         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
6410         * lib/fcntl.c (rpl_fcntl): Likewise.
6411         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
6412         (gl_FCNTL_H): Always replace fcntl.h.
6413         * modules/fcntl-h (Makefile.am): Substitute witnesses.
6414         * lib/fcntl.in.h (fcntl): Declare replacement.
6415         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
6416         needed, plus a witness.
6417         * doc/posix-functions/fcntl.texi (fcntl): Document this.
6418         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
6419         * tests/test-fcntl.c: New file.
6420         * modules/fcntl-tests: Likewise.
6421
6422         binary-io: avoid potential compilation warning
6423         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
6424         directives.
6425
6426         fflush: avoid compilation error on NetBSD
6427         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
6428         between off_t and fpos_t, since the latter is sometimes a struct.
6429         * lib/fseeko.c (rpl_fseeko): Likewise.
6430         Reported by Alexander Nasonov <alnsn@yandex.ru>.
6431
6432 2009-12-15  Eric Blake  <ebb9@byu.net>
6433
6434         fcntl-h, stdio, sys_ioctl: fix declarations
6435         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
6436         function must not take arguments.
6437         * lib/sys_ioctl.in.h (ioctl): Likewise.
6438         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
6439         (open): Add a link warning.
6440
6441 2009-12-15  Jim Meyering  <meyering@redhat.com>
6442
6443         areadlink, areadlink-with-size: relax license to LGPLv2+
6444         * modules/areadlink (License): Relax to LGPLv2+.
6445         * modules/areadlink-with-size (License): Likewise.
6446
6447 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
6448             Bruno Haible  <bruno@clisp.org>
6449
6450         *printf: Fix memory leak.
6451         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
6452         * lib/vfprintf.c (vfprintf): Likewise.
6453         * lib/dprintf.c (dprintf): Likewise.
6454         * lib/vdprintf.c (vdprintf): Likewise.
6455
6456 2009-12-14  Eric Blake  <ebb9@byu.net>
6457
6458         accept4: adjust module dependencies
6459         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
6460
6461         utimens: one more try at avoiding compiler warning
6462         * lib/utimens.c (lutimens): Lower scope of result.
6463
6464 2009-12-13  Bruno Haible  <bruno@clisp.org>
6465
6466         Move the malloc checking from module 'list' to new module 'xlist'.
6467         * modules/xlist: New file.
6468         * lib/gl_xlist.h: New file.
6469         * lib/gl_xlist.c: New file.
6470         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
6471         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
6472         gl_list_add_last, gl_list_add_before, gl_list_add_after,
6473         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
6474         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
6475         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
6476         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
6477         gl_sortedlist_nx_add): New declarations.
6478         (struct gl_list_implementation): Rename and change methods accordingly.
6479         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
6480         (gl_list_nx_create): Renamed from gl_list_create.
6481         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
6482         (gl_list_nx_set_at): Renamed from gl_list_set_at.
6483         (gl_list_nx_add_first): Renamed from gl_list_add_first.
6484         (gl_list_nx_add_last): Renamed from gl_list_add_last.
6485         (gl_list_nx_add_before): Renamed from gl_list_add_before.
6486         (gl_list_nx_add_after): Renamed from gl_list_add_after.
6487         (gl_list_nx_add_at): Renamed from gl_list_add_at.
6488         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
6489         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
6490         gl_list_create_empty.
6491         (gl_list_nx_create): Renamed from gl_list_create.
6492         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
6493         (gl_list_nx_set_at): Renamed from gl_list_set_at.
6494         (gl_list_nx_add_first): Renamed from gl_list_add_first.
6495         (gl_list_nx_add_last): Renamed from gl_list_add_last.
6496         (gl_list_nx_add_before): Renamed from gl_list_add_before.
6497         (gl_list_nx_add_after): Renamed from gl_list_add_after.
6498         (gl_list_nx_add_at): Renamed from gl_list_add_at.
6499         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
6500         * lib/gl_array_list.c: Don't include xalloc.h.
6501         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
6502         NULL upon out-of-memory.
6503         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
6504         out-of-memory.
6505         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
6506         Change return type to 'int'.
6507         (gl_array_nx_set_at): Renamed from gl_array_set_at.
6508         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
6509         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
6510         upon out-of-memory.
6511         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
6512         upon out-of-memory.
6513         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
6514         upon out-of-memory.
6515         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
6516         upon out-of-memory.
6517         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
6518         out-of-memory.
6519         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
6520         Update.
6521         (gl_array_list_implementation): Update.
6522         * lib/gl_carray_list.c: Don't include xalloc.h.
6523         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
6524         Return NULL upon out-of-memory.
6525         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
6526         out-of-memory.
6527         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
6528         Change return type to 'int'.
6529         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
6530         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
6531         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
6532         upon out-of-memory.
6533         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
6534         upon out-of-memory.
6535         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
6536         out-of-memory.
6537         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
6538         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
6539         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
6540         Update.
6541         (gl_carray_list_implementation): Update.
6542         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
6543         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
6544         gl_linked_create_empty. Return NULL upon out-of-memory.
6545         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
6546         out-of-memory.
6547         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
6548         Change return type to 'int'. Return -1 upon out-of-memory.
6549         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
6550         out-of-memory.
6551         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
6552         upon out-of-memory.
6553         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
6554         upon out-of-memory.
6555         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
6556         NULL upon out-of-memory.
6557         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
6558         upon out-of-memory.
6559         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
6560         out-of-memory.
6561         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
6562         Update.
6563         * lib/gl_linked_list.c: Don't include xalloc.h.
6564         (gl_linked_list_implementation): Update.
6565         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
6566         (add_to_bucket): Change return type to 'int'.
6567         (gl_linkedhash_list_implementation): Update.
6568         * lib/gl_anytree_list1.h (free_subtree): New function.
6569         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
6570         gl_tree_create_empty. Return NULL upon out-of-memory.
6571         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
6572         Change return type to 'int'. Return -1 upon out-of-memory.
6573         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
6574         out-of-memory.
6575         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
6576         (gl_tree_remove_node): New function, moved here from
6577         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
6578         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
6579         Update.
6580         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
6581         malloc, not xmalloc. Return NULL upon out-of-memory.
6582         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
6583         out-of-memory.
6584         (gl_tree_remove_node_from_tree): New function, extracted from
6585         gl_tree_remove_node.
6586         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
6587         upon out-of-memory.
6588         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
6589         out-of-memory.
6590         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
6591         upon out-of-memory.
6592         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
6593         upon out-of-memory.
6594         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
6595         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
6596         not xmalloc. Return NULL upon out-of-memory.
6597         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
6598         out-of-memory.
6599         (gl_tree_remove_node_from_tree): New function, extracted from
6600         gl_tree_remove_node.
6601         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
6602         upon out-of-memory.
6603         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
6604         out-of-memory.
6605         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
6606         upon out-of-memory.
6607         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
6608         upon out-of-memory.
6609         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
6610         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
6611         gl_anytree_list1.h before gl_anyavltree_list2.h.
6612         (gl_avltree_list_implementation): Update.
6613         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
6614         gl_anytree_list1.h before gl_anyavltree_list2.h.
6615         (gl_rbtree_list_implementation): Update.
6616         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
6617         Change return type to 'int'. Return -1 upon out-of-memory. Use
6618         __builtin_expect.
6619         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
6620         (gl_avltreehash_list_implementation): Update.
6621         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
6622         (gl_rbtreehash_list_implementation): Update.
6623         * modules/array-list (Depends-on): Remove xalloc.
6624         * modules/carray-list (Depends-on): Likewise.
6625         * modules/linked-list (Depends-on): Likewise.
6626         * modules/linkedhash-list (Depends-on): Likewise.
6627         * modules/avltree-list (Depends-on): Likewise.
6628         * modules/rbtree-list (Depends-on): Likewise.
6629         * modules/avltreehash-list (Depends-on): Likewise.
6630         * modules/rbtreehash-list (Depends-on): Likewise.
6631
6632         * modules/xsublist: New file.
6633         * lib/gl_xsublist.h: New file.
6634         * lib/gl_xsublist.c: New file.
6635         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
6636         (gl_sublist_nx_create): New declaration.
6637         * lib/gl_sublist.c: Don't include xalloc.h.
6638         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
6639         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
6640         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
6641         Change return type to 'int'. Return -1 upon out-of-memory.
6642         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
6643         upon out-of-memory.
6644         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
6645         NULL upon out-of-memory.
6646         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
6647         upon out-of-memory.
6648         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
6649         NULL upon out-of-memory.
6650         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
6651         NULL upon out-of-memory.
6652         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
6653         upon out-of-memory.
6654         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
6655         (gl_sublist_list_implementation): Update.
6656         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
6657         upon out-of-memory.
6658         * modules/sublist (Depends-on): Remove xalloc.
6659
6660         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
6661         * tests/test-carray_list.c: Likewise.
6662         * tests/test-linked_list.c: Likewise.
6663         * tests/test-linkedhash_list.c: Likewise.
6664         * tests/test-avltree_list.c: Likewise.
6665         * tests/test-rbtree_list.c: Likewise.
6666         * tests/test-avltreehash_list.c: Likewise.
6667         * tests/test-rbtreehash_list.c: Likewise.
6668         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
6669         * modules/carray-list-tests (Makefile.am): Likewise.
6670         * modules/linked-list-tests (Makefile.am): Likewise.
6671         * modules/linkedhash-list-tests (Makefile.am): Likewise.
6672         * modules/avltree-list-tests (Makefile.am): Likewise.
6673         * modules/rbtree-list-tests (Makefile.am): Likewise.
6674         * modules/avltreehash-list-tests (Makefile.am): Likewise.
6675         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
6676
6677         * NEWS: Mention the changes.
6678
6679         * lib/clean-temp.c: Include gl_xlist.h.
6680         * modules/clean-temp (Depends-on): Add xlist.
6681
6682         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
6683         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
6684
6685         * tests/test-array_oset.c: Include gl_xlist.h.
6686         * modules/array-oset-tests (Depends-on): Add xlist.
6687
6688         Reported by José E. Marchesi <jemarch@gnu.org>.
6689
6690 2009-12-13  Bruno Haible  <bruno@clisp.org>
6691
6692         Move the malloc checking from module 'oset' to new module 'xoset'.
6693         * modules/xoset: New file.
6694         * lib/gl_xoset.h: New file.
6695         * lib/gl_xoset.c: New file.
6696         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
6697         declarations.
6698         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
6699         (struct gl_oset_implementation): Rename and change methods accordingly.
6700         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
6701         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
6702         'int'. Mark as __warn_unused_result__.
6703         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
6704         gl_oset_create_empty.
6705         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
6706         'int'.
6707         * lib/gl_array_oset.c: Don't include xalloc.h.
6708         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
6709         malloc, not xmalloc.
6710         (grow): Change return type to 'int'. Don't call xalloc_die.
6711         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
6712         to 'int'.
6713         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
6714         'int'.
6715         (gl_array_oset_implementation): Update.
6716         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
6717         gl_tree_create_empty.
6718         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
6719         'int'.
6720         * lib/gl_avltree_oset.c: Don't include xalloc.h.
6721         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
6722         xmalloc.
6723         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
6724         not xmalloc.
6725         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
6726         xmalloc.
6727         (gl_avltree_oset_implementation): Update.
6728         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
6729         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
6730         xmalloc.
6731         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
6732         not xmalloc.
6733         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
6734         xmalloc.
6735         (gl_rbtree_oset_implementation): Update.
6736         * modules/array-oset (Depends-on): Remove xalloc.
6737         * modules/avltree-oset (Depends-on): Likewise.
6738         * modules/rbtree-oset (Depends-on): Likewise.
6739         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
6740         * tests/test-avltree_oset.c: Likewise.
6741         * tests/test-rbtree_oset.c: Likewise.
6742         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
6743         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
6744         * modules/rbtree-oset-tests (Makefile.am): Likewise.
6745         * NEWS: Mention the change.
6746
6747 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
6748
6749         maint.mk: allow a project to override release-prep commands
6750         * top/maint.mk (alpha, beta, stable): Move release-preparatory
6751         commands into a new rule.
6752         (release-prep): New rule.
6753         (release-prep-hook): New overridable variable.
6754
6755 2009-12-13  Bruno Haible  <bruno@clisp.org>
6756
6757         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
6758
6759 2009-12-13  Jim Meyering  <meyering@redhat.com>
6760
6761         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
6762         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
6763
6764 2009-12-12  Bruno Haible  <bruno@clisp.org>
6765
6766         duplocale: Tweak.
6767         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
6768
6769 2009-12-12  Karl Berry  <karl@gnu.org>
6770
6771         * config/srclist.txt (strtoll.c): tab changes, no more sync.
6772
6773 2009-12-12  Bruno Haible  <bruno@clisp.org>
6774
6775         * m4/po.m4: Undo incorrect untabification.
6776
6777 2009-12-12  Bruno Haible  <bruno@clisp.org>
6778
6779         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
6780         * modules/c-strtod (Depends-on): Add locale.
6781         * modules/c-strtold (Depends-on): Likewise.
6782
6783 2009-12-12  Bruno Haible  <bruno@clisp.org>
6784
6785         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
6786
6787 2009-12-11  Eric Blake  <ebb9@byu.net>
6788
6789         setenv: relax requirement in light of POSIX ruling
6790         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
6791         not NULL.
6792         * tests/test-setenv.c (main): Relax test.
6793         * tests/test-unsetenv.c (main): Likewise.
6794         * doc/posix-functions/setenv.texi (setenv): Document this.
6795         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
6796
6797 2009-12-11  Bruno Haible  <bruno@clisp.org>
6798
6799         New module 'fd-safer-flag'.
6800         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
6801         * lib/dup-safer.c (dup_safer_flag): Remove function.
6802         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
6803         * lib/fd-safer.c (fd_safer_flag): Remove function.
6804         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
6805         * modules/cloexec (configure.ac): Drop indicator macro.
6806         * modules/fd-safer-flag: New file.
6807         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
6808         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
6809         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
6810
6811 2009-12-11  Bruno Haible  <bruno@clisp.org>
6812
6813         Tests for module 'nl_langinfo'.
6814         * modules/nl_langinfo-tests: New file.
6815         * tests/test-nl_langinfo.sh: New file.
6816         * tests/test-nl_langinfo.c: New file.
6817
6818         New module 'nl_langinfo'.
6819         * lib/nl_langinfo.c: New file.
6820         * m4/nl_langinfo.m4: New file.
6821         * modules/nl_langinfo: New file.
6822         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
6823
6824 2009-12-11  Bruno Haible  <bruno@clisp.org>
6825
6826         Tests for module 'langinfo'.
6827         * modules/langinfo-tests: New file.
6828         * tests/test-langinfo.c: New file.
6829
6830         New module 'langinfo'.
6831         * lib/langinfo.in.h: New file.
6832         * m4/langinfo_h.m4: New file.
6833         * modules/langinfo: New file.
6834         * doc/posix-headers/langinfo.texi: Mention the new module.
6835
6836 2009-12-11  Bruno Haible  <bruno@clisp.org>
6837
6838         * lib/config.charset: Untabify.
6839
6840 2009-12-11  Bruno Haible  <bruno@clisp.org>
6841
6842         * modules/unistd-safer (configure.ac): Drop indicator macro.
6843
6844 2009-12-11  Bruno Haible  <bruno@clisp.org>
6845
6846         Move pipe2-safer code to its own file.
6847         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
6848         * lib/pipe-safer.c (pipe2_safer): Remove function.
6849         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
6850         (Makefile.am): Add it to lib_SOURCES.
6851
6852 2009-12-10  Bruno Haible  <bruno@clisp.org>
6853
6854         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
6855
6856 2009-12-10  Bruno Haible  <bruno@clisp.org>
6857
6858         Declare which arguments expect non-NULL values, for GCC and clang.
6859         * build-aux/arg-nonnull.h: New file.
6860         * modules/arg-nonnull: New file.
6861         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
6862         (inet_ntop, inet_pton): Use it.
6863         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
6864         (closedir, dirfd, opendir, scandir, alphasort): Use it.
6865         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
6866         (open, openat): Use it.
6867         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
6868         (fnmatch): Use it.
6869         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
6870         (getopt, getopt_long, getopt_long_only): Use it.
6871         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
6872         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
6873         Use it.
6874         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
6875         (iconv_open): Use it.
6876         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
6877         (strtoimax, strtoumax): Use it.
6878         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
6879         (duplocale): Use it.
6880         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
6881         (frexp, frexpl): Use it.
6882         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
6883         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
6884         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
6885         (tsearch, tfind, tdelete, twalk): Use it.
6886         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
6887         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
6888         sigpending): Use it.
6889         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
6890         (posix_spawn, posix_spawnp, posix_spawnattr_init,
6891         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
6892         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
6893         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
6894         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
6895         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
6896         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
6897         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
6898         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
6899         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
6900         Use it.
6901         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
6902         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
6903         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
6904         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
6905         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
6906         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
6907         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
6908         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
6909         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
6910         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
6911         strtoull, unsetenv): Use it.
6912         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
6913         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
6914         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
6915         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
6916         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
6917         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
6918         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
6919         (strcasecmp, strncasecmp): Use it.
6920         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
6921         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
6922         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
6923         rpl_setsockopt): Use it.
6924         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
6925         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
6926         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
6927         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
6928         (gettimeofday): Use it.
6929         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
6930         (times): Use it.
6931         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
6932         (uname): Use it.
6933         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
6934         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
6935         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
6936         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
6937         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
6938         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
6939         unlinkat, write): Use it.
6940         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
6941         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
6942         * lib/argv-iter.h: Include arg-nonnull.h.
6943         (_ATTRIBUTE_NONNULL_): Remove macro.
6944         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
6945         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
6946         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
6947         optimization.
6948         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
6949         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
6950         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
6951         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
6952         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
6953         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
6954         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
6955         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
6956         * modules/arpa_inet (Depends-on): Add arg-nonnull.
6957         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
6958         * modules/dirent (Depends-on): Add arg-nonnull.
6959         (Makefile.am): Insert arg-nonnull.h into dirent.h.
6960         * modules/fcntl-h (Depends-on): Add arg-nonnull.
6961         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
6962         * modules/fnmatch (Depends-on): Add arg-nonnull.
6963         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
6964         * modules/getopt-posix (Depends-on): Add arg-nonnull.
6965         (Makefile.am): Insert arg-nonnull.h into getopt.h.
6966         * modules/glob (Depends-on): Add arg-nonnull.
6967         (Makefile.am): Insert arg-nonnull.h into glob.h.
6968         * modules/iconv_open (Depends-on): Add arg-nonnull.
6969         (Makefile.am): Insert arg-nonnull.h into iconv.h.
6970         * modules/inttypes (Depends-on): Add arg-nonnull.
6971         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
6972         * modules/locale (Depends-on): Add arg-nonnull.
6973         (Makefile.am): Insert arg-nonnull.h into locale.h.
6974         * modules/math (Depends-on): Add arg-nonnull.
6975         (Makefile.am): Insert arg-nonnull.h into math.h.
6976         * modules/netdb (Depends-on): Add arg-nonnull.
6977         (Makefile.am): Insert arg-nonnull.h into netdb.h.
6978         * modules/search (Depends-on): Add arg-nonnull.
6979         (Makefile.am): Insert arg-nonnull.h into search.h.
6980         * modules/signal (Depends-on): Add arg-nonnull.
6981         (Makefile.am): Insert arg-nonnull.h into signal.h.
6982         * modules/spawn (Depends-on): Add arg-nonnull.
6983         (Makefile.am): Insert arg-nonnull.h into spawn.h.
6984         * modules/stdio (Depends-on): Add arg-nonnull.
6985         (Makefile.am): Insert arg-nonnull.h into stdio.h.
6986         * modules/stdlib (Depends-on): Add arg-nonnull.
6987         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
6988         * modules/string (Depends-on): Add arg-nonnull.
6989         (Makefile.am): Insert arg-nonnull.h into string.h.
6990         * modules/strings (Depends-on): Add arg-nonnull.
6991         (Makefile.am): Insert arg-nonnull.h into strings.h.
6992         * modules/sys_socket (Depends-on): Add arg-nonnull.
6993         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
6994         * modules/sys_stat (Depends-on): Add arg-nonnull.
6995         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
6996         * modules/sys_time (Depends-on): Add arg-nonnull.
6997         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
6998         * modules/sys_times (Depends-on): Add arg-nonnull.
6999         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
7000         * modules/sys_utsname (Depends-on): Add arg-nonnull.
7001         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
7002         * modules/time (Depends-on): Add arg-nonnull.
7003         (Makefile.am): Insert arg-nonnull.h into time.h.
7004         * modules/unistd (Depends-on): Add arg-nonnull.
7005         (Makefile.am): Insert arg-nonnull.h into unistd.h.
7006         * modules/wchar (Depends-on): Add arg-nonnull.
7007         (Makefile.am): Insert arg-nonnull.h into wchar.h.
7008         * modules/argv-iter (Depends-on): Add arg-nonnull.
7009         * tests/test-canonicalize.c (null_ptr): New function.
7010         (main): Use it.
7011         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
7012         (main): Use it.
7013         * tests/test-memmem.c (null_ptr): New function.
7014         (main): Use it.
7015         Reported by Jim Meyering.
7016
7017 2009-12-10  Bruno Haible  <bruno@clisp.org>
7018
7019         Use spaces for indentation, not tabs.
7020         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
7021         * m4/*.m4: Untabify.
7022         * build-aux/*.h: Untabify.
7023         * tests/**/*.[hc]: Untabify.
7024         * README: New section "Indent with spaces, not TABs", based on
7025         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
7026         * NEWS: Mention the change.
7027
7028 2009-12-10  Bruno Haible  <bruno@clisp.org>
7029
7030         pty test: Fix link error.
7031         * modules/pty-tests (Makefile.am): Add the default LDADD value to
7032         test_pty_LDADD.
7033
7034 2009-12-07  Simon Josefsson  <simon@josefsson.org>
7035
7036         * modules/pty: New file.
7037         * modules/pty-tests: New file.
7038         * m4/pty.m4: New file.
7039         * tests/test-pty.c: New file.
7040         * doc/glibc-headers/pty.texi: Modified.
7041         * doc/glibc-functions/forkpty.texi: Modified.
7042         * doc/glibc-functions/openpty.texi: Modified.
7043
7044 2009-12-10  Bruno Haible  <bruno@clisp.org>
7045
7046         Avoid syntax error in C++ mode.
7047         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
7048
7049 2009-12-10  Bruno Haible  <bruno@clisp.org>
7050
7051         Use sed with option -e.
7052         * gnulib-tool (func_version, func_emit_copyright_notice,
7053         func_emit_initmacro_end, func_import, func_create_testdir): Pass
7054         option -e to sed.
7055         * modules/link-warning (Makefile.am): Likewise.
7056
7057 2009-12-10  Jim Meyering  <meyering@redhat.com>
7058
7059         mgetgroups: do not write bytes beyond end of malloc'd buffer
7060         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
7061         username, we call getgroups with a one-element-shorter buffer,
7062         but still told it the length was original, max_n_groups.
7063
7064 2009-12-09  Eric Blake  <ebb9@byu.net>
7065
7066         cloexec: relax license
7067         * modules/cloexec (Maintainer): Add myself.
7068         (License): Use LGPL, not GPL.
7069
7070         link-warning: optimize generation
7071         * modules/link-warning (Makefile.am): Reduce process usage.
7072
7073 2009-12-09  Bruno Haible  <bruno@clisp.org>
7074
7075         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
7076         workaround was added on 2009-11-17.
7077
7078 2009-12-09  Jim Meyering  <meyering@redhat.com>
7079             Bruno Haible  <bruno@clisp.org>
7080
7081         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
7082         * modules/link-warning (Makefile.am): Make the comment-removing sed
7083         command more robust in the face of bootstrap-prepended comment lines.
7084
7085 2009-12-09  Bruno Haible  <bruno@clisp.org>
7086
7087         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
7088         most one group.
7089
7090 2009-12-09  Simon Josefsson <simon@josefsson.org>
7091             Bruno Haible  <bruno@clisp.org>
7092
7093         * build-aux/link-warning.h: Add copyright notice.
7094         * modules/link-warning (Makefile.am): Generate link-warning.h from
7095         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
7096         * NEWS: Mention change in link-warning module.
7097         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
7098         * modules/dirent (Makefile.am): Add dependency to dirent.h.
7099         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
7100         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
7101         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
7102         * modules/math (Makefile.am): Add dependency to math.h.
7103         * modules/search (Makefile.am): Add dependency to search.h.
7104         * modules/signal (Makefile.am): Add dependency to signal.h.
7105         * modules/spawn (Makefile.am): Add dependency to spawn.h.
7106         * modules/stdio (Makefile.am): Add dependency to stdio.h.
7107         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
7108         * modules/string (Makefile.am): Add dependency to string.h.
7109         * modules/strings (Makefile.am): Add dependency to strings.h.
7110         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
7111         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
7112         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
7113         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
7114         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
7115         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
7116         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
7117         * modules/unistd (Makefile.am): Add dependency to unistd.h.
7118         * modules/wchar (Makefile.am): Add dependency to wchar.h.
7119
7120 2009-12-09  Bruno Haible  <bruno@clisp.org>
7121
7122         fchdir: Optimize away rpl_fstat when possible.
7123         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
7124         REPLACE_OPEN_DIRECTORY.
7125         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
7126
7127 2009-12-09  Bruno Haible  <bruno@clisp.org>
7128
7129         * lib/fchdir.c: Update comment.
7130
7131 2009-12-09  Bruno Haible  <bruno@clisp.org>
7132
7133         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
7134
7135 2009-12-08  Eric Blake  <ebb9@byu.net>
7136
7137         fchdir: avoid memory leak on re-registration.
7138         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
7139
7140 2009-12-08  Jim Meyering  <meyering@redhat.com>
7141
7142         init.sh: avoid Solaris 10 /bin/sh portability problem
7143         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
7144         sourced script:
7145           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
7146           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
7147           bar
7148         tests/init.sh relied on that, accepting a --set-path=DIR argument,
7149         and two tests used that idiom.
7150         * tests/init.sh: Update suggested usage comments.
7151         (path_prepend_): New function, to be used in place
7152         of the --src-path=DIR option.
7153         (setup_): Move PATH-prepending code into path_prepend_.
7154         * tests/test-pread.sh: Adapt to new usage.
7155         * tests/test-xalloc-die.sh: Likewise.
7156
7157 2009-12-08  Simon Josefsson  <simon@josefsson.org>
7158
7159         * doc/gnulib.texi (Glibc pty.h): Add.
7160         * doc/glibc-functions/forkpty.texi: Add.
7161         * doc/glibc-functions/openpty.texi: Add.
7162         Suggested by Bruno Haible.
7163
7164 2009-12-08  Eric Blake  <ebb9@byu.net>
7165
7166         fchdir: fix logic bugs
7167         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
7168         * tests/test-fchdir.c (main): Enhance test.
7169         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
7170         is in use.
7171
7172         dup2: fix logic bugs
7173         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
7174         REPLACE_DUP2 to decide when rpl_dup2 is needed.
7175         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
7176         exists.
7177         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
7178
7179 2009-12-07  Eric Blake  <ebb9@byu.net>
7180
7181         unlink: fix m4 detection
7182         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
7183
7184         unistd-safer: add unit test
7185         * modules/unistd-safer-tests: New file.
7186         * tests/test-dup-safer.c: Likewise.
7187         * tests/test-cloexec.c (setmode): Avoid compiler warning.
7188         * tests/test-dup2.c (setmode): Likewise.
7189         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
7190
7191         cloexec: preserve text vs. binary across dup_cloexec
7192         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
7193         mode.
7194         * modules/dup2-tests (Depends-on): Add binary-io.
7195         * modules/cloexec-tests (Depends-on): Likewise.
7196         * tests/test-dup2.c (setmode, is_mode): New helpers.
7197         (main): Add tests that translation mode is preserved.
7198         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
7199         Reported by Bruno Haible.
7200
7201         mgetgroups: reduce duplicate listings
7202         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
7203         resulting array.
7204         * tests/test-chown.h (test_chown): Simplify client.
7205         * tests/test-lchown.h (test_lchown): Likewise.
7206
7207 2009-12-06  Bruno Haible  <bruno@clisp.org>
7208
7209         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
7210         value.
7211
7212 2009-12-06  Bruno Haible  <bruno@clisp.org>
7213
7214         * lib/progname.c: Include stdio.h, stdlib.h.
7215         (set_program_name): Reject a NULL argument.
7216
7217 2009-12-05  Eric Blake  <ebb9@byu.net>
7218
7219         pipe2-safer: new module
7220         * modules/pipe2-safer: New file.
7221         * lib/unistd-safer.h (pipe2_safer): New prototype.
7222         * lib/unistd--.h (pipe2): New wrapper.
7223         * lib/pipe-safer.c (pipe2_safer): New function.
7224         * modules/pipe (Depends-on): Add pipe2-safer.
7225         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
7226
7227         stdlib-safer: preserve cloexec flag for mkostemp[s]
7228         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
7229         fd_safer_flag.
7230
7231         unistd-safer: allow preservation of cloexec status via flag
7232         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
7233         prototypes.
7234         * lib/dup-safer.c (dup_safer_flag): New function.
7235         * lib/fd-safer.c (fd_safer_flag): Likewise.
7236         * modules/cloexec (configure.ac): Set witness.
7237
7238         test-dup2: enhance test
7239         * modules/dup2-tests (Depends-on): Add cloexec.
7240         * tests/test-dup2.c (main): Enhance test.
7241
7242         cloexec: add dup_cloexec
7243         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
7244         header and comments.
7245         * lib/cloexec.c (set_cloexec_flag): Add comments.
7246         (dup_cloexec): New function, with mingw implementation borrowed
7247         from...
7248         * lib/w32spawn.h (dup_noinherit): ...here.
7249         * modules/execute (Depends-on): Add cloexec.
7250         * modules/pipe (Depends-on): Likewise.
7251         * modules/cloexec (Depends-on): Add dup2.
7252         * modules/cloexec-tests (Files): New file.
7253         * tests/test-cloexec.c: Likewise.
7254
7255         test-xalloc-die: fix test for mingw
7256         * modules/xalloc-die-tests (Files): Add tests/init.sh.
7257         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
7258         directory and .exe suffix off argv[0] output.
7259
7260         test-fseeko: fix test for mingw
7261         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
7262         than undefining fseek, so test will pass on mingw.
7263
7264 2009-12-05  Bruno Haible  <bruno@clisp.org>
7265
7266         * lib/progname.h (set_program_name): Clarify specification.
7267         * lib/progname.c (set_program_name): Likewise.
7268         Reported by Jim Meyering.
7269
7270 2009-12-05  Jim Meyering  <meyering@redhat.com>
7271
7272         maint.mk: backslash-escape parens in default regexp
7273         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
7274         backslash-escape the literal parentheses.
7275
7276         maint.mk: news-date-check: use grep -E
7277         * top/maint.mk (today): Define a Make variable, not a...
7278         (news-date-check): ...shell variable.
7279         (news-date-regexp): Use the Make variable.
7280         Use grep's -E option.  Change the failing diagnostic to mention
7281         the variable, $(news-date-regexp).
7282
7283 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
7284
7285         maintainer-makefile: allow customization of NEWS entry format
7286         * top/maint.mk (news-date-regexp): New overridable variable.
7287         (news-date-check): Use it.
7288
7289 2009-12-04  Eric Blake  <ebb9@byu.net>
7290
7291         mgetgroups: add xgetgroups, and avoid ENOSYS failures
7292         * lib/mgetgroups.h (xgetgroups): New prototype.
7293         * lib/mgetgroups.c (xgetgroups): New wrapper.
7294         (mgetgroups): Handle ENOSYS.
7295         * modules/mgetgroups (Depends-on): Add realloc.
7296         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
7297
7298         mgetgroups: avoid argument promotion issues with -1
7299         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
7300         for invalid gid_t.
7301         * tests/test-chown.h (getegid, test_chown): Likewise.
7302         * tests/test-lchown.h (getegid, test_lchown): Likewise.
7303
7304 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
7305
7306         exclude: Fix header file problems.
7307         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
7308
7309 2009-12-01  Jim Meyering  <meyering@redhat.com>
7310
7311         fts: fts_open: do not let an empty string cause immediate failure
7312         This is required in support of GNU rm, for which the command
7313         "rm A '' B" must process and remove both A and B, in spite of
7314         the empty string argument.
7315         * lib/fts.c (fts_open): Do not let the presence of an empty string
7316         cause fts_open to fail immediately.  Most fts-using tools must be
7317         able to process all arguments, in order, and can be expected to
7318         diagnose such arguments themselves.
7319
7320 2009-11-30  Eric Blake  <ebb9@byu.net>
7321
7322         utimens: fix compilation error
7323         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
7324         Declare variable at right scope.
7325
7326 2009-11-29  Jim Meyering  <meyering@redhat.com>
7327
7328         bootstrap: handle perl-5.11's changed --version output
7329         * build-aux/bootstrap (get_version): Handle perl separately,
7330         since perl-5.11's --version output is different.
7331
7332 2009-11-28  Jim Meyering  <meyering@redhat.com>
7333
7334         userspec: depend on the inttostr module, too
7335         * modules/userspec (Depends-on): Add inttostr.
7336
7337         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
7338         * lib/userspec.c (parse_with_separator): Do not accept a user ID
7339         number of MAXUID when it evaluates to (uid_t) -1.
7340         Likewise for group ID.  Reported by Matt McCutchen in
7341         <http://savannah.gnu.org/bugs/?28113>
7342
7343         userspec: reformat to use spaces, not TABs
7344         * lib/userspec.c: Expand TABs to spaces.
7345         Add Emacs' "indent-tabs-mode: nil" hint.
7346
7347 2009-11-27  Eric Blake  <ebb9@byu.net>
7348
7349         getopt-gnu: flush out another BSD bug
7350         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
7351         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
7352         flush out BSD bug.
7353         * tests/test-getopt.h (test_getopt): End lists with NULL.
7354         * tests/test-getopt_long.h (test_getopt_long): Likewise.
7355         (test_getopt_long_posix): Enhance test.
7356         * modules/getopt-posix-tests (Depends-on): Add stdbool.
7357         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
7358         getopt-gnu.
7359         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
7360         Likewise.
7361
7362 2009-11-27  Simon Josefsson  <simon@josefsson.org>
7363
7364         * modules/idpriv-droptemp-tests (Notice): Fix text.
7365
7366 2009-11-27  Jim Meyering  <meyering@redhat.com>
7367
7368         test-xalloc-die: avoid spurious failure due to libtool argv difference
7369         In a libtool-enabled project, this test would fail due to a difference
7370         in the emitted program name, e.g.,
7371         -test-xalloc-die: memory exhausted
7372         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
7373         Use program to avoid that.
7374         * modules/xalloc-die-tests (Depends-on): Add progname.
7375         * tests/test-xalloc-die.c: Include progname.h".
7376         (program_name): Remove decl.
7377         (main): Call set_program_name.
7378         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
7379
7380 2009-11-26  Richard Jones  <rjones@redhat.com>
7381
7382         w32sock: leave win32 error in place.
7383         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
7384
7385 2009-11-26  Eric Blake  <ebb9@byu.net>
7386
7387         init.sh: suggest to use skip_ and fail_ functions in comments
7388         * tests/init.sh: Add a sentence.
7389
7390 2009-11-25  Bruno Haible  <bruno@clisp.org>
7391
7392         init.sh: add documentation in comments
7393         * tests/init.sh: Add some developer and user documentation.
7394
7395 2009-11-26  Jim Meyering  <meyering@redhat.com>
7396
7397         init.sh: accommodate even those who specify bogus srcdir manually
7398         * tests/init.sh: Normally, srcdir is guaranteed by automake and
7399         configure-time tests to be sanitized, so that there is no need to
7400         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
7401         (with no double quotes) suffices.  However, since tests may be
7402         invoked manually, and since you may explicitly set srcdir to the
7403         name of a directory containing spaces, do quote its uses here.
7404         * tests/test-pread.sh: Likewise.
7405         Suggested by Bruno Haible.
7406
7407         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
7408         * tests/test-pread.sh: Write no data into the pipe, because
7409         test-pread actually reads none.  This avoids a diagnostic,
7410         "bash: echo: write error: Broken pipe", that arises in the unusual
7411         event something is ignoring SIGPIPE, and might be interpreted
7412         as some sort of failure.  Reported by Bruno Haible.
7413
7414 2009-11-25  Jim Meyering  <meyering@redhat.com>
7415
7416         test-pread: cover failure with ESPIPE and EINVAL
7417         * tests/test-pread.c (main): Test for failure, too.
7418         * tests/test-pread.sh: Invoke with stdin on a pipe.
7419         Suggested by Eric Blake.
7420
7421         pread: improvement and fix
7422         * modules/pread (Depends-on): Depend on lseek, for portability to
7423         e.g., mingw.  Suggested by Eric Blake.
7424         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
7425
7426         unistd.in.h: correct declaration of pread
7427         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
7428         Reported by Richard W.M. Jones.
7429
7430         test-pread.sh: distribute the test script
7431         * modules/pread-tests (Files): Include test-pread.sh.
7432
7433         test-pread.sh: clean up
7434         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
7435         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
7436         That is unnecessary, since it's always ".".
7437         Suggestion from Eric Blake.
7438
7439         test-pread.sh: make executable
7440         * tests/test-pread.sh: Set executable bit.
7441         Reported by Eric Blake.
7442
7443         correct typo in test-pread.sh
7444         * tests/test-pread.sh: Add #! line.
7445
7446         test pread
7447         * tests/test-pread.c: New file.
7448         * tests/test-pread.sh: Likewise.
7449         * modules/pread-tests: Likewise.
7450
7451         pread: new module
7452         * modules/pread: New file.
7453         * lib/unistd.in.h (pread): Define/declare.
7454         * lib/pread.c (pread): New file.
7455         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
7456         * modules/unistd (Makefile.am): Substitute witnesses.
7457         * doc/posix-functions/pread.texi (pread): Update.
7458         * MODULES.html.sh: Add pread.
7459
7460 2009-11-25  Jim Meyering  <meyering@redhat.com>
7461
7462         tests/init.sh: new file to be used via most *.sh tests
7463         * tests/init.sh: New file.
7464
7465 2009-11-25  Eric Blake  <ebb9@byu.net>
7466
7467         utimens: work around older Linux failure with symlinks
7468         * lib/utimens.c (lutimensat_works_really): New variable.
7469         (fdutimens, lutimens): Use it to manage kernels that support
7470         nanosecond times on files, but not on symlinks.
7471         Reported by Ondřej Vašík.
7472
7473         utimes: fix configure grammar
7474         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
7475
7476 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
7477
7478         regex: Fix fastmap for multibyte character ranges.
7479         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
7480         characters when a multibyte character range is included.
7481
7482 2009-11-22  Andy Wingo  <wingo@pobox.com>
7483
7484         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
7485         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
7486
7487 2009-11-24  Bruno Haible  <bruno@clisp.org>
7488
7489         doc: Most *_l functions exist in MacOS X 10.5.
7490         * doc/posix-functions/duplocale.texi: Update platforms list.
7491         * doc/posix-functions/freelocale.texi: Likewise.
7492         * doc/posix-functions/newlocale.texi: Likewise.
7493         * doc/posix-functions/uselocale.texi: Likewise.
7494         * doc/posix-functions/isalnum_l.texi: Likewise.
7495         * doc/posix-functions/isalpha_l.texi: Likewise.
7496         * doc/posix-functions/isblank_l.texi: Likewise.
7497         * doc/posix-functions/iscntrl_l.texi: Likewise.
7498         * doc/posix-functions/isdigit_l.texi: Likewise.
7499         * doc/posix-functions/isgraph_l.texi: Likewise.
7500         * doc/posix-functions/islower_l.texi: Likewise.
7501         * doc/posix-functions/isprint_l.texi: Likewise.
7502         * doc/posix-functions/ispunct_l.texi: Likewise.
7503         * doc/posix-functions/isspace_l.texi: Likewise.
7504         * doc/posix-functions/isupper_l.texi: Likewise.
7505         * doc/posix-functions/iswalnum_l.texi: Likewise.
7506         * doc/posix-functions/iswalpha_l.texi: Likewise.
7507         * doc/posix-functions/iswblank_l.texi: Likewise.
7508         * doc/posix-functions/iswcntrl_l.texi: Likewise.
7509         * doc/posix-functions/iswctype_l.texi: Likewise.
7510         * doc/posix-functions/iswdigit_l.texi: Likewise.
7511         * doc/posix-functions/iswgraph_l.texi: Likewise.
7512         * doc/posix-functions/iswlower_l.texi: Likewise.
7513         * doc/posix-functions/iswprint_l.texi: Likewise.
7514         * doc/posix-functions/iswpunct_l.texi: Likewise.
7515         * doc/posix-functions/iswspace_l.texi: Likewise.
7516         * doc/posix-functions/iswupper_l.texi: Likewise.
7517         * doc/posix-functions/iswxdigit_l.texi: Likewise.
7518         * doc/posix-functions/isxdigit_l.texi: Likewise.
7519         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
7520         * doc/posix-functions/strcasecmp_l.texi: Likewise.
7521         * doc/posix-functions/strcoll_l.texi: Likewise.
7522         * doc/posix-functions/strfmon_l.texi: Likewise.
7523         * doc/posix-functions/strftime_l.texi: Likewise.
7524         * doc/posix-functions/strncasecmp_l.texi: Likewise.
7525         * doc/posix-functions/strxfrm_l.texi: Likewise.
7526         * doc/posix-functions/tolower_l.texi: Likewise.
7527         * doc/posix-functions/toupper_l.texi: Likewise.
7528         * doc/posix-functions/towctrans_l.texi: Likewise.
7529         * doc/posix-functions/towlower_l.texi: Likewise.
7530         * doc/posix-functions/towupper_l.texi: Likewise.
7531         * doc/posix-functions/wcscoll_l.texi: Likewise.
7532         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
7533         * doc/posix-functions/wctrans_l.texi: Likewise.
7534         * doc/posix-functions/wctype_l.texi: Likewise.
7535         * doc/glibc-functions/strptime_l.texi: Likewise.
7536         * doc/glibc-functions/strtod_l.texi: Likewise.
7537         * doc/glibc-functions/strtof_l.texi: Likewise.
7538         * doc/glibc-functions/strtol_l.texi: Likewise.
7539         * doc/glibc-functions/strtold_l.texi: Likewise.
7540         * doc/glibc-functions/strtoll_l.texi: Likewise.
7541         * doc/glibc-functions/strtoul_l.texi: Likewise.
7542         * doc/glibc-functions/strtoull_l.texi: Likewise.
7543         * doc/glibc-functions/wcsftime_l.texi: Likewise.
7544         * doc/glibc-functions/wcstod_l.texi: Likewise.
7545         * doc/glibc-functions/wcstof_l.texi: Likewise.
7546         * doc/glibc-functions/wcstol_l.texi: Likewise.
7547         * doc/glibc-functions/wcstold_l.texi: Likewise.
7548         * doc/glibc-functions/wcstoll_l.texi: Likewise.
7549         * doc/glibc-functions/wcstoul_l.texi: Likewise.
7550         * doc/glibc-functions/wcstoull_l.texi: Likewise.
7551
7552 2009-11-24  Bruno Haible  <bruno@clisp.org>
7553
7554         duplocale: Fix logic bug.
7555         * lib/duplocale.c: Don't include <langinfo.h>.
7556         (_NL_LOCALE_NAME): Remove macro.
7557         (rpl_duplocale): Use setlocale instead of nl_langinfo.
7558         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
7559
7560 2009-11-23  Jim Meyering  <meyering@redhat.com>
7561
7562         test-update-copyright: don't hard-code /usr/bin/perl
7563         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
7564         perl to print the current year.  Gilles Espinasse reported that
7565         the replaced use of perl was hard-coded as /usr/bin/perl.
7566
7567 2009-11-23  Bruno Haible  <bruno@clisp.org>
7568
7569         duplocale: Add support for glibc 2.3.x.
7570         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
7571
7572 2009-11-22  Bruno Haible  <bruno@clisp.org>
7573
7574         vasnprintf: Tiny optimization.
7575         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
7576         MacOS X.
7577
7578 2009-11-22  Bruno Haible  <bruno@clisp.org>
7579
7580         Tests for module 'duplocale'.
7581         * modules/duplocale-tests: New file.
7582         * tests/test-duplocale.c: New file.
7583
7584         New module 'duplocale'.
7585         * m4/duplocale.m4: New file.
7586         * lib/locale.in.h (duplocale): New declaration.
7587         * lib/duplocale.c: New file.
7588         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
7589         gl_LOCALE_H_DEFAULTS): New macros.
7590         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
7591         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
7592         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
7593         REPLACE_DUPLOCALE.
7594         * modules/duplocale: New file.
7595         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
7596
7597 2009-11-22  Bruno Haible  <bruno@clisp.org>
7598
7599         * modules/locale-tests (configure.ac): Test for newlocale function.
7600         * tests/test-locale.c: When the system has extended locale functions,
7601         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
7602
7603         locale: Make locale_t available when possible.
7604         * lib/locale.in.h: Include <xlocale.h> when it exists.
7605         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
7606         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
7607         * modules/locale (Depends-on): Add extensions.
7608         (Makefile.am): Also substitute HAVE_XLOCALE_H.
7609         * doc/posix-headers/locale.texi: Document the problem with locale_t.
7610
7611 2009-11-22  Bruno Haible  <bruno@clisp.org>
7612
7613         Add comments.
7614         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
7615         invocation.
7616         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
7617         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
7618         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
7619
7620 2009-11-22  Bruno Haible  <bruno@clisp.org>
7621
7622         error: account for the possibility of freopen (stdout).
7623         * lib/error.c: Include <unistd.h>.
7624         (flush_stdout): New function, extracted from error and error_at_line.
7625         Determine stdout's fd dynamically.
7626         (error, error_at_line): Invoke flush_stdout.
7627         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
7628         * modules/error (Depends-on): Add unistd.
7629
7630 2009-11-22  Bruno Haible  <bruno@clisp.org>
7631
7632         diffseq: Add comment.
7633         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
7634
7635 2009-11-22  Jim Meyering  <meyering@redhat.com>
7636
7637         c-stack: avoid defining an unused static function
7638         * lib/c-stack.c (find_stack_direction): Do not define this function
7639         when it will not be used.
7640
7641         diffseq: avoid spurious gcc warnings
7642         * lib/diffseq.h (IF_LINT2): Define.
7643         (compareseq): Use it to initialize two members of "part".
7644         This avoids two used-uninitialized warnings.
7645
7646 2009-11-21  Jim Meyering  <meyering@redhat.com>
7647
7648         c-stack: avoid "ignoring return value of `write'" warning
7649         * lib/c-stack.c: Include "ignore-value.h".
7650         (die): Explicitly ignore each write return value.
7651         * modules/c-stack (Depends-on): Add ignore-value.
7652
7653 2009-11-21  Bruno Haible  <bruno@clisp.org>
7654
7655         diffseq: reduce scope of variable 'best'.
7656         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
7657         variable, earlier used for two different purposes.
7658
7659 2009-11-21  Jim Meyering  <meyering@redhat.com>
7660
7661         diffseq: remove useless assignment to "best"
7662         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
7663         assignment.  At that point "best" is already guaranteed to be zero.
7664
7665 2009-11-20  Eric Blake  <ebb9@byu.net>
7666
7667         build: mention ftp redirector in release announcements
7668         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
7669         values that used to come from cfg.mk; mention FTP redirect URL.
7670         * build-aux/announce-gen: Mention the mirror list.
7671         Suggested by Karl Berry.
7672
7673         nanosleep: improve port to mingw
7674         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
7675         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
7676         LIB_NANOSLEEP, but only when needed.
7677         * modules/select (Link): Document LIBSOCKET.
7678         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
7679         enough.
7680
7681         nanosleep: work around cygwin bug
7682         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
7683         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
7684         bug.
7685         (getnow): Delete, not needed.
7686         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
7687         LIB_CLOCK_GETTIME.
7688         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
7689         clock-time, gettime.
7690         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
7691         bug.
7692         * modules/nanosleep-tests: New test.
7693         * tests/test-nanosleep.c: New file.
7694
7695         sleep: work around cygwin bug
7696         * lib/sleep.c (rpl_sleep): Work around the bug.
7697         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
7698         (gl_PREREQ_SLEEP): Delete unused macro.
7699         * modules/sleep (Depends-on): Add verify.
7700         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
7701         * modules/unistd (Makefile.am): Substitute witness.
7702         * lib/unistd.in.h (sleep): Update prototype.
7703         * doc/posix-functions/sleep.texi (sleep): Document the bug.
7704         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
7705         * modules/sleep-tests (Depends-on): Check for alarm.
7706
7707 2009-11-20  Jim Meyering  <meyering@redhat.com>
7708
7709         maint.mk: improve sc_prohibit_magic_number_exit
7710         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
7711         so it does not match uses like System.exit(1).
7712         Add comments showing how to correct all offenders.
7713
7714 2009-11-19  Eric Blake  <ebb9@byu.net>
7715
7716         xalloc-die-tests: add missing library
7717         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
7718
7719         test-xvasprintf: silence compiler warnings
7720         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
7721         empty string from gcc.
7722
7723 2009-11-19  Jim Meyering  <meyering@redhat.com>
7724
7725         xfreopen: new module, from coreutils
7726         * modules/xfreopen: New module.
7727         * lib/xfreopen.c: New file.
7728         * lib/xfreopen.h: New file.
7729         * MODULES.html.sh (File stream based Input/Output"): Add it.
7730
7731 2009-11-19  Eric Blake  <ebb9@byu.net>
7732
7733         manywarnings: depend on warnings
7734         * modules/manywarnings (Depends-on): Add warnings.
7735
7736         build: avoid compiler warnings
7737         * lib/select.c (rpl_select): Delete unused variable.
7738         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
7739
7740 2009-11-18  Eric Blake  <ebb9@byu.net>
7741
7742         tests: avoid false negative with --with-packager
7743         * tests/test-version-etc.sh: Discard packager information.
7744         * tests/test-argp-version-etc-1.sh: Likewise.
7745         Reported by Mike Frysinger.
7746
7747         utimens: fix regression on Solaris
7748         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
7749         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
7750         can only change fd timestamps via futimesat.  Instead, use an
7751         additional witness macro to avoid BSD bug.
7752         Reported by Jim Meyering.
7753
7754 2009-11-17  Eric Blake  <ebb9@byu.net>
7755
7756         usleep: use it to simplify tests
7757         * modules/stat-time-tests (Depends-on): Add usleep.
7758         (configure.ac): Drop usleep check.
7759         * modules/chown-tests (Depends-on, configure.ac): Likewise.
7760         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
7761         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
7762         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
7763         * modules/openat-tests (Depends-on, configure.ac): Likewise.
7764         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
7765         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
7766         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
7767         Likewise.
7768         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
7769         * tests/test-lchown.h (nap): Likewise.
7770         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
7771         * tests/test-stat-time.c (nap): Likewise.
7772         * tests/test-utimens-common.h (nap): Update comments.
7773
7774         usleep: new module
7775         * modules/usleep: New file.
7776         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
7777         * lib/usleep.c (usleep): Likewise.
7778         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
7779         * modules/unistd (Makefile.am): Substitute witnesses.
7780         * lib/unistd.in.h (usleep): Add declaration.
7781         * doc/pastposix-functions/usleep.texi (usleep): Document this.
7782         * MODULES.html.sh (Date and time): Likewise.
7783         * modules/usleep-tests (Depends-on): New test.
7784         * tests/test-usleep.c: New file.
7785
7786         chown: work around OpenBSD bug
7787         * lib/chown.c (rpl_chown): Work around the bug.
7788         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
7789         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
7790         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
7791         * modules/chown (Depends-on): Add stdbool.
7792         * modules/lchown (Depends-on): Likewise.
7793         * doc/posix-functions/chown.texi (chown): Document the bug.
7794         * doc/posix-functions/lchown.texi (lchown): Likewise.
7795         * tests/test-lchown.h (test_chown): Relax test.
7796
7797         mkstemp: avoid conflict with C++ keyword template
7798         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
7799         * lib/mkostemp.c (mkostemp): Likewise.
7800         * lib/mkostemps.c (mkostemps): Likewise.
7801         * lib/mkstemp.c (mkstemp): Likewise.
7802         * lib/mkstemps.c (mkstemps): Likewise.
7803
7804         xalloc-die-tests: optimize
7805         * tests/test-xalloc-die.sh: Reduce number of processes.
7806
7807 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7808
7809         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
7810         patch from ludo@gnu.org (Ludovic Courtès).
7811
7812 2009-11-17  Jim Meyering  <meyering@redhat.com>
7813
7814         version-etc: use proper license string
7815         * modules/version-etc (License): Use LGPL, not LGPLv3+.
7816         * modules/version-etc-fsf: Likewise.
7817
7818 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7819
7820         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
7821         printed to stdout.  Deal with EOL differences.
7822
7823 2009-11-17  Eric Blake  <ebb9@byu.net>
7824
7825         unsetenv: work around Solaris bug
7826         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
7827         * lib/unsetenv.c (rpl_unsetenv): Work around it.
7828         Reported by Jim Meyering.
7829
7830         vasnprintf: avoid compiler warnings
7831         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
7832         variables.
7833         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
7834
7835 2009-11-17  Simon Josefsson  <simon@josefsson.org>
7836
7837         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
7838         settings since xalloc-die is no longer the self test,
7839         xalloc-die.sh is.
7840
7841 2009-11-17  Jim Meyering  <meyering@redhat.com>
7842
7843         test-xalloc-die.sh: make the code agree with the commit log
7844         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
7845         at the end, just in case you happen to have a test-xalloc-die
7846         program in some other PATH directory.
7847
7848         test-xalloc-die.sh: fix a portability bug
7849         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
7850         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
7851         Otherwise, argv[0] (as often seen in diagnostics) would be too
7852         system-dependent, sometimes with, and sometimes without the leading "./".
7853
7854         version-etc-fsf: relax license to LGPLv3+
7855         * modules/version-etc-fsf (License): Relax license.
7856
7857 2009-11-16  Eric Blake  <ebb9@byu.net>
7858
7859         xalloc-die-tests: avoid printing null pointer
7860         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
7861         shell script.
7862         * tests/test-xalloc-die.c (program_name): Declare.
7863         * tests/test-xalloc-die.sh (tmpfiles): New file.
7864
7865         setenv, unsetenv: work around various bugs
7866         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
7867         (setenv) [HAVE_SETENV]: Work around bugs.
7868         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
7869         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
7870         for bugs.
7871         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
7872         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
7873         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
7874         * modules/stdlib (Makefile.am): Update substitutions.
7875         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
7876         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
7877         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
7878         * modules/setenv-tests: New test.
7879         * modules/unsetenv-tests: Likewise.
7880         * tests/test-setenv.c: New file.
7881         * tests/test-unsetenv.c: Likewise.
7882
7883 2009-11-16  Jim Meyering  <meyering@redhat.com>
7884
7885         version-etc: relax license to LGPLv3+
7886         * modules/version-etc (License): Relax license.
7887
7888         better AC_REQUIRE expanded-before-required-warning avoidance
7889         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
7890         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
7891         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
7892         which is no longer needed.
7893
7894 2009-11-16  Eric Blake  <ebb9@byu.net>
7895
7896         test-freading: clean up temporary file
7897         * tests/test-freading.c (main): Remove file on success, and use
7898         ASSERT more liberally.
7899         Reported by Jim Meyering.
7900
7901 2009-11-16  Jim Meyering  <meyering@redhat.com>
7902
7903         avoid new AC_REQUIRE expanded-before-required warnings
7904         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
7905         merely using it.
7906         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
7907         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
7908
7909 2009-11-15  Simon Josefsson  <simon@josefsson.org>
7910
7911         * tests/test-xalloc-die.c: New file.
7912         * modules/xalloc-die-tests: New file.
7913         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
7914         XFAIL_TESTS so it can be appended by modules.
7915
7916 2009-11-15  Simon Josefsson  <simon@josefsson.org>
7917
7918         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
7919         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
7920
7921 2009-11-14  Eric Blake  <ebb9@byu.net>
7922
7923         fnmatch: avoid compiler warning
7924         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
7925         to silence compiler warning about mismatch signedness in ?:.
7926         Reported by Robert Millan.
7927
7928         intprops: add double-inclusion guard
7929         * lib/intprops.h: Allow idempotent includes.
7930         Suggested by Bruce Korb.
7931
7932         openat: detect Solaris fchownat bug
7933         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
7934         penalizing glibc chownat when only lchownat is broken.
7935         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
7936         trailing slash bugs.
7937         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
7938         * modules/openat-tests (Files): Include more files.
7939         (Depends-on): Add mgetgroups, sleep, stat-time.
7940         (configure.ac): Add additional checks.
7941         (Makefile.am): Build new test.
7942         * tests/test-fchownat.c: New file.
7943
7944         lchown: detect Solaris and FreeBSD bug
7945         * lib/lchown.c (rpl_lchown): Work around bug.
7946         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
7947         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
7948         * modules/unistd (Makefile.am): Populate it.
7949         * lib/unistd.in.h (lchown): Update declaration.
7950         * doc/posix-functions/lchown.texi (lchown): Document the bug.
7951         * modules/lchown-tests: New file.
7952         * tests/test-lchown.h (test_lchown): Likewise.
7953         * tests/test-lchown.c (main): Likewise.
7954
7955         chown: detect Solaris and FreeBSD bug
7956         * lib/chown.c (rpl_chown): Work around bug.
7957         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
7958         (gl_PREREQ_CHOWN): Delete.
7959         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
7960         * modules/unistd (Makefile.am): Populate it.
7961         * lib/unistd.in.h (chown): Update declaration.
7962         * lib/lchown.c (chown): Update client.
7963         * modules/lchown (Depends-on): Add lstat.
7964         * doc/posix-functions/chown.texi (chown): Document the bug.
7965         * doc/posix-functions/getgroups.texi (getgroups): Document
7966         getgroups pitfall.
7967         * modules/chown-tests: New file.
7968         * tests/test-chown.h (test_chown): Likewise.
7969         * tests/test-chown.c (main): Likewise.
7970
7971 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
7972
7973         gnulib-tool: correctly detect absence of m4 directories
7974         * gnulib-tool: Avoid extra newline on data passed to wc -l.
7975
7976 2009-11-14  Jim Meyering  <meyering@redhat.com>
7977
7978         maint.mk: Prohibit inclusion of "xalloc.h" without use.
7979         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
7980
7981 2009-11-14  John W. Eaton  <jwe@gnu.org>
7982
7983         strftime.h: wrap funtion declaration in extern "C" block
7984         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
7985
7986 2009-11-13  Eric Blake  <ebb9@byu.net>
7987
7988         getgroups: avoid compiler warning
7989         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
7990
7991         getgroups: work around FreeBSD bug
7992         * lib/getgroups.c (rpl_getgroups): Work around the bug.
7993         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
7994         * doc/posix-functions/getgroups.texi (getgroups): Document it.
7995         * tests/test-getgroups.c (main): Fix buffer overrun.
7996
7997         getgroups: avoid compilation failure
7998         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
7999         * modules/getgroups (Depends-on): Add stdint.
8000
8001 2009-11-13  Jim Meyering  <meyering@redhat.com>
8002
8003         test-getgroups: avoid compilation failure
8004         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
8005
8006 2009-11-13  Eric Blake  <ebb9@byu.net>
8007
8008         mgetgroups: new module, taken from coreutils
8009         * modules/mgetgroups: New file.
8010         * lib/mgetgroups.h: Likewise.
8011         * lib/mgetgroups.c (mgetgroups): Likewise.
8012         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
8013         * MODULES.html.sh (Users and groups): Mention it.
8014
8015         getgroups: don't expose GETGROUPS_T to user
8016         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
8017         an element at a time if GETGROUPS_T is wrong size.
8018         * lib/getugroups.h (getugroups): Change signature.
8019         * lib/unistd.in.h (getgroups): Likewise.
8020         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
8021         signature needs fixing.
8022         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
8023         AC_TYPE_GETGROUPS.
8024         * modules/group-member (Depends-on): Add getgroups.
8025         * lib/group-member.c (group_info, get_group_info): Use gid_t.
8026         (group_member): Rely on getgroups replacement.
8027         * lib/getugroups.c (getugroups): Use gid_t.
8028         * tests/test-getgroups.c (main): Likewise.
8029         * NEWS: Mention the signature change.
8030         * doc/posix-functions/getgroups.texi (getgroups): Mention the
8031         problem with signature.
8032         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
8033         GETGROUPS_T is still useful for setgroups.
8034
8035         getgroups, getugroups: provide stubs for mingw
8036         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
8037         * lib/getugroups.c (getugroups): Likewise.
8038         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
8039         function.  Modernize replacement scheme.
8040         (gl_PREREQ_GETGROUPS): Delete.
8041         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
8042         * modules/getgroups (configure.ac): Declare witness.
8043         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
8044         * modules/unistd (Depends-on): Substitute witness.
8045         * lib/unistd.in.h (getgroups): Declare replacement.
8046
8047         getgroups: avoid calling exit
8048         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
8049         drop xalloc.
8050         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
8051         dependencies.
8052         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
8053         exiting, in the rare case of malloc failure.
8054
8055         getgroups: fix logic error
8056         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
8057         has more than 20 groups.
8058         * modules/getgroups-tests: New test.
8059         * tests/test-getgroups.c: New file.
8060
8061 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8062
8063         * tests/test-base64.c: Improve.
8064
8065 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8066
8067         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
8068         Blake <ebb9@byu.net>.
8069
8070 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8071
8072         * tests/test-xvasprintf.c: Add %s%s related checks.
8073
8074 2009-11-12  Eric Blake  <ebb9@byu.net>
8075
8076         version-etc: match standards.texi style
8077         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
8078         and use <> only for URLs.
8079
8080 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
8081
8082         fts: do not fail on a submount during traversal
8083         * lib/fts.c (fts_build): Read the stat info again after opening
8084         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
8085         Original report at http://bugzilla.redhat.com/501848.
8086
8087 2009-11-12  Jim Meyering  <meyering@redhat.com>
8088
8089         bootstrap: sync from coreutils
8090         * build-aux/bootstrap (bootstrap_epilogue): New function.
8091         Use git_modules_config in one more place.  This make bootstrap's
8092         --gnulib-srcdir option more useful for testing.
8093
8094         bootstrap: generalize autoheader check
8095         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
8096         AC_CONFIG_HEADERS.
8097
8098 2009-11-11  Eric Blake  <ebb9@byu.net>
8099
8100         mkfifoat: use new modules for Solaris and BSD bugs
8101         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
8102         * lib/mkfifoat.c (mknodat): Split...
8103         * lib/mknodat.c (mknodat): ...into new file.
8104         * modules/mkfifoat (Files): Ship new file.
8105         (Depends-on): Add mkfifo, mknod.
8106         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
8107         (Depends-on): Add symlink.
8108         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
8109         redundant with test_mkfifo.h.
8110         (do_mkfifoat, do_mknodat): New helpers.
8111
8112         mknod: new module
8113         * modules/mknod: New file.
8114         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
8115         * lib/mknod.c (mknod): Likewise.
8116         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8117         defaults.
8118         * modules/sys_stat (Makefile.am): Substitute them.
8119         * lib/sys_stat.in.h (mknod): Declare replacement.
8120         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8121         Document it.
8122         * doc/posix-functions/mknod.texi (mknod): Likewise.
8123         * modules/mknod-tests: New test.
8124         * tests/test-mknod.c: Likewise.
8125
8126         mkfifo: new module
8127         * modules/mkfifo: New file.
8128         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
8129         * lib/mkfifo.c (mkfifo): Likewise.
8130         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8131         defaults.
8132         * modules/sys_stat (Makefile.am): Substitute them.
8133         * lib/sys_stat.in.h (mkfifo): Declare replacement.
8134         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8135         Document it.
8136         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
8137         * modules/mkfifo-tests: New test.
8138         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
8139         from test-mkfifoat.c.
8140         * tests/test-mkfifo.c: New file.
8141
8142         readlink: detect FreeBSD bug
8143         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
8144         slash on symlink.
8145         * doc/posix-functions/readlink.texi (readlink): Document the bug.
8146         * tests/test-readlink.h (test_readlink): Enhance test.
8147
8148         symlink: detect FreeBSD bug
8149         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
8150         slash on symlink.
8151         * doc/posix-functions/symlink.texi (symlink): Document the bug.
8152         * tests/test-symlink.h (test_symlink): Enhance test.
8153
8154 2009-11-10  Eric Blake  <ebb9@byu.net>
8155
8156         link: detect FreeBSD bug
8157         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
8158         symlink.
8159         * doc/posix-functions/link.texi (link): Document the bug.
8160         * tests/test-link.h (test_link): Enhance test.
8161         * tests/test-linkat.c (main): Update caller.
8162
8163         unlink, remove: detect FreeBSD bug
8164         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
8165         slash on symlink.
8166         * doc/posix-functions/unlink.texi (unlink): Document the bug.
8167         * doc/posix-functions/remove.texi (remove): Likewise.
8168         * tests/test-unlink.h (test_unlink): Enhance test.
8169         * tests/test-remove.c (main): Likewise.
8170
8171 2009-11-09  Eric Blake  <ebb9@byu.net>
8172
8173         rename: detect FreeBSD bug
8174         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
8175         slash on symlink.
8176         * modules/renameat-tests (Depends-on): Add filenamecat.
8177         * tests/test-rename.h (test_rename): Allow one more errno.
8178         * tests/test-renameat.c (main): Likewise.
8179         * doc/posix-functions/rename.texi (rename): Document the bug.
8180
8181         open: detect FreeBSD bug
8182         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
8183         symlink.
8184         * doc/posix-functions/open.texi (open): Document the bug.
8185         * doc/posix-functions/utimes.texi (utimes): Likewise.
8186         * tests/test-open.h (test_open): Add parameters, and test symlink
8187         handling.
8188         * tests/test-open.c (main): Adjust caller.
8189         * tests/test-fcntl-safer.c (main): Likewise.
8190         * modules/open-tests (Depends-on): Add stdbool, symlink.
8191         * modules/fcntl-safer-tests (Depends-on): Likewise.
8192         * tests/test-openat.c (main): Add test-open tests.
8193
8194         stat: detect FreeBSD bug
8195         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
8196         symlink.
8197         * doc/posix-functions/stat.texi (stat): Document the bug.
8198         * tests/test-stat.h (test_stat_func): Add argument.
8199         * tests/test-stat.c (main): Adjust caller.
8200         * tests/test-fstatat.c (main): Likewise.
8201         * modules/stat-tests (Depends-on): Add stdbool, symlink.
8202         Reported by Jim Meyering.
8203
8204 2009-11-09  James Youngman  <jay@gnu.org>
8205
8206         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
8207         * lib/strftime.c: Correct placement of #include "ignore-value.h".
8208
8209 2009-11-08  Jim Meyering  <meyering@redhat.com>
8210
8211         utimens: remove invalid futimesat call
8212         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
8213         It used the file descriptor of the target file as the DIR_FD
8214         parameter and NULL as the file name.  That caused failure with
8215         errno == EFAULT on FreeBSD-8.0-rc2
8216
8217 2009-11-07  Eric Blake  <ebb9@byu.net>
8218
8219         fflush, freadseek: use fseeko, not fseek
8220         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
8221         (clear_ungetc_buffer): Avoid potential problems on large files.
8222         * lib/freadseek.c (freadseek): Likewise.
8223         * modules/freadseek (Depends-on): Add fseeko.
8224         * modules/fseek (configure.ac): Set a witness.
8225         * tests/test-fflush.c (main): Use fseeko.
8226         * tests/test-fpurge.c (fseek): Disable link warning.
8227         * tests/test-freadable.c (fseek): Likewise.
8228         * tests/test-freading.c (fseek): Likewise.
8229         * tests/test-fseeko.c (fseek): Likewise.
8230         * tests/test-ftell.c (fseek): Likewise.
8231         * tests/test-ftello.c (fseek): Likewise.
8232         * tests/test-fwritable.c (fseek): Likewise.
8233         * tests/test-fwriting.c (fseek): Likewise.
8234
8235 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8236
8237         * modules/memchr (Depends-on): Drop getpagesize dependency.
8238
8239 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8240
8241         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
8242         Reported by Ludovic Courtès.
8243         * build-aux/pmccabe2html: Improve example usage.
8244         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
8245
8246 2009-11-06  Jim Meyering  <meyering@redhat.com>
8247
8248         do-release-commit-and-tag: New module.
8249         Automate the release-commit and tag process.
8250         * build-aux/do-release-commit-and-tag: New script, from coreutils.
8251         * modules/do-release-commit-and-tag: New file.
8252         * MODULES.html.sh (Support for maintaining and releasing): Add it.
8253
8254 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8255
8256         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
8257         because test-select.c uses inet_pton.
8258
8259 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8260
8261         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
8262         GETADDRINFO_LIB.  Bump serial number.
8263         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
8264         Suggested by Eric Blake <ebb9@byu.net>.
8265
8266 2009-11-05  Eric Blake  <ebb9@byu.net>
8267
8268         strtod: detect darwin bug
8269         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
8270         Reported by Leo Davis.
8271
8272         freopen-safer: new module
8273         * modules/freopen-safer: New module.
8274         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
8275         * lib/freopen-safer.c (freopen_safer): New file.
8276         * lib/stdio-safer.h (freopen_safer): New declaration.
8277         * lib/stdio--.h (freopen): New override.
8278         * MODULES.html.sh (File stream based Input/Output): Mention it.
8279         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
8280         freopen-safer module.
8281         * doc/posix-functions/stderr.texi (stderr): Likewise.
8282         * doc/posix-functions/stdin.texi (stdin): Likewise.
8283         * doc/posix-functions/stdout.texi (stdout): Likewise.
8284         * modules/freopen-safer-tests: New test.
8285         * tests/test-reopen-safer.c: New file.
8286
8287 2009-11-05  Jim Meyering  <meyering@redhat.com>
8288
8289         maint.mk: Prohibit inclusion of "close-stream.h" without use.
8290         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
8291
8292 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8293
8294         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
8295
8296 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8297
8298         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
8299
8300 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8301
8302         Fix link error.
8303         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8304         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8305
8306 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8307
8308         * tests/test-func.c: Also test value of __func__.
8309
8310 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8311
8312         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
8313         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
8314
8315 2009-11-05  Bruno Haible  <bruno@clisp.org>
8316
8317         Fix link error.
8318         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8319         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8320         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
8321
8322 2009-11-05  Bruno Haible  <bruno@clisp.org>
8323
8324         Tests for module 'inet_pton'.
8325         * modules/inet_pton-tests: New file.
8326         * tests/test-inet_pton.c: New file.
8327
8328 2009-11-05  Bruno Haible  <bruno@clisp.org>
8329
8330         Tests for module 'inet_ntop'.
8331         * modules/inet_ntop-tests: New file.
8332         * tests/test-inet_ntop.c: New file.
8333
8334 2009-11-04  Eric Blake  <ebb9@byu.net>
8335
8336         stdlib-safer: wrap all mkstemp variants
8337         * modules/mkostemp (configure.ac): Set witness.
8338         * modules/mkostemps (configure.ac): Likewise.
8339         * modules/mkstemps (configure.ac): Likewise.
8340         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
8341         (mkstemps_safer): Wrap more functions.
8342         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
8343         wrapping.
8344         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
8345         (mkstemps_safer): Implement the wrappers.
8346
8347         mkstemps, mkostemps: new modules
8348         * modules/mkostemps: New module.
8349         * modules/mkstemps: Likewise.
8350         * lib/mkostemps.c (mkostemps): New file.
8351         * lib/mkstemps.c (mkstemps): Likewise.
8352         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
8353         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
8354         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
8355         * modules/stdlib (Makefile.am): Substitute them.
8356         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
8357         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
8358         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
8359         * doc/gnulib.texi (Glibc stdlib.h): Include them.
8360         * MODULES.html.sh (File system functions): Mention them.
8361
8362         tempname: resync from glibc
8363         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
8364         same values for __GT_FILE as glibc.  Abort even when assertions
8365         are disabled.
8366         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
8367         match its value otherwise.  Allow idempotent inclusion.
8368         * lib/mkdtemp.c (mkdtemp): Adjust caller.
8369         * lib/mkostemp.c (mkostemp): Likewise.
8370         * lib/mkstemp.c (mkstemp): Likewise.
8371         * lib/tmpfile.c (tmpfile): Likewise.
8372         * NEWS: Document this.
8373
8374         utimens: fix use of futimens on older Linux
8375         * lib/utimens.c (fdutimens): Use updated, rather than original,
8376         timespec to avoid bug in older Linux kernel.
8377         Reported by Simon Josefsson.
8378
8379 2009-11-04  Bruno Haible  <bruno@clisp.org>
8380
8381         Make num_processors more flexible and consistent.
8382         * lib/nproc.h (enum nproc_query): New type.
8383         (num_processors): Add a 'query' argument.
8384         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
8385         (num_processors): Add a 'query' argument. Test the value of the
8386         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
8387         mingw, count the number of CPUs available for the current process.
8388         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
8389         Check for sched_getaffinity and sched_getaffinity_np.
8390         * modules/nproc (Depends-on): Add c-ctype, extensions.
8391         * NEWS: Mention the change.
8392
8393 2009-11-03  Bruno Haible  <bruno@clisp.org>
8394
8395         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
8396
8397 2009-11-03  Jim Meyering  <meyering@redhat.com>
8398
8399         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
8400         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
8401         if it is defined.
8402
8403 2009-11-02  Eric Blake  <ebb9@byu.net>
8404
8405         mktime, timegm: share common declaration
8406         * lib/mktime-internal.h: New file.
8407         * lib/mktime.c: Use it rather than open-coding a declaration.
8408         * lib/timegm.c: Likewise.
8409         * modules/mktime (Files): Ship it.
8410         * modules/timegm (Files): Likewise.
8411         Suggested by Bruno Haible.
8412
8413         test-update-copyright: update test to match script changes
8414         * tests/test-update-copyright.sh: Avoid hard-coding perl
8415         location.  Don't update *.bak created by earlier runs.
8416
8417 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
8418             Simon Josefsson  <simon@josefsson.org>
8419             Bruno Haible  <bruno@clisp.org>
8420
8421         Fix link error on Solaris 8.
8422         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
8423         also in libnsl. Define also INET_PTON_LIB.
8424         * modules/inet_pton (Link): New section.
8425
8426 2009-11-02  Simon Josefsson  <simon@josefsson.org>
8427             Bruno Haible  <bruno@clisp.org>
8428
8429         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
8430         * modules/inet_ntop (Link): New section.
8431         Reported by Boyan Kasarov <bkasarov@gmail.com>.
8432
8433 2009-11-02  Eric Blake  <ebb9@byu.net>
8434
8435         maint: avoid compiler warnings in m4 macros
8436         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
8437         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
8438
8439 2009-11-02  Simon Josefsson  <simon@josefsson.org>
8440
8441         * m4/pmccabe2html.m4: Remove file.
8442         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
8443         function.  Change maintainer.
8444         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
8445         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
8446         Courtès).
8447
8448 2009-10-31  Eric Blake  <ebb9@byu.net>
8449
8450         fseeko: fix m4 regression
8451         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
8452         regression from 2009-10-27.
8453         Reported by Ralf Wildenhues.
8454
8455 2009-10-31  Jim Meyering  <meyering@redhat.com>
8456
8457         inttostr: aesthetics and improved (compile-time) safety
8458         Define inttype_is_signed rather than inttype_is_unsigned,
8459         since the sole use is via "#if inttype_is_signed".
8460         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
8461         inttype_is_unsigned.
8462         * lib/offtostr.c (inttype_is_signed): Likewise.
8463         * lib/uinttostr.c (inttype_is_signed): Likewise.
8464         * lib/umaxtostr.c (inttype_is_signed): Likewise.
8465         * lib/inttostr.c (inttostr): Use verify to cross-check the
8466         inttype_is_signed value and the signedness of the actual type.
8467         * modules/inttostr (Depends-on): Add verify.
8468
8469 2009-10-30  Eric Blake  <ebb9@byu.net>
8470
8471         build: avoid compiler warnings
8472         * lib/fchmodat.c (lchmod): Mark unused variables.
8473         * lib/getopt.c (_getopt_initialize): Likewise.
8474         * lib/mktime.c (__mktime_internal): Provide prototype.
8475         * lib/inttostr.c (inttostr): Avoid compiler warning even with
8476         older gcc that do not understand #pragma GCC diagnostic.
8477         * lib/uinttostr.c (inttype_is_unsigned): Define.
8478         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
8479
8480 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
8481
8482         stat: fix compilation on AIX
8483         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
8484         only see struct stat64.
8485
8486 2009-10-30  Eric Blake  <ebb9@byu.net>
8487
8488         exclude: make more robust
8489         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
8490         rather than masking a coding bug.
8491         Suggested by Bruno Haible.
8492
8493 2009-10-30  Jim Meyering  <meyering@redhat.com>
8494
8495         perl scripts: remove #!/usr/bin/perl in favor of more portable...
8496         Rather than putting #!/usr/bin/perl on the first line,
8497         start with a variant of what's recommended by "man perlrun" that
8498         invokes the first "perl" program from your shell's search path.
8499         * build-aux/gitlog-to-changelog: Replace #!... as above.
8500         Add a "Local Variables" perl mode setting.
8501         Prompted by a patch from Ludovic Courtès.
8502         Improved by Eric Blake.
8503         * build-aux/useless-if-before-free: Likewise.
8504         * build-aux/announce-gen: Likewise.
8505         * build-aux/update-copyright: Likewise.
8506
8507 2009-10-29  Eric Blake  <ebb9@byu.net>
8508
8509         filenamecat-lgpl: adjust clients
8510         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
8511         filenamecat.
8512         * modules/renameat (Depends-on): Likewise.
8513
8514         filenamecat: split into filenamecat-lgpl
8515         * modules/filenamecat-lgpl: New module.
8516         * modules/filenamecat (Files): Move library-safe files into
8517         filenamecat-lgpl.
8518         (Depends-on): Add filenamecat-lgpl.
8519         (configure.ac): Declare witness.
8520         * lib/filenamecat.h (file_name_concat): Only declare when using
8521         GPL module.
8522         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
8523         Move...
8524         * lib/filenamecat-lgpl.c: ...into new file.
8525         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
8526         (gl_FILE_NAME_CONCAT): Use it.
8527         * MODULES.html.sh (File system functions): Mention new module.
8528
8529         argp: avoid memory leak
8530         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
8531         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
8532         base_name, since the latter malloc()s and can call exit().
8533         Leak introduced 2006-07-03.
8534
8535         dirname-lgpl: adjust clients that don't need full dirname
8536         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
8537         * modules/filenamecat (Depends-on): Likewise.
8538         * modules/linkat (Depends-on): Likewise.
8539         * modules/mkancesdirs (Depends-on): Likewise.
8540         * modules/mkdir (Depends-on): Likewise.
8541         * modules/openat (Depends-on): Likewise.
8542         * modules/savewd (Depends-on): Likewise.
8543         * modules/rename (Depends-on): Likewise.
8544         (License): Relax license.
8545         * modules/mkdir-tests (Depends-on): Drop progname.
8546         (Makefile.am): Delete unneeded LDADD.
8547         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
8548
8549         dirname: split into dirname-lgpl
8550         * modules/dirname-lgpl: New module.
8551         * modules/dirname (Files): Move library-safe files into
8552         dirname-lgpl.
8553         (Depends-on): Add dirname-lgpl.
8554         (configure.ac): Declare witness.
8555         * modules/double-slash-root (License): Relax license.
8556         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
8557         module.
8558         * lib/dirname.c (dir_len, mdir_name): Move...
8559         * lib/dirname-lgpl.c: ...into new file.
8560         * lib/basename.c (last_component, base_len): Move...
8561         * lib/basename-lgpl.c: ...into new file.
8562         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
8563         (gl_DIRNAME): Use it.
8564         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
8565         Mention new module.
8566         * modules/dirname-tests (Depends-on): Add progname.
8567         * tests/test-dirname.c (program_name): Delete.
8568
8569         mkdir: make safe for libraries
8570         * modules/mkdir (Depends-on): Drop xalloc.
8571         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
8572         exit.
8573
8574         tests: avoid some compiler warnings
8575         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
8576         literals.
8577         * tests/test-memchr.c (main): Avoid type mismatch.
8578         * tests/test-arpa_inet.c (main): Avoid unused parameters.
8579         * tests/test-base64.c (main): Likewise.
8580         * tests/test-getdelim.c (main): Likewise.
8581         * tests/test-gethostname.c (main): Likewise.
8582         * tests/test-getline.c (main): Likewise.
8583         * tests/test-netinet_in.c (main): Likewise.
8584         * tests/test-select.c (open_server_socket, main): Likewise.
8585         * tests/test-select-stdin.c (main): Likewise.
8586         * tests/test-sockets.c (main): Likewise.
8587         * tests/test-strsignal.c (main): Likewise.
8588         * tests/test-sys_select.c (main): Likewise.
8589         * tests/test-sys_socket.c (main): Likewise.
8590         * tests/test-u64.c (main): Likewise.
8591         * tests/test-xfprintf-posix.c (main): Likewise.
8592         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
8593
8594         sockets: avoid compiler warning
8595         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
8596
8597         maint: detect usage(1) and other suspicious exits
8598         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
8599
8600 2009-10-29  Jim Meyering  <meyering@redhat.com>
8601
8602         timespec: long-to-int truncation could make timespec_cmp malfunction
8603         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
8604         a multiple of 2^32 nanoseconds as no difference.
8605
8606 2009-10-28  Jim Meyering  <meyering@redhat.com>
8607
8608         fprintftime: wrap macro code argument in "do {...} while(0)"
8609         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
8610         cpy macro must be a statement that can be followed by a semicolon.
8611         Now that the else clause contains a comment and is hence longer
8612         than one line, I require curly braces.  That in turn requires
8613         that we wrap this code block in the standard do...while(0).
8614
8615         fprintftime: remove stray semicolon from previous change
8616         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
8617
8618         fprintftime: avoid a warning about ignored fwrite return value
8619         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
8620         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
8621         that is unsafe.
8622         * modules/fprintftime (Depends-on): Add ignore-value.
8623
8624         exclude: avoid an unwarranted warning
8625         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
8626
8627 2009-10-27  Eric Blake  <ebb9@byu.net>
8628
8629         fseek: avoid compilation failure when fflush is replaced
8630         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
8631         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
8632         module is in use.
8633         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
8634         module is not in use; since REPLACE_FSEEK worked otherwise.
8635         (GNULIB_FTELLO): Likewise for ftell.
8636         Reported by Ian Beckwith and others.
8637
8638 2009-10-27  Bruno Haible  <bruno@clisp.org>
8639
8640         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
8641         Reported by Jim Meyering.
8642
8643 2009-10-27  Jim Meyering  <jim@meyering.net>
8644             Bruno Haible  <bruno@clisp.org>
8645
8646         Avoid warning despite dropping the return value of fwrite.
8647         * lib/unicodeio.c: Include ignore-value.h.
8648         (fwrite_success_callback): Explicitly ignore fwrite's return value.
8649         * modules/unicodeio (Depends-on): Add ignore-value.
8650
8651 2009-10-26  Eric Blake  <ebb9@byu.net>
8652
8653         areadlinkat: fix fallback path
8654         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
8655         pointer and zero.
8656
8657 2009-10-22  Pádraig Brady  <P@draigBrady.com>
8658
8659         Use a better IO block size for modern systems
8660         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
8661         * lib/md2.c: Likewise.
8662         * lib/md4.c: Likewise.
8663         * lib/md5.c: Likewise.
8664         * lib/sha1.c: Likewise.
8665         * lib/sha256.c: Likewise.
8666         * lib/sha512.c: Likewise.
8667
8668 2009-10-22  Eric Blake  <ebb9@byu.net>
8669
8670         tests: avoid several compiler warnings
8671         * tests/test-getcwd.c (main): Avoid buffer underflow.
8672         * tests/test-getdate.c (main): String literals are not safe with
8673         putenv, so use setenv.  Declare unused argument.
8674         * modules/getdate-tests (Depends-on): Add setenv.
8675         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
8676         problems with string literals in char *.
8677         * tests/test-hash.c (main): Avoid shadowing declaration.
8678         (insert_new): Treat string literals as char const *.
8679         * tests/test-getopt.h (test_getopt): Likewise.
8680         (getopt_loop): Alter types to minimize casting elsewhere.
8681         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
8682         (test_getopt_long_posix): Likewise.
8683         (do_getopt_long): Add wrapper to minimize casting.
8684         * tests/test-atexit.c (clear_temp_file): Use void.
8685         * tests/test-areadlink-with-size.c (main): Declare unused
8686         arguments.
8687         * tests/test-areadlink.c (main): Likewise.
8688         * tests/test-areadlinkat-with-size.c (main): Likewise.
8689         * tests/test-areadlinkat.c (main): Likewise.
8690         * tests/test-canonicalize-lgpl.c (main): Likewise.
8691         * tests/test-canonicalize.c (main): Likewise.
8692         * tests/test-dirent-safer.c (main): Likewise.
8693         * tests/test-dirname.c (main): Likewise.
8694         * tests/test-dup2.c (main): Likewise.
8695         * tests/test-fchdir.c (main): Likewise.
8696         * tests/test-fcntl-h.c (main): Likewise.
8697         * tests/test-fcntl-safer.c (main): Likewise.
8698         * tests/test-fdopendir.c (main): Likewise.
8699         * tests/test-fdutimensat.c (main): Likewise.
8700         * tests/test-fflush.c (main): Likewise.
8701         * tests/test-filenamecat.c (main): Likewise.
8702         * tests/test-filevercmp.c (main): Likewise.
8703         * tests/test-fopen-safer.c (main): Likewise.
8704         * tests/test-fopen.c (main): Likewise.
8705         * tests/test-fpending.c (main): Likewise.
8706         * tests/test-fpurge.c (main): Likewise.
8707         * tests/test-freading.c (main): Likewise.
8708         * tests/test-fstatat.c (main): Likewise.
8709         * tests/test-fsync.c (main): Likewise.
8710         * tests/test-futimens.c (main): Likewise.
8711         * tests/test-getndelim2.c (main): Likewise.
8712         * tests/test-gettimeofday.c (main): Likewise.
8713         * tests/test-getopt.c (main): Likewise.
8714         * tests/test-i-ring.c (main): Likewise.
8715         * tests/test-inttypes.c (main): Likewise.
8716         * tests/test-link.c (main): Likewise.
8717         * tests/test-lstat.c (main): Likewise.
8718         * tests/test-math.c (main): Likewise.
8719         * tests/test-md5.c (main): Likewise.
8720         * tests/test-memchr2.c (main): Likewise.
8721         * tests/test-memrchr.c (main): Likewise.
8722         * tests/test-mkdir.c (main): Likewise.
8723         * tests/test-mkdirat.c (main): Likewise.
8724         * tests/test-mkfifoat.c (main): Likewise.
8725         * tests/test-open.c (main): Likewise.
8726         * tests/test-openat-safer.c (main): Likewise.
8727         * tests/test-openat.c (main): Likewise.
8728         * tests/test-quotearg.c (main): Likewise.
8729         * tests/test-rawmemchr.c (main): Likewise.
8730         * tests/test-readlink.c (main): Likewise.
8731         * tests/test-remove.c (main): Likewise.
8732         * tests/test-rename.c (main): Likewise.
8733         * tests/test-renameat.c (main): Likewise.
8734         * tests/test-rmdir.c (main): Likewise.
8735         * tests/test-sha1.c (main): Likewise.
8736         * tests/test-signal.c (main): Likewise.
8737         * tests/test-sigaction.c (main): Likewise.
8738         * tests/test-stat.c (main): Likewise.
8739         * tests/test-stat-time.c (main): Likewise.
8740         * tests/test-stddef.c (main): Likewise.
8741         * tests/test-stdint.c (main): Likewise.
8742         * tests/test-stdio.c (main): Likewise.
8743         * tests/test-stdlib.c (main): Likewise.
8744         * tests/test-strchrnul.c (main): Likewise.
8745         * tests/test-strerror.c (main): Likewise.
8746         * tests/test-string.c (main): Likewise.
8747         * tests/test-strtod.c (main): Likewise.
8748         * tests/test-strverscmp.c (main): Likewise.
8749         * tests/test-symlink.c (main): Likewise.
8750         * tests/test-symlinkat.c (main): Likewise.
8751         * tests/test-sys_stat.c (main): Likewise.
8752         * tests/test-sys_time.c (main): Likewise.
8753         * tests/test-time.c (main): Likewise.
8754         * tests/test-unistd.c (main): Likewise.
8755         * tests/test-unlink.c (main): Likewise.
8756         * tests/test-unlinkat.c (main): Likewise.
8757         * tests/test-utimens.c (main): Likewise.
8758         * tests/test-utimensat.c (main): Likewise.
8759         * tests/test-version-etc.c (main): Likewise.
8760         * tests/test-wchar.c (main): Likewise.
8761         * tests/test-wctype.c (main): Likewise.
8762         * tests/test-xprintf-posix.c (main): Likewise.
8763         * tests/test-posixtm.c (main): Likewise.
8764         (STREQ): Delete unused macro.
8765         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
8766         shadowed variables.
8767         * tests/test-memchr.c (main): Likewise.
8768
8769 2009-10-21  Eric Blake  <ebb9@byu.net>
8770
8771         areadlinkat: avoid failure on older glibc
8772         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
8773         rather than mis-comparing 0 against FUNC_RESULT of char*.
8774
8775 2009-10-21  Bruno Haible  <bruno@clisp.org>
8776
8777         * modules/stpncpy (License): Relicense under LGPLv2+.
8778         Reported by David Lutterkort <lutter@redhat.com>.
8779
8780 2009-10-20  Eric Blake  <ebb9@byu.net>
8781
8782         utimensat: work around Solaris 9 bug
8783         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
8784         has trailing slash bugs.
8785         * tests/test-lutimens.h (test_lutimens): Enhance test.
8786         * tests/test-utimens.h (test_utimens): Likewise.
8787         * doc/posix-functions/utime.texi (utime): Enhance documentation.
8788         * doc/posix-functions/utimes.texi (utimes): Likewise.
8789         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
8790         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
8791         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
8792         * doc/posix-functions/futimens.texi (futimens): Likewise.
8793
8794         fdutimensat: new module
8795         * modules/fdutimensat: New file.
8796         * lib/fdutimensat.c (fdutimensat): Likewise.
8797         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
8798         * MODULES.html.sh (File system functions): Mention module.
8799         * modules/fdutimensat-tests: New test.
8800         * tests/test-fdutimensat.c: Likewise.
8801
8802         doc: regenerate INSTALL
8803         * doc/INSTALL: Reflect recent autoconf update.
8804         * doc/INSTALL.ISO: Likewise.
8805         * doc/INSTALL.UTF-8: Likewise.
8806
8807 2009-10-20  Pádraig Brady  <P@draigBrady.com>
8808
8809         acl: warn if ACL support is not detected
8810         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
8811
8812 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
8813
8814         * lib/nproc.h: Add extern "C" block for C++.
8815
8816 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
8817             Bruno Haible  <bruno@clisp.org>
8818
8819         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
8820         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
8821         * doc/posix-functions/isalpha.texi: Likewise.
8822         * doc/posix-functions/isblank.texi: Likewise.
8823         * doc/posix-functions/iscntrl.texi: Likewise.
8824         * doc/posix-functions/isdigit.texi: Likewise.
8825         * doc/posix-functions/isgraph.texi: Likewise.
8826         * doc/posix-functions/islower.texi: Likewise.
8827         * doc/posix-functions/isprint.texi: Likewise.
8828         * doc/posix-functions/ispunct.texi: Likewise.
8829         * doc/posix-functions/isspace.texi: Likewise.
8830         * doc/posix-functions/isupper.texi: Likewise.
8831         * doc/posix-functions/isxdigit.texi: Likewise.
8832
8833 2009-10-18  Bruno Haible  <bruno@clisp.org>
8834
8835         Tests for module 'isblank'.
8836         * modules/isblank-tests: New file.
8837         * tests/test-isblank.c: New file.
8838
8839         New module 'isblank'.
8840         * lib/isblank.c: New file.
8841         * m4/isblank.m4: New file.
8842         * modules/isblank: New file.
8843         * doc/posix-functions/isblank.texi: Mention the new module.
8844
8845 2009-10-18  Bruno Haible  <bruno@clisp.org>
8846
8847         New module 'ctype'.
8848         * lib/ctype.in.h: New file.
8849         * m4/ctype.m4: New file.
8850         * modules/ctype: New file.
8851         * doc/posix-headers/ctype.texi: Mention the new module.
8852
8853 2009-10-18  Jim Meyering  <meyering@redhat.com>
8854
8855         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
8856         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
8857         right after its initialization, rather than farther down.
8858         Keeping these in close proximity makes it easier to ensure
8859         that each such variable is initialized.  E.g.,
8860
8861             LIB_CLOCK_GETTIME=
8862             AC_SUBST([LIB_CLOCK_GETTIME])
8863
8864         This change also increments these serial numbers.
8865         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
8866         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
8867         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8868
8869 2009-10-18  Bruno Haible  <bruno@clisp.org>
8870
8871         Don't let environment variables perturb build.
8872         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
8873         (gl_PREREQ_GETHRXTIME): ... not here.
8874
8875 2009-10-18  Bruno Haible  <bruno@clisp.org>
8876
8877         Avoid symlink attack in localcharset module.
8878         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
8879         (O_NOFOLLOW): Define fallback.
8880         (get_charset_aliases): Don't open the file if it is a symbolic link.
8881         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
8882         gl_FCNTL_H.
8883         (gl_FCNTL_H): Require it.
8884         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
8885         * modules/localcharset (Files): Add m4/fcntl_h.m4.
8886         Reported by Fergal Glynn <fglynn@veracode.com>.
8887
8888 2009-10-18  Bruno Haible  <bruno@clisp.org>
8889
8890         Implement nproc for mingw.
8891         * lib/nproc.c: Include <windows.h>
8892         (num_processors): On native Windows platforms, try GetSystemInfo.
8893
8894 2009-10-18  Bruno Haible  <bruno@clisp.org>
8895
8896         Implement nproc for IRIX.
8897         * lib/nproc.c: Include <sys/sysmp.h>.
8898         (num_processors): On IRIX systems, try sysmp.
8899         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
8900
8901 2009-10-18  Bruno Haible  <bruno@clisp.org>
8902
8903         Implement nproc for HP-UX.
8904         * lib/nproc.c: Include <sys/pstat.h>
8905         (num_processors): On HP-UX systems, try pstat_getdynamic.
8906         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
8907         pstat_getdynamic.
8908
8909 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
8910             Bruno Haible  <bruno@clisp.org>
8911
8912         Implement nproc for NetBSD, OpenBSD.
8913         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
8914         (ARRAY_SIZE): New macro.
8915         (num_processors): On BSD systems, try sysctl of HW_NCPU.
8916         * m4/nproc.m4: New file.
8917         * modules/nproc (Files): Add m4/nproc.m4.
8918         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
8919         (Makefile.am): Instead, augment lib_SOURCES.
8920
8921 2009-10-18  Bruno Haible  <bruno@clisp.org>
8922
8923         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
8924         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
8925         sys/param.h.
8926
8927 2009-10-16  Eric Blake  <ebb9@byu.net>
8928
8929         utimensat: new module
8930         * modules/utimensat: New file.
8931         * lib/utimensat.c (utimensat): Likewise.
8932         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
8933         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
8934         so we can work around Linux bugs.
8935         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
8936         * modules/sys_stat (Makefile.am): Substitute them.
8937         * lib/sys_stat.in.h (utimensat): Declare it.
8938         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
8939         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
8940         * modules/utimensat-tests: New test.
8941         * tests/test-utimensat.c: Likewise.
8942
8943         utimens: let lutimens work on non-symlinks
8944         * lib/utimens.c (lutimens): Fall back to utimens rather than
8945         failing with ENOSYS, when file is not a symlink.
8946         (utimens): Reduce redirection.
8947         * tests/test-lutimens.h (test_lutimens): Update test to cover
8948         non-symlinks.
8949         * tests/test-utimens.h (test_utimens): Update test to cover
8950         symlinks.
8951         * tests/test-utimens.c (main): Update caller.
8952
8953         utimens: cache whether utimensat syscall works
8954         * lib/utimens.c (utimensat_works_really): New cache variable.
8955         (fdutimens, lutimens): Use it to avoid failing syscall.
8956
8957         test-stat-time, test-utimens: improve portability
8958         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
8959         ext4 on alpha, and for cygwin.
8960         * tests/test-utimens-common.h: New file.
8961         (nap): Factor delays into single function.
8962         * tests/test-lutimens.h (test_lutimens): Use new header.
8963         * tests/test-futimens.h (test_futimens): Likewise.
8964         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
8965         timestamps to occur from same machine, as was done previously for
8966         test_utimens.
8967         * modules/utimens-tests (Files): Ship new file.
8968         * modules/futimens-tests (Files): Likewise.
8969         Reported in part by Jim Meyering.
8970
8971         sys_stat: sort replacement declarations
8972         * lib/sys_stat.in.h: Sort declarations.
8973         * lib/futimens.c (futimens): Fix typo.
8974
8975 2009-10-15  Jim Meyering  <meyering@redhat.com>
8976
8977         don't let environment settings perturb build
8978         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
8979         could cause a configure-time and/or build-time malfunction.
8980         Typically, a configure-time function-in-library test is performed
8981         via code like this:
8982
8983           LIB_VAR=
8984           AC_SUBST([LIB_VAR])
8985           prefix_saved_LIBS=$LIBS
8986             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
8987                        [test "$ac_cv_search_FUNC" = "none required" ||
8988                         LIB_VAR=$ac_cv_search_FUNC])
8989           LIBS=$prefix_saved_LIBS
8990
8991         However, in each of the files affected by this change, the LIB_VAR=
8992         initialization was omitted.  Thus, when set in the environment, its
8993         value would propagate into generated Makefiles when FUNC is not found
8994         in LIB_NAME.
8995         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
8996         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
8997         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8998
8999 2009-10-14  Eric Blake  <ebb9@byu.net>
9000
9001         fchdir: avoid infinite recursion in mingw
9002         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
9003         recursing.
9004
9005         test-stat-time: port to mingw
9006         * tests/test-stat-time.c (force_unlink): Return a value.
9007         (test_ctime) [W32]: Fix compilation error.
9008         (nap): Don't call usleep with too large an argument.  Use
9009         force_unlink.
9010         * doc/pastposix-functions/usleep.texi (usleep): Document the
9011         portability issue.
9012
9013 2009-10-13  Jim Meyering  <meyering@redhat.com>
9014
9015         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
9016         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
9017         * modules/pipe-filter-ii: Likewise.
9018         * modules/sys_socket-tests: Likewise.
9019         * modules/tsearch-tests: Likewise.
9020         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
9021         (check): Depend on it.
9022
9023 2009-10-12  Eric Blake  <ebb9@byu.net>
9024
9025         utimens-tests: port to NFS file systems
9026         * tests/test-utimens.h (test_utimens): Refactor utimecmp
9027         comparisons to avoid spurious failures from timestamp drift
9028         between NFS machines.
9029
9030 2009-10-12  Eric Blake  <ebb9@byu.net>
9031
9032         stat-time-tests: minor cleanups
9033         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
9034         * tests/test-stat-time.c (nap): Separate assignment from call.
9035         Suggested by Paolo Bonzini and Bruno Haible.
9036
9037         sys_stat: guarantee struct timespec
9038         * lib/sys_stat.in.h (includes): Always include <time.h>
9039         * modules/sys_stat (Depends-on): Add time.
9040         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
9041         mode_t permission values.
9042         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
9043         get at subsecond timestamps.
9044
9045 2009-10-10  Eric Blake  <ebb9@byu.net>
9046
9047         futimens: new module
9048         * modules/futimens: New file.
9049         * lib/futimens.c (futimens): Likewise.
9050         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
9051         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
9052         we can work around Linux bugs.
9053         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
9054         * modules/sys_stat (Makefile.am): Substitute them.
9055         * lib/sys_stat.in.h (futimens): Declare it.
9056         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9057         * doc/posix-functions/futimens.texi (futimens): Likewise.
9058         * modules/futimens-tests: New test.
9059         * tests/test-futimens.c: Likewise.
9060
9061         utimens: introduce fdutimens
9062         * lib/utimens.h (fdutimens): New prototype.
9063         * lib/utimens.c (gl_futimens): Move guts...
9064         (fdutimens): ...to new interface.
9065         * tests/test-utimens.c (do_fdutimens): Use it.
9066
9067         utimens: add UTIME_NOW and UTIME_OMIT support
9068         * lib/utimens.c (validate_timespec, update_timespec): New helper
9069         functions.
9070         (gl_futimens, lutimens): Use them.
9071         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
9072         stdbool, sys_stat.
9073         (Link): Mention resulting library dependency.
9074         * modules/utimecmp (Link): Likewise.
9075         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
9076         (Makefile.am): Pick up library dependency.
9077         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
9078         definition.
9079         * tests/test-sys_stat.c: Test the definitions.
9080         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
9081         * NEWS: Document library dependency.
9082
9083         utimecmp: support symlink timestamps
9084         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
9085         hashing when possible.  Use pathconf when available.
9086         (SYSCALL_RESOLUTION): Recognize tighter resolution.
9087         * modules/utimecmp (Depends-on): Add lstat.
9088
9089         utimens: add lutimens interface
9090         * lib/utimens.c (lutimens): New function.
9091         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
9092         * lib/utimens.h (lutimens): Declare new interface.
9093         * tests/test-utimens.c (main): Enhance test.
9094         * tests/test-lutimens.h (test_lutimens): New file.
9095         * modules/utimens-tests (Files): Distribute it.
9096         (Depends-on): Add symlink.
9097         (configure.ac): Check for usleep.
9098
9099         utimens: validate futimens usage
9100         * lib/utimens.c (gl_futimens): Require valid fd up front, using
9101         fewer syscalls on failure later on.  Avoid compiler warning on
9102         mingw.
9103         * modules/utimens (Depends-on): Add dup2.
9104
9105         utimens: add test
9106         * modules/utimens-tests: New test.
9107         * tests/test-utimens.h: New file.
9108         * tests/test-futimens.h: Likewise.
9109         * tests/test-utimens.c: Likewise.
9110
9111         doc: mention timestamp portability issues
9112         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
9113         instead.
9114         * doc/posix-functions/utime.texi (utime): Likewise.
9115         * doc/posix-functions/utimes.texi (utimes): Likewise.
9116         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
9117         instead.
9118         * doc/posix-functions/futimens.texi (futimens): Mention utimens
9119         module.
9120         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9121         Mention weakness with symlink timestamps.
9122         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
9123         to utimensat/futimens instead.
9124         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
9125
9126         test-dup2: enhance test
9127         * tests/test-dup2.c (main): Also check AT_FDCWD.
9128
9129         test-stat-time: avoid more spurious failures
9130         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
9131         xfs; and avoid race if the two timestamps cross quantization edge.
9132
9133         relocatable: prefer 'file system' over 'filesystem'
9134         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
9135         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
9136         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
9137         * doc/relocatable.texi (Enabling Relocatability): Likewise.
9138         * lib/relocatable.c (compute_curr_prefix): Likewise.
9139
9140 2009-10-10  Jim Meyering  <meyering@redhat.com>
9141
9142         stat-time-tests: check for the usleep function
9143         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
9144
9145 2009-10-10  Bruno Haible  <bruno@clisp.org>
9146
9147         * modules/xnanosleep: Put the Link section after the Include section.
9148
9149 2009-10-09  Eric Blake  <ebb9@byu.net>
9150
9151         dup2: work around FreeBSD 6.1 bug
9152         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
9153         * doc/posix-functions/dup2.texi (dup2): Document it.
9154         Reported by Nelson H. F. Beebe and Jim Meyering.
9155
9156         test-stat-time: port to buggy NFS clients
9157         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
9158         (test_ctime): Also skip test if mtime and ctime are skewed.
9159
9160         maint: prefer 'file system' over 'filesystem'
9161         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
9162         * doc/posix-functions/lstat.texi (lstat): Likewise.
9163         * lib/file-has-acl.c (file_has_acl): Likewise.
9164         * lib/fwriteerror.c [TEST]: Likewise.
9165         * tests/test-areadlink.h (test_areadlink): Likewise.
9166         * tests/test-areadlinkat-with-size.c (main): Likewise.
9167         * tests/test-areadlinkat.c (main): Likewise.
9168         * tests/test-canonicalize-lgpl.c (main): Likewise.
9169         * tests/test-canonicalize.c (main): Likewise.
9170         * tests/test-fstatat.c (main): Likewise.
9171         * tests/test-linkat.c (main): Likewise.
9172         * tests/test-lstat.h (test_lstat_func): Likewise.
9173         * tests/test-mkdir.h (test_mkdir): Likewise.
9174         * tests/test-readlink.h (test_readlink): Likewise.
9175         * tests/test-remove.c (main): Likewise.
9176         * tests/test-rename.h (test_rename): Likewise.
9177         * tests/test-renameat.c (main): Likewise.
9178         * tests/test-rmdir.h (test_rmdir_func): Likewise.
9179         * tests/test-symlink.h (test_symlink): Likewise.
9180         * tests/test-symlinkat.c (main): Likewise.
9181         * tests/test-unlink.h (test_unlink_func): Likewise.
9182         * tests/test-unlinkat.c (main): Likewise.
9183
9184         maint: make realtime library usage explicit
9185         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
9186         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
9187         * modules/settime (Link): Likewise.
9188         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
9189
9190         test-stat-time: speed up execution
9191         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
9192         warning on mingw.
9193         (nap): New helper function.
9194         (prepare_test): Use it to reduce sleep time.
9195         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
9196         execution.
9197         * modules/stat-time-tests (configure.ac): Check for usleep.
9198
9199 2009-10-09  Jim Meyering  <meyering@redhat.com>
9200
9201         selinux-h: always use getfilecon wrappers
9202         * lib/getfilecon.c: New file.
9203         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
9204         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
9205         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
9206         (fgetfilecon): Provide a stub.
9207         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
9208         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
9209         file unconditionally.
9210         When <selinux/selinux.h> is found, arrange to use wrappers.
9211         * modules/selinux-h (Files): Add getfilecon.c.
9212         (Makefile.am): Substitute include-next-related bits
9213         into the now-always-generated selinux/selinux.h file.
9214         * doc/glibc-functions/lgetfilecon.texi: New file.
9215         * doc/glibc-functions/fgetfilecon.texi: New file.
9216         * doc/glibc-functions/getfilecon.texi: New file.
9217         * doc/glibc-functions/getfilecon-desc.texi: New file.
9218         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
9219         which to pull in the new files.
9220         * MODULES.html.sh (Misc): Add selinux-h.
9221
9222 2009-10-08  Jim Meyering  <meyering@redhat.com>
9223
9224         unistd: fix comment typo
9225         * lib/unistd.in.h (euidaccess): Fix a comment typo.
9226
9227 2009-10-08  Eric Blake  <ebb9@byu.net>
9228
9229         areadlink: use SIZE_MAX consistently
9230         * modules/areadlink (Depends-on): Add stdint.
9231         * modules/areadlink-with-size (Depends-on): Likewise.
9232         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
9233         gives NULL; drop sys/types, since unistd gives size_t; and add
9234         stdint for SIZE_MAX.
9235         (SIZE_MAX): Rely on headers.
9236         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
9237         and add stdint.
9238         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
9239         (SIZE_MAX): Likewise.
9240         (INITIAL_BUF_SIZE): Turn into enum.
9241         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
9242
9243 2009-10-08  Jim Meyering  <meyering@redhat.com>
9244
9245         areadlinkat: avoid compilation failure
9246         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
9247         Fix typo in comment.
9248
9249 2009-10-07  Eric Blake  <ebb9@byu.net>
9250
9251         areadlinkat-with-size: new module
9252         * modules/areadlinkat-with-size: New module.
9253         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
9254         * lib/areadlink.h (areadlinkat): Declare it.
9255         * MODULES.html.sh (File system functions): Mention it.
9256         * modules/areadlinkat-with-size-tests: New test.
9257         * tests/test-areadlinkat-with-size.c: New file.
9258
9259         xreadlinkat: new module
9260         * modules/xreadlinkat: New module.
9261         * lib/xreadlinkat.c (xreadlinkat): New file.
9262         * lib/xreadlink.h (xreadlinkat): Declare it.
9263         * MODULES.html.sh (File system functions): Mention it.
9264
9265         areadlinkat: new module
9266         * lib/at-func.c (FUNC_FAIL): New define.
9267         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
9268         * modules/areadlinkat: New module.
9269         * lib/linkat.c (areadlinkat): Move...
9270         * lib/areadlinkat.c (areadlinkat): ...to new file.
9271         * lib/areadlink.h (areadlinkat): Declare it.
9272         * modules/linkat (Depends-on): Add areadlinkat.
9273         * MODULES.html.sh (File system functions): Mention it.
9274         * modules/areadlinkat-tests: New test.
9275         * tests/test-areadlinkat.c: New file.
9276
9277         areadlink, areadlink-with-size: add tests
9278         * modules/areadlink-tests: New test.
9279         * modules/areadlink-with-size-tests: Likewise.
9280         * tests/test-areadlink.h: New file.
9281         * tests/test-areadlink.c: Likewise.
9282         * tests/test-areadlink-with-size.c: Likewise.
9283
9284         maint: minor cleanups
9285         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
9286         _UNUSED_PARAMETER_ instead.
9287         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
9288         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
9289         * modules/linkat-tests (Files): Distribute test-link.h.
9290
9291         openat, utimens: whitespace cleanup
9292         * lib/openat.c: Prefer space throughout, rather than mix of 8
9293         spaces vs. tabs.
9294         * lib/at-func.c: Likewise.
9295         * lib/utimens.c: Likewise.
9296
9297         openat: avoid using wrong fd
9298         * lib/openat.c (openat_permissive): Reject user's fd if saving the
9299         working directory chooses same fd.
9300         * lib/at-func.c (AT_FUNC_NAME): Likewise.
9301
9302         mkdir, mkdirat: fix cygwin 1.5.x bug
9303         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
9304         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
9305         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
9306         bug.
9307         (gl_PREREQ_MKDIR): Delete unused macro.
9308         * modules/mkdir (Files): Track file rename.
9309         (configure.ac): Update macro name.
9310         * modules/openat (Depends-on): Add mkdir.
9311         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
9312
9313         mkdir, mkdirat: add tests
9314         * modules/mkdir-tests: New test.
9315         * tests/test-mkdir.h: New file.
9316         * tests/test-mkdir.c: Likewise.
9317         * tests/test-mkdirat.c: Likewise.
9318         * modules/openat-tests (Files): Add new files.
9319         (Makefile.am): Run new test.
9320
9321 2009-10-06  Eric Blake  <ebb9@byu.net>
9322
9323         doc: tweak *at function documentation
9324         * doc/posix-functions/faccessat.texi (faccessat): Mention
9325         known issue with replacement.
9326         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
9327         * doc/posix-functions/linkat.texi (linkat): Likewise.
9328         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
9329         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
9330         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
9331         * doc/posix-functions/renameat.texi (renameat): Likewise.
9332         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
9333
9334         openat: fix GNU/Hurd bug in unlinkat
9335         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
9336         broken.
9337         * doc/posix-functions/unlink.texi (unlink): Document this.
9338         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
9339
9340         fdopendir: fix GNU/Hurd bug
9341         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
9342         allowing non-directory fds.
9343         * lib/fdopendir.c (rpl_fdopendir): Work around it.
9344         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
9345         * modules/dirent (Makefile.am): Substitute it.
9346         * lib/dirent.in.h (fdopendir): Declare replacement.
9347         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
9348         * tests/test-fdopendir.c (main): Test something other than
9349         /dev/null, since on Hurd that behaves like a directory.
9350
9351         test-symlink: port to GNU/Hurd
9352         * tests/test-symlink.h (test_symlink): Relax expected errno.
9353
9354         doc: tweak more cygwin information
9355         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
9356         now compatible with glibc.
9357         * doc/posix-functions/getopt.texi (getopt): Likewise.
9358
9359         getopt-gnu: add another test
9360         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
9361         guarantee behavior relied on by m4.
9362         * tests/test-getopt.c (main): Use it.
9363         * modules/getopt-posix-tests (Depends-on): Add setenv.
9364         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
9365
9366         getopt: fix compilation on darwin
9367         * lib/getopt.in.h (includes): Leave breadcrumbs during system
9368         include.
9369         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
9370         Reported by Ludovic Courtès.
9371
9372 2009-10-06  Bruno Haible  <bruno@clisp.org>
9373
9374         * modules/size_max (Description): Discourage its use.
9375         Reported by Simon Josefsson.
9376
9377 2009-10-06  Jim Meyering  <meyering@redhat.com>
9378
9379         linkat: avoid compilation failure
9380         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
9381
9382 2009-10-05  Eric Blake  <ebb9@byu.net>
9383
9384         linkat: support Linux 2.6.17
9385         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
9386         linkat on Linux, but allow cache variable override.
9387         * lib/linkat.c (rpl_linkat): Define override.
9388         * modules/linkat (Depends-on): Add symlinkat.
9389         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
9390         * modules/unistd (Makefile.am): Substitute it.
9391         * lib/unistd.in.h (linkat): Declare replacement.
9392         Reported by Pádraig Brady.
9393
9394         quotearg: port test to systems with C.UTF-8 locale
9395         * tests/test-quotearg.c (struct result_strings): Add another
9396         member, differentiating between C.ASCII and C.UTF-8 handling.
9397         (compare_strings): Add parameter.
9398         (main): Adjust all callers.
9399
9400         getopt: avoid clash with FreeBSD _getopt_internal
9401         * lib/getopt.in.h (_getopt_internal): Override the name.
9402         * lib/getopt_int.h (includes): Pick up any overrides.
9403         Reported by Reuben Thomas.
9404
9405         hash: allow C89 compilation
9406         * lib/hash.c (check_tuning): Move declaration before statement.
9407         Reported by Reuben Thomas.
9408
9409 2009-10-05  Karl Berry  <karl@gnu.org>
9410
9411         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
9412
9413 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
9414             Bruno Haible  <bruno@clisp.org>
9415
9416         * lib/uname.c (uname): Use a table-driven algorithm to compute
9417         Windows NT versions.
9418
9419 2009-10-04  Bruno Haible  <bruno@clisp.org>
9420
9421         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
9422         program_invocation_short_name.
9423         * modules/progname (configure.ac): Test for presence of
9424         program_invocation_short_name.
9425         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
9426
9427 2009-10-04  Bruno Haible  <bruno@clisp.org>
9428
9429         * lib/progname.c (set_program_name): Fix comment.
9430         Reported by Jim Meyering.
9431
9432 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
9433             Bruno Haible  <bruno@clisp.org>
9434
9435         * lib/uname.c: Include <string.h>.
9436         (uname): Do only one call to GetVersionEx in the common case.
9437
9438 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
9439             Bruno Haible  <bruno@clisp.org>
9440
9441         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
9442         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
9443         (uname): Add support for Windows CE and various non-x86 CPU types.
9444
9445 2009-10-03  Bruno Haible  <bruno@clisp.org>
9446
9447         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
9448         invocation to tests/configure.ac.
9449         Reported by Ian Beckwith <ianb@erislabs.net>.
9450
9451 2009-10-02  Eric Blake  <ebb9@byu.net>
9452
9453         fchdir: avoid compiler warning
9454         * lib/fchdir.c (canonicalize_file_name)
9455         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
9456
9457         test-open: support mingw errno values
9458         * tests/test-open.h (test_open): Relax test.
9459         * tests/test-fopen.h (test_fopen): Likewise.
9460         * tests/test-openat-safer.c (main): Likewise.
9461
9462         open: fix opening directory on mingw
9463         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
9464
9465         test-open: on GNU/Hurd, /dev/null is a directory
9466         * tests/test-fopen.h (main): Rename...
9467         (test_fopen): ...to this.  Use a guaranteed non-directory when
9468         confirming open behavior on trailing slash.
9469         * tests/test-openat-safer.c (main): Likewise.
9470         * tests/test-open.h (main): Likewise....
9471         (test_open): ...to this.
9472         * tests/test-fopen.c (main): Adjust caller.
9473         * tests/test-fopen-safer.c (main): Likewise.
9474         * tests/test-open.c (main): Likewise.
9475         * tests/test-fcntl-safer.c (main): Likewise.
9476         Reported by Samuel Thibault.
9477
9478         rename, fchdir: don't ignore chdir failure
9479         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
9480         * lib/rename.c (rpl_rename) [W32]: Likewise.
9481         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
9482         an empty destination directory if source cannot be renamed,
9483         although there is still possibility for failure.
9484         * doc/posix-functions/rename.texi (rename): Document the race.
9485         Reported by Jim Meyering.
9486
9487         maint: cleanup whitespace in recent commits
9488         * lib/rename.c (rpl_rename): Remove tabs.
9489         * tests/test-link.h (test_link): Likewise.
9490         * lib/fchdir.c (get_name): Likewise.
9491         Reported by Jim Meyering.
9492
9493 2009-10-02  Ben Pfaff  <blp@gnu.org>
9494
9495         relocatable-prog-wrapper: Add missing dependency on
9496         double-slash-root.
9497         * modules/relocatable-prog-wrapper: Add dependency.
9498         Reported by Ian Beckwith <ianb@erislabs.net>.
9499
9500 2009-10-02  Eric Blake  <ebb9@byu.net>
9501
9502         renameat: fix Solaris bugs
9503         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
9504         needed fixing.
9505         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
9506         * modules/stdio (Makefile.am): Substitute it.
9507         * lib/stdio.in.h (renameat): Declare replacement.
9508         * lib/renameat.c (rpl_renameat): Implement fix.
9509
9510         renameat: new module
9511         * modules/renameat: New file.
9512         * lib/renameat.c (renameat): Likewise.
9513         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
9514         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
9515         * modules/stdio (Makefile.am): Substitute them.
9516         * lib/stdio.in.h (renameat): Declare it.
9517         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9518         * doc/posix-functions/renameat.texi (renameat): Likewise.
9519         * modules/renameat-tests: New test.
9520         * tests/test-renameat.c: Likewise.
9521
9522         rename: fix mingw bugs
9523         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
9524         directory overwrite bugs.
9525
9526         rename: fix another cygwin 1.5 bug
9527         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
9528         checks.
9529         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
9530         unnecessary cygwin workarounds.  Also work around bug with moving
9531         full directory onto an empty one.
9532         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
9533
9534         rename-dest-slash: merge into rename module
9535         * modules/rename-dest-slash (Status): Mark obsolete.
9536         (Depends-on): Add rename.
9537         (Files): Let rename do it all.
9538         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
9539         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
9540         * m4/rename-dest-slash.m4: ...so this file can be deleted.
9541         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
9542         * lib/rename.c (rpl_rename): Update comments.
9543
9544         rename: fix cygwin 1.5.x bugs
9545         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
9546         * lib/rename.c (rpl_rename): Work around them.
9547         * modules/rename (Depends-on): Add same-inode.
9548
9549         rename: fix Solaris 10 bug
9550         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
9551         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
9552         was the only bug.
9553
9554         rename: fix Solaris 9 bug
9555         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
9556         on non-directory.  Avoid calling exit.
9557         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
9558         strdup.
9559         * modules/rename-tests (Depends-on): Drop lstat.
9560         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
9561         (gl_PREREQ_RENAME): Delete unused macro.
9562
9563         rename-dest-slash: fix NetBSD bug
9564         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
9565         links.
9566         * modules/rename-dest-slash (Depends-on): Add same-inode.
9567
9568         rename-tests: new test, exposes several platform bugs
9569         * modules/rename-tests: New file.
9570         * tests/test-rename.h: Likewise.
9571         * tests/test-rename.c: Likewise.
9572         * doc/posix-functions/rename.texi (rename): Improve documentation,
9573         including bugs that will eventually be fixed in gnulib.
9574
9575 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
9576
9577         * lib/uname.c: Include <stdlib.h>
9578         (uname): Assume version info is available.
9579
9580 2009-10-02  Jim Meyering  <meyering@redhat.com>
9581
9582         gnu-web-doc-update: correct --help output
9583         * build-aux/gnu-web-doc-update: Make --help output relevant.
9584
9585         gnu-web-doc-update: add standard options
9586         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
9587
9588         gnu-web-doc-update: New module.
9589         Use this script to automatically update the on-line web documentation
9590         for your GNU project at http://www.gnu.org/software/$pkg/manual/
9591         * modules/gnu-web-doc-update: New file, from coreutils.
9592         * build-aux/gnu-web-doc-update: New script.
9593
9594 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
9595
9596         link: LoadLibrary is not needed.
9597         * lib/link.c: Use GetModuleHandle.
9598
9599 2009-10-01  Eric Blake  <ebb9@byu.net>
9600
9601         getopt: bump serial number
9602         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
9603         change.
9604
9605         tests: tighten link, rmdir, and remove tests
9606         * tests/test-link.h (includes): No need to use <config.h> here.
9607         Clean up if directory hard link was created, otherwise test for
9608         trailing '.'.
9609         * tests/test-linkat.c (main): Simplify.
9610         * tests/test-remove.c (main): Enhance test for trailing '.'.
9611         * tests/test-rmdir.h (test_rmdir_func): Likewise.
9612
9613 2009-10-01  Jim Meyering  <meyering@redhat.com>
9614
9615         maint.mk: requiring "make major" was annoying, for a "minor" release.
9616         What is intended is "stable", to contrast with alpha and beta,
9617         so require "make stable", not "make major".
9618         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
9619         (get_tool_versions): Likewise.
9620         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
9621
9622 2009-09-30  Ben Pfaff  <blp@gnu.org>
9623
9624         Fix broken build of replacement for Windows tmpfile().
9625         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
9626         flags argument added along with the 'mkostemp' module.
9627
9628 2009-09-28  Bruno Haible  <bruno@clisp.org>
9629
9630         Avoid identifier clash with POSIX function 'remove' defined as a macro.
9631         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
9632         to 'remove_elt'.
9633         (gl_list_remove): Update.
9634         * lib/gl_list.c (gl_list_remove): Update.
9635         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
9636         to 'remove_elt'.
9637         (gl_oset_remove): Update.
9638         * lib/gl_list.c (gl_oset_remove): Update.
9639         Reported by Eric Blake.
9640
9641 2009-09-28  Eric Blake  <ebb9@byu.net>
9642
9643         doc: mention yet more cygwin 1.7 status
9644         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
9645         cygwin.
9646         * doc/glibc-functions/execvpe.texi (execvpe): New file.
9647         * doc/gnulib.texi (Glibc unistd.h): Mention it.
9648
9649         argp: fix test failure
9650         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
9651         that are not upper-case.  Pass correct range to tolower.
9652
9653 2009-09-27  Jim Meyering  <meyering@redhat.com>
9654
9655         test-yesno: work around sparc-dash here-document infelicity
9656         Without this change, the literal \177 byte in a here document
9657         would make dash 0.5.5.1-3 access uninitialized memory.
9658         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
9659         Instead, use a marker, "@", and filter through tr to create the desired
9660         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
9661
9662 2009-09-27  Bruno Haible  <bruno@clisp.org>
9663
9664         Disable untested support for new flavours of ACLs on AIX.
9665         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
9666         progress.
9667         * lib/set-mode-acl.c (qset_acl): Likewise.
9668
9669 2008-12-07  Bruno Haible  <bruno@clisp.org>
9670
9671         Add support for new flavours of ACLs on AIX. (Untested.)
9672         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
9673         (file_has_acl): Add support for newer AIX.
9674         * lib/set-mode-acl.c (qset_acl): Likewise.
9675         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
9676         Rainer Tammer <tammer@tammer.net>.
9677
9678 2009-09-26  Eric Blake  <ebb9@byu.net>
9679
9680         argp: fix compilation of getopt
9681         * lib/getopt.in.h (includes): Use different guard than glibc.
9682         Reported by Sergey Poznyakoff.
9683
9684         doc: mention more cygwin 1.7 status
9685         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
9686         bug.
9687         * doc/posix-functions/execl.texi (execl): Likewise.
9688         * doc/posix-functions/execle.texi (execle): Likewise.
9689         * doc/posix-functions/execlp.texi (execlp): Likewise.
9690         * doc/posix-functions/execv.texi (execv): Likewise.
9691         * doc/posix-functions/execve.texi (execve): Likewise.
9692         * doc/posix-functions/execvp.texi (execvp): Likewise.
9693         * doc/glibc-functions/canonicalize_file_name.texi
9694         (canonicalize_file_name): Cygwin 1.7 now provides this.
9695         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
9696         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
9697         on AT_SYMLINK_NOFOLLOW.
9698
9699 2009-09-24  Eric Blake  <ebb9@byu.net>
9700
9701         test-linkat: make test more robust
9702         * tests/test-linkat.c (main): Avoid collision with EEXIST.
9703
9704         getopt: fix inclusion guards for cygwin
9705         * modules/getopt-posix (Depends-on): Add include-next.
9706         (Makefile.am): Substitute more items in replacement header.
9707         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
9708         <getopt.h>.
9709         * lib/getopt.in.h (includes): Use split inclusion guard, and
9710         prefer <getopt.h> over include <unistd.h> when one is present.
9711         (option): Also override name of 'struct option'.
9712
9713         same-inode: revert prior change; it is not yet ready
9714         * NEWS: Undo mention of this change.
9715         * lib/same-inode.h (same-inode.h): Undo tri-state change.
9716         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
9717         * lib/cycle-check.c (cycle_check): Likewise.
9718         * lib/same.c (same_name): Likewise.
9719         * lib/at-func2.c (at_func2): Likewise.
9720
9721 2009-09-23  Eric Blake  <ebb9@byu.net>
9722
9723         linkat: new module
9724         * modules/linkat: New file.
9725         * lib/at-func2.c (at_func2): Likewise.
9726         * lib/linkat.c (linkat): Likewise.
9727         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
9728         * lib/openat-priv.h (at_func2): Add declaration.
9729         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
9730         * modules/unistd (Makefile.am): Substitute them.
9731         * lib/unistd.in.h (linkat): Declare it.
9732         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9733         * doc/posix-functions/linkat.texi (linkat): Likewise.
9734         * doc/posix-functions/link.texi (link): Tweak wording.
9735         * tests/test-link.c (main): Move guts...
9736         * tests/test-link.h (test_link): ...into new file.
9737         * modules/linkat-tests: New test.
9738         * tests/test-linkat.c: Likewise.
9739         * modules/link-tests (Files): Ship new file.
9740         (Depends-on): Add stdbool.
9741
9742         dirname: add library-safe mdir_name
9743         * lib/dirname.h (mdir_name): New prototype.
9744         * lib/dirname.c (dir_name): Move guts...
9745         (mdir_name): ...to new function that avoids xalloc_die.
9746
9747         fchdir: another mingw fix
9748         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
9749         * lib/fchdir.c (get_name): New helper method; skips canonicalize
9750         on mingw (where it has not yet been ported), and make it optional
9751         elsewhere.
9752         (_gl_register_fd): Use it.
9753
9754         same-inode: make SAME_INODE tri-state, to port to mingw
9755         * NEWS: Mention this change.
9756         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
9757         st_ino always being 0.
9758         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
9759         * lib/cycle-check.c (cycle_check): Likewise.
9760         * lib/same.c (same_name): Likewise.
9761
9762         lstat: avoid mingw compilation error
9763         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
9764         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
9765         lstat ourselves.
9766         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
9767         was adequate.
9768         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
9769         the checks for lstat.
9770         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
9771
9772         link: fix test failure on Solaris 9
9773         * lib/link.c (rpl_link): Don't assume link will catch bogus
9774         trailing slash on source.
9775
9776         test-symlinkat: enhance test
9777         * tests/test-readlink.c (main): Move guts...
9778         * tests/test-readlink.h (test_readlink): ...into new file.
9779         * tests/test-symlink.c (main): Move guts...
9780         * tests/test-symlink.h (test_symlink): ...into new file.
9781         * tests/test-symlinkat.c (main): Use new files for further
9782         coverage.
9783         (do_symlink, do_readlink): New helper functions.
9784         * modules/symlink-tests (Files): Ship new file.
9785         (Depends-on): Add stdbool.
9786         * modules/readlink-tests (Files): Ship new file.
9787         (Depends-on): Add stdbool.
9788         * modules/symlinkat-tests (Files): Use new files.
9789
9790 2009-09-23  Eric Blake  <ebb9@byu.net>
9791
9792         readlink: document portability issue with symlink length
9793         * doc/posix-functions/lstat.texi (lstat): Mention that some file
9794         systems have bogus st_size on symlinks, and mention the
9795         areadlink-with-size module.
9796         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
9797         * doc/posix-functions/readlink.texi (readlink): Mention the
9798         areadlink module, and ERANGE failure.
9799         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
9800         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
9801
9802         readlink: fix Solaris 9 bug with trailing slash
9803         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
9804         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
9805         * doc/posix-functions/readlink.texi (readlink): Document this.
9806         * modules/readlink-tests: New test.
9807         * tests/test-readlink.c: Likewise.
9808
9809         readlink: fix cygwin 1.5.x bug with return type
9810         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
9811         * lib/unistd.in.h (readlink): Use ssize_t.
9812         * lib/readlink.c (readlink): Likewise.
9813         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9814         * modules/unistd (Makefile.am): Substitute it.
9815         * lib/unistd.in.h (readlink): Declare replacement.
9816         * doc/posix-functions/readlink.texi (readlink): Document this.
9817
9818         symlink: use throughout gnulib
9819         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
9820         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
9821         symlink is not used.
9822         * modules/symlinkat (Depends-on): Add symlink.
9823         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
9824         * modules/canonicalize-tests (Depends-on): Likewise.
9825         * modules/lstat-tests (Depends-on): Likewise.
9826         * modules/openat-tests (Depends-on): Likewise.
9827         * modules/remove-tests (Depends-on): Likewise.
9828         * modules/rmdir-tests (Depends-on): Likewise.
9829         * modules/unlink-tests (Depends-on): Likewise.
9830         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
9831         * tests/test-canonicalize.c (symlink): Likewise.
9832         * tests/test-fstatat.c (symlink): Likewise.
9833         * tests/test-lstat.c (symlink): Likewise.
9834         * tests/test-remove.c (symlink): Likewise.
9835         * tests/test-rmdir.c (symlink): Likewise.
9836         * tests/test-unlink.c (symlink): Likewise.
9837         * tests/test-unlinkat.c (symlink): Likewise.
9838
9839         symlink: new module, for Solaris 9 bug
9840         * modules/symlink: New file.
9841         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
9842         * lib/symlink.c: Likewise.
9843         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
9844         * modules/unistd (Makefile.am): Substitute them.
9845         * lib/unistd.in.h (symlink): Declare replacement.
9846         * MODULES.html.sh (File system functions): Mention it.
9847         * doc/posix-functions/symlink.texi (symlink): Likewise.
9848         * modules/symlink-tests: New test.
9849         * tests/test-symlink.c: Likewise.
9850
9851 2009-09-23  Bruno Haible  <bruno@clisp.org>
9852
9853         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
9854         when needed.
9855         Test case: gnulib-tool --import --with-tests atexit inttypes.
9856         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
9857
9858 2009-09-23  Bruno Haible  <bruno@clisp.org>
9859
9860         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
9861         subcommand, not in a subshell.
9862
9863 2009-09-22  Eric Blake  <ebb9@byu.net>
9864
9865         unistd: sort replacement declarations
9866         * lib/unistd.in.h: Sort declarations.
9867
9868         open, openat: minor optimization
9869         * lib/open.c (open): If open succeeded, len is non-zero.
9870         * lib/openat.c (rpl_openat): Likewise.
9871
9872         link-follow: ensure correct result
9873         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
9874         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
9875         distinguish between possible failures.
9876
9877 2009-09-21  Eric Blake  <ebb9@byu.net>
9878
9879         fts: avoid compiler warning
9880         * lib/fts.c (dirent_inode_sort_may_be_useful)
9881         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
9882
9883 2009-09-19  Bruno Haible  <bruno@clisp.org>
9884
9885         * lib/progreloc.c (canonicalize_file_name): New declaration.
9886
9887 2009-09-19  Eric Blake  <ebb9@byu.net>
9888
9889         link: fix quoting
9890         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
9891
9892         openat: fix openat bugs on Solaris 9
9893         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
9894         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
9895         * modules/openat (Depends-on): Add open.
9896         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
9897         * modules/fcntl-h (Makefile.am): Substitute it.
9898         * lib/fcntl.in.h (openat): Declare replacement.
9899         * doc/posix-functions/openat.texi (openat): Document this.
9900
9901         openat: move fstatat and unlinkat into correct files
9902         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
9903         compiled.
9904         * lib/openat.c (fstatat, unlinkat): Move...
9905         * lib/fstatat.c (fstatat): ...into correct files.
9906         * lib/unlinkat.c (unlinkat): Likewise.
9907
9908         openat: fix unlinkat bugs on Solaris 9
9909         * lib/unlinkat.c (unlinkat): New file.
9910         * modules/openat (Depends-on): Add unlink.
9911         (Files): Distribute it.
9912         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
9913         trailing slash behavior is broken.
9914         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9915         * modules/unistd (Makefile.am): Substitute it.
9916         * lib/unistd.in.h (unlinkat): Declare replacement.
9917         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
9918
9919         openat: fix fstatat bugs on Solaris 9
9920         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
9921         stat.
9922         * doc/posix-functions/fstatat.texi (fstatat): Document this.
9923
9924         test-unlinkat: enhance test, to expose Solaris 9 bug
9925         * tests/test-unlink.c (main): Factor guts...
9926         * tests/test-unlink.h (test_rmdir_func): ...into new file.
9927         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
9928         * tests/test-rmdir.c (main): Adjust caller.
9929         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
9930         (unlinker): New helper function.
9931         (rmdirat): Enhance check.
9932         * modules/rmdir-tests (Depends-on): Add stdbool.
9933         * modules/unlink-tests (Depends-on): Likewise.
9934         (Files): Add test-unlink.h.
9935         * modules/openat-tests (Files): Likewise.
9936         (Depends-on): Add unlinkdir.
9937
9938         test-fstatat: new test, to expose Solaris 9 bugs
9939         * tests/test-stat.c (main): Factor guts...
9940         * tests/test-stat.h (test_stat_func): ...into new file.
9941         * tests/test-lstat.c (main): Factor guts...
9942         * tests/test-lstat.h (test_lstat_func): ...into new file.
9943         * tests/test-fstatat.c: New file.
9944         * modules/stat-tests (Files): Add test-stat.h.
9945         * modules/lstat-tests (Files): Add test-lstat.h.
9946         (Depends-on): Add stdbool.
9947         * modules/openat-tests (Depends-on): Add pathmax.
9948         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
9949         (Makefile.am): Run new test.
9950
9951         remove: new module, for mingw and Solaris 9 bugs
9952         * modules/remove: New file.
9953         * lib/remove.c: Likewise.
9954         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
9955         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
9956         * modules/stdio (Makefile.am): Use them.
9957         * lib/stdio.in.h (remove): Declare replacement.
9958         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9959         * doc/posix-functions/remove.texi (remove): Likewise.
9960         * modules/remove-tests: New test.
9961         * tests/test-remove.c: Likewise.
9962
9963         unlink: new module, for Solaris 9 bug
9964         * modules/unlink: New file.
9965         * lib/unlink.c: Likewise.
9966         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
9967         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
9968         * modules/unistd (Makefile.am): Use them.
9969         * lib/unistd.in.h (stat): Declare replacement.
9970         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9971         * doc/posix-functions/unlink.texi (unlink): Likewise.
9972         * modules/unlink-tests: New test.
9973         * tests/test-unlink.c: Likewise.
9974
9975         lstat: fix Solaris 9 bug
9976         * lib/lstat.c (lstat): Also check for trailing slash on
9977         non-symlink, non-directories.  Use stat module to simplify logic.
9978         * doc/posix-functions/lstat.texi (lstat): Document it.
9979         * modules/lstat-tests (Depends-on): Add errno, same-inode.
9980         (configure.ac): Check for symlink.
9981         * tests/test-lstat.c (main): Add more tests.
9982
9983         stat: add as dependency to other modules
9984         * modules/chown (Depends-on): Add stat.
9985         * modules/euidaccess (Depends-on): Likewise.
9986         * modules/fchdir (Depends-on): Likewise.
9987         * modules/isdir (Depends-on): Likewise.
9988         * modules/link (Depends-on): Likewise.
9989         * modules/lstat (Depends-on): Likewise.
9990         * modules/mkdir-p (Depends-on): Likewise.
9991         * modules/modechange (Depends-on): Likewise.
9992         * modules/open (Depends-on): Likewise.
9993         * modules/readlink (Depends-on): Likewise.
9994         * modules/same (Depends-on): Likewise.
9995
9996         stat: fix Solaris 9 bug
9997         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
9998         slash.
9999         * lib/stat.c (rpl_stat): Work around it.
10000         * doc/posix-functions/stat.texi (stat): Update documentation.
10001
10002         stat: new module, for mingw bug
10003         * modules/stat: New file.
10004         * lib/stat.c: Likewise.
10005         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
10006         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10007         * modules/sys_stat (Makefile.am): Use them.
10008         * lib/sys_stat.in.h (stat): Declare replacement.
10009         * lib/openat.c (fstatat): Deal with lstat and stat being function
10010         macros.
10011         * modules/openat (Depends-on): Add inline.
10012         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10013         * doc/posix-functions/stat.texi (stat): Likewise.
10014         * modules/stat-tests: New test.
10015         * tests/test-stat.c: Likewise.
10016
10017 2009-09-19  Jim Meyering  <meyering@redhat.com>
10018
10019         syntax-check: detect unnecessary inclusion of canonicalize.h
10020         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
10021
10022 2009-09-19  Eric Blake  <ebb9@byu.net>
10023
10024         canonicalize-lgpl: adjust clients to use correct header
10025         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
10026         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
10027         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
10028         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
10029         * lib/progreloc.c (includes): Likewise.
10030
10031 2009-09-19  Jim Meyering  <meyering@redhat.com>
10032
10033         test-posixtm.c: correct a comment
10034         * tests/test-posixtm.c: Correct first-line comment.
10035         Spotted by Eric Blake.
10036
10037 2009-09-16  Jim Meyering  <meyering@redhat.com>
10038
10039         posixtm-tests: make T const-correct; add a test case
10040         * tests/test-posixtm.c (T): Declare const.
10041         Add a test for -(2^31+1).
10042         Remove useless can-succeed-only-in-2002 test.
10043
10044         posixtm-tests: adjust the sole failing test
10045         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
10046         expected output matches what mktime now produces.  Cross-checked via
10047         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
10048
10049         posixtm: move #ifdef'd tests into a new module
10050         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
10051         * tests/test-posixtm.c: ... this new file.
10052         * modules/posixtm-tests: New module.
10053
10054 2009-09-19  Eric Blake  <ebb9@byu.net>
10055
10056         openat: simplify use of at-func.c
10057         * lib/at-func.c (includes): Include prerequisites here, to
10058         simplify requirements on client files.
10059         * lib/openat-priv.h: Add double-inclusion guard.
10060         * lib/faccessat.c (includes): Simplify.
10061         * lib/fchmodat.c (includes): Likewise.
10062         * lib/fchownat.c (includes): Likewise.
10063         * lib/mkdirat.c (includes): Likewise.
10064         * lib/mkfifoat.c (includes): Likewise.
10065         * lib/symlinkat.c (includes): Likewise.
10066
10067         openat: allow return of fd 0
10068         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
10069         * modules/save-cwd (Depends-on): Replace fcntl-safer with
10070         unistd-safer.
10071         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
10072         <fcntl.h>; this module does not leak fds.
10073         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
10074         must be allowed to return 0, leaving openat_safer to add the
10075         safety.
10076         (openat_permissive): Avoid writing to just-opened fd 2 if
10077         restoring the current directory fails.
10078         * lib/openat-die.c (openat_restore_fail): Add comment.
10079         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
10080         (save_cwd): Guarantee safe fd, but without use of open_safer.
10081         * tests/test-openat.c: New test.
10082         * modules/openat-tests (Files, Makefile.am): Distribute and build
10083         new file.
10084
10085         relocatable-prog-wrapper: fix build
10086         * modules/relocatable-prog-wrapper (Files): Update name of
10087         canonicalize m4 file, broken on 2009-09-17.
10088         Reported by emad hajjar <aleppos@hotmail.com>.
10089
10090 2009-09-19  Bruno Haible  <bruno@clisp.org>
10091
10092         * lib/safe-alloc.h: Use the standard header with GPL copyright.
10093         * lib/safe-alloc.c: Likewise.
10094         Reported by Ian Beckwith <ianb@erislabs.net>.
10095
10096 2009-09-18  Bruno Haible  <bruno@clisp.org>
10097
10098         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
10099         Reported by <erobles@sensacd.com.mx>.
10100
10101 2009-09-17  Eric Blake  <ebb9@byu.net>
10102
10103         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
10104         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
10105         slashes when checking if last component is missing.
10106         * tests/test-canonicalize.c (main): Test this.
10107
10108         canonicalize, canonicalize-lgpl: honor // if distinct from /
10109         * modules/canonicalize (Files): Add double-slash-root.m4.
10110         * modules/canonicalize-lgpl (Files): Likewise.
10111         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
10112         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
10113         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
10114         fallback definition.
10115         (canonicalize_filename_mode): Use it to protect //.
10116         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
10117         (__realpath): Likewise.
10118         * tests/test-canonicalize.c (main): Test this.
10119         * tests/test-canonicalize-lgpl.c (main): Likewise.
10120         * modules/canonicalize-tests (Depends-on): Add same-inode.
10121         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
10122
10123         canonicalize-lgpl: fix glibc bug with trailing slash
10124         * m4/canonicalize-lgpl.m4: Move contents...
10125         * m4/canonicalize.m4: ...here.
10126         (gl_CANONICALIZE_LGPL): Factor realpath check...
10127         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
10128         glibc 2.3.5 bug, fixed 2005-04-27.
10129         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
10130         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
10131         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
10132         * modules/canonicalize-lgpl (Files): Manage file rename.
10133         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10134         * modules/stdlib (Makefile.am): Substitute witness.
10135         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
10136         is needed.
10137         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
10138         replacement is required.
10139         * lib/canonicalize.c (canonicalize_file_name): Likewise.
10140         * doc/glibc-functions/canonicalize_file_name.texi
10141         (canonicalize_file_name): Document this.
10142         * doc/posix-functions/realpath.texi (realpath): Likewise.
10143
10144         canonicalize-lgpl: reject non-directory with trailing slash
10145         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
10146         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
10147         catches failures in glibc 2.3.5.
10148         * tests/test-canonicalize.c (main): Likewise.
10149
10150         canonicalize-lgpl: use native realpath if it works
10151         * lib/canonicalize-lgpl.c (realpath): Guard with
10152         FUNC_REALPATH_WORKS.
10153         * lib/stdlib.in.h (realpath): Make declaration optional based on
10154         HAVE_REALPATH.
10155         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
10156         native realpath works.
10157         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10158         * modules/stdlib (Makefile.am): Substitute witness.
10159
10160         canonicalize, canonicalize-lgpl: use <stdlib.h>
10161         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
10162         (Include): Mention <stdlib.h>.
10163         (configure.ac): Mention functions we provide.
10164         * modules/canonicalize (configure.ac): Likewise.
10165         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
10166         realpath if canonicalize_file_name is missing.
10167         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
10168         * modules/stdlib (Makefile.am): Substitute witnesses.
10169         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
10170         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
10171         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
10172         * NEWS: Document this.
10173         * doc/glibc-functions/canonicalize_file_name.texi
10174         (canonicalize_file_name): Likewise.
10175         * doc/posix-functions/realpath.texi (realpath): Likewise.
10176         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
10177
10178         test-canonicalize: consolidate into single C program
10179         * tests/test-canonicalize.sh: Delete; move setup into...
10180         * tests/test-canonicalize.c (main): ...the program, making it
10181         easier to run in debugger.  Add some tests.
10182         * modules/canonicalize-tests (Files): Remove unused file.
10183         (Depends-on): Add progname.
10184         (configure.ac, Makefile.am): Simplify.
10185
10186         test-canonicalize-lgpl: consolidate into single C program
10187         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
10188         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
10189         easier to run in debugger.  Add some tests.
10190         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
10191         (configure.ac, Makefile.am): Simplify.
10192
10193         canonicalize: avoid resolvepath
10194         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
10195         unnecessary checks.
10196         * lib/canonicalize.c (includes): Simplify.
10197         (canonicalize_file_name): Drop resolvepath implementation.
10198         * modules/canonicalize (Depends-on): Drop filenamecat.
10199
10200         canonicalize: don't lose errno
10201         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
10202         over calls to free.
10203
10204         canonicalize: simplify errno handling
10205         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
10206         assignment.
10207
10208         canonicalize, canonicalize-lgpl: update module dependencies
10209         * modules/canonicalize (Depends-on): Add extensions, lstat,
10210         pathmax, stdlib.
10211         (Files): Drop pathmax.h.
10212         (configure.ac): Adjust macro name.
10213         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
10214         lstat, stdlib, sys_stat.
10215         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
10216         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
10217         extensions.
10218         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
10219         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
10220         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
10221         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
10222         declaration, if available.
10223         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
10224         we can rely on the readlink module.
10225         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
10226         (includes): Use <unistd.h> unconditionally.
10227
10228 2009-09-17  Eric Blake  <ebb9@byu.net>
10229
10230         maint: make Include sections of modules consistent
10231         * modules/alloca: Use only header name; no need to list #include.
10232         * modules/alloca-opt: Likewise.
10233         * modules/arpa_inet: Likewise.
10234         * modules/canon-host: Likewise.
10235         * modules/configmake: Likewise.
10236         * modules/dirent: Likewise.
10237         * modules/eealloc: Likewise.
10238         * modules/environ: Likewise.
10239         * modules/fchdir: Likewise.
10240         * modules/fcntl: Likewise.
10241         * modules/fcntl-h: Likewise.
10242         * modules/gethrxtime: Likewise.
10243         * modules/gettime: Likewise.
10244         * modules/ignore-value: Likewise.
10245         * modules/inet_ntop: Likewise.
10246         * modules/inet_pton: Likewise.
10247         * modules/inttypes: Likewise.
10248         * modules/isnand-nolibm: Likewise.
10249         * modules/isnanf-nolibm: Likewise.
10250         * modules/mbchar: Likewise.
10251         * modules/mbfile: Likewise.
10252         * modules/mbiter: Likewise.
10253         * modules/mbuiter: Likewise.
10254         * modules/netdb: Likewise.
10255         * modules/netinet_in: Likewise.
10256         * modules/nproc: Likewise.
10257         * modules/pagealign_alloc: Likewise.
10258         * modules/poll: Likewise.
10259         * modules/printf-frexp: Likewise.
10260         * modules/pthread: Likewise.
10261         * modules/putenv: Likewise.
10262         * modules/random_r: Likewise.
10263         * modules/relocatable-prog: Likewise.
10264         * modules/search: Likewise.
10265         * modules/select: Likewise.
10266         * modules/selinux-h: Likewise.
10267         * modules/settime: Likewise.
10268         * modules/signal: Likewise.
10269         * modules/size_max: Likewise.
10270         * modules/socklen: Likewise.
10271         * modules/ssize_t: Likewise.
10272         * modules/stdarg: Likewise.
10273         * modules/stdbool: Likewise.
10274         * modules/stddef: Likewise.
10275         * modules/stdint: Likewise.
10276         * modules/stdio: Likewise.
10277         * modules/stdlib: Likewise.
10278         * modules/string: Likewise.
10279         * modules/strings: Likewise.
10280         * modules/sys_file: Likewise.
10281         * modules/sys_ioctl: Likewise.
10282         * modules/sys_select: Likewise.
10283         * modules/sys_socket: Likewise.
10284         * modules/sys_stat: Likewise.
10285         * modules/sys_time: Likewise.
10286         * modules/sys_times: Likewise.
10287         * modules/sys_utsname: Likewise.
10288         * modules/sys_wait: Likewise.
10289         * modules/sysexits: Likewise.
10290         * modules/time: Likewise.
10291         * modules/times: Likewise.
10292         * modules/tmpfile: Likewise.
10293         * modules/trim: Likewise.
10294         * modules/unistd: Likewise.
10295         * modules/wchar: Likewise.
10296         * modules/wctype: Likewise.
10297
10298 2009-09-17  Bruno Haible  <bruno@clisp.org>
10299
10300         Make getdate.y compile on QNX and NetBSD 5 / i386.
10301         * m4/getdate.m4 (gl_GETDATE): Conditionally define
10302         TIME_T_FITS_IN_LONG_INT.
10303         * lib/getdate.y (long_time_t): New type.
10304         (relative_time): Change type of 'seconds' field to long_time_t.
10305         (get_date): Update types of local variables. Check against overflow
10306         during conversion from long_time_t to time_t.
10307         Reported by Matt Kraai <kraai@ftbfs.org>
10308         and Hasso Tepper <hasso@netbsd.org>.
10309
10310 2009-09-17  Bruno Haible  <bruno@clisp.org>
10311
10312         * modules/COPYING: Update copyright years.
10313         * modules/README: Likeiwse.
10314         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
10315         Reported by Ian Beckwith <ianb@erislabs.net>.
10316
10317 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10318
10319         * users.txt: Update references for gnuit package.
10320
10321 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10322
10323         * m4/getdelim.m4: Fix typo in copyright line.
10324
10325 2009-09-17  Bruno Haible  <bruno@clisp.org>
10326
10327         * lib/atoll.c: Use the standard header with GPL copyright.
10328         * lib/argz.in.h: Likewise.
10329         * lib/glob.c: Likewise.
10330         * lib/glob-libc.h: Likewise.
10331         * lib/random_r.c: Likewise.
10332         * lib/siglist.h: Likewise.
10333         * lib/strsignal.c: Likewise.
10334         Reported by Ian Beckwith <ianb@erislabs.net>.
10335
10336 2009-09-17  Eric Blake  <ebb9@byu.net>
10337
10338         rmdir: ensure correct dependency order
10339         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
10340
10341 2009-09-17  Bruno Haible  <bruno@clisp.org>
10342
10343         Disable assertion that fails on NetBSD 5 / i386.
10344         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
10345         Reported by Sam Steingold <sds@gnu.org>
10346         and Hasso Tepper <hasso@netbsd.org>.
10347
10348 2009-09-16  Eric Blake  <ebb9@byu.net>
10349
10350         unlinkdir: port to mingw
10351         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
10352         on which no one can unlink a directory.
10353
10354         stdlib: sort witness names
10355         * modules/stdlib (Makefile.am): Sort replacements.
10356         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
10357         * lib/stdlib.in.h: Likewise.
10358
10359         parse-duration-tests: avoid link failure
10360         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
10361         LIBINTL.
10362         Reported by Tom G. Christensen.
10363
10364         openat-tests: ensure unlinkat behaves like rmdir
10365         * tests/test-rmdir.c (main): Factor guts...
10366         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
10367         * modules/rmdir-tests (Files): Ship new file.
10368         * modules/openat-tests: New test.
10369         * tests/test-unlinkat.c: Likewise.
10370
10371         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
10372         * modules/rmdir-errno (Status, Notice): Now obsolete.
10373
10374         rmdir: work around cygwin 1.5.x and mingw bugs
10375         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
10376         * lib/rmdir.c (rmdir): Work around it.
10377         * modules/rmdir (Status, Notice): No longer obsolete.
10378         (Files): Add dos.m4.
10379         (Depends-on): Add unistd.
10380         (configure.ac): Set witnesses.
10381         (License): Relax to LGPLv2+.
10382         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
10383         * modules/unistd (Makefile.am): Substitute witnesses.
10384         * lib/unistd.in.h (rmdir): Declare replacement.
10385         * doc/posix-functions/rmdir.texi (rmdir): Document this.
10386         * modules/rmdir-tests: New tests.
10387         * tests/test-rmdir.c: Likewise.
10388
10389 2009-09-15  Eric Blake  <ebb9@byu.net>
10390
10391         fchdir: improve use of replacement functions
10392         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
10393         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
10394         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
10395         REPLACE_CLOSEDIR.
10396         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
10397         * modules/sys_stat (Makefile.am): Substitute correct witness.
10398         * modules/dirent (Makefile.am): Likewise.
10399         * modules/unistd (Makefile.am): Likewise.
10400         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
10401         * lib/unistd.in.h (dup): Likewise.
10402         * lib/sys_stat.in.h (fstat): Likewise.
10403
10404         maint: ignore gnulib-tool temp files
10405         * .gitignore: Ignore files created during gnulib-tool --test.
10406
10407 2009-09-13  Jim Meyering  <meyering@redhat.com>
10408
10409         posixtm: don't reject a time that specify "60" as the number of seconds
10410         * lib/posixtm.c (posixtime): The code to reject invalid dates
10411         would also reject a time specified with the .60 suffix.
10412         But POSIX allows that, in order to accommodate leap seconds.
10413         So don't reject it.
10414         (main): Adjust tests accordingly.
10415         * modules/posixtm (Depends-on): Add stpcpy.
10416
10417 2009-09-11  Jim Meyering  <meyering@redhat.com>
10418
10419         announce-gen: include [$release_type] in emitted Subject:
10420         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
10421         e.g., [stable] in the emitted Subject: line.
10422
10423 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10424
10425         Remove obsolete macros from several modules.
10426         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
10427         obsolete Autoconf macros with their modern counterparts.
10428         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
10429         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
10430         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
10431         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
10432         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
10433         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
10434         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
10435         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10436         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
10437         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
10438         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
10439         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
10440         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
10441         * m4/sockets.m4 (gl_SOCKETS): Likewise.
10442         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
10443         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
10444         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
10445         * m4/time_r.m4 (gl_TIME_R): Likewise.
10446         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
10447         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
10448         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
10449
10450         Fix copyright header in build-aux scripts.
10451         * build-aux/git-version-gen: Fix copyright header to match GPLv3
10452         recommendation.
10453         * build-aux/ncftpput-ftp: Likewise.
10454         * build-aux/update-copyright: Likewise.
10455
10456 2009-09-09  Eric Blake  <ebb9@byu.net>
10457
10458         test-link: allow Linux choice of errno
10459         * tests/test-link.c (main): Relax test for alternate error.
10460
10461         strndup: fix improper m4 caching
10462         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
10463         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
10464         (gl_PREREQ_STRNDUP): Delete.
10465         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
10466         * modules/string (Makefile.am): Substitute it.
10467         * lib/string.in.h (strndup): Modernize prototype.
10468
10469         getcwd: port to mingw
10470         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
10471         different from the POSIX assumptions made throughout the getcwd
10472         module; fortunately, the mingw getcwd does not need replacement.
10473         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
10474         * modules/getcwd-tests: New test.
10475         * tests/test-getcwd.c: Likewise.
10476
10477         link: fix platform bugs
10478         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
10479         * lib/link.c (link): Work around them.  Fix related mingw bug.
10480         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
10481         * modules/unistd (Makefile.am): Substitute it.
10482         * lib/unistd.in.h (link): Declare replacement.
10483         * doc/posix-functions/link.texi (link): Document this.
10484         * modules/link (Depends-on): Add strdup-posix, sys_stat.
10485
10486         test-link: consolidate into single C program, test more cases
10487         * tests/test-link.sh: Delete.
10488         * tests/test-link.c: Test more error conditions.  Exposes bugs on
10489         at least Cygwin and Solaris.
10490         * modules/link-tests (Files): Remove unused file.
10491         (Depends-on): Add errno, sys_stat.
10492         (Makefile.am): Simplify.
10493
10494 2009-09-08  Bruno Haible  <bruno@clisp.org>
10495
10496         Work around towlower, towupper bug on mingw.
10497         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
10498         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
10499         * doc/posix-functions/towlower.texi: Mention the mingw bug.
10500         * doc/posix-functions/towupper.texi: Likewise.
10501         Reported by Eric Blake.
10502
10503 2009-09-08  Jim Meyering  <meyering@redhat.com>
10504
10505         build: don't try to run autoheader if we don't use it
10506         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
10507         is not used in configure.ac.
10508
10509 2009-09-08  Eric Blake  <ebb9@byu.net>
10510
10511         euidaccess: fix compilation error
10512         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
10513
10514         rawmemchr: relax license
10515         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
10516         okay.
10517         Reported by Jim Meyering.
10518
10519         mkfifoat: new module
10520         * modules/mkfifoat: New file.
10521         * lib/mkfifoat.c: Likewise.
10522         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
10523         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10524         * modules/sys_stat (Makefile.am): Use them.
10525         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
10526         * MODULES.html.sh (File system functions): Mention module.
10527         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
10528         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
10529         * modules/mkfifoat-tests: New test.
10530         * tests/test-mkfifoat.c: Likewise.
10531
10532         strchrnul: relax license
10533         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
10534         okay.
10535         Reported by Jim Meyering.
10536
10537 2009-09-08  Eric Blake  <ebb9@byu.net>
10538
10539         fstatat: fix compilation on Solaris
10540         * lib/fstatat.c (includes): Add fcntl.h.
10541         Reported by Pádraig Brady.
10542
10543 2009-09-07  Eric Blake  <ebb9@byu.net>
10544
10545         rename: modernize replacement
10546         * modules/rename (Depends-on): Add stdio.
10547         (configure.ac): Declare witness.
10548         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
10549         stdio take care of replacement.
10550         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
10551         * modules/stdio (Makefile.am): Substitute them.
10552         * lib/stdio.in.h (rename): Declare replacement.
10553         * lib/rename.c (includes): Allow cross-compilation to non-windows
10554         machines.
10555         * doc/posix-functions/rename.texi (rename): Improve
10556         documentation.
10557
10558         stdio: sort witness names
10559         * modules/stdio (Makefile.am): Sort replacements.
10560         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
10561         * lib/stdio.in.h: Likewise.
10562
10563         getcwd: minor cleanups
10564         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
10565         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
10566
10567         openat: provide more convenience names
10568         * modules/faccessat (configure.ac): Add C witness.
10569         * lib/unistd.in.h (readlinkat): Fix typo.
10570         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
10571         convenience wrappers.
10572         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
10573         wrappers in syntax checks.
10574
10575 2009-09-06  Eric Blake  <ebb9@byu.net>
10576
10577         doc: fix comments in recent patches
10578         * lib/faccessat.c: Mention correct function.
10579         * lib/fchmodat.c: Likewise.
10580         * lib/fchownat.c: Likewise.
10581         * lib/symlinkat.c: Likewise.
10582         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
10583         constants.
10584
10585         faccessat, symlinkat: continue cleanup of previous patch
10586         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
10587         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
10588         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
10589         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
10590         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
10591         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
10592         set.
10593
10594 2009-09-06  Bruno Haible  <bruno@clisp.org>
10595
10596         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
10597         (fstatat): Declare if GNULIB_FSTATAT is set.
10598         (mkdirat): Declare if GNULIB_MKDIRAT is set.
10599         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
10600         (unlinkat): Declare if GNULIB_UNLINKAT is set.
10601         * modules/fcntl-h (Files): Remove m4/openat.m4.
10602         * modules/sys_stat (Files): Remove m4/openat.m4.
10603         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
10604         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
10605         * modules/unistd (Files): Remove m4/openat.m4.
10606         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
10607         GNULIB_OPENAT.
10608         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
10609         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
10610         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
10611         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
10612         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
10613         gl_OPENAT_DEFAULTS.
10614         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
10615         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
10616         Don't require gl_OPENAT_DEFAULTS.
10617         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
10618         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
10619         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
10620         (gl_OPENAT_DEFAULTS): Remove macro.
10621
10622 2009-09-06  Bruno Haible  <bruno@clisp.org>
10623
10624         * modules/openat (configure.ac): Remove unneeded witness.
10625
10626 2009-09-06  Bruno Haible  <bruno@clisp.org>
10627
10628         Set errno to ENOSYS when a function is entirely unsupported.
10629         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
10630         EOPNOTSUPP.
10631         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
10632         * modules/chown (Depends-on): Remove errno.
10633
10634 2009-09-06  Bruno Haible  <bruno@clisp.org>
10635
10636         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
10637
10638 2009-09-06  Bruno Haible  <bruno@clisp.org>
10639
10640         * lib/sys_stat.in.h: Fix preprocessor command indentation.
10641
10642 2009-09-06  Ben Pfaff  <blp@gnu.org>
10643             Bruno Haible  <bruno@clisp.org>
10644
10645         Work around a glibc bug in strtok_r.
10646         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
10647         Undefine if UNDEFINE_STRTOK_R is set.
10648         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
10649         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
10650         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
10651         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
10652         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
10653         UNDEFINE_STRTOK_R.
10654         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
10655
10656 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
10657
10658         exclude: minor fix
10659         * lib/exclude.c: Include wctype.h
10660
10661 2009-09-06  Akim Demaille  <demaille@gostai.com>
10662
10663         bootstrap: improve error message
10664         * build-aux/bootstrap (find_tool): Upon failure, report the list
10665         of candidates.
10666         Honor the initial value of the envvar.
10667
10668 2009-09-05  Eric Blake  <ebb9@byu.net>
10669
10670         symlinkat: new module
10671         * modules/symlinkat: New file.
10672         * lib/symlinkat.c: Likewise.
10673         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
10674         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
10675         * modules/unistd (Makefile.am): Use them.
10676         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
10677         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
10678         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
10679         * MODULES.html.sh (File system functions): Mention module.
10680         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
10681         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
10682         * modules/symlinkat-tests: New test.
10683         * tests/test-symlinkat.c: Likewise.
10684
10685         test-openat-safer: add more checks
10686         * tests/test-openat-safer.c (main): Check more code paths.
10687
10688 2009-09-05  Jim Meyering  <meyering@redhat.com>
10689
10690         syntax-check: detect unnecessary inclusion of openat.h
10691         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
10692
10693 2009-09-05  Bruno Haible  <bruno@clisp.org>
10694
10695         Support towlower, towupper.
10696         * doc/posix-functions/towlower.texi: Mention module wctype.
10697         * doc/posix-functions/towupper.texi: Likewise.
10698         * lib/wctype.in.h (towlower, towupper): New functions.
10699         * tests/test-wctype.c: Include stdio.h, stdlib.h.
10700         (ASSERT): New macro.
10701         (e): New variable.
10702         (main): Test also towlower, towupper. Test WEOF argument.
10703         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
10704
10705 2009-09-05  Bruno Haible  <bruno@clisp.org>
10706
10707         Fix conversion behaviour when the input is invalid.
10708         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
10709         mark occurring in first pass of indirect conversion.
10710         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
10711         input.
10712         Found by clang's static analyzer.
10713
10714 2009-09-05  Bruno Haible  <bruno@clisp.org>
10715
10716         * tests/test-striconveh.c (main): Test indirect conversion on platforms
10717         where direct conversion is possible.
10718
10719 2009-09-04  Eric Blake  <ebb9@byu.net>
10720
10721         openat: fail with ENOENT on empty name
10722         * lib/openat-proc.c (openat_proc_name): Special-case the empty
10723         buffer.
10724
10725         link-follow: fix logic bug in prior patch
10726         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
10727         reversed sense of yes and no in prior patch.  Avoid confusing
10728         compilation failure with desired semantics.
10729
10730         link-follow: accomodate mingw and cross-compilation
10731         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
10732         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
10733         cross-compilation results to -1, to make linkat easier to
10734         implement when cross-compiling.  Trivially support mingw.
10735         * modules/link-follow (configure.ac): Call new name.
10736         * NEWS: Mention this.
10737
10738 2009-09-03  Eric Blake  <ebb9@byu.net>
10739
10740         faccessat: compile replacement
10741         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
10742         needed.
10743
10744         fts: fix compilation error
10745         * lib/fts.c (includes): Re-add "openat.h", for
10746         openat_needs_fchdir.
10747
10748         faccessat: new module
10749         * modules/faccessat: New file.
10750         * lib/faccessat.c: Likewise.
10751         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
10752         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
10753         * modules/unistd (Makefile.am): Use it.
10754         * lib/unistd.in.h (faccessat): Declare it.
10755         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
10756         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
10757         * MODULES.html.sh (File system functions): Mention it.
10758         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
10759         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
10760
10761         euidaccess: prefer POSIX over non-standard implementation
10762         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
10763         * lib/euidaccess.c (euidaccess): Use it if available.
10764
10765         openat: make template easier to use
10766         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
10767         AT_FUNC_F2 to be undefined.
10768         (VALIDATE_FLAG): New macro; use it to reject bad flags.
10769         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
10770         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
10771         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
10772         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
10773         Likewise.
10774         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
10775         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
10776         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
10777         Likewise.
10778
10779         openat: declare in POSIX headers
10780         * NEWS: Mention this.
10781         * modules/openat (configure.ac): Declare witnesses.
10782         (Depends-on): Add fcntl-h, sys_stat, unistd.
10783         (Include): Mention correct headers.
10784         * modules/fcntl-h (Depends-on): Add link-warning.
10785         (Files): Add openat.m4.
10786         (Makefile.am): Substitute witnesses.
10787         * modules/sys_stat (Files, Makefile.am): Likewise.
10788         * modules/unistd (Files, Makefile.am): Likewise.
10789         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
10790         (gl_OPENAT_DEFAULTS): New macro.
10791         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
10792         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
10793         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
10794         (SYS_STAT_H): Remove unused variable.
10795         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
10796         * lib/fcntl--.h (includes): Remove unneeded header.
10797         * lib/openat-safer.c (includes): Likewise.
10798         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
10799         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
10800         appropriate headers.
10801         (__OPENAT_PREFIX): Delete.
10802         * lib/fcntl.in.h (openat): Provide declaration.
10803         (AT_FDCWD): Fix Solaris bug.
10804         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
10805         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
10806         * lib/fchmodat.c (includes):  Adjust to find declaration.
10807         * lib/fchownat.c (includes): Likewise.
10808         * lib/mkdirat.c (includes): Likewise.
10809         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
10810         still visible.
10811
10812 2009-09-02  Eric Blake  <ebb9@byu.net>
10813
10814         errno: use consistently
10815         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
10816         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
10817         * lib/canonicalize.c (ELOOP): Likewise.
10818         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
10819         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
10820         * lib/lchown.c (EOPNOTSUPP): Likewise.
10821         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
10822         * lib/savewd.c (ESTALE): Likewise.
10823         * lib/settime.c (ENOSYS): Likewise.
10824         * lib/utimens.c (ENOSYS): Likewise.
10825         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
10826         * lib/chdir-safer.c (ELOOP): Likewise.
10827         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
10828         * modules/c-stack (Depends-on): Add errno.
10829         * modules/canonicalize (Depends-on): Likewise.
10830         * modules/chdir-safer (Depends-on): Likewise.
10831         * modules/fdopendir (Depends-on): Likewise.
10832         * modules/inet_ntop (Depends-on): Likewise.
10833         * modules/inet_pton (Depends-on): Likewise.
10834         * modules/lchown (Depends-on): Likewise.
10835         * modules/openat (Depends-on): Likewise.
10836         * modules/savewd (Depends-on): Likewise.
10837         * modules/settime (Depends-on): Likewise.
10838         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
10839
10840         fts: avoid leaking fds
10841         * modules/fts (Depends-on): Add cloexec.
10842         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
10843         flag.
10844
10845         fts: make directory fds more robust
10846         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
10847         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
10848
10849         backupfile, chdir-long, fts, savedir: make safer
10850         * lib/backupfile.c (includes): Use "dirent--.h", since
10851         numbered_backup can write to stderr during readdir.
10852         * lib/savedir.c (includes): Likewise.
10853         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
10854         emulation can write to stderr on failure.
10855         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
10856         * lib/getcwd.c: Document why opendir_safer is unused.
10857         * lib/glob.c: Likewise.
10858         * lib/scandir.c: Likewise.
10859         * lib/openat-proc.c: Likewise, for open_safer.
10860         * modules/backupfile (Depends-on): Add dirent-safer.
10861         * modules/savedir (Depends-on): Likewise.
10862         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
10863         * modules/chdir-long (Depends-on): Add openat-safer.
10864
10865         openat-safer: new module
10866         * modules/openat-safer: New file.
10867         * lib/openat-safer.c: Likewise.
10868         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
10869         * lib/fcntl-safer.h (openat_safer): Declare.
10870         * lib/fcntl--.h (openat): Override.
10871         * MODULES.html.sh (File descriptor based I/O): Mention it.
10872         * lib/openat.h: Add double-inclusion guards.
10873         * lib/openat.c (includes): Only include "fcntl-safer.h", not
10874         "fcntl--.h", so we can implement openat.
10875         * modules/openat-safer-tests: New test.
10876         * tests/test-openat-safer.c: New file.
10877
10878         dirent-safer: new module
10879         * modules/dirent-safer: New file.
10880         * lib/dirent--.h: Likewise.
10881         * lib/dirent-safer.h: Likewise.
10882         * lib/opendir-safer.c: Likewise.
10883         * m4/dirent-safer.m4: Likewise.
10884         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
10885         * modules/dirent-safer-tests: New test.
10886         * tests/test-dirent-safer.c: New file.
10887         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
10888
10889         fdopendir: optimize on mingw
10890         * lib/unistd.in.h (_gl_directory_name): New prototype.
10891         * lib/fchdir.c (_gl_directory_name): Implement it.
10892         (fchdir): Use it to simplify implementation.
10893         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
10894         fchdir, when available, to avoid calling [f]chdir().
10895
10896         fdopendir: split into its own module
10897         * lib/openat.c (fdopendir): Move...
10898         * lib/fdopendir.c: ...into new file.
10899         * modules/fdopendir: New module.
10900         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
10901         * modules/openat (Depends-on): Add fdopendir.
10902         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
10903         fdopendir here.
10904         * modules/savedir (Depends-on): Only need fdopendir, not full
10905         openat.
10906         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
10907         * lib/openat.h (fdopendir): Drop prototype.
10908         * lib/dirent.in.h (fdopendir): Provide prototype.
10909         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
10910         * modules/dirent (Makefile.am): Substitute them.
10911         * MODULES.html.sh (File system functions): Mention it.
10912         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
10913         * modules/fdopendir-tests: New file.
10914         * tests/test-fdopendir.c: Likewise.
10915
10916         fchdir: use more consistent macro convention
10917         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
10918         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
10919         REPLACE_FCHDIR, rather than relying on config.h macros.
10920         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
10921         inside a single make-time REPLACE_FCHDIR block, rather than using
10922         the config.h FCHDIR_REPLACEMENT.
10923         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
10924         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
10925         Manage fstat replacement.
10926         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
10927         REPLACE_FCHDIR.
10928         * modules/sys_stat (Files): Add m4/unistd_h.m4.
10929         (Makefile.am): Substitute REPLACE_FCHDIR.
10930         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
10931         FCHDIR_REPLACEMENT.
10932         * lib/dup-safer.c (dup_safer): Likewise.
10933         * lib/dup2.c (rpl_dup2): Likewise.
10934         * lib/dup3.c (rpl_dup3): Likewise.
10935         * lib/open.c (rpl_open): Likewise.
10936
10937         fchdir: simplify error handling, and support dup3
10938         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
10939         stdbool, malloc-posix, realloc-posix.
10940         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
10941         (ensure_dirs_slot): Return false on allocation failure.
10942         (rpl_dup2): Delete.
10943         (_gl_register_dup): New function.
10944         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
10945         (_gl_register_fd): Close fd on allocation failure.
10946         * lib/fcntl.in.h (_gl_register_fd): Update signature.
10947         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
10948         prototype.
10949         (rpl_dup2_fchdir): Delete prototype.
10950         * lib/open.c (open): Update caller.
10951         * lib/dup2.c (dup2): Track fchdir metadata.
10952         * lib/dup3.c (dup3): Likewise.
10953         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
10954         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
10955
10956 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10957
10958         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
10959         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
10960         don't pass arguments to AC_OUTPUT.
10961
10962 2009-09-02  Bruno Haible  <bruno@clisp.org>
10963
10964         * modules/mkdtemp (License): Relicense under LGPLv2+.
10965         Reported by Paolo Bonzini.
10966
10967 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10968
10969         Replace uses of obsolete autoconf macros in Jim's modules.
10970         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
10971         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
10972         can evoke a warning from autoconf when run with -Wobsolete
10973         enabled.  They were declared obsolete for good reasons (see
10974         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
10975         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
10976         should not continue using the deprecated macros.
10977         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
10978         obsolete Autoconf macros with modern counterparts.
10979         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
10980         * m4/dos.m4 (gl_AC_DOS): Likewise.
10981         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
10982         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
10983         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
10984         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
10985         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
10986         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
10987         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
10988         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
10989         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
10990         Likewise.
10991         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
10992         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
10993         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
10994         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
10995         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
10996         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
10997
10998 2009-09-01  Eric Blake  <ebb9@byu.net>
10999
11000         fchdir: fix off-by-one bug in previous patch
11001         * lib/fchdir.c (rpl_fstat): Use correct bounds.
11002         (_gl_unregister_fd): Delete useless if.
11003
11004 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
11005
11006         maint.mk: sort the list of syntax-check rules
11007         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
11008         easier to get a sense of progress when the rules are run sequentially
11009         and take a long time.
11010
11011 2009-09-01  Simon Josefsson  <simon@josefsson.org>
11012
11013         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
11014         * modules/netinet_in: Likewise.
11015         * modules/sys_file: Likewise.
11016         * modules/sys_ioctl: Likewise.
11017         * modules/sys_select: Likewise.
11018         * modules/sys_socket: Likewise.
11019         * modules/sys_stat: Likewise.
11020         * modules/sys_time: Likewise.
11021         * modules/sys_times: Likewise.
11022         * modules/sys_utsname: Likewise.
11023         * modules/sys_wait: Likewise.
11024
11025 2009-09-01  Jim Meyering  <meyering@redhat.com>
11026
11027         fts: help ensure that return values are not ignored
11028         * lib/fts_.h (__GNUC_PREREQ): Define.
11029         (__attribute_warn_unused_result__): Define.
11030         (fts_children, fts_close, fts_open, fts_read): Declare with
11031         __attribute_warn_unused_result__.
11032
11033         fts: fts_close now fails also when closing a dir file descriptor fails
11034         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
11035         and propagate to caller, along with errno.
11036
11037         announce-gen: correct formatting in --help output
11038         * build-aux/announce-gen (usage): Move the one-line description in
11039         --help output "up", to where it belongs, just after Usage:.
11040
11041 2009-08-31  Eric Blake  <ebb9@byu.net>
11042
11043         fchdir: port to mingw
11044         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
11045         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
11046         opened, then use a substitute.
11047         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
11048         replacement.
11049         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
11050         (_gl_register_fd): No need to check stat if open already filters
11051         all directories.
11052         (fchdir): Fix error condition to match POSIX.
11053         * modules/fchdir (Depends-on): Add sys_stat.
11054         * doc/posix-functions/open.texi (open): Document the limitation.
11055         * modules/fchdir-tests: New file.
11056         * tests/test-fchdir.c: Likewise.
11057
11058         canonicalize: allow cross-testing from cygwin to mingw
11059         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
11060         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
11061         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
11062         Likewise.
11063         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
11064         target does not support symlinks.
11065         * tests/test-canonicalize-lgpl.sh: Likewise.
11066
11067         chown: avoid compilation warning on mingw
11068         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
11069         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
11070         mingw.
11071         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
11072         * modules/chown (Depends-on): Add errno.
11073
11074 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
11075
11076         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
11077         command.
11078
11079 2009-08-31  Jim Meyering  <meyering@redhat.com>
11080
11081         canonicalize: remove useless initialization
11082         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
11083         initialization of local, "end".
11084
11085 2009-08-30  Bruno Haible  <bruno@clisp.org>
11086
11087         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
11088         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
11089         ENOSYS.
11090
11091 2009-08-30  Bruno Haible  <bruno@clisp.org>
11092
11093         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
11094         /usr/xpg4/bin/tr when it exists.
11095         * tests/test-pipe-filter-gi1.sh: Likewise.
11096
11097 2009-08-30  Bruno Haible  <bruno@clisp.org>
11098
11099         Work around deficient /usr/bin/id program on Solaris.
11100         * tests/test-file-has-acl.sh (ID): New variable.
11101         * tests/test-set-mode-acl.sh (ID): Likewise.
11102         * tests/test-copy-acl.sh (ID): Likewise.
11103         * tests/test-copy-file.sh (ID): Likewise.
11104
11105 2009-08-30  Bruno Haible  <bruno@clisp.org>
11106
11107         New module 'xstriconveh'.
11108         * lib/xstriconveh.h: New file.
11109         * lib/xstriconveh.c: New file.
11110         * modules/xstriconveh: New file.
11111
11112 2009-08-30  Bruno Haible  <bruno@clisp.org>
11113
11114         Make it easier to use mem_cd_iconveh.
11115         * lib/striconveh.h (iconveh_t): New type.
11116         (iconveh_open, iconveh_close): New declarations.
11117         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11118         with a single 'const iconveh_t *' argument.
11119         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
11120         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11121         with a single 'const iconveh_t *' argument.
11122         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
11123         * tests/test-striconveh.c (main): Update.
11124         * NEWS: Mention the change.
11125
11126 2009-08-30  Bruno Haible  <bruno@clisp.org>
11127
11128         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
11129         problem.
11130
11131 2009-08-30  Bruno Haible  <bruno@clisp.org>
11132
11133         Work around iconv_open problem on Solaris.
11134         * lib/iconv_open-solaris.gperf: New file.
11135         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
11136         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
11137         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
11138         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
11139         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
11140         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
11141
11142 2009-08-29  Jim Meyering  <meyering@redhat.com>
11143
11144         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
11145         * top/maint.mk (cvs-check): Remove target; it was just an alias
11146         to the better-named vc-diff-check.
11147         (maintainer-distcheck): Remove rule.  It was used only from
11148         the (alpha/beta/major) target, and all of its commands but one
11149         were coreutils-specific.
11150         (vc-dist): Remove rule.
11151         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
11152         Run vc-diff-check, not vc-dist.
11153         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
11154
11155 2009-08-27  Bruno Haible  <bruno@clisp.org>
11156
11157         * tests/test-bitrotate.c (main): Remove test that uses a shift count
11158         of 0.
11159
11160 2009-08-27  Bruno Haible  <bruno@clisp.org>
11161
11162         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
11163         compilers.
11164         * doc/func.texi: Document the SunPRO C bug.
11165
11166 2009-08-27  Bruno Haible  <bruno@clisp.org>
11167
11168         Fix link error on Solaris.
11169         * tests/test-parse-duration.c (xstrdup): Remove function.
11170
11171 2009-08-26  Pádraig Brady  <P@draigbrady.com>
11172
11173         ignore-value: handle pointer types, too
11174         * lib/ignore-value.h (__attribute__): Remove definition.
11175         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
11176         of a more concise and more-often effective "(void) i" statement.
11177         (ignore_ptr): New function to suppress warnings from functions that
11178         return pointers, and to make it explicit that one function doesn't
11179         handle all cases.
11180
11181 2009-08-25  Bruno Haible  <bruno@clisp.org>
11182
11183         dup2: work around a Linux bug.
11184         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
11185         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
11186         * doc/posix-functions/dup2.texi: Mention the Linux bug.
11187         Reported by Simon Josefsson.
11188
11189 2009-08-25  Jim Meyering  <meyering@redhat.com>
11190
11191         libguestfs uses gnulib
11192         * users.txt: Add libguestfs.
11193
11194 2009-08-24  Eric Blake  <ebb9@byu.net>
11195
11196         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
11197         * lib/pipe2.c (includes): Add binary-io.h.
11198         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
11199
11200 2009-08-24  Bruno Haible  <bruno@clisp.org>
11201
11202         Tolerate declared but missing accept4 syscall.
11203         * lib/accept4.c (accept4): Invoke original accept4 function first, if
11204         available.
11205         * lib/sys_socket.in.h (accept4): If the function is already present,
11206         override it.
11207         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
11208         * modules/accept4 (Makefile.am): Compile accept4.c always.
11209         Reported by Paolo Bonzini and Eric Blake.
11210
11211 2009-08-23  Bruno Haible  <bruno@clisp.org>
11212
11213         New module 'accept4'.
11214         * lib/sys_socket.in.h (accept4): New declaration.
11215         * lib/accept4.c: New file.
11216         * m4/accept4.m4: New file.
11217         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
11218         GNULIB_ACCEPT4, HAVE_ACCEPT4.
11219         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
11220         HAVE_ACCEPT4.
11221         * modules/accept4: New file.
11222         * doc/glibc-functions/accept4.texi: Mention the new module.
11223
11224 2009-08-24  Jim Meyering  <meyering@redhat.com>
11225
11226         progname: also set global program_invocation_name, when possible
11227         Before this change, a libtool-enabled program that calls glibc's
11228         error function would report the program name as
11229         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
11230         * modules/progname (configure.ac): Check for a declaration of
11231         program_invocation_name.
11232         * lib/progname.c:  Include <errno.h>.
11233         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
11234         Set program_invocation_name.
11235
11236 2009-08-23  Bruno Haible  <bruno@clisp.org>
11237
11238         * lib/dup3.c: Include <string.h>.
11239
11240 2009-08-23  Bruno Haible  <bruno@clisp.org>
11241
11242         * lib/dup3.c (dup3): Test only once whether the system actually exists.
11243         * lib/pipe2.c (pipe2): Likewise.
11244         Suggested by Eric Blake.
11245
11246 2009-08-23  Bruno Haible  <bruno@clisp.org>
11247
11248         Tolerate declared but missing dup3 syscall.
11249         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
11250         * lib/unistd.in.h (dup3): If the function is already present,
11251         override it.
11252         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
11253         * modules/dup3 (Makefile.am): Compile dup3.c always.
11254         Reported by Paolo Bonzini.
11255
11256 2009-08-23  Bruno Haible  <bruno@clisp.org>
11257
11258         Tolerate declared but missing pipe2 syscall.
11259         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
11260         available.
11261         * lib/unistd.in.h (pipe2): If the function is already present,
11262         override it.
11263         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
11264         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
11265         Reported by Paolo Bonzini.
11266
11267 2009-08-23  Bruno Haible  <bruno@clisp.org>
11268
11269         * lib/pipe2.c (pipe2): Move #ifs inside function.
11270
11271 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11272
11273         quotearg: document limitations of quote_these_too
11274         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
11275         those limitations are created.
11276         * lib/quotearg.h (set_char_quoting): Document that digits and
11277         letters that are special after backslash are not permitted.
11278         (quotearg_char): Cross-reference set_char_quoting documentation.
11279
11280 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
11281
11282         quotearg: implement custom_quoting_style
11283         * lib/quotearg.c: (struct quoting_options): Add left_quote and
11284         right_quote fields.
11285         (set_custom_quoting): New public function.
11286         (quotearg_buffer_restyled): Add left_quote and right_quote
11287         arguments, handle them very much like locale quoting, and update
11288         all uses.
11289         (quotearg_n_custom): New public function.
11290         (quotearg_n_custom_mem): New public function.
11291         (quotearg_custom): New public function.
11292         (quotearg_custom_mem): New public function.
11293         * lib/quotearg.h: Prototype and document new public functions.
11294         (enum quoting_style): For escape_quoting_style and
11295         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
11296         ignored even though they're otherwise like c_quoting_style.
11297         Add custom_quoting_style member and document with comparison to
11298         clocale_quoting_style.
11299         * tests/test-quotearg.c (custom_quotes): New array.
11300         (custom_results): New array.
11301         (main): Extend to test custom quoting.
11302
11303 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11304
11305         quotearg: fix right quote escaping when it's in quote_these_too
11306         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
11307         quote, be sure to prepend only one backslash.
11308         * tests/test-quotearg.c (use_quote_double_quotes): New function.
11309         (main): Test it.
11310
11311 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11312
11313         quotearg-tests: test escaping of embedded locale quotes
11314         * tests/test-quotearg.c (struct result_strings): Add member for
11315         new input.
11316         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
11317         (inputs): Add new input.
11318         (results_g): Add expected results.
11319         (flag_results): Likewise.
11320         (locale_results): Likewise.
11321         (compare_strings): Check those.
11322
11323 2009-08-23  Bruno Haible  <bruno@clisp.org>
11324
11325         Tests for module 'dup3'.
11326         * modules/dup3-tests: New file.
11327         * tests/test-dup3.c: New file.
11328
11329         New module 'dup3'.
11330         * lib/unistd.in.h (dup3): New declaration.
11331         * lib/dup3.c: New file.
11332         * m4/dup3.m4: New file.
11333         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
11334         HAVE_DUP3.
11335         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
11336         * modules/dup3: New file.
11337         * doc/glibc-functions/dup3.texi: Mention the new module.
11338
11339 2009-08-23  Bruno Haible  <bruno@clisp.org>
11340
11341         Tweak the dup2 test.
11342         * tests/test-dup2.c (main): Create the test file empty. Verify that an
11343         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
11344         the test file is still empty. Fix argument order of lseek.
11345
11346 2009-08-23  Bruno Haible  <bruno@clisp.org>
11347
11348         Avoid test link errors when the modules getopt-gnu, gettext are used.
11349         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
11350         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11351
11352 2009-08-23  Bruno Haible  <bruno@clisp.org>
11353
11354         Fix getdtablesize() on mingw.
11355         * lib/getdtablesize.c (getdtablesize): Implement differently.
11356         * lib/unistd.in.h (getdtablesize): Improve comment.
11357
11358 2009-08-23  Bruno Haible  <bruno@clisp.org>
11359
11360         New module 'mkostemp'.
11361         Based on Ulrich Drepper's 2007-08-10 change in glibc.
11362         * lib/stdlib.in.h (mksotemp): New declaration.
11363         * lib/mkostemp.c: New file, from glibc with modifications.
11364         * lib/tempname.h (GT_FILE): Remove outdated comment.
11365         (gen_tempname): Add flags argument.
11366         * lib/tempname.c (__GT_BIGFILE): Remove macro.
11367         (__GT_FILE): Map to 1.
11368         (small_open, large_open): Remove macros.
11369         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
11370         * lib/mkstemp.c (mkstemp): Update.
11371         * lib/mkdtemp.c (mkdtemp): Likewise.
11372         * m4/mkostemp.m4: New file.
11373         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
11374         HAVE_MKOSTEMP.
11375         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
11376         HAVE_MKOSTEMP.
11377         * modules/mkostemp: New file, based on modules/mkstemp.
11378         * doc/glibc-functions/mkostemp.texi: Mention the new module.
11379         * NEWS: Mention the change.
11380
11381 2009-08-23  Bruno Haible  <bruno@clisp.org>
11382
11383         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
11384         Reported by Eric Blake.
11385
11386 2009-08-23  Bruno Haible  <bruno@clisp.org>
11387
11388         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
11389         Reported by Eric Blake.
11390
11391 2009-08-23  Bruno Haible  <bruno@clisp.org>
11392
11393         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
11394         * modules/pipe2 (Depends-on): Likewise.
11395
11396 2009-08-23  Eric Blake  <ebb9@byu.net>
11397
11398         fcntl-h: add O_TTY_INIT support
11399         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
11400         * tests/test-fcntl-h.c (o): Test it.
11401         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
11402
11403         fcntl-h: rename from fcntl, in preparation for fcntl(2)
11404         * modules/fcntl: Move <fcntl.h> header replacement...
11405         * modules/fcntl-h: ...to new name, so as not to collide with
11406         like-named function.
11407         * tests/test-fcntl.c: Rename...
11408         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
11409         * modules/fcntl-tests: Rename...
11410         * modules/fcntl-h-tests: ...to this.  Update test file name.
11411         * modules/chdir-long (Depends-on): Update clients.
11412         * modules/chdir-safer (Depends-on): Likewise.
11413         * modules/fcntl-safer (Depends-on): Likewise.
11414         * modules/fts (Depends-on): Likewise.
11415         * modules/mkancesdirs (Depends-on): Likewise.
11416         * modules/mkdir-p (Depends-on): Likewise.
11417         * modules/open (Depends-on): Likewise.
11418         * modules/savewd (Depends-on): Likewise.
11419         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
11420         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
11421
11422 2009-08-22  Bruno Haible  <bruno@clisp.org>
11423
11424         * modules/binary-io (License): Relicense under LGPL.
11425         * modules/pipe2 (License): Likewise.
11426
11427 2009-08-22  Bruno Haible  <bruno@clisp.org>
11428
11429         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
11430         return value.
11431         * lib/pipe-filter-gi.c (filter_init): Likewise.
11432         Reported by Eric Blake.
11433
11434 2009-08-22  Bruno Haible  <bruno@clisp.org>
11435
11436         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
11437         * modules/pipe (Depends-on): Add pipe2.
11438
11439 2009-08-22  Bruno Haible  <bruno@clisp.org>
11440
11441         Tests for module 'pipe2'.
11442         * modules/pipe2-tests: New file.
11443         * tests/test-pipe2.c: New file.
11444
11445         New module 'pipe2'.
11446         * lib/unistd.in.h (pipe2): New declaration.
11447         * lib/pipe2.c: New file.
11448         * m4/pipe2.m4: New file.
11449         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
11450         HAVE_PIPE2.
11451         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
11452         * modules/pipe2: New file.
11453         * doc/glibc-functions/pipe2.texi: Mention the new module.
11454
11455 2009-08-22  Bruno Haible  <bruno@clisp.org>
11456
11457         Reference some new glibc functions.
11458         * doc/glibc-functions/accept4.texi: New file.
11459         * doc/glibc-functions/dup3.texi: New file.
11460         * doc/glibc-functions/mkostemp.texi: New file.
11461         * doc/glibc-functions/pipe2.texi: New file.
11462         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
11463         (Glibc sys/socket.h): Refer to accept4.
11464         (Glibc unistd.h): Refer to dup3, pipe2.
11465         Reported by Eric Blake.
11466
11467 2009-08-22  Jim Meyering  <meyering@redhat.com>
11468             Bruno Haible  <bruno@clisp.org>
11469
11470         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
11471         This makes it so packages using automake-1.11's silent-rules option
11472         can print e.g., a single "GEN    configmake.h" line, rather than
11473         the 30+ statements that perform the job.  If you want to see the
11474         actual commands, you can still run "make V=1".
11475         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
11476         so that make output is abbreviated when those variables are defined
11477         appropriately.
11478         * modules/argz: Likewise.
11479         * modules/arpa_inet: Likewise.
11480         * modules/byteswap: Likewise.
11481         * modules/configmake: Likewise.
11482         * modules/dirent: Likewise.
11483         * modules/errno: Likewise.
11484         * modules/fcntl: Likewise.
11485         * modules/float: Likewise.
11486         * modules/fnmatch: Likewise.
11487         * modules/getopt-posix: Likewise.
11488         * modules/glob: Likewise.
11489         * modules/iconv_open: Likewise.
11490         * modules/inttypes: Likewise.
11491         * modules/localcharset: Likewise.
11492         * modules/locale: Likewise.
11493         * modules/math: Likewise.
11494         * modules/netdb: Likewise.
11495         * modules/netinet_in: Likewise.
11496         * modules/poll: Likewise.
11497         * modules/posix_spawnp-tests: Likewise.
11498         * modules/sched: Likewise.
11499         * modules/search: Likewise.
11500         * modules/selinux-h: Likewise.
11501         * modules/signal: Likewise.
11502         * modules/spawn: Likewise.
11503         * modules/stdarg: Likewise.
11504         * modules/stdbool: Likewise.
11505         * modules/stddef: Likewise.
11506         * modules/stdint: Likewise.
11507         * modules/stdio: Likewise.
11508         * modules/stdlib: Likewise.
11509         * modules/string: Likewise.
11510         * modules/strings: Likewise.
11511         * modules/sys_file: Likewise.
11512         * modules/sys_ioctl: Likewise.
11513         * modules/sys_select: Likewise.
11514         * modules/sys_socket: Likewise.
11515         * modules/sys_stat: Likewise.
11516         * modules/sys_time: Likewise.
11517         * modules/sys_times: Likewise.
11518         * modules/sys_utsname: Likewise.
11519         * modules/sys_wait: Likewise.
11520         * modules/sysexits: Likewise.
11521         * modules/time: Likewise.
11522         * modules/unistd: Likewise.
11523         * modules/wchar: Likewise.
11524         * modules/wctype: Likewise.
11525
11526 2009-08-22  Jim Meyering  <meyering@redhat.com>
11527
11528         announce-gen: detect write failure
11529         * build-aux/announce-gen: Add Coda at end.
11530         Remove equivalent-but-more-verbose block at top.
11531
11532 2009-08-19  Akim Demaille  <demaille@gostai.com>
11533
11534         bootstrap: --help to stdout.
11535         * bootstrap (usage): Don't send --help to stderr.
11536         Use a here doc instead of a long string.
11537
11538 2009-08-21  Eric Blake  <ebb9@byu.net>
11539
11540         test-popen-safer: split from test-popen
11541         * tests/test-popen.c (main): Move...
11542         * tests/test-popen.h: ...into new file.
11543         * tests/test-popen-safer2.c: New file.
11544         * modules/popen-tests (Files): Add test-popen.h.
11545         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
11546         Suggested by Bruno Haible.
11547
11548         test-fcntl-safer: split from test-open
11549         * tests/test-open.c (main): Move...
11550         * tests/test-open.h: ...into new file.
11551         * tests/test-fcntl-safer.c: New file.
11552         * modules/open-tests (Files): Add test-open.h.
11553         * modules/fcntl-safer-tests: New file.
11554         Suggested by Bruno Haible.
11555
11556         test-fopen-safer: split from test-fopen
11557         * tests/test-fopen.c (main): Move...
11558         * tests/test-fopen.h: ...into new file.
11559         * tests/test-fopen-safer.c: New file.
11560         * modules/fopen-tests (Files): Add test-fopen.h.
11561         * modules/fopen-safer-tests: New file.
11562         Suggested by Bruno Haible.
11563
11564 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
11565
11566         popen-safer: test O_CLOEXEC at run-time.
11567         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
11568
11569 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
11570
11571         fcntl: move more flags to the header
11572         * lib/cloexec.c: Do not define FD_CLOEXEC here.
11573         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
11574         * lib/fcntl.in.h: Do both things here.
11575
11576 2009-08-21  Jim Meyering  <meyering@redhat.com>
11577
11578         consistently remove $@-t before redirecting to it
11579         * modules/argz: Remove $@-t and $@ before redirecting to the former.
11580         * modules/alloca-opt: Likewise.
11581         * modules/byteswap: Likewise.
11582         * modules/fnmatch: Likewise.
11583         * modules/getopt-posix: Likewise.
11584         * modules/glob: Likewise.
11585         * modules/poll: Likewise.
11586         * modules/posix_spawnp-tests: Likewise.
11587         * modules/sys_socket: Likewise.
11588         * modules/sysexits: Likewise.
11589
11590 2009-08-21  Eric Blake  <ebb9@byu.net>
11591
11592         popen: simplify access to original popen
11593         * lib/popen.c (rpl_popen): No need to worry about popen being a
11594         macro.
11595         Reported by Bruno Haible.
11596
11597 2009-08-20  Eric Blake  <ebb9@byu.net>
11598
11599         build: avoid some compiler warnings
11600         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
11601         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
11602         type.
11603         (new_exclude_segment, excluded_file_pattern_p)
11604         (excluded_file_name_p): Reduce scope.
11605         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
11606         old-style declaration.
11607
11608 2009-08-20  Simon Josefsson  <simon@josefsson.org>
11609
11610         * tests/test-exclude1.sh: Handle Windows EOL.
11611         * tests/test-exclude2.sh: Likewise.
11612         * tests/test-exclude3.sh: Likewise.
11613         * tests/test-exclude4.sh: Likewise.
11614         * tests/test-exclude5.sh: Likewise.
11615         * tests/test-exclude6.sh: Likewise.
11616         * tests/test-exclude7.sh: Likewise.
11617
11618 2009-08-19  Akim Demaille  <demaille@gostai.com>
11619
11620         bootstrap: find sha1sum when named gsha1sum.
11621         * bootstrap (find_tool): New.
11622         ($SHA1SUM): New.
11623         Use it.
11624
11625 2009-08-20  Jim Meyering  <meyering@redhat.com>
11626
11627         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
11628         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
11629         expression that converts "." in a file name to "\." in the resulting
11630         regexp.  Start with a dummy statement, so that prior shell variable
11631         definitions are expanded portably.  Reported by Simon Josefsson.
11632
11633 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
11634
11635         Fix polling for writeability of a screen buffer.
11636         * lib/poll.c: Distinguish input and screen buffers for the
11637         Win32 implementation.
11638         * lib/select.c: Likewise.
11639
11640 2009-08-19  Eric Blake  <ebb9@byu.net>
11641
11642         popen-safer: prevent popen from clobbering std descriptors
11643         * modules/popen-safer: New file.
11644         * lib/popen-safer.c: Likewise.
11645         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
11646         * lib/stdio--.h (popen): Provide override.
11647         * lib/stdio-safer.h (popen_safer): Provide declaration.
11648         * tests/test-popen.c (includes): Partially test this.
11649         * modules/popen-safer-tests: New file, for more tests.
11650         * tests/test-popen-safer.c: Likewise.
11651         * MODULES.html.sh (file stream based Input/Output): Mention it.
11652
11653         tests: test some of the *-safer modules
11654         * modules/fopen-safer (Depends-on): Add fopen.
11655         * modules/fcntl-safer (Depends-on): Add fcntl.
11656         * modules/stdlib-safer (Depends-on): Add stdlib.
11657         (configure.ac): Set indicator.
11658         * modules/unistd-safer (configure.ac): Likewise.
11659         * modules/tmpfile-safer (configure.ac): Likewise.
11660         (Depends-on): Add tmpfile.
11661         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
11662         active.
11663         * tests/test-fopen.c (includes): Test safer versions when they are
11664         in use.
11665         * tests/test-open.c (includes): Likewise.
11666
11667         popen: fix cygwin 1.5 bug when stdin closed
11668         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
11669         * modules/popen: New file.
11670         * modules/popen-tests: Likewise.
11671         * tests/test-popen.c: Likewise.
11672         * m4/popen.m4: Likewise.
11673         * lib/popen.c: Likewise.
11674         * lib/stdio.in.h (popen): New declaration.
11675         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
11676         * modules/stdio (Makefile.am): Likewise.
11677         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
11678
11679 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
11680
11681         maint.mk: give full control over update-copyright exclusions
11682         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
11683         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
11684         (update-copyright): Don't force inclusion of top-level
11685         ChangeLog.  Don't force exclusion of all COPYING files, but make
11686         them the default exclusion instead.
11687
11688 2009-08-16  Bruno Haible  <bruno@clisp.org>
11689
11690         Fix test failures on Solaris 10.
11691         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
11692         tests when Solaris iconv() is used.
11693         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
11694         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
11695         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
11696         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
11697         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
11698
11699 2009-08-16  Bruno Haible  <bruno@clisp.org>
11700
11701         Fix test failures on Solaris 10.
11702         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
11703         'tr' program and pass it as first argument.
11704         * tests/test-pipe-filter-gi1.sh: Likewise.
11705         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
11706         program as first argument.
11707         * tests/test-pipe-filter-gi1.c (main): Likewise.
11708
11709 2009-08-16  Eric Blake  <ebb9@byu.net>
11710
11711         fpurge: fix previous commits
11712         * modules/fpurge (Makefile.am): Make replacement conditional,
11713         partially reverting 2007-04-29 change; missed in previous
11714         attempt.
11715         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
11716         is missing.
11717
11718 2009-08-16  Bruno Haible  <bruno@clisp.org>
11719
11720         Clarify fpurge's effect on the file position.
11721         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
11722         * tests/test-fpurge.c (main): Make a second pass for checking the file
11723         position.
11724
11725 2009-08-16  Bruno Haible  <bruno@clisp.org>
11726
11727         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
11728         declaration of fpurge is missing.
11729         * tests/test-fpurge.c (main): Check that the file has not more contents
11730         than expected. Close the file before removing it.
11731
11732 2009-08-15  Eric Blake  <ebb9@byu.net>
11733
11734         fpurge: don't wrap working cygwin implementation
11735         * lib/fpurge.c (fpurge): Fix comment typo.
11736         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
11737         1.7 to avoid replacement.
11738         * tests/test-fpurge.c (main): Enhance test.
11739
11740 2009-08-15  Eric Blake  <ebb9@byu.net>
11741         and Jim Meyering  <meyering@redhat.com>
11742
11743         test-update-copyright: skip if perl is insufficient
11744         * tests/test-update-copyright.sh: Failure to run maintainer tool
11745         should not cause testsuite failure on cygwin 1.5.
11746
11747 2009-08-14  Eric Blake  <ebb9@byu.net>
11748
11749         doc: mention more functions added in cygwin 1.7.0
11750         * doc/posix-headers/limits.texi (limits.h): Update for recent
11751         cygwin additions.
11752         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
11753         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
11754         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
11755         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
11756         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
11757
11758 2009-08-14  Eric Blake  <ebb9@byu.net>
11759
11760         maint.mk: simplify update-copyright rule
11761         * top/maint.mk (update-copyright-local): Delete, and document how
11762         to do it in cfg.mk instead.
11763         (update-copyright-exclude-regexp): Delete, and document how to do
11764         it in .x-update-copyright instead.
11765         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
11766         exclude ChangeLog.
11767
11768 2009-08-14  Bruno Haible  <bruno@clisp.org>
11769
11770         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
11771
11772 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11773
11774         maint.mk: support update-copyright-env
11775         * top/maint.mk (update-copyright-env): Define place-holder.
11776         (update-copyright): Expand $(update-copyright-env) before
11777         invoking update-copyright.
11778
11779 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11780
11781         update-copyright: implement forced reformatting
11782         * build-aux/update-copyright: Implement and document
11783         UPDATE_COPYRIGHT_FORCE.
11784         * tests/test-update-copyright.sh: Test it.
11785
11786 2009-08-14  Eric Blake  <ebb9@byu.net>
11787         and Bruno Haible  <bruno@clisp.org>
11788
11789         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
11790         * tests/test-locale.c: Revert previous patch related to NULL.
11791         * tests/test-stdio.c: Likewise.
11792         * tests/test-stdlib.c: Likewise.
11793         * tests/test-string.c: Likewise.
11794         * tests/test-unistd.c: Likewise.
11795         * modules/time-tests (Depends-on): Add verify.
11796         * modules/wchar-tests (Depends-on): Likewise.
11797         * tests/test-time.c: Test for NULL compliance.
11798         * tests/test-wchar.c: Likewise.
11799         * modules/locale (Depends-on): Add stddef.
11800         * modules/stdio (Depends-on): Likewise.
11801         * modules/stdlib (Depends-on): Likewise.
11802         * modules/string (Depends-on): Likewise.
11803         * modules/time (Depends-on): Likewise.
11804         * modules/unistd (Depends-on): Likewise.
11805         * modules/wchar (Depends-on): Likewise.
11806         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
11807         * lib/stdlib.in.h (includes): Likewise.
11808         * lib/string.in.h (includes): Likewise.
11809         * lib/time.in.h (includes): Likewise.
11810         * lib/unistd.in.h (includes): Likewise.
11811         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
11812         replaced.
11813         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
11814         * m4/stddef_h.m4: New file.
11815         * modules/stddef: Likewise.
11816         * lib/stddef.in.h: Likewise.
11817         * modules/stddef-tests: Likewise.
11818         * tests/test-stddef.c: Likewise.
11819         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
11820         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
11821         * doc/posix-headers/locale.texi (locale.h): Likewise.
11822         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
11823         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
11824         * doc/posix-headers/string.texi (string.h): Likewise.
11825         * doc/posix-headers/time.texi (time.h): Likewise.
11826         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
11827         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
11828
11829 2009-08-14  Eric Blake  <ebb9@byu.net>
11830
11831         doc: improve git diff of texinfo files
11832         * .gitattributes: Add rule for *.texi files, with hint on how to
11833         use it.
11834         Copied from m4, and based on a report by Bruno Haible.
11835
11836 2009-08-14  Bruno Haible  <bruno@clisp.org>
11837
11838         Disable multithread support by default on Cygwin 1.5.x for real.
11839         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
11840
11841 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
11842
11843         update-copyright: much ado about intervals
11844         * build-aux/update-copyright: Implement and document
11845         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
11846         of copyright year intervals.
11847         Also, document UPDATE_COPYRIGHT_YEAR.
11848         * tests/test-update-copyright.sh: Test it.
11849
11850         update-copyright: convert 2-digit to 4-digit years
11851         * build-aux/update-copyright: Implement and document.
11852         * tests/test-update-copyright.sh: Update.
11853
11854 2009-08-14  Jim Meyering  <meyering@redhat.com>
11855
11856         test-exclude: avoid coreutils "make check" failure
11857         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
11858         just as in test-argmatch.c.
11859
11860 2009-08-13  Eric Blake  <ebb9@byu.net>
11861
11862         test-dup2: fix bad assumption
11863         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
11864         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
11865
11866         test-version-etc: fix CRLF portability issue
11867         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
11868         recognize \r.
11869         * tests/test-argp-version-etc-1.sh: Likewise.
11870
11871         getopt: update client modules
11872         * modules/argp (Depends-on): Use getopt-gnu.
11873         * modules/git-merge-changelog (Depends-on): Likewise.
11874         * modules/long-options (Depends-on): Likewise.
11875         * modules/xstrtol (Depends-on): Likewise.
11876
11877 2009-08-13  Simon Josefsson  <simon@josefsson.org>
11878
11879         * tests/test-version-etc.sh: Don't fail on different
11880         project/version.  Don't fail on CRLF differences.  Rewrite to use
11881         multiple -e instead of multiple sed forks, suggested by Eric Blake
11882         <ebb9@byu.net>.
11883         * tests/test-argp-version-etc-1.sh: Likewise.
11884
11885 2009-08-13  Simon Josefsson  <simon@josefsson.org>
11886
11887         * tests/test-version-etc.sh: Don't fail on different
11888         project/version.
11889
11890 2009-08-12  Bruno Haible  <bruno@clisp.org>
11891
11892         Tests for modules 'getopt-posix', 'getopt-gnu'.
11893         * modules/getopt-posix-tests: New file.
11894         * tests/test-getopt.c: New file.
11895         * tests/test-getopt.h: New file.
11896         * tests/test-getopt_long.h: New file.
11897
11898         New modules 'getopt-posix', 'getopt-gnu'.
11899         * modules/getopt-gnu: New file, renamed from modules/getopt.
11900         * modules/getopt-posix: New file.
11901         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
11902         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
11903         (gl_GETOPT): Remove macro.
11904         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
11905         Disable the test against BSD systems that declare optreset. Test
11906         against mingw bug. Test against lack of support of optional arguments
11907         on many platforms.
11908         * doc/glibc-headers/getopt.texi: Update module name and list of
11909         relevant platforms.
11910         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
11911         'getopt-gnu' and more portability problems.
11912         * NEWS: Mention the changes.
11913
11914 2009-08-12  Bruno Haible  <bruno@clisp.org>
11915
11916         Ensure that optarg etc. get declared by <unistd.h>.
11917         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
11918         AC_USE_SYSTEM_EXTENSIONS.
11919         * modules/getopt (Depends-on): Add 'extensions'.
11920
11921 2009-08-12  Bruno Haible  <bruno@clisp.org>
11922
11923         Avoid test link errors.
11924         * modules/pipe-filter-ii-tests (Makefile.am): Define
11925         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
11926         * modules/pipe-filter-gi-tests (Makefile.am): Define
11927         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
11928         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11929
11930 2009-08-12  Bruno Haible  <bruno@clisp.org>
11931
11932         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
11933         gl_GETOPT_SUBSTITUTE before.
11934         (gl_GETOPT): Use it.
11935         * m4/argp.m4 (gl_ARGP): Update.
11936         Reported by Sergey Poznyakoff.
11937
11938         * m4/getopt.m4: Reorder macros.
11939         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
11940         (gl_GETOPT_SUBSTITUTE): Remove macro.
11941
11942 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
11943
11944         Minor improvement in gitlog-to-changelog
11945
11946         * build-aux/gitlog-to-changelog: New option `--format' makes
11947         output format string configurable.
11948
11949 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
11950
11951         Optimize exclude: use hash tables for non-wildcard patterns.
11952
11953         * lib/exclude.c: Include hash.h and mbuiter.h
11954         (struct exclude_pattern, exclude_segment): New data types.
11955         (struct exclude): Rewrite.
11956         (fnmatch_pattern_has_wildcards): New function.
11957         (new_exclude_segment, free_exclude_segment): New functions.
11958         (excluded_file_pattern_p, excluded_file_name_p): New functions.
11959         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
11960         * lib/exclude.h (is_fnmatch_pattern): New prototype.
11961         * modules/exclude: Depend on hash and mbuiter.
11962
11963         * modules/exclude-tests: New file.
11964         * tests/test-exclude.c: New file.
11965         * tests/test-exclude1.sh: New file.
11966         * tests/test-exclude2.sh: New file.
11967         * tests/test-exclude3.sh: New file.
11968         * tests/test-exclude4.sh: New file.
11969         * tests/test-exclude5.sh: New file.
11970         * tests/test-exclude6.sh: New file.
11971         * tests/test-exclude7.sh: New file.
11972
11973 2009-08-12  Bruno Haible  <bruno@clisp.org>
11974
11975         Ensure that getopt() gets declared by <unistd.h>.
11976         * lib/unistd.in.h: Conditionally include getopt.h.
11977         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
11978         Set GNULIB_UNISTD_H_GETOPT.
11979         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
11980         GNULIB_UNISTD_H_GETOPT.
11981         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
11982
11983 2009-08-12  Bruno Haible  <bruno@clisp.org>
11984
11985         Clarify logic.
11986         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
11987         gl_replace_getopt instead of GETOPT_H.
11988
11989 2009-08-12  Bruno Haible  <bruno@clisp.org>
11990
11991         * m4/getopt.m4: Add comments.
11992
11993 2009-08-12  Bruno Haible  <bruno@clisp.org>
11994
11995         Disable multithread support by default on Cygwin 1.5.x.
11996         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
11997         set gl_use_threads=no if not specified otherwise.
11998
11999 2009-08-11  Bruno Haible  <bruno@clisp.org>
12000
12001         Avoid compilation error on NetBSD 5.0.
12002         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
12003         * tests/test-stdio.c: Likewise.
12004         * tests/test-stdlib.c: Likewise.
12005         * tests/test-string.c: Likewise.
12006         * tests/test-unistd.c: Likewise.
12007         Reported by Greg Troxel <gdt@ir.bbn.com>
12008         at <https://savannah.gnu.org/support/?106973>.
12009
12010 2009-08-11  Bruno Haible  <bruno@clisp.org>
12011
12012         * modules/dup2-tests (Depends-on): Remove close.
12013
12014         Undo 2009-07-19 commit.
12015         * modules/acl-tests (Depends-on): Remove close.
12016         * modules/binary-io-tests (Depends-on): Likewise.
12017         * modules/closein-tests (Depends-on): Likewise.
12018         * modules/flock-tests (Depends-on): Likewise.
12019         * modules/fsync-tests (Depends-on): Likewise.
12020         * modules/lseek-tests (Depends-on): Likewise.
12021         * modules/pipe-tests (Depends-on): Likewise.
12022         * modules/posix_spawn-tests (Depends-on): Likewise.
12023         * modules/posix_spawnp-tests (Depends-on): Likewise.
12024         * modules/stat-time-tests (Depends-on): Likewise.
12025         * modules/yesno-tests (Depends-on): Likewise.
12026
12027 2009-08-10  Bruno Haible  <bruno@clisp.org>
12028
12029         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
12030
12031 2009-08-10  Bruno Haible  <bruno@clisp.org>
12032
12033         Fix a gcc warning.
12034         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
12035
12036 2009-08-10  Bruno Haible  <bruno@clisp.org>
12037
12038         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
12039         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
12040         not only the first time.
12041         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
12042         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
12043         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
12044         is 1, not only the the first time.
12045
12046 2009-08-10  Bruno Haible  <bruno@clisp.org>
12047
12048         Make it possible to use module 'gethostname' without module 'close'.
12049         * lib/unistd.in.h (close): Evoke a link error only if
12050         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
12051         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
12052         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12053         * modules/unistd (Makefile.am): Substitute
12054         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12055         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
12056         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
12057         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
12058         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12059         * modules/sys_ioctl (Makefile.am): Substitute
12060         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12061         * modules/socket (configure.ac): On native Windows, set
12062         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
12063         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12064         Reported by Sam Steingold <sds@gnu.org>.
12065
12066 2009-08-10  Bruno Haible  <bruno@clisp.org>
12067
12068         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
12069         * modules/ioctl (configure.ac): Likewise.
12070
12071 2009-08-10  Bruno Haible  <bruno@clisp.org>
12072
12073         Avoid collision between gnulib wrapper and libintl wrapper.
12074         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
12075         already defined in intl/printf.c.
12076         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
12077         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
12078
12079 2009-08-09  Bruno Haible  <bruno@clisp.org>
12080
12081         Make <sys/select.h> really self-contained, also on Solaris 10.
12082         * lib/sys_select.in.h: Include <string.h>.
12083         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
12084         Solaris 10 problem.
12085         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
12086         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
12087         Reported by Jim Meyering.
12088
12089 2009-08-09  Bruno Haible  <bruno@clisp.org>
12090
12091         Avoid warnings from 'aclocal' that are due to a use of macro name
12092         AM_XGETTEXT_OPTION that is not defined in automake.
12093         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
12094         automake.
12095         * modules/error (configure.ac): Likewise.
12096         * modules/propername (configure.ac): Likewise.
12097         * modules/vasprintf (configure.ac): Likewise.
12098         * modules/verror (configure.ac): Likewise.
12099         * modules/xprintf (configure.ac): Likewise.
12100         * modules/xvasprintf (configure.ac): Likewise.
12101
12102 2009-08-08  Bruno Haible  <bruno@clisp.org>
12103
12104         Avoid compilation error in C++ mode.
12105         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
12106         Reported by Sam Steingold <sds@gnu.org>.
12107
12108 2009-08-08  Bruno Haible  <bruno@clisp.org>
12109
12110         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
12111         for the various Unix platforms.
12112         * doc/posix-headers/limits.texi: Update platforms list regarding
12113         HOST_NAME_MAX.
12114         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12115
12116 2009-08-07  Jim Meyering  <meyering@redhat.com>
12117
12118         selinux-at: fix typo in a comment
12119         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
12120         Spotted by Paolo Bonzini.
12121
12122         selinux-at: remove redundant m4 code, add documentation
12123         * modules/selinux-at (configure.ac): Remove redundant code.
12124         LIB_SELINUX is already set via the dependent module, selinux-h.
12125         (Include): Add quotes around selinux-at.h.
12126         * lib/selinux-at.h: Add documentation.
12127         Reported by Bruno Haible in
12128         http://marc.info/?l=gnulib-bug&m=124958988300749
12129
12130 2009-08-07  Bruno Haible  <bruno@clisp.org>
12131
12132         Avoid link error on MacOS X 10.3 and 10.4.
12133         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
12134         on non-ELF systems.
12135         * lib/argp-pv.c (argp_program_version): Likewise.
12136         Reported by Simon Josefsson.
12137
12138 2009-08-07  Simon Josefsson  <simon@josefsson.org>
12139
12140         * tests/test-version-etc.sh: Use $EXEEXT.
12141
12142 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
12143
12144         update-copyright: update documentation to point to maint.mk
12145         * build-aux/update-copyright: Here.
12146
12147 2009-08-06  Jim Meyering  <meyering@redhat.com>
12148
12149         maint.mk: support update-copyright-local
12150         * top/maint.mk (update-copyright-local): Define place-holder.
12151         (update-copyright): Depend on $(update-copyright-local).
12152
12153 2009-08-06  Jim Meyering  <meyering@redhat.com>
12154
12155         selinux-at: new module
12156         Initially written for coreutils, this module will soon be
12157         used by findutils, too.
12158         * MODULES.html.sh [Misc]: Add selinux-at.
12159         * lib/selinux-at.h: New file, from coreutils.
12160         * lib/selinux-at.c: Likewise.
12161         * modules/selinux-at: Likewise.
12162         (License): Change from LGPL to GPL, since it depends
12163         on the GPL'd openat module.
12164
12165         doc: update README
12166         * README: Remove references to cogito.
12167         Remove cvs-repo-updating instructions from 2007.
12168         Don't imply that CVS is better if you have limited disk space.
12169
12170 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12171
12172         update-copyright: support C-style comments
12173         * build-aux/update-copyright: Implement and document.
12174         * tests/test-update-copyright.sh: Test.
12175
12176 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12177
12178         update-copyright: support omitted "(C)"
12179         * build-aux/update-copyright: Implement and document.  Also,
12180         allow variable whitespace before "(C)".
12181         * tests/test-update-copyright.sh: Test.
12182
12183 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12184
12185         update-copyright: don't trip on non-FSF copyright statements
12186         * build-aux/update-copyright: Fix so that the first correctly
12187         formatted FSF copyright statement is recognized no matter what
12188         appears before it.  Update documentation.
12189         * tests/test-update-copyright.sh: Test that.
12190
12191 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12192
12193         update-copyright: clean up code a little
12194         * build-aux/update-copyright: Append "_re" to the name of any
12195         variable holding a regular expression.
12196         Replace "old" and "new" with "stmt" in variable names.
12197         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
12198         handled correctly.
12199         Format code more consistently.
12200
12201 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12202
12203         update-copyright-tests: improve portability
12204         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
12205         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
12206
12207 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12208
12209         update-copyright: support @copyright{} and &copy;
12210         * build-aux/update-copyright: Implement and document.
12211         * tests/test-update-copyright.sh: Test.
12212
12213 2009-08-04  Jim Meyering  <meyering@redhat.com>
12214
12215         update-copyright-tests: correctly test EOL=\r\n handling
12216         * tests/test-update-copyright.sh: Put \r at the end of some lines
12217         for the dos-eol tests.  Based on a patch by Joel E. Denny.
12218
12219         maint.mk: make update-copyright exclusion list more configurable
12220         * top/maint.mk (update-copyright): Default to excluding COPYING,
12221         but allow an override, in case someone does want to update that file.
12222
12223         maint.mk: don't update copyright date in COPYING
12224         * top/maint.mk (update-copyright): Exclude COPYING.
12225
12226         maint.mk: add a copyright-updating rule
12227         * top/maint.mk (update-copyright): New rule.
12228         Derived from coreutils/Makefile.am.
12229
12230         update-copyright: rename some variables
12231         * build-aux/update-copyright: Rename a few variables for clarity.
12232         Tweak syntax.  List Joel E. Denny as coauthor.
12233
12234 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12235
12236         update-copyright: fix bug for 2-digit last year and add tests
12237         * build-aux/update-copyright: Fix bug.
12238         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
12239         specified.
12240         * modules/update-copyright-tests: New
12241         * tests/test-update-copyright.sh: New.
12242
12243 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12244
12245         update-copyright: handle leading tabs in line prefix
12246         * build-aux/update-copyright: Count leading tabs as 8 spaces
12247         when computing margin.  This helps with the formatting of
12248         ChangeLogs, for example.
12249         Fix documentation a little.
12250
12251 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12252
12253         update-copyright: support EOL=\r\n
12254         * build-aux/update-copyright: Implement that.
12255
12256 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12257
12258         update-copyright: automatically format copyright statements
12259         * build-aux/update-copyright: Implement that.
12260         Also, be a little more predictable and safer by always failing
12261         when the full copyright format is not perfectly recognized as an
12262         unbroken whole.  Discussed at
12263         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
12264         Rewrite documentation.
12265
12266 2009-08-03  Bruno Haible  <bruno@clisp.org>
12267
12268         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
12269
12270 2009-08-02  Bruno Haible  <bruno@clisp.org>
12271
12272         Tests for module 'uname'.
12273         * modules/uname-tests: New file.
12274         * tests/test-uname.c: New file.
12275
12276         New module 'uname'.
12277         * lib/uname.c: New file.
12278         * m4/uname.m4: New file.
12279         * modules/uname: New file.
12280         * doc/posix-functions/uname.texi: Mention the new module.
12281
12282 2009-08-02  Bruno Haible  <bruno@clisp.org>
12283
12284         Tests for module 'sys_utsname'.
12285         * modules/sys_utsname-tests: New file.
12286         * tests/test-sys_utsname.c: New file.
12287
12288         New module 'sys_utsname'.
12289         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
12290         * m4/sys_utsname_h.m4: New file.
12291         * modules/sys_utsname: New file.
12292         * doc/posix-headers/sys_utsname.texi: Mention the new module.
12293
12294 2009-08-02  Bruno Haible  <bruno@clisp.org>
12295
12296         Implicitly initialize the sockets library.
12297         * lib/gethostname.c: Include sockets.h.
12298         (rpl_gethostname): Invoke gl_sockets_startup.
12299         * lib/socket.c: Include sockets.h.
12300         (rpl_socket): Invoke gl_sockets_startup.
12301         * modules/gethostname (Depends-on): Add sockets.
12302         * modules/socket (Depends-on): Likewise.
12303         * tests/test-poll.c: Don't include sockets.h.
12304         (main): Don't invoke gl_sockets_startup.
12305         * tests/test-select.c: Don't include sockets.h.
12306         (main): Don't invoke gl_sockets_startup.
12307
12308 2009-08-02  Bruno Haible  <bruno@clisp.org>
12309
12310         Allow multiple calls to gl_sockets_startup.
12311         * lib/sockets.c (initialized_sockets_version): New variable.
12312         (gl_sockets_startup): Do nothing if already called for this or a higher
12313         version.
12314         (gl_sockets_cleanup): Reset initialized_sockets_version.
12315
12316 2009-08-03  Simon Josefsson  <simon@josefsson.org>
12317
12318         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
12319         different project/version.
12320
12321 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
12322             Bruno Haible  <bruno@clisp.org>
12323
12324         Tests for module 'pipe-filter-gi'.
12325         * modules/pipe-filter-gi-tests: New file.
12326         * tests/test-pipe-filter-gi1.sh: New file.
12327         * tests/test-pipe-filter-gi1.c: New file.
12328         * tests/test-pipe-filter-gi2.sh: New file.
12329         * tests/test-pipe-filter-gi2-main.c: New file.
12330         * tests/test-pipe-filter-gi2-child.c: New file.
12331
12332         New module 'pipe-filter-gi'.
12333         * lib/pipe-filter-gi.c: New file.
12334         * modules/pipe-filter-gi: New file.
12335
12336 2009-08-02  Bruno Haible  <bruno@clisp.org>
12337             Paolo Bonzini  <bonzini@gnu.org>
12338
12339         Tests for module 'pipe-filter-ii'.
12340         * modules/pipe-filter-ii-tests: New file.
12341         * tests/test-pipe-filter-ii1.sh: New file.
12342         * tests/test-pipe-filter-ii1.c: New file.
12343         * tests/test-pipe-filter-ii2.sh: New file.
12344         * tests/test-pipe-filter-ii2-main.c: New file.
12345         * tests/test-pipe-filter-ii2-child.c: New file.
12346
12347         New module 'pipe-filter-ii'.
12348         * lib/pipe-filter.h: New file.
12349         * lib/pipe-filter-ii.c: New file.
12350         * lib/pipe-filter-aux.h: New file.
12351         * modules/pipe-filter-ii: New file.
12352
12353 2009-08-02  Simon Josefsson  <simon@josefsson.org>
12354
12355         * lib/gc-libgcrypt.c: Change copyright to FSF.
12356         * lib/gc-gnulib.c: Likewise.
12357
12358 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
12359
12360         * lib/gethostname.c: Include limits.h.
12361
12362 2009-08-02  Simon Josefsson  <simon@josefsson.org>
12363             Bruno Haible  <bruno@clisp.org>
12364
12365         Ensure HOST_NAME_MAX as part of the gethostname module.
12366         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
12367         define also HOST_NAME_MAX.
12368         * tests/test-gethostname.c: Include <limits.h>.
12369         (main): Check also HOST_NAME_MAX.
12370         * doc/posix-headers/limits.texi: Document the mingw problem.
12371
12372 2009-08-02  Bruno Haible  <bruno@clisp.org>
12373
12374         * lib/gethostname.c (gethostname): Fix handling of large len argument.
12375         Add comments.
12376
12377 2009-03-31  Simon Josefsson  <simon@josefsson.org>
12378
12379         * lib/gethostname.c: Add Windows wrapper.
12380         * m4/gethostname.m4: Look for gethostname in -lws2_32.
12381         * modules/gethostname: Depend on sys_socket & errno, for also
12382         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
12383         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
12384
12385 2009-07-31  Jim Meyering  <meyering@redhat.com>
12386
12387         getloadavg: fix symbol name in comment
12388         * lib/getloadavg.c: Correct a typo I introduced when adding
12389         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
12390         Matt Kraai spotted the problem.
12391
12392 2009-07-29  Matt Kraai  <mkraai@beckman.com>
12393
12394         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
12395         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
12396         code also if ! defined N_NAME_POINTER.
12397         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
12398         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
12399         but the n_name member is a 12-byte array.
12400
12401 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
12402
12403         update-copyright: generalize comment handling
12404         * build-aux/update-copyright: Handle copyright statements
12405         within more comment styles.
12406         Document usage.
12407         Report any file with an external copyright holder or parse failure.
12408
12409 2009-07-29  Jim Meyering  <meyering@redhat.com>
12410
12411         mktime: correct setting of REPLACE_MKTIME
12412         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
12413
12414         update-copyright: new module
12415         * modules/update-copyright: New file.
12416         * build-aux/update-copyright: New file.
12417         * MODULES.html.sh (maint+release support): Add update-copyright.
12418
12419 2009-07-27  Bruno Haible  <bruno@clisp.org>
12420
12421         Fix compilation error when <ctime> is used and mktime is replaced.
12422         * lib/time.in.h (mktime): New declaration.
12423         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
12424         REPLACE_MKTIME instead of defining mktime in config.h.
12425         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
12426         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
12427         Reported by Ross McFarland <rwmcfa1@neces.com>.
12428
12429 2009-07-27  Bruno Haible  <bruno@clisp.org>
12430
12431         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
12432         Reported by Matt Kraai <mkraai@beckman.com>.
12433
12434 2009-07-25  Jim Meyering  <meyering@redhat.com>
12435
12436         maint.mk: avoid warnings about missing files
12437         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
12438         diagnostic when .prev-version does not exist.
12439         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
12440         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
12441         nonexistent cfg.mk.
12442         Suggestions from Simon Josefsson.
12443
12444 2009-07-25  Bruno Haible  <bruno@clisp.org>
12445
12446         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
12447         defined as macros. Needed on QNX 6.4.1.
12448         Reported by Matt Kraai <mkraai@beckman.com>.
12449
12450 2009-07-23  Jim Meyering  <meyering@redhat.com>
12451
12452         maint.mk: invoke "make dist" with a working value of XZ_OPT
12453         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
12454
12455 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
12456
12457         Make fseeko.c compile on QNX.
12458         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
12459
12460 2009-07-22  Peter Simons  <simons@cryp.to>
12461
12462         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
12463         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
12464         * lib/md4.h: Likewise.
12465         * lib/md5.h: Likewise.
12466         * lib/sha1.h: Likewise.
12467         * lib/sha256.h: Likewise.
12468         * lib/sha512.h: Likewise.
12469
12470         tests-sha1: don't assign literal string to 'char *' variable
12471         * tests/test-sha1.c (main): Declare locals with "const" to match
12472         attributes of the right hand side.
12473
12474 2009-07-21  Eric Blake  <ebb9@byu.net>
12475
12476         dup2: fix more mingw problems
12477         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
12478         fd to itself.
12479         * doc/posix-functions/dup2.texi (dup2): Document the bug.
12480         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
12481         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
12482         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
12483         care of mingw bugs.
12484
12485 2009-07-21  Jim Meyering  <meyering@redhat.com>
12486
12487         vc-list-files: avoid failure when /bin/sh is dash
12488         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
12489         On some Debian based systems, /bin/sh is a symlink to dash, and running
12490         this command would omit the "/" following each 'tests' prefix:
12491           dash -x build-aux/vc-list-files -C . tests
12492         That is because bash and dash work differently:
12493           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
12494           bash ok
12495           dash odd
12496
12497 2009-07-21  Eric Blake  <ebb9@byu.net>
12498
12499         dup2-tests: test previous patch
12500         * modules/dup2-tests: New file.
12501         * tests/test-dup2.c: Likewise.
12502         * tests/test-open.c (main): Avoid unspecified behavior.
12503         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
12504         test.
12505
12506         dup2: work around mingw and cygwin 1.5 bug
12507         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
12508         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
12509         * modules/unistd (Makefile.am): Substitute it.
12510         * lib/unistd.in.h (dup2): Declare the replacement.
12511         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
12512         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
12513         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
12514         * modules/execute (Depends-on): Add dup2.
12515         * modules/fseterr (Depends-on): Likewise.
12516         * modules/pipe (Depends-on): Likewise.
12517         * modules/posix_spawn-internal (Depends-on): Likewise.
12518
12519 2009-07-21  Bruno Haible  <bruno@clisp.org>
12520
12521         * modules/.gitattributes: New file.
12522
12523 2009-07-20  Bruno Haible  <bruno@clisp.org>
12524
12525         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
12526         (main): Use it.
12527
12528 2009-07-20  Eric Blake  <ebb9@byu.net>
12529
12530         test-pipe: make a bit more robust.
12531         * tests/test-pipe.c (myerr): Allow error messages regardless of
12532         what we do to stderr.
12533         (test_pipe): Rearrange to avoid deadlock.
12534         (child_main): Try a larger read, to ensure we avoided deadlock.
12535         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
12536         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
12537         if misused.
12538
12539 2009-07-19  Jim Meyering  <meyering@redhat.com>
12540
12541         fts: avoid false-positive cycle-detection
12542         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
12543         for each new command line argument.
12544
12545 2009-07-19  Bruno Haible  <bruno@clisp.org>
12546
12547         Fix build error on mingw with the modules sys_select and unistd.
12548         * modules/acl-tests (Depends-on): Add close.
12549         * modules/binary-io-tests (Depends-on): Likewise.
12550         * modules/closein-tests (Depends-on): Likewise.
12551         * modules/flock-tests (Depends-on): Likewise.
12552         * modules/fsync-tests (Depends-on): Likewise.
12553         * modules/lseek-tests (Depends-on): Likewise.
12554         * modules/pipe-tests (Depends-on): Likewise.
12555         * modules/posix_spawn-tests (Depends-on): Likewise.
12556         * modules/posix_spawnp-tests (Depends-on): Likewise.
12557         * modules/stat-time-tests (Depends-on): Likewise.
12558         * modules/yesno-tests (Depends-on): Likewise.
12559
12560 2009-07-19  Bruno Haible  <bruno@clisp.org>
12561
12562         Unify conditionals.
12563         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
12564         macros, not at the compiler macros.
12565         * lib/pipe.c: Likewise.
12566         * lib/execute.c: Likewise.
12567         * lib/spawni.c: Likewise.
12568
12569 2009-07-19  Bruno Haible  <bruno@clisp.org>
12570
12571         Fix handling of closed stdin/stdout/stderr on mingw.
12572         * lib/w32spawn.h: Include unistd.h.
12573         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
12574         file descriptor with O_NOINHERIT flag.
12575         (fd_safer_noinherit): New function, based on fd-safer.c.
12576         (dup_safer_noinherit): New function, based on dup-safer.c.
12577         (undup_safer_noinherit): New function.
12578         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
12579         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
12580         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
12581         instead of fd_safer.
12582         * tests/test-pipe.c: Include <windows.h>.
12583         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
12584
12585         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
12586         from main.
12587         (test_pipe): Pass an extra argument for disambiguation.
12588         (main): Invoke parent_main or child_main.
12589
12590         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
12591         consistently.
12592
12593 2009-07-18  Eric Blake  <ebb9@byu.net>
12594
12595         test-pipe: fix mingw build
12596         * tests/test-pipe.c (main): Avoid fcntl on mingw.
12597
12598 2009-07-18  Bruno Haible  <bruno@clisp.org>
12599
12600         * modules/pipe-tests (Makefile.am): Fix typo.
12601
12602 2009-07-18  Eric Blake  <ebb9@byu.net>
12603
12604         error: fix mingw build
12605         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
12606         Reported by Bruno Haible.
12607
12608         error: avoid undefined use of stdout
12609         * lib/error.c (error, error_at_line): Check that fd 1 is open
12610         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
12611         is handling faults and the close_stdout module wants to report the
12612         detection of closed stdout as an error.
12613
12614 2009-07-17  Eric Blake  <ebb9@byu.net>
12615
12616         pipe: be robust in face of closed fds
12617         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
12618         should cause child to misbehave.
12619         * modules/pipe-tests: New module.
12620         * tests/test-pipe.c: New file.
12621         * tests/test-pipe.sh: New file.
12622         Reported by Akim Demaille.
12623
12624 2009-07-14  Bruno Haible  <bruno@clisp.org>
12625
12626         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
12627         Reported by anonymous kc.
12628
12629 2009-07-07  Jim Meyering  <meyering@redhat.com>
12630
12631         maint.mk: don't look for translatable strings in *.m4 or *.mk
12632         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
12633         when searching for translatable strings.
12634
12635 2009-07-05  Jim Meyering  <meyering@redhat.com>
12636
12637         remove superfluous parentheses in STREQ definition
12638         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
12639         * lib/getugroups.c (STREQ): Likewise.
12640         * lib/fnmatch.c (STREQ): Likewise.
12641         Spotted by Bruno Haible.
12642
12643 2009-07-04  Jim Meyering  <meyering@redhat.com>
12644
12645         argv-iter: new module
12646         * MODULES.html.sh: Add argv-iter.
12647         * lib/argv-iter.c, lib/argv-iter.h: New files.
12648         * modules/argv-iter: New file.
12649         * modules/argv-iter-tests: New file.
12650         * tests/test-argv-iter.c: Test it.
12651
12652 2009-07-04  Bruno Haible  <bruno@clisp.org>
12653
12654         Fix assertion.
12655         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
12656         contains more exact copies of a given entry than file2, leave the extra
12657         copies unpaired rather than aborting.
12658         Reported by Eric Blake.
12659
12660 2009-07-02  Bruno Haible  <bruno@clisp.org>
12661
12662         Speedup git-merge-changelog for git cherry-pick.
12663         * lib/git-merge-changelog.c (struct entries_mapping): New type.
12664         (entries_mapping_get): New function, extracted from compute_mapping.
12665         (entries_mapping_reverse_get): New function.
12666         (compute_mapping): Add a 'full' argument. Return the result in a
12667         'struct entries_mapping'.
12668         (main): Update. Access the mappings through entries_mapping_get.
12669         Reported by Eric Blake.
12670
12671 2009-07-02  Bruno Haible  <bruno@clisp.org>
12672
12673         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
12674         best_i.
12675
12676 2009-07-02  Bruno Haible  <bruno@clisp.org>
12677
12678         Speed up approximate search for matching ChangeLog entries.
12679         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
12680         argument. Call fstrcmp_bounded instead of fstrcmp.
12681         (compute_mapping, try_split_merged_entry, main): Update callers.
12682
12683 2009-07-02  Bruno Haible  <bruno@clisp.org>
12684
12685         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
12686
12687 2009-06-30  Bruno Haible  <bruno@clisp.org>
12688
12689         Reduce the number of uc_is_cased calls.
12690         * lib/unicase.h (casing_suffix_context_t): Add
12691         'first_char_except_ignorable' field.
12692         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
12693         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
12694         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
12695         Update initializer.
12696         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
12697         case-ignorable characters.
12698         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
12699         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
12700         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
12701         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
12702         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
12703
12704 2009-06-30  Bruno Haible  <bruno@clisp.org>
12705
12706         Tests for module 'unicase/ignorable'.
12707         * modules/unicase/ignorable-tests: New file.
12708         * tests/unicase/test-ignorable.c: New file, generated by
12709         gen-uni-tables.
12710
12711         Tests for module 'unicase/cased'.
12712         * modules/unicase/cased-tests: New file.
12713         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
12714         * tests/unicase/test-predicate-part1.h: New file, derived from
12715         tests/unictype/test-predicate-part1.h.
12716         * tests/unicase/test-predicate-part2.h: New file, same as
12717         tests/unictype/test-predicate-part2.h.
12718
12719         Fix evaluation of "Before C" condition of FINAL_SIGMA.
12720         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
12721         (output_casing_properties): New function.
12722         (main): Call it.
12723         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
12724         * lib/unicase/cased.c: Include unictype/bitmap.h.
12725         (uc_is_cased): Define through a bitmap lookup.
12726         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
12727         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
12728         (uc_is_case_ignorable): Define through a bitmap lookup.
12729         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
12730         lib/unictype/bitmap.h.
12731         (Depends-on): Add inline. Clean up.
12732         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
12733         lib/unictype/bitmap.h.
12734         (Depends-on): Add inline. Clean up.
12735         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
12736         recognition.
12737         * tests/unicase/test-u16-tolower.c (main): Likewise.
12738         * tests/unicase/test-u32-tolower.c (main): Likewise.
12739
12740 2009-06-30  Bruno Haible  <bruno@clisp.org>
12741
12742         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
12743         * lib/unicase/u16-casemap.c: Likewise.
12744         * lib/unicase/u32-casemap.c: Likewise.
12745
12746 2009-06-29  Bruno Haible  <bruno@clisp.org>
12747
12748         Define u32_casefold as a wrapper around u32_ct_casefold.
12749         * lib/unicase/u32-casefold.c: Update.
12750         * modules/unicase/u32-casefold (Depends-on): Add
12751         unicase/u32-ct-casefold, unicase/empty-prefix-context,
12752         unicase/empty-suffix-context. Clean up.
12753
12754         Define u16_casefold as a wrapper around u16_ct_casefold.
12755         * lib/unicase/u16-casefold.c: Update.
12756         * modules/unicase/u16-casefold (Depends-on): Add
12757         unicase/u16-ct-casefold, unicase/empty-prefix-context,
12758         unicase/empty-suffix-context. Clean up.
12759
12760         Define u8_casefold as a wrapper around u8_ct_casefold.
12761         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
12762         * lib/unicase/u8-casefold.c: Update.
12763         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
12764         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12765
12766         Define u32_totitle as a wrapper around u32_ct_totitle.
12767         * lib/unicase/u32-totitle.c: Update.
12768         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
12769         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12770
12771         Define u16_totitle as a wrapper around u16_ct_totitle.
12772         * lib/unicase/u16-totitle.c: Update.
12773         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
12774         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12775
12776         Define u8_totitle as a wrapper around u8_ct_totitle.
12777         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
12778         functions.
12779         (FUNC): Delegate to U_CT_TOTITLE.
12780         * lib/unicase/u8-totitle.c: Update.
12781         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
12782         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
12783
12784         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
12785         invocation.
12786         * modules/unicase/u32-tolower (Depends-on): Add
12787         unicase/empty-prefix-context, unicase/empty-suffix-context.
12788
12789         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
12790         invocation.
12791         * modules/unicase/u16-tolower (Depends-on): Add
12792         unicase/empty-prefix-context, unicase/empty-suffix-context.
12793
12794         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
12795         * modules/unicase/u8-tolower (Depends-on): Add
12796         unicase/empty-prefix-context, unicase/empty-suffix-context.
12797
12798         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
12799         invocation.
12800         * modules/unicase/u32-toupper (Depends-on): Add
12801         unicase/empty-prefix-context, unicase/empty-suffix-context.
12802
12803         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
12804         invocation.
12805         * modules/unicase/u16-toupper (Depends-on): Add
12806         unicase/empty-prefix-context, unicase/empty-suffix-context.
12807
12808         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
12809         * modules/unicase/u8-toupper (Depends-on): Add
12810         unicase/empty-prefix-context, unicase/empty-suffix-context.
12811
12812         New module 'unicase/u32-ct-casefold'.
12813         * lib/unicase/u32-ct-casefold.c: New file.
12814         * modules/unicase/u32-ct-casefold: New file.
12815
12816         New module 'unicase/u16-ct-casefold'.
12817         * lib/unicase/u16-ct-casefold.c: New file.
12818         * modules/unicase/u16-ct-casefold: New file.
12819
12820         New module 'unicase/u8-ct-casefold'.
12821         * lib/unicase/u8-ct-casefold.c: New file.
12822         * lib/unicase/u-ct-casefold.h: New file, derived from
12823         lib/unicase/u-casefold.h.
12824         * modules/unicase/u8-ct-casefold: New file.
12825
12826         New module 'unicase/u32-ct-totitle'.
12827         * lib/unicase/u32-ct-totitle.c: New file.
12828         * modules/unicase/u32-ct-totitle: New file.
12829
12830         New module 'unicase/u16-ct-totitle'.
12831         * lib/unicase/u16-ct-totitle.c: New file.
12832         * modules/unicase/u16-ct-totitle: New file.
12833
12834         New module 'unicase/u8-ct-totitle'.
12835         * lib/unicase/u8-ct-totitle.c: New file.
12836         * lib/unicase/u-ct-totitle.h: New file, derived from
12837         lib/unicase/u-totitle.h.
12838         * modules/unicase/u8-ct-totitle: New file.
12839
12840         New module 'unicase/u32-ct-tolower'.
12841         * lib/unicase/u32-ct-tolower.c: New file.
12842         * modules/unicase/u32-ct-tolower: New file.
12843
12844         New module 'unicase/u16-ct-tolower'.
12845         * lib/unicase/u16-ct-tolower.c: New file.
12846         * modules/unicase/u16-ct-tolower: New file.
12847
12848         New module 'unicase/u8-ct-tolower'.
12849         * lib/unicase/u8-ct-tolower.c: New file.
12850         * modules/unicase/u8-ct-tolower: New file.
12851
12852         New module 'unicase/u32-ct-toupper'.
12853         * lib/unicase/u32-ct-toupper.c: New file.
12854         * modules/unicase/u32-ct-toupper: New file.
12855
12856         New module 'unicase/u16-ct-toupper'.
12857         * lib/unicase/u16-ct-toupper.c: New file.
12858         * modules/unicase/u16-ct-toupper: New file.
12859
12860         New module 'unicase/u8-ct-toupper'.
12861         * lib/unicase/u8-ct-toupper.c: New file.
12862         * modules/unicase/u8-ct-toupper: New file.
12863
12864         Add context arguments to u*_casemap functions.
12865         * lib/unicase/unicasemap.h: Include unicase.h.
12866         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
12867         suffix_context arguments.
12868         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
12869         functions.
12870         (FUNC): Add prefix_context and suffix_context arguments. Use
12871         uc_is_cased and uc_is_case_ignorable.
12872         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
12873         * lib/unicase/u16-casemap.c: Likewise.
12874         * lib/unicase/u32-casemap.c: Likewise.
12875         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
12876         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12877         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
12878         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12879         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
12880         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
12881
12882         New module 'unicase/u32-suffix-context'.
12883         * lib/unicase/u32-suffix-context.c: New file.
12884         * modules/unicase/u32-suffix-context: New file.
12885
12886         New module 'unicase/u16-suffix-context'.
12887         * lib/unicase/u16-suffix-context.c: New file.
12888         * modules/unicase/u16-suffix-context: New file.
12889
12890         New module 'unicase/u8-suffix-context'.
12891         * lib/unicase/u8-suffix-context.c: New file.
12892         * lib/unicase/u-suffix-context.h: New file.
12893         * modules/unicase/u8-suffix-context: New file.
12894
12895         New module 'unicase/empty-suffix-context'.
12896         * lib/unicase/empty-suffix-context.c: New file.
12897         * modules/unicase/empty-suffix-context: New file.
12898
12899         New module 'unicase/u32-prefix-context'.
12900         * lib/unicase/u32-prefix-context.c: New file.
12901         * modules/unicase/u32-prefix-context: New file.
12902
12903         New module 'unicase/u16-prefix-context'.
12904         * lib/unicase/u16-prefix-context.c: New file.
12905         * modules/unicase/u16-prefix-context: New file.
12906
12907         New module 'unicase/u8-prefix-context'.
12908         * lib/unicase/u8-prefix-context.c: New file.
12909         * lib/unicase/u-prefix-context.h: New file.
12910         * lib/unicase/context.h: New file.
12911         * modules/unicase/u8-prefix-context: New file.
12912
12913         New module 'unicase/empty-prefix-context'.
12914         * lib/unicase/empty-prefix-context.c: New file.
12915         * modules/unicase/empty-prefix-context: New file.
12916
12917         New module 'unicase/ignorable'.
12918         * lib/unicase/ignorable.c: New file.
12919         * modules/unicase/ignorable: New file.
12920
12921         New module 'unicase/cased'.
12922         * lib/unicase/caseprop.h: New file.
12923         * lib/unicase/cased.c: New file.
12924         * modules/unicase/cased: New file.
12925
12926         New functions for case mapping of substrings.
12927         * lib/unicase.h (casing_prefix_context_t): New type.
12928         (unicase_empty_prefix_context): New variable.
12929         (u8_casing_prefix_context, u16_casing_prefix_context,
12930         u32_casing_prefix_context, u8_casing_prefixes_context,
12931         u16_casing_prefixes_context, u32_casing_prefixes_context): New
12932         declarations.
12933         (casing_suffix_context_t): New type.
12934         (unicase_empty_suffix_context): New variable.
12935         (u8_casing_suffix_context, u16_casing_suffix_context,
12936         u32_casing_suffix_context, u8_casing_suffixes_context,
12937         u16_casing_suffixes_context, u32_casing_suffixes_context,
12938         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
12939         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
12940         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
12941         declarations.
12942
12943 2009-06-28  Jim Meyering  <meyering@redhat.com>
12944
12945         boostrap: indent only with spaces
12946         * build-aux/bootstrap: Indent only with spaces, never TABs.
12947
12948         bootstrap: split long lines
12949         * build-aux/bootstrap: Keep line length < 80.
12950
12951         bootstrap: sync from coreutils
12952         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
12953         just as autoreconf does.  Verify a list of prerequisite
12954         package-name,version-number pairs if defined in bootstrap.conf.
12955         Refer to README-prereq, if prerequisites are not satisfied.
12956
12957 2009-06-27  Eric Blake  <ebb9@byu.net>
12958
12959         tests: add test for bogus NULL definition
12960         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
12961         * tests/test-stdlib.c: Likewise.
12962         * tests/test-string.c: Likewise.
12963         * tests/test-locale.c: Likewise.
12964         * tests/test-unistd.c: Likewise.
12965         * modules/stdio-tests (Depends-on): Add verify.
12966         * modules/stdlib-tests (Depends-on): Likewise.
12967         * modules/string-tests (Depends-on): Likewise.
12968         * modules/locale-tests (Depends-on): Likewise.
12969         * modules/unistd-tests (Depends-on): Likewise.
12970
12971 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
12972
12973         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
12974         self-explaining comment.
12975         * m4/selinux-selinux-h: Update serial.
12976         (gl_LIBSELINUX): New macro, adding a warning for missing development
12977         packages to code extracted from...
12978         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
12979         Add warning for missing development packages here, too.
12980
12981 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
12982
12983         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
12984
12985 2009-06-25  Eric Blake  <ebb9@byu.net>
12986
12987         version-etc: fix regression
12988         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
12989         gcc.
12990         (version_etc): Use it, to catch bugs with trailing NULL.
12991         * lib/version-etc.c (version_etc_arn): Delete unused argument.
12992         (version_etc_va): Fix logic bug.
12993         * modules/version-etc-tests: Add test.
12994         * tests/test-version-etc.c: New file.
12995         * tests/test-version-etc.sh: Likewise.
12996
12997 2009-06-25  Sam Steingold  <sds@gnu.org>
12998
12999         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
13000         mbtowc declaration.
13001
13002 2009-06-25  Eric Blake  <ebb9@byu.net>
13003
13004         fpurge: migrate into <stdio.h>
13005         * lib/fpurge.h: Delete...
13006         * lib/stdio.in.h (fpurge): ...and declare here, instead.
13007         * lib/fpurge.c (fpurge): Change declaring header.
13008         * modules/fpurge (Files): Drop deleted file.
13009         (Depends-on): Add stdio.
13010         (configure.ac): Set witness.
13011         * modules/stdio (Makefile.am): Support fpurge macros.
13012         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
13013         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
13014         * lib/fflush.c: Update client.
13015         * tests/test-fpurge.c: Likewise.
13016         * NEWS: Mention the change.
13017
13018 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13019
13020         * lib/argp-version-etc.c (program_authors): Add const
13021         qualifier.
13022         * lib/version-etc.c: Fix typos in the comments.
13023         * modules/argp-version-etc: Depends on version-etc.
13024
13025 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13026
13027         argp-version-etc: new module.
13028
13029         * lib/argp-version-etc.c: New file.
13030         * lib/argp-version-etc.h: New file.
13031         * modules/argp-version-etc: New file.
13032         * modules/argp-version-etc-tests: New file.
13033         * tests/test-argp-version-etc.c: New test.
13034         * tests/test-argp-version-etc-1.sh: New test.
13035
13036 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13037
13038         Provide additional interfaces and documentation for version-etc
13039         module.
13040
13041         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
13042         interfaces.
13043         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
13044         prototypes.
13045
13046 2009-06-24  Bruno Haible  <bruno@clisp.org>
13047
13048         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
13049         HAVE_LIB${NAME} macro.
13050         Reported by Sam Steingold <sds@gnu.org>.
13051
13052 2009-06-23  Simon Josefsson  <simon@josefsson.org>
13053
13054         * modules/hash-tests (test_hash_LDADD): Link to libintl when
13055         needed.
13056
13057 2009-06-21  Bruno Haible  <bruno@clisp.org>
13058
13059         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
13060         work.
13061         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
13062         together with LIB${NAME}, LTLIB${NAME}.
13063         Reported by Sam Steingold <sds@gnu.org>.
13064
13065 2009-06-20  Jim Meyering  <meyering@redhat.com>
13066
13067         tests: make sc_require_test_exit_idiom more generic
13068         * top/maint.mk (Exit_witness_file): New overridable variable.
13069         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
13070         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
13071
13072 2009-06-19  Jim Meyering  <meyering@redhat.com>
13073
13074         hash: reverse order of src/dst parameters in an internal interface
13075         * lib/hash.c (transfer_entries): Reverse order of parameters to
13076         put DST before SRC.  Adjust callers.
13077
13078         tests: test-hash: avoid wholesale duplication
13079         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
13080         Instead, use a loop and add a single conditional.
13081
13082         tests: test-hash: allow seed selection via a command line argument
13083         * tests/test-hash.c (get_seed): New function.
13084         (main): Use it.
13085
13086 2009-06-19  Eric Blake  <ebb9@byu.net>
13087
13088         hash: avoid memory leak on allocation failure
13089         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
13090         failure.  Factor repeated algorithm...
13091         (transfer_entries): ...into new helper routine.
13092         (hash_delete): React to hash_rehash return value.
13093
13094         hash: reduce memory pressure in hash_rehash no-op case
13095         * lib/hash.c (next_prime): Avoid overflow.
13096         (hash_initialize): Factor bucket size computation...
13097         (compute_bucket_size): ...into new helper function.
13098         (hash_rehash): Use new function and open coding to reduce memory
13099         pressure, and avoid a memory leak in USE_OBSTACK code.
13100         Reported by Jim Meyering.
13101
13102 2009-06-18  Eric Blake  <ebb9@byu.net>
13103
13104         hash: make rotation more obvious
13105         * modules/hash (Depends-on): Add bitrotate and stdint.
13106         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
13107         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
13108         (SIZE_MAX): Rely on headers for definition.
13109         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
13110         (raw_hasher): Use rotr_sz.
13111         Suggested by Jim Meyering.
13112
13113         hash: fix memory leak in last patch
13114         * lib/hash.c (hash_rehash): Avoid memory leak.
13115
13116         hash: avoid no-op rehashing
13117         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
13118
13119         hash: provide default callback functions
13120         * lib/hash.c (raw_hasher, raw_comparator): New functions.
13121         (hash_initialize): Use them as defaults.
13122         * tests/test-hash.c (main): Test this.
13123
13124         hash: minor optimization
13125         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
13126         when possible.
13127         (hash_initialize): Document this promise.
13128         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
13129         * tests/test-hash.c (hash_compare_strings): Test this.
13130
13131 2009-06-18  Bruno Haible  <bruno@clisp.org>
13132
13133         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
13134         going to be replaced anyway.
13135
13136 2009-06-18  Bruno Haible  <bruno@clisp.org>
13137
13138         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
13139         in one place.
13140         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
13141         be replaced anyway.
13142
13143 2009-06-18  Eric Blake  <ebb9@byu.net>
13144
13145         hash: check for resize before insertion
13146         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
13147         threshold before insertion, so that a pathological hash_rehash
13148         that fills every bucket can still trigger another rehash.
13149
13150 2009-06-18  Jim Meyering  <meyering@redhat.com>
13151
13152         hash-tests: add a loop around the small tests
13153         * tests/test-hash.c (main): Repeat small tests with selected
13154         small initial table sizes.
13155
13156 2009-06-17  Eric Blake  <ebb9@byu.net>
13157
13158         hash: minor cleanups
13159         * lib/hash.h (hash_entry): Make opaque, by moving...
13160         * lib/hash.c (hash_entry): ...here.
13161         (hash_insert): Clarify restrictions on what can be inserted.
13162         (hash_get_next): Clarify when it is safe to remove an element
13163         during traversal.
13164         (check_tuning): Skip verification when tuning is known safe.
13165         (hash_initialize): Clarify restrictions on tuning.
13166
13167 2009-06-17  Jim Meyering  <jim@meyering.net>
13168         and Eric Blake  <ebb9@byu.net>
13169
13170         hash-tests: new module
13171         * modules/hash-tests: New file.
13172         * tests/test-hash.c: New file.
13173
13174 2009-06-17  Eric Blake  <ebb9@byu.net>
13175
13176         strstr-simple: document new module
13177         * MODULES.html.sh: Document new module.
13178
13179         strstr, strcasestr: replace on platforms with broken memchr
13180         * modules/strstr: Split into...
13181         * modules/strstr-simple: ...new module that does not care about
13182         performance, but does care about glibc bug.
13183         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
13184         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
13185         if platform memchr is broken, per Debian bug 521737.
13186         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
13187         memchr.
13188         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
13189         * doc/posix-functions/strstr.texi (strstr): Document the fix.
13190         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
13191         * modules/mountlist (Depends-on): Add strstr-simple.
13192         * modules/gen-uni-tables (Depends-on): Likewise.
13193         * modules/argz (Depends-on): Add strstr.
13194
13195 2009-06-17  Bruno Haible  <bruno@clisp.org>
13196
13197         * modules/posix_spawn-internal (Depends-on): Add errno.
13198
13199 2009-06-17  Bruno Haible  <bruno@clisp.org>
13200
13201         Define missing ESTALE on Interix 3.5.
13202         * lib/errno.in.h (ESTALE): Assign a value if missing.
13203         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
13204         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
13205         missing.
13206         * doc/posix-headers/errno.texi: Mention the Interix bug.
13207         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
13208
13209 2009-06-15  Eric Blake  <ebb9@byu.net>
13210
13211         memchr, memchr2: add valgrind exception
13212         * lib/memchr.valgrind: New file.
13213         * lib/memchr2.valgrind: New file.
13214         * modules/memchr (Files): Distribute valgrind file.
13215         * modules/memchr2 (Files): Likewise.
13216
13217         docs: memchr is no longer obsolete
13218         * MODULES.html.sh: Move memchr from obsolete to string.h section.
13219         * lib/string.in.h (memchr): Simplify logic.
13220
13221 2009-06-14  Jim Meyering  <meyering@redhat.com>
13222
13223         link-follow: fix the "checking..." message to not mention trailing slash
13224         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
13225         never considered trailing slashes.
13226
13227 2009-06-14  Bruno Haible  <bruno@clisp.org>
13228
13229         * m4/memchr.m4: Mention also the bug on IA-64.
13230         * doc/posix-functions/memchr.texi: Likewise.
13231
13232 2009-06-12  Eric Blake  <ebb9@byu.net>
13233
13234         memchr: detect broken x86_64 and alpha implementations
13235         * modules/memchr-tests (Depends-on): Move mmap detection...
13236         * modules/memchr (Depends-on): ...here.
13237         (configure.ac): Set indicator.
13238         * lib/string.in.h (memchr): Declare replacement.
13239         * modules/string (Makefile.am): Trigger replacement.
13240         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
13241         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
13242         bugs.
13243         * doc/posix-functions/memchr.texi (memchr): Document the bug.
13244         * modules/getpagesize (License): Relax license.
13245
13246 2009-06-11  Bruno Haible  <bruno@clisp.org>
13247
13248         * lib/idpriv.h: Add more references.
13249
13250 2009-06-08  Bruno Haible  <bruno@clisp.org>
13251
13252         Tests for module 'idpriv-droptemp'.
13253         * modules/idpriv-droptemp-tests: New file.
13254         * tests/test-idpriv-droptemp.sh: New file.
13255         * tests/test-idpriv-droptemp.su.sh: New file.
13256         * tests/test-idpriv-droptemp.c: New file.
13257
13258         New module 'idpriv-droptemp'.
13259         * lib/idpriv-droptemp.c: New file.
13260         * modules/idpriv-droptemp: New file.
13261
13262 2009-06-08  Bruno Haible  <bruno@clisp.org>
13263
13264         Tests for module 'idpriv-drop'.
13265         * modules/idpriv-drop-tests: New file.
13266         * tests/test-idpriv-drop.sh: New file.
13267         * tests/test-idpriv-drop.su.sh: New file.
13268         * tests/test-idpriv-drop.c: New file.
13269
13270         New module 'idpriv-drop'.
13271         * lib/idpriv.h: New file.
13272         * lib-idpriv-drop.c: New file.
13273         * m4/idpriv.m4: New file.
13274         * modules/idpriv-drop: New file.
13275
13276 2009-06-08  Bruno Haible  <bruno@clisp.org>
13277
13278         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
13279         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
13280         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
13281         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
13282         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
13283         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
13284         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
13285
13286 2009-06-08  Eric Blake  <ebb9@byu.net>
13287
13288         test-strstr: use memory fence, when possible
13289         * tests/test-strstr.c (main): Use memory fence, in order to be
13290         more likely to trigger Debian bug 521737.
13291         * modules/strstr-tests (Files): Pull in additional files.
13292
13293         memchr: no longer obsolete, for wider field testing
13294         * modules/memchr (Status, Notice): Delete, this module is no
13295         longer obsolete.
13296         * modules/vasnprintf (Depends-on): Add memchr.
13297
13298 2009-06-07  Jim Meyering  <meyering@redhat.com>
13299
13300         hash: declare some functions with the warn_unused_result attribute
13301         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
13302
13303 2009-06-07  Bruno Haible  <bruno@clisp.org>
13304
13305         * tests/test-alignof.c: Don't test int64_t if it does not exist.
13306         Reported by Eric Blake.
13307
13308 2009-06-06  Eric Blake  <ebb9@byu.net>
13309
13310         test-alignof: fix typo with long double
13311         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
13312         compiler error.
13313
13314 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
13315
13316         Escape non-texinfo { and }s.
13317         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
13318         markup error.
13319
13320 2009-06-04  Jim Meyering  <meyering@redhat.com>
13321
13322         gitlog-to-changelog: don't infloop on an empty commit log
13323         * build-aux/gitlog-to-changelog: Warn about an empty log message.
13324         Reported by Boris Petersen <transacid@centerim.org>.
13325
13326 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
13327
13328         version-etc: extend for packagers
13329         Add three new configure options, intended for packagers:
13330           --with-packager="packager name"
13331           --with-packager-version="packager-specific version"
13332           --with-packager-bug-reports="packager bug reporting"
13333         An example with coreutils:
13334           $ ./configure \
13335             --with-packager=Gentoo \
13336             --with-packager-bug-report=http://bugs.gentoo.org/ \
13337             --with-packager-version="patchset 1.6"
13338           $ ./src/ls --version | head -n2
13339           ls (GNU coreutils) 7.1-dirty
13340           Packaged by Gentoo (patchset 1.6)
13341         Note that the bug reporting info via --help doesn't show up because
13342         coreutils uses its own custom emit_bug_reporting_address() implementation
13343         in src/system.h.  If it didn't, it'd look like:
13344           $ ./src/ls --help | tail -n4
13345           Report bugs to <bug-coreutils@gnu.org>.
13346           Report Gentoo bugs to <http://bugs.gentoo.org/>.
13347           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
13348           General help using GNU software: <http://www.gnu.org/gethelp/>.
13349         * lib/version-etc.c: Print new information, if provided.
13350         * m4/version-etc.m4: New file.
13351         * modules/version-etc (Files): Add m4/version-etc.m4.
13352         (configure.ac): Add gl_VERSION_ETC.
13353
13354 2009-05-31  Bruno Haible  <bruno@clisp.org>
13355
13356         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
13357         and 'int64_t'.
13358         * modules/alignof-tests (Dependencies): Add stdint.
13359         Reported by Eric Blake.
13360
13361 2009-05-31  Bruno Haible  <bruno@clisp.org>
13362
13363         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
13364         restriction due to compiler bugs.
13365         Reported by Eric Blake.
13366
13367 2009-05-31  Simon Josefsson  <simon@josefsson.org>
13368             Bruno Haible  <bruno@clisp.org>
13369
13370         Fix test-alignof failure.
13371         * lib/alignof.h (alignof_slot): New macro.
13372         (alignof_type): New macro, with the same semantics as the previous
13373         'alignof'.
13374         (alignof): Alias to alignof_slot.
13375         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
13376         check that the results are usable as constant expressions.
13377
13378 2009-05-31  Bruno Haible  <bruno@clisp.org>
13379
13380         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
13381         * tests/test-memchr.c (main): Check that memchr does not read past the
13382         first occurrence of the byte.
13383         * tests/test-strstr.c (main): Update comment.
13384         Suggested by Eric Blake.
13385
13386 2009-05-30  Bruno Haible  <bruno@clisp.org>
13387
13388         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
13389         detail how to use dumpbin.
13390         Reported by David Byron <dbyron@dbyron.com>.
13391
13392 2009-06-02  Simon Josefsson  <simon@josefsson.org>
13393
13394         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
13395
13396 2009-06-02  Simon Josefsson  <simon@josefsson.org>
13397
13398         * m4/manywarnings.m4: Add GCC 4.4 warnings.
13399
13400 2009-05-28  Bruno Haible  <bruno@clisp.org>
13401
13402         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
13403         build-aux/ files.
13404
13405 2009-05-28  Simon Josefsson  <simon@josefsson.org>
13406
13407         * gnulib-tool (func_import): Transform license on build-aux/ files too.
13408
13409 2009-05-27  Simon Josefsson  <simon@josefsson.org>
13410
13411         * gnulib-tool (sed_transform_main_lib_file)
13412         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
13413         regexps.
13414
13415 2009-05-26  Simon Josefsson  <simon@josefsson.org>
13416
13417         * tests/test-strstr.c: Add another self-test.
13418         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
13419         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
13420
13421 2009-05-23  Bruno Haible  <bruno@clisp.org>
13422
13423         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
13424         change.
13425
13426 2009-05-21  Bruno Haible  <bruno@clisp.org>
13427
13428         Simplify use of mode_t varargs.
13429         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
13430         uses 'mode_t' or 'int'.
13431         * lib/openat.c (openat): Likewise.
13432         * lib/open-safer.c (open_safer): Likewise.
13433         * m4/mode_t.m4: New file.
13434         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
13435         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
13436         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
13437         * modules/open (Files): Add m4/mode_t.m4.
13438         * modules/openat (Files): Likewise.
13439         * modules/fcntl-safer (Files): Likewise.
13440         Suggested by Eric Blake.
13441
13442 2009-05-21  Pádraig Brady  <P@draigbrady.com>
13443
13444         * doc/glibc-functions/fallocate.texi: New file.
13445         * doc/gnulib.texi: Include it.
13446
13447 2009-05-21  Eric Blake  <ebb9@byu.net>
13448             Bruno Haible  <bruno@clisp.org>
13449
13450         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
13451         invocations.
13452         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13453
13454 2009-05-21  Eric Blake  <ebb9@byu.net>
13455             Bruno Haible  <bruno@clisp.org>
13456
13457         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
13458         include_next. Fix of 2008-11-20 commit.
13459         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
13460         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
13461         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
13462         NEXT_MATH_H.
13463         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
13464         instead of NEXT_MATH_H.
13465
13466 2009-05-21  Bruno Haible  <bruno@clisp.org>
13467
13468         Avoid redefinition warnings for SIZE_MAX.
13469         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
13470         Reported by Simon Josefsson.
13471
13472 2009-05-21  Bruno Haible  <bruno@clisp.org>
13473
13474         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
13475         AC_CACHE_VAL.
13476
13477 2009-05-20  Bruno Haible  <bruno@clisp.org>
13478
13479         Make zeroptr.h work on mingw.
13480         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
13481         mprotect.
13482         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
13483         * modules/memchr2-tests (configure.ac): Likewise.
13484         * modules/memcmp-tests (configure.ac): Likewise.
13485         * modules/memmem-tests (configure.ac): Likewise.
13486         * modules/memrchr-tests (configure.ac): Likewise.
13487         Reported by Simon Josefsson.
13488
13489 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13490
13491         * tests/test-glob.c: Include string.h for strcmp prototype.
13492
13493 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13494
13495         * modules/getdelim (Depends-on): Add explicit stdint, although it
13496         was implicitly already pulled in via realloc-posix.
13497         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
13498
13499 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13500
13501         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
13502         G. Christensen" <tgc@jupiterrise.com>.
13503         * m4/sys_socket_h.m4: Check for sa_family_t.
13504         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
13505         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
13506         * tests/test-sys_socket.c: Check that sa_family_t works.
13507
13508 2009-05-18  Eric Blake  <ebb9@byu.net>
13509
13510         maint.mk: allow gnulib_dir in VPATH build
13511         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
13512
13513 2009-05-15  Jim Meyering  <meyering@redhat.com>
13514
13515         maint.mk: Give gnulib_dir a default definition.
13516         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
13517         Thus, most packages no longer need to specify this variable in cfg.mk
13518
13519 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
13520
13521         rename.m4: fix typos that would make non-mingw cross-configure fail
13522         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
13523
13524 2009-05-13  Eric Blake  <ebb9@byu.net>
13525
13526         mmap-anon: avoid out-of-order autoconf expansion
13527         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
13528         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
13529         * modules/memchr-tests (Depends-on): Add extensions.
13530         * modules/memchr2-tests (Depends-on): Add extensions.
13531         * modules/memcmp-tests (Depends-on): Add extensions.
13532         * modules/memmem-tests (Depends-on): Add extensions.
13533         * modules/memrchr-tests (Depends-on): Add extensions.
13534
13535 2009-05-13  Bruno Haible  <bruno@clisp.org>
13536
13537         Make some tests ISO C 99 compliant.
13538         * tests/zerosize-ptr.h: New file.
13539         * tests/test-memchr.c: Include zerosize-ptr.h.
13540         (main): Use a zero-size object pointer instead of NULL.
13541         * tests/test-memchr2.c: Include zerosize-ptr.h.
13542         (main): Use a zero-size object pointer instead of NULL.
13543         * tests/test-memcmp.c: Include zerosize-ptr.h.
13544         (main): Use a zero-size object pointer instead of NULL.
13545         * tests/test-memmem.c: Include zerosize-ptr.h.
13546         (main): Use a zero-size object pointer instead of NULL.
13547         * tests/test-memrchr.c: Include zerosize-ptr.h.
13548         (main): Use a zero-size object pointer instead of NULL.
13549         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
13550         m4/mmap-anon.m4.
13551         (Depends-on): Add getpagesize.
13552         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13553         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
13554         m4/mmap-anon.m4.
13555         (Depends-on): Add getpagesize.
13556         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13557         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
13558         m4/mmap-anon.m4.
13559         (Depends-on): Add getpagesize.
13560         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13561         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
13562         m4/mmap-anon.m4.
13563         (Depends-on): Add getpagesize.
13564         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13565         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
13566         m4/mmap-anon.m4.
13567         (Depends-on): Add getpagesize.
13568         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
13569
13570 2009-05-12  Bruno Haible  <bruno@clisp.org>
13571
13572         Tests for module 'alignof'.
13573         * modules/alignof-tests: New file.
13574         * tests/test-alignof.c: New file.
13575
13576 2009-05-12  Bruno Haible  <bruno@clisp.org>
13577
13578         Fix alignof macro.
13579         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
13580         vendor compilers that are always correct.
13581
13582 2009-05-12  Bruno Haible  <bruno@clisp.org>
13583
13584         Make the MAP_ANONYMOUS detection work on HP-UX 11.
13585         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
13586         not whether its fully works.
13587
13588 2009-05-12  Bruno Haible  <bruno@clisp.org>
13589
13590         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
13591
13592 2009-05-12  Jim Meyering  <meyering@redhat.com>
13593
13594         * top/maint.mk: Adjust backslash alignment.
13595
13596 2009-05-11  Simon Josefsson  <simon@josefsson.org>
13597
13598         * top/maint.mk: Make $(srcdir)/build-aux configurable.
13599
13600 2009-05-11  Eric Blake  <ebb9@byu.net>
13601
13602         argp: avoid undefined behavior
13603         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
13604         macros.
13605
13606 2009-05-08  Simon Josefsson  <simon@josefsson.org>
13607
13608         * tests/test-vc-list-files-git.sh: Do git config of user.email and
13609         user.name to prevent git commit from complaining.
13610
13611 2009-05-10  Bruno Haible  <bruno@clisp.org>
13612
13613         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
13614         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
13615         it rewrites every file name only once.
13616         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
13617
13618 2009-05-08  Bruno Haible  <bruno@clisp.org>
13619
13620         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
13621         instead of 'max'.
13622
13623 2009-05-08  Simon Josefsson  <simon@josefsson.org>
13624
13625         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
13626         sockaddr_storage test.
13627
13628 2009-05-07  Simon Josefsson  <simon@josefsson.org>
13629
13630         * modules/sys_socket (Makefile.am): Substitute
13631         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
13632         * m4/sys_socket_h.m4: Check for sockaddr_storage.
13633         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
13634         * tests/test-sys_socket.c: Check sockaddr_storage.
13635
13636 2009-05-08  Bruno Haible  <bruno@clisp.org>
13637
13638         New module 'alignof'.
13639         * lib/alignof.h: New file.
13640         * modules/alignof: New file.
13641
13642 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13643             Bruno Haible  <bruno@clisp.org>
13644
13645         Fix test-file-has-acl on FreeBSD.
13646         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
13647         mask is implicitly added.
13648         * tests/test-file-has-acl.c: Include <signal.h>.
13649         (main): Terminate the test after 5 seconds.
13650         * modules/acl-tests (configure.ac): Check for alarm function.
13651
13652 2009-05-04  Bruno Haible  <bruno@clisp.org>
13653
13654         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
13655         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
13656         * modules/errno (configure.ac): Drop AC_REQUIRE.
13657         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
13658         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
13659
13660 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13661
13662         * modules/glob-tests: New module.
13663         * tests/test-glob.c: Add.
13664
13665 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13666
13667         * modules/fnmatch-tests: New module.
13668         * tests/test-fnmatch.c: Add.
13669
13670 2009-05-04  Eric Blake  <ebb9@byu.net>
13671
13672         maint: make the new no-submodule-changes rule VPATH-safe
13673         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
13674
13675 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13676             Bruno Haible  <bruno@clisp.org>
13677
13678         acl: Fix infinite loop on FreeBSD.
13679         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
13680         of return value from acl_get_entry.
13681         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
13682         Likewise.
13683
13684 2009-05-03  Bruno Haible  <bruno@clisp.org>
13685
13686         * lib/acl-internal.h (acl_entries): Clarify return value.
13687         * lib/acl_entries.c (acl_entries): Likewise.
13688
13689 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13690
13691         Bug fix in acl module.
13692         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
13693
13694 2009-05-03  Bruno Haible  <bruno@clisp.org>
13695
13696         Create gperf-generated file in the source dir, not in the build dir.
13697         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
13698         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
13699         * modules/unicase/locale-language (unicase/locale-languages.h):
13700         Likewise.
13701         * modules/unicase/special-casing (unicase/special-casing-table.h):
13702         Likewise.
13703         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
13704         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
13705         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
13706         Reported by Ralf Wildenhues.
13707
13708 2009-05-03  Bruno Haible  <bruno@clisp.org>
13709
13710         * modules/fnmatch (Description, configure.ac): Taken from
13711         fnmatch-posix.
13712         * modules/fnmatch-posix: Turn into a symbolic reference to the
13713         'fnmatch' module, and deprecate.
13714         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
13715
13716 2009-05-03  Bruno Haible  <bruno@clisp.org>
13717
13718         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
13719         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
13720         Reported by Ralf Wildenhues.
13721
13722 2009-05-04  Simon Josefsson  <simon@josefsson.org>
13723
13724         * m4/fnmatch.m4: Fix fnmatch re-define.
13725
13726 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
13727
13728         priv-set: new module and tests; adapt write-any-file
13729         * lib/priv-set.c: New file.
13730         * lib/priv-set.h: New file.
13731         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
13732         * lib/write-any-file.c: Simplify by using priv-set module.
13733         * m4/priv-set.m4: New file.
13734         * modules/priv-set: New file.
13735         * modules/unlinkdir: Add dependency on priv-set module.
13736         * modules/write-any-file: Likewise.
13737
13738         Tests for module 'priv-set'.
13739         * modules/priv-set-tests: New file.
13740         * tests/test-priv-set.c: New file.
13741
13742 2009-05-03  Jim Meyering  <meyering@redhat.com>
13743             Bruno Haible  <bruno@clisp.org>
13744
13745         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
13746         use the converted UTF-8 variant of the name instead.
13747
13748 2009-05-03  Jim Meyering  <meyering@redhat.com>
13749
13750         tests: tighten some getdate tests
13751         * tests/test-getdate.c (main): Tighten tests: require equality,
13752         not just greater than.  Set TZ envvar to UTC0.
13753
13754 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
13755
13756         getdate: correctly interpret "next monday" when run on a Monday
13757         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
13758         that e.g., "next tues" (when run on a tuesday) results in a date
13759         that is one week in the future, and not today's date.
13760         I.e., add a week when the wday is the same as the current one.
13761         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
13762         and earlier by Martin Bernreuther and Jan Minář.
13763         * tests/test-getdate.c (main): Check that "next DAY" is always in
13764         the future and that "last DAY" is always in the past.
13765
13766 2009-05-02  Jim Meyering  <meyering@redhat.com>
13767
13768         build: ensure that a release build fails when a submodule is unclean
13769         * top/maint.mk (no-submodule-changes): New rule.
13770         (alpha beta major): Depend on it.
13771
13772 2009-05-02  Bruno Haible  <bruno@clisp.org>
13773
13774         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
13775         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
13776         shell variable gl_fnmatch_required to detect which variant is
13777         requested.
13778         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
13779         gl_FUNC_FNMATCH_POSIX.
13780         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
13781         exclude fnmatch-posix.
13782
13783 2009-05-02  Bruno Haible  <bruno@clisp.org>
13784
13785         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
13786         * modules/mbsrtowcs (License): Change to LGPLv2+.
13787         * modules/strnlen1 (License): Likewise.
13788         Reported by Simon Josefsson.
13789
13790 2009-05-02  Bruno Haible  <bruno@clisp.org>
13791
13792         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
13793         "cross".
13794         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
13795         gnulib-tool was called with option --source-base=lib.
13796
13797 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13798
13799         Use automake *-local hooks without commands, for extensibility.
13800         * modules/localcharset (Makefile.am): Rename install-exec-local
13801         rule to install-exec-localcharset, and make it a prerequisite of
13802         install-exec-local.  Likewise, rename the uninstall-local rule to
13803         uninstall-localcharset, and make it a prerequisite of the former.
13804
13805 2009-05-01  Bruno Haible  <bruno@clisp.org>
13806
13807         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
13808         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
13809         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
13810         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
13811         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
13812         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
13813         m4/locale-zh.m4, m4/codeset.m4.
13814
13815         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
13816         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
13817         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
13818         m4/locale-zh.m4.
13819
13820         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
13821         REPLACE_WCRTOMB if mbstate_t must be replaced.
13822         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
13823         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
13824
13825 2009-05-01  Bruno Haible  <bruno@clisp.org>
13826
13827         Avoid compiler warnings when redefining macros defined by <libintl.h>.
13828         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
13829         dngettext, dcngettext, textdomain, bindtextdomain,
13830         bind_textdomain_codeset): Undefine before redefining.
13831
13832 2009-04-30  Bruno Haible  <bruno@clisp.org>
13833
13834         Fix bug introduced on 2009-04-25.
13835         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
13836         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
13837         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
13838         is defined.
13839         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
13840         is defined.
13841         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
13842         is defined.
13843         Reported by Elbert_Pol <elbert.pol@gmail.com>.
13844
13845 2009-04-28  Bruno Haible  <bruno@clisp.org>
13846
13847         Comment tweaks.
13848         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
13849         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
13850         * lib/unicase.h (u*_casexfrm): Likewise.
13851         Reported by Paolo Bonzini.
13852
13853 2009-04-28  Bruno Haible  <bruno@clisp.org>
13854
13855         Fix a compilation error.
13856         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
13857         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
13858         Reported by Jim Meyering.
13859
13860 2009-04-27  Bruno Haible  <bruno@clisp.org>
13861
13862         New module 'libunistring'.
13863         * modules/libunistring: New file.
13864         * m4/libunistring.m4: New file.
13865         * MODULES.html.sh (Unicode string functions): Add it.
13866
13867 2009-04-27  Eric Blake  <ebb9@byu.net>
13868
13869         maint.mk: allow package-specific header to provide <config.h>
13870         * top/maint.mk (sc_require_config_h): New variable.
13871         (sc_require_config_h, sc_require_config_h_first): Use it.
13872
13873 2009-04-27  Simon Josefsson  <simon@josefsson.org>
13874
13875         * top/maint.mk (sc_avoid_if_before_free): Except
13876         useless-if-before-free script.
13877
13878 2009-04-27  Eric Blake  <ebb9@byu.net>
13879
13880         maintainer-makefile: depend on all required helper scripts
13881         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
13882         useless-if-before-free.
13883         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
13884         version, rather than assuming gnulib checkout is available.
13885         Reported by Simen Josefsson.
13886
13887 2009-04-26  Bruno Haible  <bruno@clisp.org>
13888
13889         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
13890         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
13891         "../" or "..".
13892
13893 2009-04-26  Bruno Haible  <bruno@clisp.org>
13894
13895         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
13896         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
13897         AC_LIB_HAVE_LINKFLAGS.
13898
13899 2009-04-26  Bruno Haible  <bruno@clisp.org>
13900
13901         Simplify calling convention of u*_conv_from_encoding.
13902         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
13903         u32_conv_from_encoding): Expect a resultbuf argument and return the
13904         result directly as a pointer.
13905         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
13906         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
13907         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
13908         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
13909         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
13910         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
13911         Update.
13912         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
13913         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
13914         * lib/vasnprintf.c (VASNPRINTF): Update.
13915         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
13916         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
13917         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
13918         * NEWS: Mention the change.
13919
13920 2009-04-26  Bruno Haible  <bruno@clisp.org>
13921
13922         Simplify calling convention of u*_conv_to_encoding.
13923         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
13924         u32_conv_to_encoding): Expect a resultbuf argument and return the
13925         result directly as a pointer.
13926         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
13927         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
13928         freeing scaled_offsets if mem_iconveha failed.
13929         * lib/unicase/u-casexfrm.h (FUNC): Update.
13930         * lib/uninorm/u-normxfrm.h (FUNC): Update.
13931         * lib/vasnprintf.c (VASNPRINTF): Update.
13932         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
13933         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
13934         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
13935         * NEWS: Mention the change.
13936
13937 2009-04-26  Bruno Haible  <bruno@clisp.org>
13938
13939         Avoid test failures on AIX and OSF/1.
13940         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
13941         malloc(0).
13942         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
13943         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
13944         Likewise.
13945         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
13946         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
13947         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
13948         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
13949         * doc/posix-functions/malloc.texi: Document the portability problem
13950         related to malloc(0).
13951
13952 2009-04-26  Bruno Haible  <bruno@clisp.org>
13953
13954         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
13955         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
13956         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
13957
13958 2009-04-25  Bruno Haible  <bruno@clisp.org>
13959
13960         Avoid link error when creating a namespace clean library.
13961         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
13962         as macro with arguments if already defined as an alias.
13963         * lib/signbitf.c (gl_signbitf): Don't undefine.
13964         * lib/signbitd.c (gl_signbitd): Don't undefine.
13965         * lib/signbitl.c (gl_signbitl): Don't undefine.
13966
13967 2009-04-25  Jim Meyering  <meyering@redhat.com>
13968
13969         vc-list-files: fix another quoting bug
13970         * build-aux/vc-list-files: Avoid sed backslash expansion
13971         of pathological directory names.
13972
13973 2009-04-25  Eric Blake  <ebb9@byu.net>
13974
13975         vc-list-files: fix shell quoting error
13976         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
13977         timestamp.
13978
13979 2009-04-25  Jim Meyering  <meyering@redhat.com>
13980
13981         vc-list-files: restore lost functionality with subdir argument
13982         * build-aux/vc-list-files: When given a non-"." sub-directory
13983         argument, substitute the $dir/ prefix back onto each resulting name.
13984         Otherwise, coreutils' root_tests check would fail.
13985
13986 2009-04-24  Eric Blake  <ebb9@byu.net>
13987
13988         vc-list-files: ignore git symlinks
13989         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
13990         than ls-files, to ignore git symlinks.
13991
13992         maint.mk: import improvements from m4
13993         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
13994         (move_if_change): Delete unused macro.
13995         (news-date-check, vc-diff-check): Support VPATH builds.
13996         (announcement): Likewise.  Split --bootstrap-tools list...
13997         (boostrap-tools): ...into separate list, which can be overridden
13998         in cfg.mk.
13999         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
14000         requiring dependency on useless-if-before-free module.
14001         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
14002         Support VPATH builds.
14003
14004 2009-04-24  Jim Meyering  <meyering@redhat.com>
14005
14006         maint.mk: remove coreutils-specific rules and variables
14007         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
14008         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
14009         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
14010
14011         maint.mk: remove obsolete rule
14012         * top/maint.mk (rel-check): Remove rule.
14013         (WGET, WGETFLAGS): Remove now-unused variables.
14014
14015 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14016
14017         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
14018         consistency.
14019
14020         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
14021         '$(PATH_SEPARATOR)' instead of ':'.
14022
14023 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14024
14025         * lib/getopt1.c (main): Use 'const' for static array.
14026
14027 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14028
14029         * top/maint.mk: Sync with coreutils.
14030         * NEWS: Explain incompatibilities.
14031
14032 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14033             Bruno Haible  <bruno@clisp.org>
14034
14035         Fix cross-compilation results.
14036         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
14037         statement, as third argument of AC_TRY_RUN.
14038         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
14039         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
14040         Likewise.
14041         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
14042         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
14043         Likewise.
14044         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
14045         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
14046         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
14047
14048 2009-04-20  Bruno Haible  <bruno@clisp.org>
14049
14050         Avoid test failure on mingw.
14051         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
14052
14053 2009-04-20  Bruno Haible  <bruno@clisp.org>
14054
14055         Avoid compilation error on mingw.
14056         * modules/localename-tests (Depends-on): Add locale.
14057
14058 2009-04-19  Bruno Haible  <bruno@clisp.org>
14059
14060         Support for building a shared library on Windows platforms.
14061         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
14062         (main): Test the presence of UNINORM_NFC here.
14063         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
14064         (main): Test the presence of UNINORM_NFD here.
14065         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
14066         (main): Test the presence of UNINORM_NFKC here.
14067         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
14068         (main): Test the presence of UNINORM_NFKD here.
14069
14070 2009-04-19  Bruno Haible  <bruno@clisp.org>
14071
14072         Avoid a compiler warning.
14073         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
14074         Change type of variable 'sequence'.
14075
14076 2009-04-19  Bruno Haible  <bruno@clisp.org>
14077
14078         * modules/configmake (Makefile.am): When the contents of configmake.h
14079         does not change, arrange to preserve its modification time.
14080
14081 2009-04-17  Simon Josefsson  <simon@josefsson.org>
14082
14083         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
14084         gettext domain.
14085
14086 2009-04-16  Jim Meyering  <meyering@redhat.com>
14087
14088         useless-if-before-free: improve conversion code
14089         * build-aux/useless-if-before-free: Adjust code-in-comment to match
14090         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
14091
14092 2009-04-14  Bruno Haible  <bruno@clisp.org>
14093
14094         * modules/fcntl (Depends-on): Add extensions.
14095         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
14096
14097 2009-04-12  Ben Pfaff  <blp@gnu.org>
14098
14099         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
14100         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
14101
14102 2009-03-20  Ben Pfaff  <blp@gnu.org>
14103
14104         Make rename replace existing destinations on Windows.
14105         * m4/rename.m4: Add test for Mingw.
14106         * lib/rename.c: Add rename replacement that uses MoveFileEx with
14107         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
14108         * doc/posix-functions/rename.texi: Document.
14109
14110 2009-04-10  Bruno Haible  <bruno@clisp.org>
14111
14112         New include file "iconveh.h".
14113         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
14114         * lib/striconveh.h: Include it.
14115         (enum iconv_ilseq_handler): Remove definition.
14116         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
14117         striconveh.h.
14118         * lib/striconveha.c: Include striconveh.h.
14119         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
14120         * modules/striconveh (Files): Add lib/iconveh.h.
14121         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
14122         lib/striconveh.h.
14123
14124 2009-04-10  Bruno Haible  <bruno@clisp.org>
14125
14126         * lib/uniconv.h: Update comment.
14127
14128 2009-04-10  Bruno Haible  <bruno@clisp.org>
14129
14130         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
14131         always.
14132         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
14133         * lib/unistr/u16-mbtouc-aux.c: Likewise.
14134         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
14135         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
14136         "unistring-notinline.h", so that the function gets defined always.
14137         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
14138         * lib/unistr/u8-uctomb.c: Likewise.
14139         * lib/unistr/u16-mbtouc.c: Likewise.
14140         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
14141         * lib/unistr/u16-uctomb.c: Likewise.
14142         * lib/unistr/u32-mbtouc.c: Likewise.
14143         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
14144         * lib/unistr/u32-uctomb.c: Likewise.
14145
14146 2009-04-10  Bruno Haible  <bruno@clisp.org>
14147
14148         Mark 'utime' obsolete.
14149         * modules/utime (Status, Notice): New sections.
14150         Suggested by Jim Meyering.
14151
14152         Fix cross-compile guess for utime test.
14153         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
14154         autoconf.
14155         * doc/posix-functions/utime.texi: Give more precisions.
14156         Reported by Jan <ipif@ymail.com>.
14157
14158 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
14159
14160         filevercmp: correct today's change
14161         * lib/filevercmp.c: Also handle coreutils' test inputs.
14162         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
14163
14164         Fix regression in 'filevercmp' module. Thanks Sven Joachim
14165         for reporting it.
14166         * lib/filevercmp.c: Special handle for "", "." and "..".
14167         * tests/test-filevercmp.c: Enlarge the set suite.
14168
14169 2009-04-07  Jim Meyering  <meyering@redhat.com>
14170
14171         useless-if-before-free: show how to remove braced useless free, too
14172         * build-aux/useless-if-before-free: still only in a comment, though.
14173
14174 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
14175
14176         maint.mk: import changes to syntax-check macros from coreutils
14177         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
14178         Use them in the relevant macros.
14179
14180 2009-04-06  Bruno Haible  <bruno@clisp.org>
14181
14182         Fix unportable use of bit-fields.
14183         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
14184         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
14185         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
14186
14187 2009-04-06  Bruno Haible  <bruno@clisp.org>
14188
14189         Avoid test failures on AIX and OSF/1.
14190         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
14191         that malloc(0) = NULL.
14192         * tests/unicase/test-u8-tolower.c (check): Likewise.
14193         * tests/unicase/test-u8-totitle.c (check): Likewise.
14194         * tests/unicase/test-u8-toupper.c (check): Likewise.
14195         * tests/unicase/test-u16-casefold.c (check): Likewise.
14196         * tests/unicase/test-u16-tolower.c (check): Likewise.
14197         * tests/unicase/test-u16-totitle.c (check): Likewise.
14198         * tests/unicase/test-u16-toupper.c (check): Likewise.
14199         * tests/unicase/test-u32-casefold.c (check): Likewise.
14200         * tests/unicase/test-u32-tolower.c (check): Likewise.
14201         * tests/unicase/test-u32-totitle.c (check): Likewise.
14202         * tests/unicase/test-u32-toupper.c (check): Likewise.
14203         * tests/uninorm/test-u8-nfc.c (check): Likewise.
14204         * tests/uninorm/test-u8-nfd.c (check): Likewise.
14205         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
14206         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
14207         * tests/uninorm/test-u16-nfc.c (check): Likewise.
14208         * tests/uninorm/test-u16-nfd.c (check): Likewise.
14209         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
14210         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
14211         * tests/uninorm/test-u32-nfc.c (check): Likewise.
14212         * tests/uninorm/test-u32-nfd.c (check): Likewise.
14213         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
14214         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
14215
14216 2009-04-05  Bruno Haible  <bruno@clisp.org>
14217
14218         Work around an autoconf limitation.
14219         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
14220         comment line if it would be longer than 3 KB.
14221
14222 2009-04-05  Bruno Haible  <bruno@clisp.org>
14223
14224         Avoid test failure with libiconv-1.13.
14225         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
14226         of the expected test results.
14227
14228 2009-04-05  Bruno Haible  <bruno@clisp.org>
14229
14230         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
14231         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
14232         that it should be installed.
14233
14234 2009-04-05  Bruno Haible  <bruno@clisp.org>
14235
14236         * gnulib-tool: New option --copy-file.
14237         (func_usage): Document it.
14238         (func_dest_tmpfilename): Moved out of func_import.
14239         (func_add_file, func_update_file): New functions, extracted from
14240         func_import.
14241         (func_import): Update.
14242
14243 2009-04-05  Karl Berry  <karl@gnu.org>
14244
14245         * README: prominently mention gnulib-tool.
14246         Rearrange sections so getting the code is near the top.
14247
14248 2009-04-05  Bruno Haible  <bruno@clisp.org>
14249
14250         * lib/unicase.h: Mention u*_cmp2.
14251         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14252         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
14253         * lib/unicase/ulc-casecmp.c: Likewise.
14254         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
14255         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
14256         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
14257         unistr/u8-cmp.
14258         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
14259         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
14260         unistr/u16-cmp.
14261         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
14262         unistr/u32-cmp.
14263
14264         * lib/uninorm.h: Mention u*_cmp2.
14265         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14266         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
14267         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
14268         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
14269         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
14270         unistr/u8-cmp.
14271         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
14272         unistr/u16-cmp.
14273         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
14274         unistr/u32-cmp.
14275
14276         New module 'unistr/u32-cmp2'.
14277         * lib/unistr/u32-cmp2.c: New file.
14278         * modules/unistr/u32-cmp2: New file.
14279
14280         New module 'unistr/u16-cmp2'.
14281         * lib/unistr/u16-cmp2.c: New file.
14282         * modules/unistr/u16-cmp2: New file.
14283
14284         New module 'unistr/u8-cmp2'.
14285         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
14286         * lib/unistr/u8-cmp2.c: New file.
14287         * lib/unistr/u-cmp2.h: New file.
14288         * modules/unistr/u8-cmp2: New file.
14289
14290 2009-04-05  Bruno Haible  <bruno@clisp.org>
14291
14292         * lib/unictype.h (uc_property_is_valid): New macro.
14293         * tests/unictype/test-pr_byname.c (main): Use it.
14294
14295         * lib/unistr.h: Doc fixes.
14296         * lib/uniconv.h: Doc fixes.
14297         * lib/unictype.h: Doc fixes.
14298
14299 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
14300
14301         Port coreutils 7.2 to Solaris 8.
14302
14303         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
14304         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
14305         for Solaris 8.  This is a bit of a hack, as it means it's the
14306         caller's responsibility to add -lnsl if needed, but most likely it
14307         won't be needed since only getaddrinfo uses this and getaddrinfo
14308         isn't needed on Solaris 8.
14309
14310         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
14311         problem to Solaris 8 encountered with coreutils 7.2, which
14312         resulted in a message "fnmatch.c:292: warning: passing argument 4
14313         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
14314         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
14315
14316 2009-04-03  Simon Josefsson  <simon@josefsson.org>
14317
14318         * m4/ld-version-script.m4: Add FIXME comment.
14319
14320 2009-04-02  Simon Josefsson  <simon@josefsson.org>
14321
14322         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
14323         SOVERSION variable.
14324
14325 2009-04-02  Bruno Haible  <bruno@clisp.org>
14326
14327         * Makefile (info, html, dvi, pdf): Combine the rules.
14328         Suggested by Jim Meyering.
14329
14330 2009-04-01  Bruno Haible  <bruno@clisp.org>
14331
14332         * Makefile (info, html, dvi, pdf): New targets.
14333         Reported by Reuben Thomas <rrt@sc3d.org>.
14334
14335 2009-04-01  Bruno Haible  <bruno@clisp.org>
14336
14337         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
14338         can be put into PATH.
14339         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
14340
14341 2009-04-01  Bruno Haible  <bruno@clisp.org>
14342
14343         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
14344
14345 2009-04-01  Bruno Haible  <bruno@clisp.org>
14346
14347         Rename module 'visibility'.
14348         * modules/lib-symbol-visibility: Renamed from modules/visibility.
14349         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
14350         * doc/gnulib.texi: Update.
14351         * MODULES.html.sh (Misc): Update.
14352         * NEWS: Mention the change.
14353
14354 2009-04-01  Simon Josefsson  <simon@josefsson.org>
14355
14356         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
14357         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
14358         Eric Blake <ebb9@byu.net> for review.
14359         * MODULES.html.sh: Add lib-msvc-compat.
14360         * doc/gnulib.texi: Link to new section.
14361         * m4/ld-output-def.m4: New file.
14362         * doc/ld-output-def.texi: New file.
14363
14364 2009-04-01  Simon Josefsson  <simon@josefsson.org>
14365
14366         Rename ld-version-script to lib-symbol-versions.  Suggested by
14367         Bruno Haible <bruno@clisp.org>.
14368         * modules/ld-version-script: Renamed to lib-symbol-versions.
14369         * doc/ld-version-script.texi: Fix module name.
14370         * MODULES.html.sh: Add lib-symbol-versions.
14371
14372 2009-03-31  Simon Josefsson  <simon@josefsson.org>
14373
14374         * modules/u64-tests: New file.
14375         * tests/test-u64.c: New file.
14376
14377 2009-03-04  Simon Josefsson  <simon@josefsson.org>
14378
14379         * MODULES.html.sh: Mention u64.
14380         * modules/u64: New module.
14381         * modules/crypto/sha512: Depend on u64 module instead of providing
14382         u64.h.
14383
14384 2009-03-27  Eric Blake  <ebb9@byu.net>
14385
14386         test-strerror: make debugging EAI_SYSTEM easier
14387         * modules/getaddrinfo-tests (Depends-on): Add strerror.
14388         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
14389         failure was EAI_SYSTEM.
14390
14391 2009-03-25  Bruno Haible  <bruno@clisp.org>
14392
14393         Fix a problem with --enable-relocatable on Solaris 7.
14394         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
14395         since 2008-02-24.
14396
14397 2009-03-25  Eric Blake  <ebb9@byu.net>
14398
14399         test-sockets: avoid gcc warning
14400         * tests/test-sockets.c (main): Silence compiler warning.
14401
14402 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
14403
14404         New modules nproc, pthread, contributed by Glen Lenker.
14405
14406         * MODULES.html.sh: Add pthread, nproc.
14407         * lib/nproc.c: New file.
14408         * lib/nproc.h: New file.
14409         * lib/pthread.in.h: New file.
14410         * m4/pthread.m4: New file.
14411         * modules/nproc: New file.
14412         * modules/pthread: New file.
14413
14414 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14415
14416         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
14417         New variable.
14418
14419 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
14420
14421         filevercmp: handle simple~ and numbered.~3~ backup suffixes
14422         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
14423         * tests/test-filevercmp.c: Add tests for backup suffixes.
14424
14425 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14426
14427         * modules/stdlib (Depends-on): Add stdint, needed when defining
14428         struct random_data on, for example, HP-UX 10.20.  Reported by
14429         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
14430
14431 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14432
14433         * lib/readline.c (readline): Call fflush on stdout after printing
14434         prompt.
14435
14436 2009-03-20  Bruno Haible  <bruno@clisp.org>
14437
14438         Remove dependency from 'close' module to -lws2_32 on native Windows.
14439         * lib/close-hook.h: New file.
14440         * lib/close-hook.c: New file.
14441         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
14442         w32sock.h.
14443         (_gl_close_fd_maybe_socket): Remove function.
14444         (rpl_close): Invoke execute_all_close_hooks instead of
14445         _gl_close_fd_maybe_socket.
14446         * lib/sockets.c: Include close-hook.h, w32sock.h.
14447         (close_fd_maybe_socket): New function, essentially from lib/close.c.
14448         (close_sockets_hook): New variable.
14449         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
14450         (gl_sockets_cleanup): Unregister it.
14451         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
14452         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
14453         * modules/close-hook: New file.
14454         * modules/close (Files): Remove lib/w32sock.h.
14455         (Depends-on): Add close-hook.
14456         (Link): Remove section.
14457         * modules/sockets (Files): Add lib/w32sock.h.
14458         (Depends-on): Add close-hook.
14459         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
14460         invocation.
14461         * NEWS: Mention that LIB_CLOSE is gone.
14462
14463 2009-03-23  Eric Blake  <ebb9@byu.net>
14464
14465         signal-tests: test previous patch
14466         * tests/test-signal.c: New file.
14467         * modules/signal-tests: Likewise.
14468
14469         signal.h: always support 'volatile sig_atomic_t'
14470         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
14471         (gl_SIGNAL_H_DEFAULTS): Add a default.
14472         * modules/signal (Makefile.am): Substitute if needed.
14473         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
14474         users can blindly add volatile.
14475         * doc/posix-headers/signal.texi (signal.h): Document it.
14476         Reported by Matthew Woehlke.
14477
14478 2009-03-23  Jim Meyering  <meyering@redhat.com>
14479
14480         pathmax: PATH_MAX: use pathconf only when available
14481         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
14482         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
14483         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
14484         This avoids a link failure in a PSP cross-compilation environment
14485         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
14486
14487         * lib/vasnprintf.c (divide): Fix typo in comment.
14488
14489 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14490
14491         * gnulib-tool (func_filter_filelist): Fix comment.
14492
14493 2009-03-20  Bruno Haible  <bruno@clisp.org>
14494
14495         Make sockets.h self-contained.
14496         * lib/sockets.c: Include sockets.h first.
14497         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
14498
14499 2009-03-19  Eric Blake  <ebb9@byu.net>
14500
14501         doc: mention more functions added in cygwin 1.7.0
14502         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
14503         addition.
14504         * doc/posix-functions/log2f.texi: Likewise.
14505
14506 2009-03-19  Jim Meyering  <meyering@redhat.com>
14507
14508         fsusage: avoid syntax error due to statement-before-declaration
14509         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
14510         after all declarations.  Reported by Matthew Woehlke in
14511         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
14512
14513 2009-03-18  Eric Blake  <ebb9@byu.net>
14514
14515         build-aux/compile: sync from automake
14516         * build-aux/compile: New file, from automake.
14517         * config/srclist.txt: Mention build-aux/compile.
14518
14519 2009-03-17  Bruno Haible  <bruno@clisp.org>
14520
14521         * lib/git-merge-changelog.c: Fix typo in comment.
14522         Reported by Reuben Thomas <rrt@sc3d.org>.
14523
14524 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
14525
14526         * m4/regex.m4: update and improve help for
14527         --without-included-regex.
14528
14529 2009-03-17  Simon Josefsson  <simon@josefsson.org>
14530
14531         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
14532         failure on missing include files.
14533
14534 2009-03-17  Eric Blake  <ebb9@byu.net>
14535
14536         doc: mention more functions added in cygwin 1.7.0
14537         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
14538         addition.
14539         * doc/posix-functions/fwscanf.texi: Likewise.
14540         * doc/posix-functions/swprintf.texi: Likewise.
14541         * doc/posix-functions/swscanf.texi: Likewise.
14542         * doc/posix-functions/vfwprintf.texi: Likewise.
14543         * doc/posix-functions/vfwscanf.texi: Likewise.
14544         * doc/posix-functions/vswprintf.texi: Likewise.
14545         * doc/posix-functions/vswscanf.texi: Likewise.
14546         * doc/posix-functions/vwprintf.texi: Likewise.
14547         * doc/posix-functions/vwscanf.texi: Likewise.
14548         * doc/posix-functions/wcscasecmp.texi: Likewise.
14549         * doc/posix-functions/wcsdup.texi: Likewise.
14550         * doc/posix-functions/wcsftime.texi: Likewise.
14551         * doc/posix-functions/wcsncasecmp.texi: Likewise.
14552         * doc/posix-functions/wprintf.texi: Likewise.
14553         * doc/posix-functions/wscanf.texi: Likewise.
14554         * doc/glibc-functions/gethostbyname2.texi: Likewise.
14555
14556 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14557
14558         maint.mk: really add $(AM_MAKEFLAGS)
14559         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
14560         was inadvertently omitted in the last commit.
14561         Spotted by Bruno Haible.
14562
14563         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
14564         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
14565         $(AM_MAKEFLAGS)' rather than plain `make'.
14566
14567         gnulib-tool: execute $MAKE not make
14568         * gnulib-tool: Default $MAKE to 'make'.
14569         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
14570         than make.  Initialize $MAKE in the do-autobuild script.
14571
14572         gnulib-tool: use $MAKE not make in generated files
14573         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
14574         make, in generated files.  Initialize $MAKE in the do-autobuild
14575         script.
14576
14577         * top/GNUmakefile (_have-git-version-gen): Fix typo.
14578
14579         GNUmakefile: disable parallelism only for multiple, recursive targets
14580         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
14581         additions in the Makefile.
14582         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
14583         by Automake.
14584         (.NOTPARALLEL): Only disable parallel builds if multiple targets
14585         are listed on the command line and at least one of them is
14586         listed in $(ALL_RECURSIVE_TARGETS).
14587
14588 2009-03-14  Bruno Haible  <bruno@clisp.org>
14589
14590         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
14591         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
14592         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
14593         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
14594         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
14595         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
14596         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
14597         unistr/u8-uctomb.
14598         * modules/unistr/u8-strchr (Depends-on): Likewise.
14599         * modules/unistr/u8-strrchr (Depends-on): Likewise.
14600         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
14601         unistr/u16-uctomb.
14602         * modules/unistr/u16-strchr (Depends-on): Likewise.
14603         * modules/unistr/u16-strrchr (Depends-on): Likewise.
14604
14605 2009-03-12  Bruno Haible  <bruno@clisp.org>
14606
14607         Work around select() bug on Interix 3.5.
14608         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
14609         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
14610         * m4/select.m4: New file.
14611         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
14612         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
14613         * modules/select (Files): Add m4/select.m4.
14614         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
14615         * modules/nanosleep (Depends-on): Add select.
14616         * modules/poll (Depends-on): Likewise.
14617         * doc/posix-functions/select.texi: Mention the Interix bug.
14618         Reported by Markus Duft <mduft@gentoo.org>.
14619
14620         * lib/select.c: Renamed from lib/winsock-select.c.
14621         * modules/select (Files): Add lib/select.c, remove
14622         lib/winsock-select.c.
14623         (configure.ac): Update.
14624
14625 2009-03-12  Jim Meyering  <meyering@redhat.com>
14626
14627         avoid gcc warnings about unused macro definitions
14628         * lib/readtokens.c (STREQ): Remove unused definition.
14629         * lib/xmalloc.c (SIZE_MAX): Likewise.
14630         * lib/openat-die.c (N_): Likewise.
14631         * lib/mountlist.c (SIZE_MAX): Remove definition.
14632         Instead, include <stdint.h>.
14633         * lib/readutmp.c: Likewise.
14634         * modules/readutmp (Depends-on): Add stdint.
14635         * modules/mountlist (Depends-on): Add stdint.
14636         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
14637
14638 2009-03-10  Bruno Haible  <bruno@clisp.org>
14639
14640         Tests for module 'mbmemcasecoll'.
14641         * modules/mbmemcasecoll-tests: New file.
14642         * tests/test-mbmemcasecoll1.sh: New file.
14643         * tests/test-mbmemcasecoll2.sh: New file.
14644         * tests/test-mbmemcasecoll3.sh: New file.
14645         * tests/test-mbmemcasecoll.c: New file.
14646
14647         New module 'mbmemcasecoll'.
14648         * lib/mbmemcasecoll.h: New file.
14649         * lib/mbmemcasecoll.c: New file.
14650         * modules/mbmemcasecoll: New file.
14651
14652         * tests/test-mbmemcasecmp.h: New file, extracted from
14653         tests/test-mbmemcasecmp.c.
14654         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
14655         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
14656         (main): Update.
14657         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
14658
14659 2009-03-09  Bruno Haible  <bruno@clisp.org>
14660
14661         Tests for module 'mbmemcasecmp'.
14662         * modules/mbmemcasecmp-tests: New file.
14663         * tests/test-mbmemcasecmp1.sh: New file.
14664         * tests/test-mbmemcasecmp2.sh: New file.
14665         * tests/test-mbmemcasecmp3.sh: New file.
14666         * tests/test-mbmemcasecmp.c: New file.
14667
14668         New module 'mbmemcasecmp'.
14669         * lib/mbmemcasecmp.h: New file.
14670         * lib/mbmemcasecmp.c: New file.
14671         * modules/mbmemcasecmp: New file.
14672
14673 2009-03-09  Bruno Haible  <bruno@clisp.org>
14674
14675         Tests for module 'unicase/ulc-casecoll'.
14676         * modules/unicase/ulc-casecoll-tests: New file.
14677         * tests/unicase/test-ulc-casecoll1.sh: New file.
14678         * tests/unicase/test-ulc-casecoll2.sh: New file.
14679         * tests/unicase/test-ulc-casecoll.c: New file.
14680
14681         New module 'unicase/ulc-casecoll'.
14682         * lib/unicase.h (ulc_casecoll): New declaration.
14683         * lib/unicase/ulc-casecoll.c: New file.
14684         * modules/unicase/ulc-casecoll: New file.
14685
14686         New module 'unicase/ulc-casexfrm'.
14687         * lib/unicase.h (ulc_casexfrm): New declaration.
14688         * lib/unicase/ulc-casexfrm.c: New file.
14689         * modules/unicase/ulc-casexfrm: New file.
14690
14691 2009-03-09  Bruno Haible  <bruno@clisp.org>
14692
14693         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
14694         invocations.
14695
14696         * m4/mbscasecmp.m4: Remove file.
14697         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
14698         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
14699
14700         * m4/mbscasestr.m4: Remove file.
14701         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
14702         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
14703
14704         * m4/mbschr.m4: Remove file.
14705         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
14706         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
14707
14708         * m4/mbscspn.m4: Remove file.
14709         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
14710         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
14711
14712         * m4/mbslen.m4: Remove file.
14713         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
14714         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
14715
14716         * m4/mbsncasecmp.m4: Remove file.
14717         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
14718         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
14719
14720         * m4/mbsnlen.m4: Remove file.
14721         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
14722         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
14723
14724         * m4/mbspbrk.m4: Remove file.
14725         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
14726         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
14727
14728         * m4/mbspcasecmp.m4: Remove file.
14729         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
14730         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
14731
14732         * m4/mbsrchr.m4: Remove file.
14733         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
14734         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
14735
14736         * m4/mbssep.m4: Remove file.
14737         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
14738         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
14739
14740         * m4/mbsspn.m4: Remove file.
14741         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
14742         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
14743
14744         * m4/mbsstr.m4: Remove file.
14745         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
14746         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
14747
14748         * m4/mbstok_r.m4: Remove file.
14749         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
14750         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
14751
14752         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
14753
14754         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
14755         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
14756
14757         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
14758
14759 2009-03-08  Bruno Haible  <bruno@clisp.org>
14760
14761         Tests for module 'unicase/ulc-casecmp'.
14762         * modules/unicase/ulc-casecmp-tests: New file.
14763         * tests/unicase/test-ulc-casecmp1.sh: New file.
14764         * tests/unicase/test-ulc-casecmp2.sh: New file.
14765         * tests/unicase/test-ulc-casecmp.c: New file.
14766
14767         New module 'unicase/ulc-casecmp'.
14768         * lib/unicase.h (ulc_casecmp): New declaration.
14769         * lib/unicase/ulc-casecmp.c: New file.
14770         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
14771         'const SRC_UNIT *'.
14772         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
14773         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
14774         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
14775         * modules/unicase/ulc-casecmp: New file.
14776
14777         Tests for module 'unicase/u32-is-cased'.
14778         * modules/unicase/u32-is-cased-tests: New file.
14779         * tests/unicase/test-u32-is-cased.c: New file.
14780
14781         Tests for module 'unicase/u16-is-cased'.
14782         * modules/unicase/u16-is-cased-tests: New file.
14783         * tests/unicase/test-u16-is-cased.c: New file.
14784
14785         Tests for module 'unicase/u8-is-cased'.
14786         * modules/unicase/u8-is-cased-tests: New file.
14787         * tests/unicase/test-u8-is-cased.c: New file.
14788         * tests/unicase/test-is-cased.h: New file.
14789
14790         New module 'unicase/u32-is-cased'.
14791         * lib/unicase/u32-is-cased.c: New file.
14792         * modules/unicase/u32-is-cased: New file.
14793
14794         New module 'unicase/u16-is-cased'.
14795         * lib/unicase/u16-is-cased.c: New file.
14796         * modules/unicase/u16-is-cased: New file.
14797
14798         New module 'unicase/u8-is-cased'.
14799         * lib/unicase/u8-is-cased.c: New file.
14800         * lib/unicase/u-is-cased.h: New file.
14801         * modules/unicase/u8-is-cased: New file.
14802
14803         Tests for module 'unicase/u32-is-casefolded'.
14804         * modules/unicase/u32-is-casefolded-tests: New file.
14805         * tests/unicase/test-u32-is-casefolded.c: New file.
14806
14807         Tests for module 'unicase/u16-is-casefolded'.
14808         * modules/unicase/u16-is-casefolded-tests: New file.
14809         * tests/unicase/test-u16-is-casefolded.c: New file.
14810
14811         Tests for module 'unicase/u8-is-casefolded'.
14812         * modules/unicase/u8-is-casefolded-tests: New file.
14813         * tests/unicase/test-u8-is-casefolded.c: New file.
14814         * tests/unicase/test-is-casefolded.h: New file.
14815
14816         New module 'unicase/u32-is-casefolded'.
14817         * lib/unicase/u32-is-casefolded.c: New file.
14818         * modules/unicase/u32-is-casefolded: New file.
14819
14820         New module 'unicase/u16-is-casefolded'.
14821         * lib/unicase/u16-is-casefolded.c: New file.
14822         * modules/unicase/u16-is-casefolded: New file.
14823
14824         New module 'unicase/u8-is-casefolded'.
14825         * lib/unicase/u8-is-casefolded.c: New file.
14826         * modules/unicase/u8-is-casefolded: New file.
14827
14828         Tests for module 'unicase/u32-is-titlecase'.
14829         * modules/unicase/u32-is-titlecase-tests: New file.
14830         * tests/unicase/test-u32-is-titlecase.c: New file.
14831
14832         Tests for module 'unicase/u16-is-titlecase'.
14833         * modules/unicase/u16-is-titlecase-tests: New file.
14834         * tests/unicase/test-u16-is-titlecase.c: New file.
14835
14836         Tests for module 'unicase/u8-is-titlecase'.
14837         * modules/unicase/u8-is-titlecase-tests: New file.
14838         * tests/unicase/test-u8-is-titlecase.c: New file.
14839         * tests/unicase/test-is-titlecase.h: New file.
14840
14841         New module 'unicase/u32-is-titlecase'.
14842         * lib/unicase/u32-is-titlecase.c: New file.
14843         * modules/unicase/u32-is-titlecase: New file.
14844
14845         New module 'unicase/u16-is-titlecase'.
14846         * lib/unicase/u16-is-titlecase.c: New file.
14847         * modules/unicase/u16-is-titlecase: New file.
14848
14849         New module 'unicase/u8-is-titlecase'.
14850         * lib/unicase/u8-is-titlecase.c: New file.
14851         * modules/unicase/u8-is-titlecase: New file.
14852
14853         Tests for module 'unicase/u32-is-lowercase'.
14854         * modules/unicase/u32-is-lowercase-tests: New file.
14855         * tests/unicase/test-u32-is-lowercase.c: New file.
14856
14857         Tests for module 'unicase/u16-is-lowercase'.
14858         * modules/unicase/u16-is-lowercase-tests: New file.
14859         * tests/unicase/test-u16-is-lowercase.c: New file.
14860
14861         Tests for module 'unicase/u8-is-lowercase'.
14862         * modules/unicase/u8-is-lowercase-tests: New file.
14863         * tests/unicase/test-u8-is-lowercase.c: New file.
14864         * tests/unicase/test-is-lowercase.h: New file.
14865
14866         New module 'unicase/u32-is-lowercase'.
14867         * lib/unicase/u32-is-lowercase.c: New file.
14868         * modules/unicase/u32-is-lowercase: New file.
14869
14870         New module 'unicase/u16-is-lowercase'.
14871         * lib/unicase/u16-is-lowercase.c: New file.
14872         * modules/unicase/u16-is-lowercase: New file.
14873
14874         New module 'unicase/u8-is-lowercase'.
14875         * lib/unicase/u8-is-lowercase.c: New file.
14876         * modules/unicase/u8-is-lowercase: New file.
14877
14878         Tests for module 'unicase/u32-is-uppercase'.
14879         * modules/unicase/u32-is-uppercase-tests: New file.
14880         * tests/unicase/test-u32-is-uppercase.c: New file.
14881
14882         Tests for module 'unicase/u16-is-uppercase'.
14883         * modules/unicase/u16-is-uppercase-tests: New file.
14884         * tests/unicase/test-u16-is-uppercase.c: New file.
14885
14886         Tests for module 'unicase/u8-is-uppercase'.
14887         * modules/unicase/u8-is-uppercase-tests: New file.
14888         * tests/unicase/test-u8-is-uppercase.c: New file.
14889         * tests/unicase/test-is-uppercase.h: New file.
14890
14891         New module 'unicase/u32-is-uppercase'.
14892         * lib/unicase/u32-is-uppercase.c: New file.
14893         * modules/unicase/u32-is-uppercase: New file.
14894
14895         New module 'unicase/u16-is-uppercase'.
14896         * lib/unicase/u16-is-uppercase.c: New file.
14897         * modules/unicase/u16-is-uppercase: New file.
14898
14899         New module 'unicase/u8-is-uppercase'.
14900         * lib/unicase/u8-is-uppercase.c: New file.
14901         * modules/unicase/u8-is-uppercase: New file.
14902
14903         New module 'unicase/u32-is-invariant'.
14904         * lib/unicase/u32-is-invariant.c: New file.
14905         * modules/unicase/u32-is-invariant: New file.
14906
14907         New module 'unicase/u16-is-invariant'.
14908         * lib/unicase/u16-is-invariant.c: New file.
14909         * modules/unicase/u16-is-invariant: New file.
14910
14911         New module 'unicase/u8-is-invariant'.
14912         * lib/unicase/u8-is-invariant.c: New file.
14913         * lib/unicase/invariant.h: New file.
14914         * lib/unicase/u-is-invariant.h: New file.
14915         * modules/unicase/u8-is-invariant: New file.
14916
14917         Tests for module 'unicase/u32-casecoll'.
14918         * modules/unicase/u32-casecoll-tests: New file.
14919         * tests/unicase/test-u32-casecoll.c: New file.
14920
14921         Tests for module 'unicase/u16-casecoll'.
14922         * modules/unicase/u16-casecoll-tests: New file.
14923         * tests/unicase/test-u16-casecoll.c: New file.
14924
14925         Tests for module 'unicase/u8-casecoll'.
14926         * modules/unicase/u8-casecoll-tests: New file.
14927         * tests/unicase/test-u8-casecoll.c: New file.
14928
14929         New module 'unicase/u32-casecoll'.
14930         * lib/unicase/u32-casecoll.c: New file.
14931         * modules/unicase/u32-casecoll: New file.
14932
14933         New module 'unicase/u16-casecoll'.
14934         * lib/unicase/u16-casecoll.c: New file.
14935         * modules/unicase/u16-casecoll: New file.
14936
14937         New module 'unicase/u8-casecoll'.
14938         * lib/unicase/u8-casecoll.c: New file.
14939         * lib/unicase/u-casecoll.h: New file.
14940         * modules/unicase/u8-casecoll: New file.
14941
14942         New module 'unicase/u32-casexfrm'.
14943         * lib/unicase/u32-casexfrm.c: New file.
14944         * modules/unicase/u32-casexfrm: New file.
14945
14946         New module 'unicase/u16-casexfrm'.
14947         * lib/unicase/u16-casexfrm.c: New file.
14948         * modules/unicase/u16-casexfrm: New file.
14949
14950         New module 'unicase/u8-casexfrm'.
14951         * lib/unicase/u8-casexfrm.c: New file.
14952         * lib/unicase/u-casexfrm.h: New file.
14953         * modules/unicase/u8-casexfrm: New file.
14954
14955         Tests for module 'unicase/u32-casecmp'.
14956         * modules/unicase/u32-casecmp-tests: New file.
14957         * tests/unicase/test-u32-casecmp.c: New file.
14958
14959         Tests for module 'unicase/u16-casecmp'.
14960         * modules/unicase/u16-casecmp-tests: New file.
14961         * tests/unicase/test-u16-casecmp.c: New file.
14962
14963         Tests for module 'unicase/u8-casecmp'.
14964         * modules/unicase/u8-casecmp-tests: New file.
14965         * tests/unicase/test-u8-casecmp.c: New file.
14966         * tests/unicase/test-casecmp.h: New file.
14967
14968         New module 'unicase/u32-casecmp'.
14969         * lib/unicase/u32-casecmp.c: New file.
14970         * modules/unicase/u32-casecmp: New file.
14971
14972         New module 'unicase/u16-casecmp'.
14973         * lib/unicase/u16-casecmp.c: New file.
14974         * modules/unicase/u16-casecmp: New file.
14975
14976         New module 'unicase/u8-casecmp'.
14977         * lib/unicase/u8-casecmp.c: New file.
14978         * lib/unicase/u-casecmp.h: New file.
14979         * modules/unicase/u8-casecmp: New file.
14980
14981         Tests for module 'unicase/u32-casefold'.
14982         * modules/unicase/u32-casefold-tests: New file.
14983         * tests/unicase/test-u32-casefold.c: New file.
14984
14985         Tests for module 'unicase/u16-casefold'.
14986         * modules/unicase/u16-casefold-tests: New file.
14987         * tests/unicase/test-u16-casefold.c: New file.
14988
14989         Tests for module 'unicase/u8-casefold'.
14990         * modules/unicase/u8-casefold-tests: New file.
14991         * tests/unicase/test-u8-casefold.c: New file.
14992
14993         New module 'unicase/u32-casefold'.
14994         * lib/unicase/u32-casefold.c: New file.
14995         * modules/unicase/u32-casefold: New file.
14996
14997         New module 'unicase/u16-casefold'.
14998         * lib/unicase/u16-casefold.c: New file.
14999         * modules/unicase/u16-casefold: New file.
15000
15001         New module 'unicase/u8-casefold'.
15002         * lib/unicase/u8-casefold.c: New file.
15003         * lib/unicase/u-casefold.h: New file.
15004         * modules/unicase/u8-casefold: New file.
15005
15006         New module 'unicase/tocasefold'.
15007         * lib/unicase/casefold.h: New file.
15008         * lib/unicase/tocasefold.c: New file.
15009         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
15010         * modules/unicase/tocasefold: New file.
15011
15012         Tests for module 'unicase/u32-totitle'.
15013         * modules/unicase/u32-totitle-tests: New file.
15014         * tests/unicase/test-u32-totitle.c: New file.
15015
15016         Tests for module 'unicase/u16-totitle'.
15017         * modules/unicase/u16-totitle-tests: New file.
15018         * tests/unicase/test-u16-totitle.c: New file.
15019
15020         Tests for module 'unicase/u8-totitle'.
15021         * modules/unicase/u8-totitle-tests: New file.
15022         * tests/unicase/test-u8-totitle.c: New file.
15023
15024         New module 'unicase/u32-totitle'.
15025         * lib/unicase/u32-totitle.c: New file.
15026         * modules/unicase/u32-totitle: New file.
15027
15028         New module 'unicase/u16-totitle'.
15029         * lib/unicase/u16-totitle.c: New file.
15030         * modules/unicase/u16-totitle: New file.
15031
15032         New module 'unicase/u8-totitle'.
15033         * lib/unicase/u8-totitle.c: New file.
15034         * lib/unicase/u-totitle.h: New file.
15035         * modules/unicase/u8-totitle: New file.
15036
15037         Tests for module 'unicase/u32-tolower'.
15038         * modules/unicase/u32-tolower-tests: New file.
15039         * tests/unicase/test-u32-tolower.c: New file.
15040
15041         Tests for module 'unicase/u16-tolower'.
15042         * modules/unicase/u16-tolower-tests: New file.
15043         * tests/unicase/test-u16-tolower.c: New file.
15044
15045         Tests for module 'unicase/u8-tolower'.
15046         * modules/unicase/u8-tolower-tests: New file.
15047         * tests/unicase/test-u8-tolower.c: New file.
15048
15049         New module 'unicase/u32-tolower'.
15050         * lib/unicase/u32-tolower.c: New file.
15051         * modules/unicase/u32-tolower: New file.
15052
15053         New module 'unicase/u16-tolower'.
15054         * lib/unicase/u16-tolower.c: New file.
15055         * modules/unicase/u16-tolower: New file.
15056
15057         New module 'unicase/u8-tolower'.
15058         * lib/unicase/u8-tolower.c: New file.
15059         * modules/unicase/u8-tolower: New file.
15060
15061         Tests for module 'unicase/u32-toupper'.
15062         * modules/unicase/u32-toupper-tests: New file.
15063         * tests/unicase/test-u32-toupper.c: New file.
15064
15065         Tests for module 'unicase/u16-toupper'.
15066         * modules/unicase/u16-toupper-tests: New file.
15067         * tests/unicase/test-u16-toupper.c: New file.
15068
15069         Tests for module 'unicase/u8-toupper'.
15070         * modules/unicase/u8-toupper-tests: New file.
15071         * tests/unicase/test-u8-toupper.c: New file.
15072
15073         New module 'unicase/u32-toupper'.
15074         * lib/unicase/u32-toupper.c: New file.
15075         * modules/unicase/u32-toupper: New file.
15076
15077         New module 'unicase/u16-toupper'.
15078         * lib/unicase/u16-toupper.c: New file.
15079         * modules/unicase/u16-toupper: New file.
15080
15081         New module 'unicase/u8-toupper'.
15082         * lib/unicase/u8-toupper.c: New file.
15083         * modules/unicase/u8-toupper: New file.
15084
15085         New module 'unicase/u32-casemap'.
15086         * lib/unicase/u32-casemap.c: New file.
15087         * modules/unicase/u32-casemap: New file.
15088
15089         New module 'unicase/u16-casemap'.
15090         * lib/unicase/u16-casemap.c: New file.
15091         * modules/unicase/u16-casemap: New file.
15092
15093         New module 'unicase/u8-casemap'.
15094         * lib/unicase/unicasemap.h: New file.
15095         * lib/unicase/u8-casemap.c: New file.
15096         * lib/unicase/u-casemap.h: New file.
15097         * modules/unicase/u8-casemap: New file.
15098
15099         New module 'unicase/special-casing'.
15100         * lib/unicase/special-casing.h: New file.
15101         * lib/unicase/special-casing.c: New file.
15102         * lib/unicase/special-casing-table.gperf: New file, generated by
15103         gen-uni-tables.c.
15104         * modules/unicase/special-casing: New file.
15105
15106         Tests for module 'unicase/locale-language'.
15107         * modules/unicase/locale-language-tests: New file.
15108         * tests/unicase/test-locale-language.sh: New file.
15109         * tests/unicase/test-locale-language.c: New file.
15110
15111         New module 'unicase/locale-language'.
15112         * lib/unicase/locale-language.c: New file.
15113         * lib/unicase/locale-languages.gperf: New file.
15114         * modules/unicase/locale-language: New file.
15115
15116         Generate more tables for case conversion and case folding.
15117         * lib/gen-uni-tables.c (SCC_*): New enum items.
15118         (struct special_casing_rule): New type.
15119         (casing_rules, num_casing_rules, allocated_casing_rules): New
15120         variables.
15121         (add_casing_rule, fill_casing_rules): New functions.
15122         (struct casefold_rule): New type.
15123         (casefolding_rules, num_casefolding_rules,
15124         allocated_casefolding_rules): New variables.
15125         (fill_casefolding_rules): New function.
15126         (unicode_casefold): New variable.
15127         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
15128         sort_casing_rules, output_casing_rules): New functions.
15129         (main): Accept to more arguments: SpecialCasing.txt and
15130         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
15131         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
15132         Output mapping for casefolding.
15133
15134         * lib/unicase.h: Include stdbool.h, uninorm.h.
15135         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
15136         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
15137         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
15138         arguments.
15139         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
15140         resultp arguments.
15141         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
15142         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
15143         resultp arguments.
15144         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
15145         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
15146         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
15147         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
15148         declarations.
15149         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
15150
15151 2009-03-08  Bruno Haible  <bruno@clisp.org>
15152
15153         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15154         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
15155         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
15156         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15157
15158 2009-03-07  Bruno Haible  <bruno@clisp.org>
15159
15160         Adjust u*_normcmp, u*_normcoll API.
15161         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15162         u16_normcoll, u32_normcoll): Change failure conventions.
15163         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
15164         errno and return -1.
15165         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15166
15167 2009-03-07  Bruno Haible  <bruno@clisp.org>
15168
15169         Tests for module 'uninorm/u32-normcoll'.
15170         * modules/uninorm/u32-normcoll-tests: New file.
15171         * tests/uninorm/test-u32-normcoll.c: New file.
15172
15173         Tests for module 'uninorm/u16-normcoll'.
15174         * modules/uninorm/u16-normcoll-tests: New file.
15175         * tests/uninorm/test-u16-normcoll.c: New file.
15176
15177         Tests for module 'uninorm/u8-normcoll'.
15178         * modules/uninorm/u8-normcoll-tests: New file.
15179         * tests/uninorm/test-u8-normcoll.c: New file.
15180
15181 2009-03-07  Bruno Haible  <bruno@clisp.org>
15182
15183         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
15184         tests/uninorm/test-u32-normcmp.c.
15185         * tests/uninorm/test-u32-normcmp.c: Include it.
15186         (test_nonascii): New function, extracted from main. Add some more
15187         tests.
15188         (main): Invoke test_ascii and test_nonascii.
15189         * modules/uninorm/u32-normcmp-tests (Files): Add
15190         tests/uninorm/test-u32-normcmp.h.
15191         (Depends-on): Remove uninorm/u32-normcmp.
15192
15193         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
15194         tests/uninorm/test-u16-normcmp.c.
15195         * tests/uninorm/test-u16-normcmp.c: Include it.
15196         (test_nonascii): New function, extracted from main. Add some more
15197         tests.
15198         (main): Invoke test_ascii and test_nonascii.
15199         * modules/uninorm/u16-normcmp-tests (Files): Add
15200         tests/uninorm/test-u16-normcmp.h.
15201         (Depends-on): Remove uninorm/u16-normcmp.
15202
15203         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
15204         tests/uninorm/test-u8-normcmp.c.
15205         * tests/uninorm/test-u8-normcmp.c: Include it.
15206         (test_nonascii): New function, extracted from main. Add some more
15207         tests.
15208         (main): Invoke test_ascii and test_nonascii.
15209         * modules/uninorm/u8-normcmp-tests (Files): Add
15210         tests/uninorm/test-u8-normcmp.h.
15211         (Depends-on): Remove uninorm/u8-normcmp.
15212
15213 2009-03-07  Bruno Haible  <bruno@clisp.org>
15214
15215         New module 'uninorm/u32-normcoll'.
15216         * lib/uninorm/u32-normcoll.c: New file.
15217         * modules/uninorm/u32-normcoll: New file.
15218
15219         New module 'uninorm/u16-normcoll'.
15220         * lib/uninorm/u16-normcoll.c: New file.
15221         * modules/uninorm/u16-normcoll: New file.
15222
15223         New module 'uninorm/u8-normcoll'.
15224         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
15225         declarations.
15226         * lib/uninorm/u8-normcoll.c: New file.
15227         * lib/uninorm/u-normcoll.h: New file.
15228         * modules/uninorm/u8-normcoll: New file.
15229
15230         New module 'uninorm/u32-normxfrm'.
15231         * lib/uninorm/u32-normxfrm.c: New file.
15232         * modules/uninorm/u32-normxfrm: New file.
15233
15234         New module 'uninorm/u16-normxfrm'.
15235         * lib/uninorm/u16-normxfrm.c: New file.
15236         * modules/uninorm/u16-normxfrm: New file.
15237
15238         New module 'uninorm/u8-normxfrm'.
15239         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
15240         declarations.
15241         * lib/uninorm/u8-normxfrm.c: New file.
15242         * lib/uninorm/u-normxfrm.h: New file.
15243         * modules/uninorm/u8-normxfrm: New file.
15244
15245 2009-03-07  Bruno Haible  <bruno@clisp.org>
15246
15247         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
15248         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
15249         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
15250
15251 2009-03-07  Bruno Haible  <bruno@clisp.org>
15252
15253         New module 'memxfrm'.
15254         * lib/memxfrm.h: New file.
15255         * lib/memxfrm.c: New file.
15256         * modules/memxfrm: New file.
15257
15258 2009-03-07  Bruno Haible  <bruno@clisp.org>
15259
15260         New module 'memcmp2'.
15261         * lib/memcmp2.h: New file.
15262         * lib/memcmp2.c: New file.
15263         * modules/memcmp2: New file.
15264
15265 2009-03-07  Bruno Haible  <bruno@clisp.org>
15266
15267         Tests for module 'uninorm/decomposing-form'.
15268         * modules/uninorm/decomposing-form-tests: New file.
15269         * tests/uninorm/test-decomposing-form.c: New file.
15270
15271         New module 'uninorm/decomposing-form'.
15272         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
15273         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
15274         Add 'decomposing_variant' field.
15275         * lib/uninorm/decomposing-form.c: New file.
15276         * lib/uninorm/nfc.c (uninorm_nfc): Update.
15277         * lib/uninorm/nfd.c (uninorm_nfd): Update.
15278         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
15279         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
15280         * modules/uninorm/decomposing-form: New file.
15281         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
15282         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
15283
15284 2009-03-07  Bruno Haible  <bruno@clisp.org>
15285
15286         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
15287         strings.
15288
15289 2009-03-06  Bruno Haible  <bruno@clisp.org>
15290
15291         Tests for module 'uninorm/u32-normcmp'.
15292         * tests/uninorm/test-u32-normcmp.c: New file.
15293         * modules/uninorm/u32-normcmp-tests: New file.
15294
15295         Tests for module 'uninorm/u16-normcmp'.
15296         * tests/uninorm/test-u16-normcmp.c: New file.
15297         * modules/uninorm/u16-normcmp-tests: New file.
15298
15299         Tests for module 'uninorm/u8-normcmp'.
15300         * tests/uninorm/test-u8-normcmp.c: New file.
15301         * modules/uninorm/u8-normcmp-tests: New file.
15302
15303         New module 'uninorm/u32-normcmp'.
15304         * lib/uninorm/u32-normcmp.c: New file.
15305         * modules/uninorm/u32-normcmp: New file.
15306
15307         New module 'uninorm/u16-normcmp'.
15308         * lib/uninorm/u16-normcmp.c: New file.
15309         * modules/uninorm/u16-normcmp: New file.
15310
15311         New module 'uninorm/u8-normcmp'.
15312         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
15313         declarations.
15314         * lib/uninorm/u8-normcmp.c: New file.
15315         * lib/uninorm/u-normcmp.h: New file.
15316         * modules/uninorm/u8-normcmp: New file.
15317
15318 2009-03-06  Bruno Haible  <bruno@clisp.org>
15319
15320         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
15321         Reported by Eric Blake.
15322
15323 2009-03-06  Eric Blake  <ebb9@byu.net>
15324             Bruno Haible  <bruno@clisp.org>
15325
15326         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
15327         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
15328         condition.
15329         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15330         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
15331         condition.
15332         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15333
15334 2009-03-06  Eric Blake  <ebb9@byu.net>
15335
15336         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
15337         to avoid compiler warnings.
15338         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
15339
15340 2009-03-05  Bruno Haible  <bruno@clisp.org>
15341
15342         * tests/test-ftell.c (main): Disable test beyond end of file on
15343         FreeMiNT.
15344         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
15345
15346 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
15347
15348         * lib/filevercmp.c: Move hidden files up in ordering.
15349         * tests/test-filevercmp.c: Add tests for hidden files.
15350
15351 2009-03-04  Bruno Haible  <bruno@clisp.org>
15352
15353         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
15354         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
15355         AM_CFLAGS.
15356         Reported by Simon Josefsson.
15357
15358 2009-03-03  Bruno Haible  <bruno@clisp.org>
15359
15360         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
15361         Reported by Simon Josefsson.
15362
15363         * doc/ld-version-script.texi: Update node reference.
15364
15365 2009-03-03  Bruno Haible  <bruno@clisp.org>
15366
15367         * modules/visibility (License): Change to 'unlimited'.
15368         Suggested by Simon Josefsson.
15369
15370 2009-03-03  Jim Meyering  <meyering@redhat.com>
15371
15372         unlinkdir: cannot_unlink_dir may modify process state
15373         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
15374         it's neither thread-safe nor appropriate for use in a library.
15375
15376 2009-03-03  Eric Blake  <ebb9@byu.net>
15377
15378         test-closein: silence test under Darwin
15379         * tests/test-closein.sh: Ignore stderr from cat, since we don't
15380         care if it dies from EPIPE or EBADF.
15381
15382 2009-03-03  Bruno Haible  <bruno@clisp.org>
15383
15384         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
15385         earlier.
15386         * doc/visibility.texi: Fix @node and @section.
15387
15388 2009-03-03  Simon Josefsson  <simon@josefsson.org>
15389
15390         * doc/gnulib.texi: Link to sections for ld version script and
15391         visibility.
15392         * doc/visibility.texi: Add @node and @section.
15393         * modules/ld-version-script: New module.
15394         * m4/ld-version-script.m4: New file.
15395         * doc/ld-version-script.texi: New file.
15396
15397 2009-03-02  David Lutterkort  <lutter@redhat.com>
15398
15399         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
15400         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15401
15402 2009-03-02  Bruno Haible  <bruno@clisp.org>
15403
15404         * doc/visibility.texi: Mention libtool's -export-symbols option.
15405
15406 2009-03-02  Jim Meyering  <meyering@redhat.com>
15407
15408         announce-gen: new option: --no-print-checksums
15409         * build-aux/announce-gen (usage): Describe it.
15410         (print_checksums): Print a newline here, not in the [*] footnote.
15411         (main): Honor it.
15412
15413 2009-03-01  Bruno Haible  <bruno@clisp.org>
15414
15415         Use socklen_t in the native Windows replacements prototypes.
15416         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
15417         instead of 'int'.
15418         * lib/getsockopt.c (rpl_getsockopt): Likewise.
15419         * lib/setsockopt.c (rpl_setsockopt): Likewise.
15420         * modules/getsockopt (Depends-on): Add socklen.
15421         * modules/setsockopt (Depends-on): Add socklen.
15422
15423 2009-03-01  Bruno Haible  <bruno@clisp.org>
15424
15425         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
15426         least 4.2.
15427
15428 2009-03-01  Eric Blake  <ebb9@byu.net>
15429             Bruno Haible  <bruno@clisp.org>
15430
15431         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
15432         error messages.
15433         * lib/wait-process.c (wait_subprocess): Omit error message about
15434         deadly signal sent to the child of termsigp != NULL.
15435
15436 2009-03-01  Eric Blake  <ebb9@byu.net>
15437
15438         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
15439
15440 2009-03-01  Bruno Haible  <bruno@clisp.org>
15441
15442         Avoid a gcc warning.
15443         * tests/test-sched.c (b): Make global.
15444         Reported by Eric Blake.
15445
15446 2009-01-19  Martin Lambers  <marlam@marlam.de>
15447
15448         Provide POSIX semantics for socket timeout options on W32.
15449         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
15450         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
15451         * modules/setsockopt: Depend on sys_time module for struct timeval.
15452         * modules/getsockopt: Depend on sys_time module for struct timeval.
15453
15454 2009-03-01  Simon Josefsson  <simon@josefsson.org>
15455
15456         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
15457         __USE_GNU, for consistency with netdb.in.h.
15458         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15459
15460 2009-03-01  Bruno Haible  <bruno@clisp.org>
15461
15462         More support for FreeMiNT.
15463         * lib/fseeko.c (rpl_fseeko): Complete last commit.
15464         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15465
15466 2009-03-01  Bruno Haible  <bruno@clisp.org>
15467
15468         More support for FreeMiNT.
15469         * lib/fpurge.c (fpurge): Correct last commit.
15470         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15471
15472 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15473
15474         Fix unportable awk script in vc-list-files.
15475         * build-aux/vc-list-files: In the replacement awk script, use
15476         substr with a second argument of 1, not zero.
15477         Report by Simon Josefsson.
15478
15479 2009-02-28  Bruno Haible  <bruno@clisp.org>
15480
15481         More support for FreeMiNT.
15482         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
15483         to FreeMiNT today.
15484         * lib/fwriting.c (fwriting): Likewise.
15485         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
15486
15487 2009-02-28  Bruno Haible  <bruno@clisp.org>
15488
15489         * tests/test-freadseek.c (main): Disable test beyond end of file on
15490         FreeMiNT.
15491         * tests/test-ftello.c (main): Likewise.
15492         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
15493
15494 2009-02-28  Bruno Haible  <bruno@clisp.org>
15495
15496         Add tentative support for FreeMiNT.
15497         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
15498         * lib/fpurge.c (fpurge): Likewise.
15499         * lib/freadable.c (freadable): Likewise.
15500         * lib/freading.c (freading): Likewise.
15501         * lib/freadptr.c (freadptr): Likewise.
15502         * lib/freadseek.c (freadptrinc): Likewise.
15503         * lib/fseeko.c (rpl_fseeko): Likewise.
15504         * lib/fseterr.c (fseterr): Likewise.
15505         * lib/fwritable.c (fwritable): Likewise.
15506         * lib/fwriting.c (fwriting): Likewise.
15507         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
15508         Hourihane.
15509         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15510
15511 2009-02-28  Bruno Haible  <bruno@clisp.org>
15512
15513         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
15514         SIGCHLD.
15515         Reported by Jim Meyering.
15516
15517 2009-02-28  Bruno Haible  <bruno@clisp.org>
15518
15519         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
15520         Mention the results of these tests on various platforms.
15521         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
15522         order.
15523         * doc/posix-functions/printf.texi: Likewise.
15524         * doc/posix-functions/snprintf.texi: Likewise.
15525         * doc/posix-functions/sprintf.texi: Likewise.
15526         * doc/posix-functions/vfprintf.texi: Likewise.
15527         * doc/posix-functions/vprintf.texi: Likewise.
15528         * doc/posix-functions/vsnprintf.texi: Likewise.
15529         * doc/posix-functions/vsprintf.texi: Likewise.
15530         * doc/glibc-functions/obstack_printf.texi: Likewise.
15531         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
15532
15533 2009-02-28  Bruno Haible  <bruno@clisp.org>
15534
15535         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
15536         Reported by Loïc Minier <lool@dooz.org>.
15537
15538 2009-02-27  Bruno Haible  <bruno@clisp.org>
15539
15540         * gnulib-tool (func_import): Make the sed expression used to create the
15541         sed script for updating the .gitignore file POSIX compliant.
15542         Reported by Eric Blake.
15543
15544 2009-02-27  Bruno Haible  <bruno@clisp.org>
15545
15546         * gnulib-tool (sed): Don't alias as "sed --posix".
15547         Reported by Eric Blake.
15548
15549 2009-02-27  Bruno Haible  <bruno@clisp.org>
15550
15551         Avoid test link errors.
15552         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
15553         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
15554         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
15555         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
15556         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15557
15558 2009-02-27  Bruno Haible  <bruno@clisp.org>
15559
15560         Avoid spurious "(cached)" in configure output.
15561         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
15562         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
15563         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
15564         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
15565         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
15566         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
15567         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
15568         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
15569         Reported by Eric Blake.
15570
15571 2009-02-27  Eric Blake  <ebb9@byu.net>
15572
15573         printf: fix regression in previous patch
15574         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
15575
15576 2009-02-27  Bruno Haible  <bruno@clisp.org>
15577
15578         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
15579         value.
15580         * lib/stdint.in.h: Likewise.
15581         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
15582
15583 2009-02-27  Eric Blake  <ebb9@byu.net>
15584
15585         doc: mention more functions added in cygwin 1.7.0
15586         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
15587         addition.
15588         * doc/posix-functions/open_wmemstream.texi: Likewise.
15589         * doc/posix-functions/wcsnlen.texi: Likewise.
15590         * doc/posix-functions/wcsnrtombs.texi: Likewise.
15591         * doc/posix-functions/wcstod.texi: Likewise.
15592         * doc/posix-functions/wcstof.texi: Likewise.
15593         * doc/posix-functions/wcstoimax.texi: Likewise.
15594         * doc/posix-functions/wcstok.texi: Likewise.
15595         * doc/posix-functions/wcstoumax.texi: Likewise.
15596
15597         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
15598         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
15599         * doc/posix-functions/fprintf.texi: Update.
15600         * doc/posix-functions/printf.texi: Update.
15601         * doc/posix-functions/snprintf.texi: Update.
15602         * doc/posix-functions/sprintf.texi: Update.
15603         * doc/posix-functions/vfprintf.texi: Update.
15604         * doc/posix-functions/vprintf.texi: Update.
15605         * doc/posix-functions/vsnprintf.texi: Update.
15606         * doc/posix-functions/vsprintf.texi: Update.
15607         * doc/glibc-functions/obstack_printf.texi: Update.
15608         * doc/glibc-functions/obstack_vprintf.texi: Update.
15609
15610 2009-02-26  Eric Blake  <ebb9@byu.net>
15611
15612         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
15613         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
15614         compilation bug by using runtime conversion.
15615         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
15616         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
15617         * modules/ceill-tests (Files): Use nan.h.
15618         * modules/floorl-tests (Files): Likewise.
15619         * modules/frexpl-tests (Files): Likewise.
15620         * modules/isnanl-tests (Files): Likewise.
15621         * modules/ldexpl-tests (Files): Likewise.
15622         * modules/roundl-tests (Files): Likewise.
15623         * modules/truncl-tests (Files): Likewise.
15624         * tests/test-ceill.c (main): Use a working NaN.
15625         * tests/test-floorl.c (main): Likewise.
15626         * tests/test-frexpl.c (main): Likewise.
15627         * tests/test-isnan.c (test_long_double): Likewise.
15628         * tests/test-isnanl.h (main): Likewise.
15629         * tests/test-ldexpl.h (main): Likewise.
15630         * tests/test-roundl.h (main): Likewise.
15631         * tests/test-truncl.h (main): Likewise.
15632         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
15633
15634 2009-02-26  Eric Blake  <ebb9@byu.net>
15635             Bruno Haible  <bruno@clisp.org>
15636
15637         Work around a *printf bug with %ls on Solaris.
15638         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
15639         precision is specified, sprintf stops converting the wide string
15640         argument when the number of bytes that have been produced by this
15641         conversion equals or exceeds the precision.
15642         * doc/posix-functions/fprintf.texi: Update.
15643         * doc/posix-functions/printf.texi: Update.
15644         * doc/posix-functions/snprintf.texi: Update.
15645         * doc/posix-functions/sprintf.texi: Update.
15646         * doc/posix-functions/vfprintf.texi: Update.
15647         * doc/posix-functions/vprintf.texi: Update.
15648         * doc/posix-functions/vsnprintf.texi: Update.
15649         * doc/posix-functions/vsprintf.texi: Update.
15650         * doc/glibc-functions/obstack_printf.texi: Update.
15651         * doc/glibc-functions/obstack_vprintf.texi: Update.
15652
15653 2009-02-26  Eric Blake  <ebb9@byu.net>
15654
15655         stdlib: favor compiler check of random.h
15656         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
15657         to avoid an ObjC random.h installed by Swarm.
15658
15659 2009-02-26  Bruno Haible  <bruno@clisp.org>
15660
15661         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
15662         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
15663         Reported by Gary V. Vaughan <gary@gnu.org>.
15664
15665 2009-02-26  Bruno Haible  <bruno@clisp.org>
15666
15667         Fix *printf behaviour regarding the %ls directive.
15668         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
15669         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
15670         NEED_PRINTF_DIRECTIVE_LS.
15671         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
15672         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
15673         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
15674         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
15675         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
15676         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
15677         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
15678         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
15679         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
15680         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
15681         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
15682         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
15683         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
15684         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
15685         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
15686         * doc/posix-functions/fprintf.texi: Update.
15687         * doc/posix-functions/printf.texi: Update.
15688         * doc/posix-functions/snprintf.texi: Update.
15689         * doc/posix-functions/sprintf.texi: Update.
15690         * doc/posix-functions/vfprintf.texi: Update.
15691         * doc/posix-functions/vprintf.texi: Update.
15692         * doc/posix-functions/vsnprintf.texi: Update.
15693         * doc/posix-functions/vsprintf.texi: Update.
15694         * doc/glibc-functions/obstack_printf.texi: Update.
15695         * doc/glibc-functions/obstack_vprintf.texi: Update.
15696         Reported by Eric Blake.
15697
15698 2009-02-25  Bruno Haible  <bruno@clisp.org>
15699
15700         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
15701         with known value.
15702         Reported by Gary V. Vaughan <gary@gnu.org>.
15703
15704 2009-02-25  Bruno Haible  <bruno@clisp.org>
15705
15706         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
15707         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
15708         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
15709         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
15710         Reported by Gary V. Vaughan <gary@gnu.org>.
15711
15712 2009-02-25  Bruno Haible  <bruno@clisp.org>
15713
15714         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
15715         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
15716         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
15717         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
15718         Reported by Gary V. Vaughan <gary@gnu.org>.
15719
15720 2009-02-25  Eric Blake  <ebb9@byu.net>
15721
15722         tests: skip fseek/ftell tests if ungetc is broken
15723         * m4/ungetc.m4: New file.
15724         * modules/fseek-tests: Split test, so ungetc dependency is
15725         separate from rest of test.
15726         * modules/fseeko-tests: Likewise.
15727         * modules/ftell-tests: Likewise.
15728         * modules/ftello-tests: Likewise.
15729         * tests/test-fseek.c (main): Isolate ungetc dependency.
15730         * tests/test-fseeko.c (main): Likewise.
15731         * tests/test-ftell.c (main): Likewise.
15732         * tests/test-ftello.c (main): Likewise.
15733         * tests/test-fseek2.sh: New file.
15734         * tests/test-fseeko2.sh: Likewise.
15735         * tests/test-ftell2.sh: Likewise.
15736         * tests/test-ftello2.sh: Likewise.
15737
15738 2009-02-25  Ondřej Vašík  <ovasik@redhat.com>
15739
15740         test-getaddrinfo: fix usage of skip return code 77
15741         * tests/test-gettaddrinfo.c: Return skip code 77 only
15742         for first occurance of skip (4x77 is not 77)
15743
15744 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
15745
15746         strtod: avoid C99 decl-after-statement
15747         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
15748
15749 2009-02-24  Eric Blake  <ebb9@byu.net>
15750
15751         strtod: detect HP-UX 11.31 bug
15752         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
15753         Reported by Gary V. Vaughan.
15754
15755 2009-02-23  Bruno Haible  <bruno@clisp.org>
15756
15757         Fix invalid read past end of memory block.
15758         * lib/vasnprintf.c (DCHAR_SET): Define.
15759         (local_wcslen): Define only when needed.
15760         (local_strnlen, local_wcsnlen): New functions.
15761         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
15762         directives that involve a conversion ourselves.
15763         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
15764         wcsnlen, mbrtowc, wcrtomb.
15765         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
15766         * tests/test-vasprintf-posix.c (test_function): Likewise.
15767         * tests/test-snprintf-posix.h (test_function): Likewise.
15768         * tests/test-sprintf-posix.h (test_function): Likewise.
15769         Reported by Ben Pfaff <blp@cs.stanford.edu>.
15770
15771 2009-02-22  Bruno Haible  <bruno@clisp.org>
15772
15773         Implement new clarified decomposition of Hangul syllables.
15774         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
15775         of type LTV, return only a pairwise decomposition.
15776         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
15777         Likewise.
15778         * tests/uninorm/test-decomposition.c (main): Updated expected result.
15779         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
15780         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
15781
15782 2009-02-22  Bruno Haible  <bruno@clisp.org>
15783
15784         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
15785         zero-length results and shrink excess allocated memory.
15786         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
15787         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
15788         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
15789         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
15790         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
15791         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
15792         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
15793         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
15794         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
15795         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
15796         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
15797         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
15798
15799 2009-02-21  Bruno Haible  <bruno@clisp.org>
15800
15801         * doc/gnulib.texi: Include safe-alloc.texi earlier.
15802         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
15803         spaces after a period. Put a space between a macro name and its
15804         argument list. Trivial rewordings.
15805         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
15806         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
15807         (main): Return 0 explicitly.
15808
15809 2009-02-21  Bruno Haible  <bruno@clisp.org>
15810
15811         Tests for module 'uninorm/filter'.
15812         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
15813         * modules/uninorm/filter-tests: New file.
15814
15815         New module 'uninorm/filter'.
15816         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
15817         uninorm_filter_flush, uninorm_filter_free): New declarations.
15818         * lib/uninorm/uninorm-filter.c: New file.
15819         * modules/uninorm/filter: New file.
15820
15821 2009-02-21  Bruno Haible  <bruno@clisp.org>
15822
15823         Tests for module 'uninorm/nfkc'.
15824         * tests/uninorm/test-nfkc.c: New file.
15825         * tests/uninorm/test-u8-nfkc.c: New file.
15826         * tests/uninorm/test-u16-nfkc.c: New file.
15827         * tests/uninorm/test-u32-nfkc.c: New file.
15828         * tests/uninorm/test-u32-nfkc-big.sh: New file.
15829         * tests/uninorm/test-u32-nfkc-big.c: New file.
15830         * modules/uninorm/nfkc-tests: New file.
15831
15832         New module 'uninorm/nfkc'.
15833         * lib/uninorm/nfkc.c: New file.
15834         * modules/uninorm/nfkc: New file.
15835
15836         Tests for module 'uninorm/nfkd'.
15837         * tests/uninorm/test-nfkd.c: New file.
15838         * tests/uninorm/test-u8-nfkd.c: New file.
15839         * tests/uninorm/test-u16-nfkd.c: New file.
15840         * tests/uninorm/test-u32-nfkd.c: New file.
15841         * tests/uninorm/test-u32-nfkd-big.sh: New file.
15842         * tests/uninorm/test-u32-nfkd-big.c: New file.
15843         * modules/uninorm/nfkd-tests: New file.
15844
15845         New module 'uninorm/nfkd'.
15846         * lib/uninorm/nfkd.c: New file.
15847         * modules/uninorm/nfkd: New file.
15848
15849         Tests for module 'uninorm/nfc'.
15850         * tests/uninorm/test-nfc.c: New file.
15851         * tests/uninorm/test-u8-nfc.c: New file.
15852         * tests/uninorm/test-u16-nfc.c: New file.
15853         * tests/uninorm/test-u32-nfc.c: New file.
15854         * tests/uninorm/test-u32-nfc-big.sh: New file.
15855         * tests/uninorm/test-u32-nfc-big.c: New file.
15856         * modules/uninorm/nfc-tests: New file.
15857
15858         New module 'uninorm/nfc'.
15859         * lib/uninorm/nfc.c: New file.
15860         * modules/uninorm/nfc: New file.
15861
15862         Tests for module 'uninorm/nfd'.
15863         * tests/uninorm/test-nfd.c: New file.
15864         * tests/uninorm/test-u8-nfd.c: New file.
15865         * tests/uninorm/test-u16-nfd.c: New file.
15866         * tests/uninorm/test-u32-nfd.c: New file.
15867         * tests/uninorm/test-u32-nfd-big.sh: New file.
15868         * tests/uninorm/test-u32-nfd-big.c: New file.
15869         * tests/uninorm/test-u32-normalize-big.h: New file.
15870         * tests/uninorm/test-u32-normalize-big.c: New file.
15871         * tests/uninorm/NormalizationTest.txt: New file, created from
15872         Unicode 5.1.0 NormalizationTest.txt.
15873         * modules/uninorm/nfd-tests: New file.
15874
15875         New module 'uninorm/nfd'.
15876         * lib/uninorm/nfd.c: New file.
15877         * modules/uninorm/nfd: New file.
15878
15879         New module 'uninorm/u32-normalize'.
15880         * lib/uninorm/u32-normalize.c: New file.
15881         * modules/uninorm/u32-normalize: New file.
15882
15883         New module 'uninorm/u16-normalize'.
15884         * lib/uninorm/u16-normalize.c: New file.
15885         * modules/uninorm/u16-normalize: New file.
15886
15887         New module 'uninorm/u8-normalize'.
15888         * lib/uninorm/u8-normalize.c: New file.
15889         * lib/uninorm/normalize-internal.h: New file.
15890         * lib/uninorm/u-normalize-internal.h: New file.
15891         * modules/uninorm/u8-normalize: New file.
15892
15893         New module 'uninorm/decompose-internal'.
15894         * lib/uninorm/decompose-internal.c: New file.
15895         * modules/uninorm/decompose-internal: New file.
15896
15897         Tests for module 'uninorm/composition'.
15898         * tests/uninorm/test-composition.c: New file.
15899         * modules/uninorm/composition-tests: New file.
15900
15901         New module 'uninorm/composition'.
15902         * lib/uninorm/composition.c: New file.
15903         * lib/uninorm/composition-table.gperf: New file, generated by
15904         gen-uni-tables.
15905         * modules/uninorm/composition: New file.
15906
15907         Tests for module 'uninorm/compat-decomposition'.
15908         * tests/uninorm/test-compat-decomposition.c: New file.
15909         * modules/uninorm/compat-decomposition-tests: New file.
15910
15911         New module 'uninorm/compat-decomposition'.
15912         * lib/uninorm/decompose-internal.h: New file.
15913         * lib/uninorm/compat-decomposition.c: New file.
15914         * modules/uninorm/compat-decomposition: New file.
15915
15916         Tests for module 'uninorm/canonical-decomposition'.
15917         * tests/uninorm/test-canonical-decomposition.c: New file.
15918         * modules/uninorm/canonical-decomposition-tests: New file.
15919
15920         New module 'uninorm/canonical-decomposition'.
15921         * lib/uninorm/canonical-decomposition.c: New file.
15922         * modules/uninorm/canonical-decomposition: New file.
15923
15924         Tests for module 'uninorm/decomposition'.
15925         * tests/uninorm/test-decomposition.c: New file.
15926         * modules/uninorm/decomposition-tests: New file.
15927
15928         New module 'uninorm/decomposition'.
15929         * lib/uninorm/decomposition.c: New file.
15930         * modules/uninorm/decomposition: New file.
15931
15932         New module 'uninorm/decomposition-table'.
15933         * lib/uninorm/decomposition-table.h: New file.
15934         * lib/uninorm/decomposition-table.c: New file.
15935         * lib/uninorm/decomposition-table1.h: New file, generated by
15936         gen-uni-tables.
15937         * lib/uninorm/decomposition-table2.h: New file, generated by
15938         gen-uni-tables.
15939         * modules/uninorm/decomposition-table: New file.
15940
15941         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
15942         (UC_DECOMP_*): New enumeration items.
15943         (get_decomposition): New function.
15944         (struct decomp_table): New type.
15945         (output_decomposition, output_decomposition_tables): New functions.
15946         (unicode_composition_exclusions): New variable.
15947         (fill_composition_exclusions, debug_output_composition_tables): New
15948         functions.
15949         (main): Accept one more argument. Invoke fill_composition_exclusions.
15950         Output decomposition and composition tables.
15951
15952         New module 'uninorm/base'.
15953         * lib/uninorm.h: New file.
15954         * lib/unictype.h: Update comment.
15955         * modules/uninorm/base: New file.
15956
15957 2009-02-21  David Lutterkort  <lutter@redhat.com>
15958
15959         Tests for module 'safe-alloc'.
15960         * tests/test-safe-alloc.c: New file.
15961         * modules/safe-alloc-tests: New file.
15962
15963         New module 'safe-alloc'.
15964         * lib/safe-alloc.h: New file.
15965         * lib/safe-alloc.c: New file.
15966         * m4/safe-alloc.m4: New file.
15967         * modules/safe-alloc: New file.
15968         * doc/safe-alloc.texi: New file.
15969         * doc/gnulib.texi: Include it.
15970         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
15971         safe-alloc.
15972
15973 2009-02-18  Bruno Haible  <bruno@clisp.org>
15974
15975         Fix link error on non-glibc systems.
15976         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
15977         variable.
15978         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15979
15980 2009-02-18  Jim Meyering  <meyering@redhat.com>
15981
15982         fts: avoid used-uninitialized error due to recent change
15983         * lib/fts.c (fts_read): Guard uses of the new member,
15984         parent->fts_n_dirs_remaining, since it's not relevant for
15985         the parent of a directory specified on the command-line.
15986
15987 2009-02-17  James Youngman  <jay@gnu.org>
15988             Bruno Haible  <bruno@clisp.org>
15989
15990         * m4/include_next.m4: Reformulate comment.
15991
15992 2009-02-16  Jim Meyering  <meyering@redhat.com>
15993
15994         fts: add #if guards so that the fts_lgpl module still builds
15995         * lib/fts.c: Guard just-added hash-table-using parts with
15996         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
15997         Reported by Simon Josefsson.
15998
15999 2009-02-15  Bruno Haible  <bruno@clisp.org>
16000
16001         * modules/array-mergesort-tests: New file.
16002         * tests/test-array-mergesort.c: New file.
16003
16004         New module 'array-mergesort'.
16005         * modules/array-mergesort: New file.
16006         * lib/array-mergesort.h: New file.
16007
16008 2009-02-15  Bruno Haible  <bruno@clisp.org>
16009
16010         Fix 2009-02-07 commit.
16011         * lib/gen-uni-tables.c (output_predicate, output_category,
16012         output_combclass, output_bidi_category, output_decimal_digit,
16013         output_digit, output_numeric, output_mirror, output_scripts,
16014         output_ident_category, output_simple_mapping): Fix format directives.
16015         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
16016
16017 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
16018
16019         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
16020         fixes are available from IBM.
16021
16022 2009-02-13  Jim Meyering  <meyering@redhat.com>
16023
16024         fts: arrange not to stat non-directories in more cases
16025         This makes GNU find (when it doesn't need to stat each file)
16026         *much* more efficient at traversing reiserfs file systems.
16027         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
16028         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
16029         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
16030         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
16031         (leaf_optimization_applies): New function.
16032         (LCO_hash, LCO_compare): New helper functions.
16033         (link_count_optimize_ok): New function.
16034         (fts_stat): Initialize new member (if dir).
16035         (fts_read): Decrement parent's fts_n_dirs_remaining count if
16036         we've just stat'ed a directory.  Skip the stat call when possible.
16037         ---
16038         Note this AFS-related exchange:
16039         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
16040         and note find's pioctl call in find/fstype.c.
16041         But that is necessary only if you want to enable the
16042         optimization for AFS, and for now, I don't.
16043
16044         fts: move a function definition "up" (no semantic change)
16045         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
16046         "up" to precede upcoming use of a related function.
16047
16048 2009-02-11  Jim Meyering  <meyering@redhat.com>
16049
16050         fts: correct internal computation of nlinks (optimization-related)
16051         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
16052         whether the current entry is a directory, so don't test it.
16053
16054 2009-02-10  Bruno Haible  <bruno@clisp.org>
16055
16056         Tests for module 'uniwbrk/ulc-wordbreaks'.
16057         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
16058         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
16059         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
16060
16061         Tests for module 'uniwbrk/u32-wordbreaks'.
16062         * modules/uniwbrk/u32-wordbreaks-tests: New file.
16063         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
16064
16065         Tests for module 'uniwbrk/u16-wordbreaks'.
16066         * modules/uniwbrk/u16-wordbreaks-tests: New file.
16067         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
16068
16069         Tests for module 'uniwbrk/u8-wordbreaks'.
16070         * modules/uniwbrk/u8-wordbreaks-tests: New file.
16071         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
16072
16073 2009-02-10  Bruno Haible  <bruno@clisp.org>
16074
16075         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
16076         property.
16077         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
16078         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
16079         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
16080
16081 2009-02-10  Simon Josefsson  <simon@josefsson.org>
16082
16083         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
16084         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
16085
16086 2009-02-10  Bruno Haible  <bruno@clisp.org>
16087
16088         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
16089         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
16090         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
16091         * lib/unilbrk/u8-possible-linebreaks.c: Update.
16092         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
16093         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
16094
16095 2009-02-09  Simon Josefsson  <simon@josefsson.org>
16096
16097         * lib/sockets.h (gl_fd_to_handle): New function.
16098
16099         * tests/test-sockets.c: Call gl_fd_to_handle.
16100
16101 2009-02-09  Bruno Haible  <bruno@clisp.org>
16102
16103         * doc/havelib.texi: Document the conventions on bi-arch systems.
16104
16105 2009-02-08  Bruno Haible  <bruno@clisp.org>
16106
16107         Document the AC_LIB_LINKFLAGS macro.
16108         * doc/havelib.texi: New file, mostly written on 2005-05-24.
16109         * doc/gnulib.texi: Include it.
16110
16111 2009-02-08  Bruno Haible  <bruno@clisp.org>
16112
16113         Fix wrong order of sections, compared to TOC.
16114         * doc/gnulib.texi: Include relocatable-maint.texi after the
16115         "Regular expressions" node, not before.
16116
16117 2009-02-08  Bruno Haible  <bruno@clisp.org>
16118
16119         Tests for module 'unicase/totitle'.
16120         * modules/unicase/totitle-tests: New file.
16121
16122         Tests for module 'unicase/tolower'.
16123         * modules/unicase/tolower-tests: New file.
16124
16125         Tests for module 'unicase/toupper'.
16126         * modules/unicase/toupper-tests: New file.
16127         * tests/unicase/test-mapping-part1.h: New file.
16128         * tests/unicase/test-mapping-part2.h: New file.
16129
16130         New module 'unicase/totitle'.
16131         * modules/unicase/totitle: New file.
16132         * lib/unicase/totitle.c: New file.
16133
16134         New module 'unicase/tolower'.
16135         * modules/unicase/tolower: New file.
16136         * lib/unicase/tolower.c: New file.
16137
16138         New module 'unicase/toupper'.
16139         * modules/unicase/toupper: New file.
16140         * lib/unicase/toupper.c: New file.
16141         * lib/unicase/simple-mapping.h: New file.
16142
16143         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
16144         (mapping_table): New structure.
16145         (output_simple_mapping): New function.
16146         (main): Invoke output_simple_mapping_test and output_simple_mapping.
16147         * modules/gen-uni-tables (Description): Update.
16148         * lib/unicase/toupper.h: New file, automatically generated by
16149         gen-uni-tables.
16150         * lib/unicase/tolower.h: New file, automatically generated by
16151         gen-uni-tables.
16152         * lib/unicase/totitle.h: New file, automatically generated by
16153         gen-uni-tables.
16154         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
16155         gen-uni-tables.
16156         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
16157         gen-uni-tables.
16158         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
16159         gen-uni-tables.
16160
16161         New module 'unicase/base'.
16162         * modules/unicase/base: New file.
16163         * lib/unicase.h: New file.
16164
16165 2009-02-08  Bruno Haible  <bruno@clisp.org>
16166
16167         New module 'uniwbrk/ulc-wordbreaks'.
16168         * modules/uniwbrk/ulc-wordbreaks: New file.
16169         * lib/uniwbrk/ulc-wordbreaks.c: New file.
16170
16171         New module 'uniwbrk/u32-wordbreaks'.
16172         * modules/uniwbrk/u32-wordbreaks: New file.
16173         * lib/uniwbrk/u32-wordbreaks.c: New file.
16174
16175         New module 'uniwbrk/u16-wordbreaks'.
16176         * modules/uniwbrk/u16-wordbreaks: New file.
16177         * lib/uniwbrk/u16-wordbreaks.c: New file.
16178
16179         New module 'uniwbrk/u8-wordbreaks'.
16180         * modules/uniwbrk/u8-wordbreaks: New file.
16181         * lib/uniwbrk/u8-wordbreaks.c: New file.
16182         * lib/uniwbrk/u-wordbreaks.h: New file.
16183
16184         New module 'uniwbrk/table'.
16185         * modules/uniwbrk/table: New file.
16186         * lib/uniwbrk/wbrktable.h: New file.
16187         * lib/uniwbrk/wbrktable.c: New file.
16188
16189         New module 'uniwbrk/wordbreak-property'.
16190         * modules/uniwbrk/wordbreak-property: New file.
16191         * lib/uniwbrk/wordbreak-property.c: New file.
16192
16193         * lib/gen-uni-tables.c (WBP_*): New enum items.
16194         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
16195         (unicode_org_wbp): New variable.
16196         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
16197         New functions.
16198         (wbp_table): New structure.
16199         (output_wbp, output_wbrk_tables): New functions.
16200         (main): Accept additional argument. Invoke fill_org_wbp,
16201         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
16202         output_wbrk_tables.
16203         * modules/gen-uni-tables (Description): Update.
16204         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
16205         gen-uni-tables.
16206
16207         New module 'uniwbrk/base'.
16208         * modules/uniwbrk/base: New file.
16209         * lib/uniwbrk.h: New file.
16210
16211 2009-02-08  Bruno Haible  <bruno@clisp.org>
16212
16213         Update to Unicode 5.1.0.
16214         * lib/gen-uni-tables.c (is_property_alphabetic): Include
16215         U+2185..U+2188.
16216         (is_property_default_ignorable_code_point): Don't include characters
16217         of category Cc or Cs and not-a-characters.
16218         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
16219         U+0D79, U+109E, U+109F, U+A60C.
16220         * lib/unictype/bidi_of.h: Regenerated.
16221         * lib/unictype/blocks.h: Regenerated.
16222         * lib/unictype/categ_C.h: Regenerated.
16223         * lib/unictype/categ_Cf.h: Regenerated.
16224         * lib/unictype/categ_Cn.h: Regenerated.
16225         * lib/unictype/categ_L.h: Regenerated.
16226         * lib/unictype/categ_Ll.h: Regenerated.
16227         * lib/unictype/categ_Lm.h: Regenerated.
16228         * lib/unictype/categ_Lo.h: Regenerated.
16229         * lib/unictype/categ_Lu.h: Regenerated.
16230         * lib/unictype/categ_M.h: Regenerated.
16231         * lib/unictype/categ_Mc.h: Regenerated.
16232         * lib/unictype/categ_Me.h: Regenerated.
16233         * lib/unictype/categ_Mn.h: Regenerated.
16234         * lib/unictype/categ_N.h: Regenerated.
16235         * lib/unictype/categ_Nd.h: Regenerated.
16236         * lib/unictype/categ_Nl.h: Regenerated.
16237         * lib/unictype/categ_No.h: Regenerated.
16238         * lib/unictype/categ_P.h: Regenerated.
16239         * lib/unictype/categ_Pd.h: Regenerated.
16240         * lib/unictype/categ_Pe.h: Regenerated.
16241         * lib/unictype/categ_Pf.h: Regenerated.
16242         * lib/unictype/categ_Pi.h: Regenerated.
16243         * lib/unictype/categ_Po.h: Regenerated.
16244         * lib/unictype/categ_Ps.h: Regenerated.
16245         * lib/unictype/categ_S.h: Regenerated.
16246         * lib/unictype/categ_Sk.h: Regenerated.
16247         * lib/unictype/categ_Sm.h: Regenerated.
16248         * lib/unictype/categ_So.h: Regenerated.
16249         * lib/unictype/categ_of.h: Regenerated.
16250         * lib/unictype/combining.h: Regenerated.
16251         * lib/unictype/ctype_alnum.h: Regenerated.
16252         * lib/unictype/ctype_alpha.h: Regenerated.
16253         * lib/unictype/ctype_graph.h: Regenerated.
16254         * lib/unictype/ctype_lower.h: Regenerated.
16255         * lib/unictype/ctype_print.h: Regenerated.
16256         * lib/unictype/ctype_punct.h: Regenerated.
16257         * lib/unictype/ctype_upper.h: Regenerated.
16258         * lib/unictype/decdigit.h: Regenerated.
16259         * lib/unictype/digit.h: Regenerated.
16260         * lib/unictype/mirror.h: Regenerated.
16261         * lib/unictype/numeric.h: Regenerated.
16262         * lib/unictype/pr_alphabetic.h: Regenerated.
16263         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
16264         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
16265         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
16266         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
16267         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
16268         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
16269         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
16270         * lib/unictype/pr_combining.h: Regenerated.
16271         * lib/unictype/pr_dash.h: Regenerated.
16272         * lib/unictype/pr_decimal_digit.h: Regenerated.
16273         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
16274         * lib/unictype/pr_deprecated.h: Regenerated.
16275         * lib/unictype/pr_diacritic.h: Regenerated.
16276         * lib/unictype/pr_extender.h: Regenerated.
16277         * lib/unictype/pr_format_control.h: Regenerated.
16278         * lib/unictype/pr_grapheme_base.h: Regenerated.
16279         * lib/unictype/pr_grapheme_extend.h: Regenerated.
16280         * lib/unictype/pr_grapheme_link.h: Regenerated.
16281         * lib/unictype/pr_id_continue.h: Regenerated.
16282         * lib/unictype/pr_id_start.h: Regenerated.
16283         * lib/unictype/pr_ideographic.h: Regenerated.
16284         * lib/unictype/pr_ignorable_control.h: Regenerated.
16285         * lib/unictype/pr_lowercase.h: Regenerated.
16286         * lib/unictype/pr_math.h: Regenerated.
16287         * lib/unictype/pr_numeric.h: Regenerated.
16288         * lib/unictype/pr_other_alphabetic.h: Regenerated.
16289         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
16290         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
16291         * lib/unictype/pr_other_id_continue.h: Regenerated.
16292         * lib/unictype/pr_other_lowercase.h: Regenerated.
16293         * lib/unictype/pr_other_math.h: Regenerated.
16294         * lib/unictype/pr_punctuation.h: Regenerated.
16295         * lib/unictype/pr_sentence_terminal.h: Regenerated.
16296         * lib/unictype/pr_soft_dotted.h: Regenerated.
16297         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
16298         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
16299         * lib/unictype/pr_unified_ideograph.h: Regenerated.
16300         * lib/unictype/pr_uppercase.h: Regenerated.
16301         * lib/unictype/pr_xid_continue.h: Regenerated.
16302         * lib/unictype/pr_xid_start.h: Regenerated.
16303         * lib/unictype/pr_zero_width.h: Regenerated.
16304         * lib/unictype/scripts.h: Regenerated.
16305         * lib/unictype/scripts_byname.gperf: Regenerated.
16306         * lib/unictype/sy_java_ident.h: Regenerated.
16307         * lib/unilbrk/lbrkprop1.h: Regenerated.
16308         * lib/unilbrk/lbrkprop2.h: Regenerated.
16309         * tests/unictype/test-categ_C.c: Regenerated.
16310         * tests/unictype/test-categ_Cf.c: Regenerated.
16311         * tests/unictype/test-categ_Cn.c: Regenerated.
16312         * tests/unictype/test-categ_L.c: Regenerated.
16313         * tests/unictype/test-categ_Ll.c: Regenerated.
16314         * tests/unictype/test-categ_Lm.c: Regenerated.
16315         * tests/unictype/test-categ_Lo.c: Regenerated.
16316         * tests/unictype/test-categ_Lu.c: Regenerated.
16317         * tests/unictype/test-categ_M.c: Regenerated.
16318         * tests/unictype/test-categ_Mc.c: Regenerated.
16319         * tests/unictype/test-categ_Me.c: Regenerated.
16320         * tests/unictype/test-categ_Mn.c: Regenerated.
16321         * tests/unictype/test-categ_N.c: Regenerated.
16322         * tests/unictype/test-categ_Nd.c: Regenerated.
16323         * tests/unictype/test-categ_Nl.c: Regenerated.
16324         * tests/unictype/test-categ_No.c: Regenerated.
16325         * tests/unictype/test-categ_P.c: Regenerated.
16326         * tests/unictype/test-categ_Pd.c: Regenerated.
16327         * tests/unictype/test-categ_Pe.c: Regenerated.
16328         * tests/unictype/test-categ_Pf.c: Regenerated.
16329         * tests/unictype/test-categ_Pi.c: Regenerated.
16330         * tests/unictype/test-categ_Po.c: Regenerated.
16331         * tests/unictype/test-categ_Ps.c: Regenerated.
16332         * tests/unictype/test-categ_S.c: Regenerated.
16333         * tests/unictype/test-categ_Sk.c: Regenerated.
16334         * tests/unictype/test-categ_Sm.c: Regenerated.
16335         * tests/unictype/test-categ_So.c: Regenerated.
16336         * tests/unictype/test-ctype_alnum.c: Regenerated.
16337         * tests/unictype/test-ctype_alpha.c: Regenerated.
16338         * tests/unictype/test-ctype_graph.c: Regenerated.
16339         * tests/unictype/test-ctype_lower.c: Regenerated.
16340         * tests/unictype/test-ctype_print.c: Regenerated.
16341         * tests/unictype/test-ctype_punct.c: Regenerated.
16342         * tests/unictype/test-ctype_upper.c: Regenerated.
16343         * tests/unictype/test-decdigit.h: Regenerated.
16344         * tests/unictype/test-digit.h: Regenerated.
16345         * tests/unictype/test-numeric.h: Regenerated.
16346         * tests/unictype/test-pr_alphabetic.c: Regenerated.
16347         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
16348         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
16349         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
16350         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
16351         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
16352         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
16353         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
16354         * tests/unictype/test-pr_combining.c: Regenerated.
16355         * tests/unictype/test-pr_dash.c: Regenerated.
16356         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
16357         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
16358         * tests/unictype/test-pr_deprecated.c: Regenerated.
16359         * tests/unictype/test-pr_diacritic.c: Regenerated.
16360         * tests/unictype/test-pr_extender.c: Regenerated.
16361         * tests/unictype/test-pr_format_control.c: Regenerated.
16362         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
16363         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
16364         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
16365         * tests/unictype/test-pr_id_continue.c: Regenerated.
16366         * tests/unictype/test-pr_id_start.c: Regenerated.
16367         * tests/unictype/test-pr_ideographic.c: Regenerated.
16368         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
16369         * tests/unictype/test-pr_lowercase.c: Regenerated.
16370         * tests/unictype/test-pr_math.c: Regenerated.
16371         * tests/unictype/test-pr_numeric.c: Regenerated.
16372         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
16373         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
16374         Regenerated.
16375         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
16376         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
16377         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
16378         * tests/unictype/test-pr_other_math.c: Regenerated.
16379         * tests/unictype/test-pr_punctuation.c: Regenerated.
16380         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
16381         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
16382         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
16383         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
16384         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
16385         * tests/unictype/test-pr_uppercase.c: Regenerated.
16386         * tests/unictype/test-pr_xid_continue.c: Regenerated.
16387         * tests/unictype/test-pr_xid_start.c: Regenerated.
16388         * tests/unictype/test-pr_zero_width.c: Regenerated.
16389
16390         Update to Unicode 5.1.0.
16391         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
16392         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
16393         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
16394         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
16395         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
16396         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
16397         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
16398         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
16399         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
16400         (nonspacing_table_ind): Update.
16401         * tests/uniwidth/test-uc_width2.sh: Update expected result.
16402
16403         Update to Unicode 5.1.0.
16404         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
16405         code transform.
16406         * lib/uniname/uniname.c (unicode_character_name,
16407         unicode_name_character): Add the range 0x1Fxxx to the code transform.
16408         * lib/uniname/uninames.h: Regenerated.
16409         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
16410
16411 2009-02-07  Bruno Haible  <bruno@clisp.org>
16412
16413         Merge gen-ctype and gen-lbrk into a single program.
16414         * lib/gen-uni-tables.c: New file, incorporating
16415         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
16416         Add directory prefixes to the names of the generated files.
16417         * lib/unictype/gen-ctype.c: Remove file.
16418         * lib/unilbrk/gen-lbrk.c: Remove file.
16419         * modules/gen-uni-tables: New file.
16420         * modules/unictype/gen-ctype: Remove file.
16421         * modules/unilbrk/gen-lbrk: Remove file.
16422
16423 2009-02-07  Bruno Haible  <bruno@clisp.org>
16424
16425         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
16426
16427         New module 'unistr/u32-strcoll'.
16428         * modules/unistr/u32-strcoll: New file.
16429         * lib/unistr/u32-strcoll.c: New file.
16430
16431         New module 'unistr/u16-strcoll'.
16432         * modules/unistr/u16-strcoll: New file.
16433         * lib/unistr/u16-strcoll.c: New file.
16434
16435         New module 'unistr/u8-strcoll'.
16436         * modules/unistr/u8-strcoll: New file.
16437         * lib/unistr/u8-strcoll.c: New file.
16438         * lib/unistr/u-strcoll.h: New file.
16439
16440 2009-02-07  Bruno Haible  <bruno@clisp.org>
16441
16442         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
16443         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
16444         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
16445         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
16446         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
16447         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
16448
16449 2009-02-07  Bruno Haible  <bruno@clisp.org>
16450
16451         Make 64-bit clean.
16452         * lib/unictype/gen-ctype.c (output_predicate, output_category,
16453         output_combclass, output_bidi_category, output_decimal_digit,
16454         output_digit, output_numeric, output_mirror, output_scripts,
16455         output_ident_category): Use proper width specifier in format strings.
16456
16457 2009-02-07  Bruno Haible  <bruno@clisp.org>
16458
16459         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
16460         failure behaviour.
16461
16462 2009-02-07  Jim Meyering  <meyering@redhat.com>
16463
16464         regex: avoid compilation failure with upcoming gcc-4.4
16465         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
16466         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
16467         "... error: integer overflow in preprocessor expression".
16468
16469 2009-02-05  Ben Pfaff  <blp@gnu.org>
16470
16471         Fix link errors on Windows when close module is used.
16472         * modules/close: Add $(LIB_CLOSE) to Link section.
16473         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
16474         $(LIB_CLOSE) on Windows.
16475
16476 2009-02-05  Jim Meyering  <meyering@redhat.com>
16477
16478         still avoid unused-parameter warnings, but do it cleanly
16479         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
16480         (get_fs_usage): Cast to void instead.
16481         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
16482         (dev_from_mount_options, read_file_system_list): Cast to void.
16483         Prompted by Bruno Haible.
16484
16485 2009-02-04  Jim Meyering  <meyering@redhat.com>
16486
16487         fsusage.c: correct copyright year
16488         * lib/fsusage.c: Reflect year in which the change is pushed into
16489
16490         avoid misc. warnings
16491         * lib/fsusage.c (UNUSED_PARAM): Define.
16492         (get_fs_usage): Mark parameter "disk" as unused.
16493         * lib/getugroups.c (getgrent): Use "void" in prototype.
16494         * lib/mountlist.c: Mark unused parameters.
16495         (read_file_system_list): Declare a local with "const".
16496         * lib/nanosleep.c (getnow): Declare static.
16497         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
16498
16499         dirfd: set errno upon failure
16500         * lib/dirfd.c: Include <errno.h>.
16501         Set errno to ENOTSUP when returning -1.
16502         * modules/dirfd (Depends-on): Add errno.
16503         Suggested by John Kodis <kodis@comcast.net>.
16504
16505 2009-02-01  Bruno Haible  <bruno@clisp.org>
16506
16507         Don't assume sizeof (long) >= sizeof (void *).
16508         * lib/memcmp.c: Include stdint.h.
16509         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
16510         srcp2 to 'const byte *'.
16511         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
16512         types to uintptr_t.
16513         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
16514         * modules/memcmp (Depends-on): Add stdint.
16515         Reported by Ozkan Sezer <sezeroz@gmail.com>.
16516
16517 2009-01-30  Eric Blake  <ebb9@byu.net>
16518
16519         fix more require-before-expand issues
16520         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
16521         expand, AC_PROG_AWK.
16522         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
16523
16524 2009-01-28  Eric Blake  <ebb9@byu.net>
16525
16526         version-etc: use consistent URL formatting
16527         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
16528         Improve formatting.  Use fputs for string without %.
16529
16530 2009-01-28  Jim Meyering  <meyering@redhat.com>
16531
16532         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
16533         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
16534         "underquoted definition of NAME" from autoconf-2.59.
16535
16536 2009-01-28  Bruno Haible  <bruno@clisp.org>
16537
16538         * doc/gnulib.texi: Add "Obsolete modules" to index.
16539
16540 2009-01-28  Jim Meyering  <meyering@redhat.com>
16541
16542         useless-if-before-free: recognize more variants
16543         * build-aux/useless-if-before-free: Also recognize e.g.,
16544         if (NULL != p) free (p);
16545
16546 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
16547
16548         test-getaddrinfo: skip (don't fail) this test when there's no network
16549         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
16550         on the presumption that it means you lack network access.
16551
16552 2009-01-26  Jim Meyering  <meyering@redhat.com>
16553
16554         fflush: avoid warnings on modern systems
16555         * lib/fflush.c (rpl_fflush): Move declarations of locals,
16556         pos and result, into scopes where they're used.
16557
16558 2009-01-26  Eric Blake  <ebb9@byu.net>
16559
16560         Silence warning reintroduced by recent extensions patch.
16561         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
16562         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
16563         autoconf.
16564
16565         Backport improved autoconf semantics of AC_DEFUN_ONCE.
16566         * m4/00gnulib.m4: New file.
16567         * gnulib-tool (func_get_filelist): Always use it.
16568         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
16569         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
16570
16571 2009-01-25  Bruno Haible  <bruno@clisp.org>
16572
16573         Make test-quotearg work on MacOS X and AIX.
16574         * tests/test-quotearg.sh: New file.
16575         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
16576         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
16577         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
16578         include <libintl.h>.
16579         (fake_locale): Remove variable.
16580         (gettext, dgettext, dcgettext): Remove functions.
16581         (main): Instead of setting a fake locale, set a real locale. Call
16582         textdomain and bindtextdomain.
16583         * modules/quotearg-tests (Files): Add the new files.
16584         (Depends-on): Add gettext, setenv, unsetenv.
16585         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
16586         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
16587         Augment TESTS_ENVIRONMENT.
16588
16589 2009-01-25  Bruno Haible  <bruno@clisp.org>
16590
16591         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
16592         fr_FR.ISO8859-1 locale on MacOS X.
16593         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
16594         ja_JP.eucJP locale on MacOS X.
16595         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
16596         zh_CN.GB18030 locale on MacOS X.
16597
16598 2009-01-25  Bruno Haible  <bruno@clisp.org>
16599
16600         Avoid link errors on MacOS X 10.3.
16601         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
16602         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
16603
16604 2009-01-25  Bruno Haible  <bruno@clisp.org>
16605
16606         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
16607         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
16608         * modules/pipe (Files): Remove m4/posix_spawn.m4.
16609         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
16610         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
16611         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
16612         posix_spawnattr_init, posix_spawnattr_setsigmask,
16613         posix_spawnattr_setflags, posix_spawnattr_destroy.
16614
16615         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
16616         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
16617         * modules/execute (Files): Remove m4/posix_spawn.m4.
16618         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
16619         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
16620         posix_spawnattr_init, posix_spawnattr_setsigmask,
16621         posix_spawnattr_setflags, posix_spawnattr_destroy.
16622
16623 2009-01-25  Bruno Haible  <bruno@clisp.org>
16624
16625         * lib/glthread/threadlib.c: Include <stdlib.h>.
16626
16627 2009-01-25  Bruno Haible  <bruno@clisp.org>
16628
16629         * lib/glthread/threadlib.c (dummy): New declaration.
16630
16631 2009-01-25  Bruno Haible  <bruno@clisp.org>
16632
16633         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
16634         multibyte characters also for the GB18030 encoding. Don't crash when
16635         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
16636
16637 2009-01-25  Bruno Haible  <bruno@clisp.org>
16638
16639         Avoid redefining 'struct random_data' on OSF/1 5.1.
16640         * lib/stdlib.in.h: Include <random.h> if it exists.
16641         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
16642         HAVE_RANDOM_H. Include <random.h> when testing whether
16643         'struct random_data' exists.
16644         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
16645
16646 2009-01-25  Bruno Haible  <bruno@clisp.org>
16647
16648         Don't install charset.alias on MacOS X >= 10.3.
16649         * lib/localcharset.c (DARWIN7): New macro.
16650         (get_charset_aliases): Hardcode the result for Darwin7.
16651         * modules/localcharset (install-exec-local): Don't install
16652         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
16653
16654 2009-01-25  Bruno Haible  <bruno@clisp.org>
16655
16656         Don't install charset.alias on mingw and Cygwin.
16657         * modules/localcharset (install-exec-local): Don't install
16658         charset.alias on mingw and Cygwin, if the file does not yet exist.
16659         The result for these platforms is hardcoded in localcharset.c.
16660
16661 2009-01-25  Bruno Haible  <bruno@clisp.org>
16662
16663         Make it possible again to use AC_GNU_SOURCE together with gnulib.
16664         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
16665         before requiring AC_USE_SYSTEM_EXTENSIONS.
16666
16667 2009-01-25  Jim Meyering  <meyering@redhat.com>
16668
16669         c-strtod: avoid warnings
16670         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
16671         "assignment discards qualifiers from pointer target type" warnings.
16672
16673 2009-01-24  Bruno Haible  <bruno@clisp.org>
16674
16675         Add support for non-UTF-8 locales on MacOS X.
16676         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
16677         canonical encodings. For Darwin 7 and newer, don't map traditional
16678         encodings to UTF-8.
16679         Reported by Vincent Lefevre <vincent@vinc17.org>
16680         at <http://savannah.gnu.org/bugs/?25235>.
16681
16682 2009-01-24  Bruno Haible  <bruno@clisp.org>
16683
16684         * doc/gnulib.texi (Obsolete modules): New section.
16685         Reported by Mike Frysinger <vapier@gentoo.org>.
16686
16687 2009-01-24  Bruno Haible  <bruno@clisp.org>
16688
16689         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
16690         (%.dvi): New rule.
16691
16692 2009-01-24  Bruno Haible  <bruno@clisp.org>
16693
16694         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
16695         Reported by Eric Blake.
16696
16697 2009-01-24  Bruno Haible  <bruno@clisp.org>
16698
16699         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
16700         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
16701         Reported by Gary V. Vaughan <gary@gnu.org>.
16702
16703 2009-01-24  Bruno Haible  <bruno@clisp.org>
16704
16705         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
16706
16707 2009-01-23  Bruno Haible  <bruno@clisp.org>
16708
16709         Make c-strtod, c-strtold usable in libraries.
16710         * lib/c-strtod.c: Include string.h instead of xalloc.h.
16711         (C_STRTOD): Call strdup instead of xstrdup.
16712         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
16713         * modules/c-strtold (Depends-on): Likewise.
16714         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
16715         * NEWS: Mention the change.
16716         Reported by Michael Gold <mgold@ncf.ca>.
16717
16718 2009-01-23  Jim Meyering  <meyering@redhat.com>
16719
16720         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
16721         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
16722         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
16723
16724 2009-01-23  Simon Josefsson  <simon@josefsson.org>
16725
16726         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
16727         GNU CoreUtils.
16728         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
16729         * modules/version-etc (Description): Update.
16730
16731 2009-01-22  Bruno Haible  <bruno@clisp.org>
16732
16733         Cache the C locale object.
16734         * lib/c-strtod.c (c_locale_cache): New variable.
16735         (c_locale): New function.
16736         (C_STRTOD): Use it, and don't call freelocale.
16737         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
16738         Suggested by Paolo Bonzini.
16739
16740 2009-01-21  Bruno Haible  <bruno@clisp.org>
16741
16742         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
16743         conditions other than overflow.
16744
16745 2009-01-21  Bruno Haible  <bruno@clisp.org>
16746
16747         * lib/c-strtod.c: Include errno.h.
16748         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
16749         value from STRTOD_L and STRTOD.
16750
16751 2009-01-21  Bruno Haible  <bruno@clisp.org>
16752         and Jim Meyering  <meyering@redhat.com>
16753
16754         nanosleep: skip configure test (fail it) for apple universal builds
16755         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
16756         universal builds, assume that nanosleep does not work.
16757         * modules/nanosleep (Depends-on): Add multiarch.
16758
16759         mktime: skip configure test (fail it) for apple universal builds
16760         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
16761         universal builds, assume that mktime does not work.
16762         * modules/mktime (Depends-on): Add multiarch.
16763
16764 2009-01-21  Eric Blake  <ebb9@byu.net>
16765
16766         multiarch: avoid expand-before-require warning
16767         * modules/multiarch (configure.ac): Require, rather than expand,
16768         gl_MULTIARCH.
16769         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
16770         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
16771         enforce that all clients require it.  Partial reversion of
16772         2008-12-29 patch.
16773
16774         error: avoid expand-before-require warning
16775         * modules/errno (configure.ac): Require, rather than expand,
16776         gl_HEADER_ERRNO_H.
16777         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
16778         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
16779         enforce that all clients require it.
16780
16781         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
16782         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
16783         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
16784         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
16785
16786 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
16787
16788         Revert:
16789         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
16790
16791         regex: do not depend on obsolete modules.
16792         * modules/regex: Remove memcmp and memmove.
16793
16794 2009-01-20  Bruno Haible  <bruno@clisp.org>
16795
16796         Make the 'link' module link on Windows NT 4.
16797         * lib/link.c (_WIN32_WINNT): Don't define.
16798         (CreateHardLinkFuncType): New type.
16799         (CreateHardLinkFunc, initialized): New variables.
16800         (initialize): New function.
16801         (link): Invoke CreateHardLink indirectly through the function pointer.
16802
16803 2009-01-20  Bruno Haible  <bruno@clisp.org>
16804
16805         Fix compilation failure on mingw.
16806         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
16807
16808 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
16809
16810         * doc/c-strtod.texi: Mention a couple of restrictions.
16811
16812 2009-01-20  Jim Meyering  <meyering@redhat.com>
16813
16814         gettimeofday: move more declarations out of functions
16815         * lib/gettimeofday.c: Move extern declarations of tzset and
16816         gmtime out of containing functions.  Prompted by Bruno Haible.
16817
16818 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
16819
16820         regex: do not depend on obsolete modules.
16821         * modules/regex: Remove memcmp and memmove.
16822
16823 2009-01-19  Bruno Haible  <bruno@clisp.org>
16824
16825         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
16826         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
16827         gl_BIGENDIAN, not AC_C_BIGENDIAN.
16828         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
16829         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
16830
16831 2009-01-19  Bruno Haible  <bruno@clisp.org>
16832
16833         * tests/test-link.c: Include <errno.h>.
16834         (main): Exit with code 77 when a hard link cannot be created due to
16835         the file system.
16836         * tests/test-link.sh: Skip test when a hard link cannot be created due
16837         to the file system.
16838         Suggested by Eric Blake.
16839
16840 2009-01-19  Martin Lambers  <marlam@marlam.de>
16841
16842         * modules/link-tests: New file.
16843         * tests/test-link.sh: New file.
16844         * tests/test-link.c: New file.
16845
16846 2009-01-19  Eric Blake  <ebb9@byu.net>
16847
16848         doc: mention another function added in cygwin 1.7.0
16849         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
16850         Another new function in cygwin 1.7.
16851
16852 2009-01-19  Bruno Haible  <bruno@clisp.org>
16853
16854         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
16855         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
16856         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
16857         gl_BIGENDIAN, not AC_C_BIGENDIAN.
16858         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
16859         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
16860         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
16861         * m4/md4.m4 (gl_MD4): Likewise.
16862         * m4/md5.m4 (gl_MD5): Likewise.
16863         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
16864         * m4/sha1.m4 (gl_SHA1): Likewise.
16865         * m4/sha256.m4 (gl_SHA256): Likewise.
16866         * m4/sha512.m4 (gl_SHA512): Likewise.
16867
16868 2009-01-19  Bruno Haible  <bruno@clisp.org>
16869
16870         * modules/uniname/uniname-tests (Depends-on): Add progname.
16871         * tests/uniname/test-uninames.c: Include progname.h.
16872         (main): Call set_program_name.
16873
16874         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
16875         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
16876         (main): Call set_program_name.
16877
16878         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
16879         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
16880         (main): Call set_program_name.
16881
16882         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
16883         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
16884         (main): Call set_program_name.
16885
16886         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
16887         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
16888         (main): Call set_program_name.
16889
16890         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
16891         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
16892         (main): Call set_program_name.
16893
16894         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
16895         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
16896         (main): Call set_program_name.
16897
16898         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
16899         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
16900         (main): Call set_program_name.
16901
16902         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
16903         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
16904         (main): Call set_program_name.
16905
16906 2009-01-19  Eric Blake  <ebb9@byu.net>
16907
16908         test-unistd: test previous patch
16909         * tests/test-unistd.c: Test *_FILENO macros.
16910
16911         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
16912         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16913         Guarantee a definition.
16914         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
16915         * modules/unistd-safer (Depends-on): Add dependency on unistd.
16916         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
16917         * lib/dup-safer.c (STDERR_FILENO): Likewise.
16918         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16919         Likewise.
16920         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
16921         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
16922         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
16923         Likewise.
16924         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
16925         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
16926         (STDERR_FILENO): Likewise.
16927         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
16928         (STDERR_FILENO): Likewise.
16929         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
16930         (STDERR_FILENO): Likewise.
16931         Reported by Elbert Pol.
16932
16933 2009-01-19  Eric Blake  <ebb9@byu.net>
16934
16935         doc: mention more functions added in cygwin 1.7.0
16936         * doc/posix-functions/abort.texi (abort): Update wording related
16937         to cygwin.
16938         * doc/posix-functions/daylight.texi (daylight): Likewise.
16939         * doc/posix-functions/optarg.texi (optarg): Likewise.
16940         * doc/posix-functions/optarg.texi (opterr): Likewise.
16941         * doc/posix-functions/optarg.texi (optind): Likewise.
16942         * doc/posix-functions/optarg.texi (optopt): Likewise.
16943         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
16944         worked in 1.5.x, and was withdrawn in 1.7.
16945         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
16946         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
16947         cygwin versions.
16948         * doc/posix-functions/perror.texi (perror): Likewise.
16949         * doc/posix-functions/printf.texi (printf): Likewise.
16950         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
16951         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
16952         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
16953         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
16954         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
16955         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
16956         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
16957         Likewise.
16958         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
16959         Likewise.
16960         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
16961         this function.
16962         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
16963         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
16964         Likewise.
16965         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
16966         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
16967         * doc/posix-functions/confstr.texi (confstr): Likewise.
16968         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
16969         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
16970         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
16971         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
16972         * doc/posix-functions/fputws.texi (fputws): Likewise.
16973         * doc/posix-functions/fwide.texi (fwide): Likewise.
16974         * doc/posix-functions/getwc.texi (getwc): Likewise.
16975         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
16976         * doc/posix-functions/putwc.texi (putwc): Likewise.
16977         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
16978         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
16979         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
16980         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
16981         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
16982         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
16983         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
16984         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
16985         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
16986         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
16987         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
16988
16989 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
16990
16991         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
16992         * lib/ioctl.c: Include <sys/ioctl.h>.
16993
16994 2009-01-19  Simon Josefsson  <simon@josefsson.org>
16995
16996         * modules/getdate-tests (Depends-on): Add progname.
16997         * tests/test-getdate.c: Use progname module, to avoid link errors
16998         on non-glibc systems.
16999
17000 2009-01-18  Simon Josefsson  <simon@josefsson.org>
17001
17002         * modules/filenamecat-tests (Depends-on): Add progname.
17003         * modules/fstrcmp-tests (Depends-on): Likewise.
17004
17005         * tests/test-filenamecat.c: Use progname module, to avoid link
17006         errors on non-glibc systems.
17007         * tests/test-fstrcmp.c: Likewise.
17008
17009 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
17010
17011         gettimeofday: avoid warning: nested extern declaration of 'localtime'
17012         * lib/gettimeofday.c: Move extern declaration out of function.
17013
17014 2009-01-18  Bruno Haible  <bruno@clisp.org>
17015
17016         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
17017         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
17018         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
17019
17020 2009-01-18  Bruno Haible  <bruno@clisp.org>
17021
17022         * lib/strftime.c (MEMPCPY): Remove unused macro.
17023         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
17024
17025 2009-01-18  Martin Lambers  <marlam@marlam.de>
17026
17027         New module 'link'.
17028         * lib/unistd.in.h (link): New declaration.
17029         * lib/link.c: New file.
17030         * m4/link.m4: New file.
17031         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
17032         HAVE_LINK.
17033         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
17034         * modules/link: New file.
17035         * doc/posix-functions/link.texi: Mention the new module.
17036
17037 2009-01-18  Bruno Haible  <bruno@clisp.org>
17038
17039         * tests/test-avltree_list.c (main): Call set_program_name.
17040         * tests/test-avltree_oset.c (main): Likewise.
17041         * tests/test-obstack-printf.c: Include progname.h.
17042         (main): Call set_program_name.
17043         * tests/test-quotearg.c: Include progname.h.
17044         (main): Call set_program_name.
17045         * tests/test-xmemdup0.c: Include progname.h.
17046         (main): Call set_program_name.
17047
17048 2009-01-18  Bruno Haible  <bruno@clisp.org>
17049
17050         New module 'alphasort'.
17051         * lib/dirent.in.h (alphasort): New declaration.
17052         * lib/alphasort.c: New file, from glibc with modifications.
17053         * m4/alphasort.m4: New file.
17054         * modules/alphasort: New file.
17055         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
17056         HAVE_ALPHASORT.
17057         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
17058         HAVE_ALPHASORT.
17059         * doc/posix-functions/alphasort.texi: Mention the new module and the
17060         portability problems.
17061
17062 2009-01-18  Bruno Haible  <bruno@clisp.org>
17063
17064         New module 'scandir'.
17065         * lib/dirent.in.h (scandir): New declaration.
17066         * lib/scandir.c: New file, from glibc with modifications.
17067         * m4/scandir.m4: New file.
17068         * modules/scandir: New file.
17069         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
17070         HAVE_SCANDIR.
17071         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
17072         HAVE_SCANDIR.
17073         * doc/posix-functions/scandir.texi: Mention the new module and the
17074         portability problems.
17075
17076 2009-01-17  Bruno Haible  <bruno@clisp.org>
17077
17078         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
17079         Update documentation.
17080         (func_remove_suffix): Escape all dots in the suffix. Update
17081         documentation.
17082         (func_filter_filelist): Update documentation.
17083         Reported by Ralf Wildenhues.
17084
17085 2009-01-17  Bruno Haible  <bruno@clisp.org>
17086
17087         * modules/dprintf-posix-tests: New file.
17088         * tests/test-dprintf-posix.sh: New file.
17089         * tests/test-dprintf-posix.c: New file.
17090
17091         New modules 'dprintf', 'dprintf-posix'.
17092         * lib/stdio.in.h (dprintf): New declaration.
17093         * lib/dprintf.c: New file.
17094         * m4/dprintf.m4: New file.
17095         * m4/dprintf-posix.m4: New file.
17096         * modules/dprintf: New file.
17097         * modules/dprintf-posix: New file.
17098         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
17099         HAVE_DPRINTF, REPLACE_DPRINTF.
17100         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
17101         HAVE_DPRINTF, REPLACE_DPRINTF.
17102         * doc/posix-functions/dprintf.texi: Mention the new modules.
17103
17104 2009-01-17  Bruno Haible  <bruno@clisp.org>
17105
17106         * modules/vdprintf-posix-tests: New file.
17107         * tests/test-vdprintf-posix.sh: New file.
17108         * tests/test-vdprintf-posix.c: New file.
17109
17110         New modules 'vdprintf', 'vdprintf-posix'.
17111         * lib/stdio.in.h (vdprintf): New declaration.
17112         * lib/vdprintf.c: New file.
17113         * m4/vdprintf.m4: New file.
17114         * m4/vdprintf-posix.m4: New file.
17115         * modules/vdprintf: New file.
17116         * modules/vdprintf-posix: New file.
17117         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
17118         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17119         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
17120         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17121         * doc/posix-functions/vdprintf.texi: Mention the new modules.
17122
17123 2009-01-17  Bruno Haible  <bruno@clisp.org>
17124
17125         Fix replacement of fopen on mingw.
17126         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
17127         mingw.
17128
17129 2009-01-17  Bruno Haible  <bruno@clisp.org>
17130
17131         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
17132         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
17133
17134 2009-01-17  Bruno Haible  <bruno@clisp.org>
17135
17136         Avoid test-fflush2.sh failure on mingw.
17137         * tests/test-fflush2.c: Include binary-io.h.
17138         (main): Put standard input into binary mode.
17139         * modules/fflush-tests (Depends-on): Add binary-io.
17140
17141 2009-01-17  Bruno Haible  <bruno@clisp.org>
17142
17143         * lib/wchar.in.h: In another particular situation, include only the
17144         system's <wchar.h> file.
17145         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
17146         Reported by Albert Chin-A-Young <china@thewrittenword.com>
17147         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
17148
17149 2009-01-17  Bruno Haible  <bruno@clisp.org>
17150
17151         Support for stripping executables in --enable-relocatable.
17152         * build-aux/install-reloc: Expect one more argument, or an environment
17153         variable RELOC_STRIP_PROG. If set, strip the destination program and
17154         its wrapper.
17155         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
17156         RELOC_STRIP_PROG.
17157         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
17158         to set RELOCATABLE_STRIP.
17159         * NEWS: Mention the new Makefile requirement.
17160
17161 2009-01-17  Bruno Haible  <bruno@clisp.org>
17162
17163         * build-aux/install-reloc: Remove debugging information left over by
17164         C compiler on MacOS X.
17165
17166 2009-01-17  Bruno Haible  <bruno@clisp.org>
17167
17168         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
17169         * lib/progreloc.c (find_executable): Fix type of pointer passed to
17170         _NSGetExecutablePath.
17171
17172 2009-01-16  Jim Meyering  <meyering@redhat.com>
17173
17174         strerror: avoid warnings about discarding "const"
17175         * lib/strerror.c (rpl_strerror): Instead of returning a const
17176         string from each and every "case", use a variable, and add a single
17177         cast after the switch.
17178
17179 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
17180
17181         * lib/arpa_inet.in.h: Add extern "C" block for C++.
17182
17183 2009-01-16  Bruno Haible  <bruno@clisp.org>
17184
17185         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
17186         array initializer syntax that also works in C++ mode.
17187         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17188
17189 2009-01-16  Jim Meyering  <meyering@redhat.com>
17190
17191         poll: suppress a warning
17192         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
17193         to ignore "...unsigned expression < 0 is always false" warnings.
17194
17195 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
17196
17197         poll: remove declarations of unused variables
17198         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
17199         sockbuf and optlen.
17200
17201 2009-01-15  Bruno Haible  <bruno@clisp.org>
17202
17203         Make fflush-after-ungetc POSIX compliant on BSD systems.
17204         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
17205         (clear_ungetc_buffer): Implement also for other systems.
17206         (rpl_fflush): On glibc systems, invoke
17207         clear_ungetc_buffer_preserving_position. Otherwise, invoke
17208         clear_ungetc_buffer after fetching the stream's position, not before.
17209
17210 2009-01-15  Bruno Haible  <bruno@clisp.org>
17211
17212         Make fflush-after-ungetc POSIX compliant on glibc systems.
17213         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
17214         after ungetc.
17215         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
17216         (rpl_fflush): On glibc systems, simply call the system's fflush
17217         function after clearing the ungetc buffer.
17218         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
17219         Instead, lseek only to the end of file, then use the system's fseeko
17220         for the rest. On glibc systems, reset the EOF indicator bit.
17221
17222 2009-01-15  Jim Meyering  <meyering@redhat.com>
17223
17224         openmp.m4: revert quote-adding change, for portability to older autoconf
17225         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
17226         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
17227         Simon Josefsson noticed the problem when using autoconf-2.61.
17228
17229 2009-01-15  Bruno Haible  <bruno@clisp.org>
17230
17231         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
17232         * tests/test-fflush2.c (ASSERT): Always fail.
17233         (main): Add two tests for fflush() after ungetc(), taking into account
17234         the Austin Group's clarification.
17235         Suggested by Eric Blake.
17236
17237 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
17238
17239         mktime.m4: remove K&R-style function prototypes
17240         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
17241         for the Sun C++ compiler.
17242
17243 2009-01-14  Bruno Haible  <bruno@clisp.org>
17244
17245         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
17246         while including <wchar.h>.
17247         * lib/wchar.in.h: In two particular situations on HP-UX, include only
17248         the system's <wchar.h> file.
17249         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17250
17251 2009-01-14  Bruno Haible  <bruno@clisp.org>
17252
17253         * m4/csharp.m4: Don't mention gettext on the serial number line.
17254         * m4/csharpexec.m4: Likewise.
17255         * m4/eaccess.m4: Likewise.
17256         * m4/javaexec.m4: Likewise.
17257         * m4/sig_atomic_t.m4: Likewise.
17258         * m4/tmpdir.m4: Likewise.
17259         * m4/intldir.m4: Bump gettext version.
17260         * m4/lib-ld.m4: Likewise.
17261
17262 2009-01-14  Bruno Haible  <bruno@clisp.org>
17263
17264         * lib/progname.c (set_program_name): Add more comments.
17265         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
17266
17267 2009-01-14  Simon Josefsson  <simon@josefsson.org>
17268
17269         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
17270         were sys/stat.h does not define it.
17271
17272 2009-01-14  Jim Meyering  <meyering@redhat.com>
17273
17274         many *.m4 files: improve m4 quoting
17275         99% of this change was performed by running the following commands:
17276         git ls-files | grep '\.m4$' | xargs perl -pi \
17277           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
17278           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17279           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17280           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
17281         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
17282         The remainder were to add Copyright dates, increment serial numbers,
17283         undo some changes in comments, exclude m4/intl.m4, and add quotes
17284         around the "1" in ",1" where the unusual spacing prohibited the
17285         above regexps from doing the job.  For more details, see
17286         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
17287         * m4/acl.m4: Modified.
17288         * m4/afs.m4: Likewise.
17289         * m4/alloca.m4: Likewise.
17290         * m4/argp.m4: Likewise.
17291         * m4/argz.m4: Likewise.
17292         * m4/atexit.m4: Likewise.
17293         * m4/bison-i18n.m4: Likewise.
17294         * m4/bison.m4: Likewise.
17295         * m4/byteswap.m4: Likewise.
17296         * m4/c-stack.m4: Likewise.
17297         * m4/c-strtod.m4: Likewise.
17298         * m4/calloc.m4: Likewise.
17299         * m4/canonicalize-lgpl.m4: Likewise.
17300         * m4/chown.m4: Likewise.
17301         * m4/clock_time.m4: Likewise.
17302         * m4/codeset.m4: Likewise.
17303         * m4/copy-file.m4: Likewise.
17304         * m4/csharp.m4: Likewise.
17305         * m4/csharpcomp.m4: Likewise.
17306         * m4/csharpexec.m4: Likewise.
17307         * m4/d-ino.m4: Likewise.
17308         * m4/d-type.m4: Likewise.
17309         * m4/dirfd.m4: Likewise.
17310         * m4/double-slash-root.m4: Likewise.
17311         * m4/eaccess.m4: Likewise.
17312         * m4/eealloc.m4: Likewise.
17313         * m4/environ.m4: Likewise.
17314         * m4/errno_h.m4: Likewise.
17315         * m4/euidaccess.m4: Likewise.
17316         * m4/execute.m4: Likewise.
17317         * m4/fatal-signal.m4: Likewise.
17318         * m4/fchdir.m4: Likewise.
17319         * m4/fcntl_h.m4: Likewise.
17320         * m4/fileblocks.m4: Likewise.
17321         * m4/filenamecat.m4: Likewise.
17322         * m4/findprog.m4: Likewise.
17323         * m4/flexmember.m4: Likewise.
17324         * m4/fnmatch.m4: Likewise.
17325         * m4/fopen.m4: Likewise.
17326         * m4/fpending.m4: Likewise.
17327         * m4/fprintf-posix.m4: Likewise.
17328         * m4/free.m4: Likewise.
17329         * m4/frexp.m4: Likewise.
17330         * m4/frexpl.m4: Likewise.
17331         * m4/fsusage.m4: Likewise.
17332         * m4/ftruncate.m4: Likewise.
17333         * m4/gc-camellia.m4: Likewise.
17334         * m4/gc-random.m4: Likewise.
17335         * m4/gc.m4: Likewise.
17336         * m4/getaddrinfo.m4: Likewise.
17337         * m4/getcwd-abort-bug.m4: Likewise.
17338         * m4/getcwd-path-max.m4: Likewise.
17339         * m4/getdate.m4: Likewise.
17340         * m4/getdomainname.m4: Likewise.
17341         * m4/getgroups.m4: Likewise.
17342         * m4/gethostname.m4: Likewise.
17343         * m4/gethrxtime.m4: Likewise.
17344         * m4/getline.m4: Likewise.
17345         * m4/getloadavg.m4: Likewise.
17346         * m4/getndelim2.m4: Likewise.
17347         * m4/getpass.m4: Likewise.
17348         * m4/gettext.m4: Likewise.
17349         * m4/gettime.m4: Likewise.
17350         * m4/gettimeofday.m4: Likewise.
17351         * m4/gnulib-common.m4: Likewise.
17352         * m4/group-member.m4: Likewise.
17353         * m4/host-os.m4: Likewise.
17354         * m4/iconv.m4: Likewise.
17355         * m4/iconv_open.m4: Likewise.
17356         * m4/inet_ntop.m4: Likewise.
17357         * m4/inet_pton.m4: Likewise.
17358         * m4/inline.m4: Likewise.
17359         * m4/intldir.m4: Likewise.
17360         * m4/intlmacosx.m4: Likewise.
17361         * m4/intmax.m4: Likewise.
17362         * m4/intmax_t.m4: Likewise.
17363         * m4/inttypes.m4: Likewise.
17364         * m4/inttypes_h.m4: Likewise.
17365         * m4/inttypes-pri.m4: Likewise.
17366         * m4/isapipe.m4: Likewise.
17367         * m4/isnand.m4: Likewise.
17368         * m4/isnanf.m4: Likewise.
17369         * m4/isnanl.m4: Likewise.
17370         * m4/javacomp.m4: Likewise.
17371         * m4/javaexec.m4: Likewise.
17372         * m4/jm-winsz1.m4: Likewise.
17373         * m4/jm-winsz2.m4: Likewise.
17374         * m4/lchown.m4: Likewise.
17375         * m4/lcmessage.m4: Likewise.
17376         * m4/ldexpl.m4: Likewise.
17377         * m4/lib-ld.m4: Likewise.
17378         * m4/lib-link.m4: Likewise.
17379         * m4/libsigsegv.m4: Likewise.
17380         * m4/link-follow.m4: Likewise.
17381         * m4/localcharset.m4: Likewise.
17382         * m4/locale-fr.m4: Likewise.
17383         * m4/locale-ja.m4: Likewise.
17384         * m4/locale-tr.m4: Likewise.
17385         * m4/locale-zh.m4: Likewise.
17386         * m4/lock.m4: Likewise.
17387         * m4/longlong.m4: Likewise.
17388         * m4/ls-mntd-fs.m4: Likewise.
17389         * m4/lstat.m4: Likewise.
17390         * m4/malloc.m4: Likewise.
17391         * m4/mathl.m4: Likewise.
17392         * m4/mbrtowc.m4: Likewise.
17393         * m4/mbstate_t.m4: Likewise.
17394         * m4/mbswidth.m4: Likewise.
17395         * m4/memchr.m4: Likewise.
17396         * m4/memcmp.m4: Likewise.
17397         * m4/memcpy.m4: Likewise.
17398         * m4/memmem.m4: Likewise.
17399         * m4/memmove.m4: Likewise.
17400         * m4/mempcpy.m4: Likewise.
17401         * m4/memrchr.m4: Likewise.
17402         * m4/memset.m4: Likewise.
17403         * m4/minmax.m4: Likewise.
17404         * m4/mkdir-slash.m4: Likewise.
17405         * m4/mkdtemp.m4: Likewise.
17406         * m4/mktime.m4: Likewise.
17407         * m4/mmap-anon.m4: Likewise.
17408         * m4/mountlist.m4: Likewise.
17409         * m4/nanosleep.m4: Likewise.
17410         * m4/nls.m4: Likewise.
17411         * m4/nocrash.m4: Likewise.
17412         * m4/open.m4: Likewise.
17413         * m4/openat.m4: Likewise.
17414         * m4/openmp.m4: Likewise.
17415         * m4/pathmax.m4: Likewise.
17416         * m4/perl.m4: Likewise.
17417         * m4/physmem.m4: Likewise.
17418         * m4/pipe.m4: Likewise.
17419         * m4/po.m4: Likewise.
17420         * m4/poll.m4: Likewise.
17421         * m4/posixtm.m4: Likewise.
17422         * m4/posixver.m4: Likewise.
17423         * m4/printf-frexp.m4: Likewise.
17424         * m4/printf-frexpl.m4: Likewise.
17425         * m4/printf-posix.m4: Likewise.
17426         * m4/printf-posix-rpl.m4: Likewise.
17427         * m4/printf.m4: Likewise.
17428         * m4/progtest.m4: Likewise.
17429         * m4/putenv.m4: Likewise.
17430         * m4/readline.m4: Likewise.
17431         * m4/readlink.m4: Likewise.
17432         * m4/readutmp.m4: Likewise.
17433         * m4/realloc.m4: Likewise.
17434         * m4/regex.m4: Likewise.
17435         * m4/relocatable.m4: Likewise.
17436         * m4/relocatable-lib.m4: Likewise.
17437         * m4/rename-dest-slash.m4: Likewise.
17438         * m4/rename.m4: Likewise.
17439         * m4/rmdir-errno.m4: Likewise.
17440         * m4/rmdir.m4: Likewise.
17441         * m4/roundf.m4: Likewise.
17442         * m4/roundl.m4: Likewise.
17443         * m4/rpmatch.m4: Likewise.
17444         * m4/save-cwd.m4: Likewise.
17445         * m4/selinux-selinux-h.m4: Likewise.
17446         * m4/setenv.m4: Likewise.
17447         * m4/settime.m4: Likewise.
17448         * m4/sig2str.m4: Likewise.
17449         * m4/sig_atomic_t.m4: Likewise.
17450         * m4/signalblocking.m4: Likewise.
17451         * m4/signbit.m4: Likewise.
17452         * m4/sigpipe.m4: Likewise.
17453         * m4/sockets.m4: Likewise.
17454         * m4/sockpfaf.m4: Likewise.
17455         * m4/st_dm_mode.m4: Likewise.
17456         * m4/stat-time.m4: Likewise.
17457         * m4/stdbool.m4: Likewise.
17458         * m4/stdint.m4: Likewise.
17459         * m4/stdint_h.m4: Likewise.
17460         * m4/stpcpy.m4: Likewise.
17461         * m4/stpncpy.m4: Likewise.
17462         * m4/strcase.m4: Likewise.
17463         * m4/strchrnul.m4: Likewise.
17464         * m4/strcspn.m4: Likewise.
17465         * m4/strdup.m4: Likewise.
17466         * m4/strftime.m4: Likewise.
17467         * m4/strndup.m4: Likewise.
17468         * m4/strnlen.m4: Likewise.
17469         * m4/strpbrk.m4: Likewise.
17470         * m4/strptime.m4: Likewise.
17471         * m4/strsep.m4: Likewise.
17472         * m4/strtod.m4: Likewise.
17473         * m4/strtoimax.m4: Likewise.
17474         * m4/strtok_r.m4: Likewise.
17475         * m4/strtol.m4: Likewise.
17476         * m4/strtoll.m4: Likewise.
17477         * m4/strtoul.m4: Likewise.
17478         * m4/strtoull.m4: Likewise.
17479         * m4/strtoumax.m4: Likewise.
17480         * m4/strverscmp.m4: Likewise.
17481         * m4/threadlib.m4: Likewise.
17482         * m4/timegm.m4: Likewise.
17483         * m4/tm_gmtoff.m4: Likewise.
17484         * m4/tmpdir.m4: Likewise.
17485         * m4/tmpfile.m4: Likewise.
17486         * m4/tzset.m4: Likewise.
17487         * m4/uintmax_t.m4: Likewise.
17488         * m4/unlinkdir.m4: Likewise.
17489         * m4/unlocked-io.m4: Likewise.
17490         * m4/uptime.m4: Likewise.
17491         * m4/userspec.m4: Likewise.
17492         * m4/utimbuf.m4: Likewise.
17493         * m4/utime.m4: Likewise.
17494         * m4/utimes-null.m4: Likewise.
17495         * m4/utimes.m4: Likewise.
17496         * m4/vararrays.m4: Likewise.
17497         * m4/vasnprintf.m4: Likewise.
17498         * m4/vfprintf-posix.m4: Likewise.
17499         * m4/vprintf-posix.m4: Likewise.
17500         * m4/wait-process.m4: Likewise.
17501         * m4/wchar_t.m4: Likewise.
17502         * m4/wint_t.m4: Likewise.
17503         * m4/write-any-file.m4: Likewise.
17504         * m4/yield.m4: Likewise.
17505
17506 2009-01-13  Bruno Haible  <bruno@clisp.org>
17507
17508         Avoid test-copy-file.sh failures when ACL support insufficient.
17509         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
17510         TESTS_ENVIRONMENT.
17511         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
17512         Reported by Jim Meyering.
17513
17514 2009-01-13  Bruno Haible  <bruno@clisp.org>
17515
17516         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
17517         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
17518         * modules/unistdio/u8-printf-parse (Files): Likewise.
17519         * modules/unistdio/u32-printf-parse (Files): Likewise.
17520         * modules/unistdio/ulc-printf-parse (Files): Likewise.
17521
17522 2009-01-13  Simon Josefsson  <simon@josefsson.org>
17523
17524         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
17525         and m4/inttypes_h.m4 too.
17526
17527 2009-01-12  Eric Blake  <ebb9@byu.net>
17528
17529         tests: IRIX 6.2 cc can't compile -0.0 into .data
17530         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
17531         rather than at compile-time.
17532         * tests/test-floorl.c (minus_zero): Likewise.
17533         * tests/test-frexpl.c (minus_zero): Likewise.
17534         * tests/test-isnan.c (minus_zerol): Likewise.
17535         * tests/test-isnanl.h (minus_zero): Likewise.
17536         * tests/test-ldexpl.c (minus_zero): Likewise.
17537         * tests/test-roundl.c (minus_zero): Likewise.
17538         * tests/test-signbit.c (minus_zerol): Likewise.
17539         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
17540         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
17541         * tests/test-truncl.c (minus_zero): Likewise.
17542         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
17543         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
17544         Reported by Tom G. Christensen and Nelson H. F. Beebe.
17545
17546 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17547
17548         regex: fix glibc bug 9697
17549         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
17550         handling.
17551
17552 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17553
17554         regex: fix glibc bug 697
17555         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
17556         being NULL also if there are no backreferences.
17557
17558 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
17559
17560         regex: merge glibc changes
17561         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
17562         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
17563         re_string_skip_chars, re_string_reconstruct): Likewise.
17564         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
17565
17566 2009-01-07  Jim Meyering  <meyering@redhat.com>
17567
17568         poll: filter through cppi
17569         * lib/poll.c: Indent cpp directives to reflect nesting.
17570
17571 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
17572
17573         poll: don't return uninitialized
17574         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
17575
17576 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
17577
17578         avoid compile failure on AIX 6.1
17579         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
17580         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
17581
17582 2009-01-04  Jim Meyering  <meyering@redhat.com>
17583
17584         remove duplicate inclusion of <stdio.h>
17585         * tests/test-fprintf-posix.c: Likewise.
17586         * tests/test-printf-posix.c: Likewise.
17587         * tests/test-snprintf-posix.c: Likewise.
17588         * tests/test-sprintf-posix.c: Likewise.
17589         * tests/test-vasprintf-posix.c: Likewise.
17590         * tests/test-vfprintf-posix.c: Likewise.
17591         * tests/test-vprintf-posix.c: Likewise.
17592         * tests/test-vsnprintf-posix.c: Likewise.
17593         * tests/test-vsprintf-posix.c: Likewise.
17594
17595 2009-01-03  Jim Meyering  <meyering@redhat.com>
17596
17597         gnulib-tool: fix sed-based filtering
17598         * gnulib-tool (func_filter_filelist): Remove extra backslash
17599         in sed_fff_filter definition.
17600
17601 2009-01-02  Jim Meyering  <meyering@redhat.com>
17602
17603         strftime: avoid compilation failure on Solaris 2.6
17604         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
17605         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
17606         Don't #define mbrlen or mbsinit, since now they're guaranteed to
17607         be available.  Reported by Tom G. Christensen.  Details in
17608         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
17609
17610 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17611             Bruno Haible  <bruno@clisp.org>
17612
17613         Speed up gnulib-tool by doing more string processing through shell
17614         built-ins.
17615         * gnulib-tool (fast_func_append): New variable.
17616         (func_remove_prefix, func_remove_suffix): New functions.
17617         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
17618         (func_filter_filelist): New function.
17619         (func_get_dependencies): Use func_remove_suffix instead of sed.
17620         (func_get_automake_snippet): Use func_filter_filelist instead of a
17621         subshell and sed invocation.
17622
17623 2009-01-01  Bruno Haible  <bruno@clisp.org>
17624
17625         Fix a security bug.
17626         * gnulib-tool (func_import, import, update): Don't allow the characters
17627         '"', '$', '`', '\' in macro arguments that become part of commands that
17628         are evaluated.
17629
17630 2009-01-01  Bruno Haible  <bruno@clisp.org>
17631
17632         * gnulib-tool (func_reset_sigpipe): Add more comments.
17633
17634 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17635
17636         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
17637         func_emit_tests_Makefile_am, func_import): Abort loops early if we
17638         already know the answer.
17639
17640 2009-01-01  Jim Meyering  <meyering@redhat.com>
17641
17642         * lib/version-etc.c (version_etc_va): Update copyright year.
17643
17644 2008-12-30  Bruno Haible  <bruno@clisp.org>
17645
17646         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
17647         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
17648         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
17649
17650 2008-12-29  Eric Blake  <ebb9@byu.net>
17651
17652         multiarch: avoid autoconf AC_REQUIRE bug
17653         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
17654         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
17655         2.63 and older.
17656         Reported by Bruno Haible, and analyzed in
17657         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
17658
17659 2008-12-29  Bruno Haible  <bruno@clisp.org>
17660
17661         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
17662         files in subdirectories correctly.
17663         Reported by Ralf Wildenhues.
17664
17665 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17666
17667         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
17668         rather than 'join FILE -', for Solaris join.
17669
17670 2008-12-29  Bruno Haible  <bruno@clisp.org>
17671
17672         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
17673         quoting.
17674         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
17675         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
17676         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
17677         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
17678         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
17679         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
17680         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
17681         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
17682         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
17683         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
17684         * m4/nls.m4 (AM_NLS): Likewise.
17685         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
17686         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
17687         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
17688         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
17689         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
17690         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
17691         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
17692         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
17693         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
17694         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
17695         * m4/xsize.m4 (gl_XSIZE): Likewise.
17696         Suggested by Jim Meyering.
17697
17698 2008-11-17  Bruce Korb  <bkorb@gnu.org>
17699
17700         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
17701         * lib/parse-duration.c: use a switch instead of cascading if's.
17702
17703 2008-12-29  Eric Blake  <ebb9@byu.net>
17704
17705         wchar.h: supply WEOF on Irix 5.3
17706         * lib/wchar.in.h (wint_t): Also supply WEOF.
17707         * lib/wctype.in.h (wint_t): Likewise.
17708         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
17709         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
17710         Reported by Tom G. Christensen.
17711
17712 2008-12-26  Bruno Haible  <bruno@clisp.org>
17713
17714         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
17715         i486, i586, i686.
17716
17717 2008-12-26  Bruno Haible  <bruno@clisp.org>
17718
17719         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
17720
17721 2008-12-26  Bruno Haible  <bruno@clisp.org>
17722
17723         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
17724         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
17725         not __STDC_CONSTANT_MACROS.
17726         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
17727
17728 2008-12-25  Bruno Haible  <bruno@clisp.org>
17729
17730         Add support for universal builds to vasnprintf.
17731         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
17732         universal builds, guess no.
17733         * modules/vasnprintf-posix (Depends-on): Add multiarch.
17734         * modules/vasprintf-posix (Depends-on): Likewise.
17735         * modules/fprintf-posix (Depends-on): Likewise.
17736         * modules/vfprintf-posix (Depends-on): Likewise.
17737         * modules/snprintf-posix (Depends-on): Likewise.
17738         * modules/vsnprintf-posix (Depends-on): Likewise.
17739         * modules/sprintf-posix (Depends-on): Likewise.
17740         * modules/vsprintf-posix (Depends-on): Likewise.
17741         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
17742         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
17743         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
17744         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
17745         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
17746         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
17747         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
17748
17749         Add support for universal builds to <inttypes.h>.
17750         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
17751         _SCNu64_PREFIX): In Apple
17752         universal builds, define directly, using _LP64.
17753         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
17754         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
17755         * modules/inttypes (Depends-on): Add multiarch.
17756         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
17757
17758         Add support for universal builds to <stdint.h>.
17759         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
17760         universal builds, define directly, using _LP64.
17761         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
17762         Apple universal builds, don't test for the size and suffix of ptrdiff_t
17763         and size_t.
17764         * modules/stdint (Depends-on): Add multiarch.
17765         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
17766
17767         New module 'multiarch'.
17768         * modules/multiarch: New file.
17769         * m4/multiarch.m4: New file.
17770
17771 2008-12-25  Bruno Haible  <bruno@clisp.org>
17772
17773         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
17774
17775 2008-12-25  Bruno Haible  <bruno@clisp.org>
17776
17777         * modules/btowc (License): Relicense under LGPLv2+.
17778         * modules/mbsinit (License): Likewise.
17779         * modules/mbrtowc (License): Likewise.
17780         * modules/wcrtomb (License): Likewise.
17781         * modules/streq (License): Likewise.
17782         Reported by David Lutterkort <lutter@redhat.com>.
17783
17784 2008-12-23  Bruno Haible  <bruno@clisp.org>
17785
17786         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
17787
17788 2008-12-23  Bruno Haible  <bruno@clisp.org>
17789
17790         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
17791         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
17792         GETADDRINFO_LIB, not in LIBS.
17793         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
17794         * modules/canon-host (Link): Likewise.
17795         * NEWS: Mention the change.
17796         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
17797         GETADDRINFO_LIB.
17798
17799 2008-12-22  Bruno Haible  <bruno@clisp.org>
17800
17801         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
17802         * doc/posix-functions/iswalpha_l.texi: Likewise.
17803         * doc/posix-functions/iswblank_l.texi: Likewise.
17804         * doc/posix-functions/iswcntrl_l.texi: Likewise.
17805         * doc/posix-functions/iswctype_l.texi: Likewise.
17806         * doc/posix-functions/iswdigit_l.texi: Likewise.
17807         * doc/posix-functions/iswgraph_l.texi: Likewise.
17808         * doc/posix-functions/iswlower_l.texi: Likewise.
17809         * doc/posix-functions/iswprint_l.texi: Likewise.
17810         * doc/posix-functions/iswpunct_l.texi: Likewise.
17811         * doc/posix-functions/iswspace_l.texi: Likewise.
17812         * doc/posix-functions/iswupper_l.texi: Likewise.
17813         * doc/posix-functions/iswxdigit_l.texi: Likewise.
17814         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
17815         * doc/posix-functions/open_wmemstream.texi: Likewise.
17816         * doc/posix-functions/swscanf.texi: Likewise.
17817         * doc/posix-functions/towctrans_l.texi: Likewise.
17818         * doc/posix-functions/towlower.texi: Likewise.
17819         * doc/posix-functions/towlower_l.texi: Likewise.
17820         * doc/posix-functions/towupper.texi: Likewise.
17821         * doc/posix-functions/towupper_l.texi: Likewise.
17822         * doc/posix-functions/vfwprintf.texi: Likewise.
17823         * doc/posix-functions/vfwscanf.texi: Likewise.
17824         * doc/posix-functions/vswscanf.texi: Likewise.
17825         * doc/posix-functions/vwprintf.texi: Likewise.
17826         * doc/posix-functions/vwscanf.texi: Likewise.
17827         * doc/posix-functions/wcpcpy.texi: Likewise.
17828         * doc/posix-functions/wcpncpy.texi: Likewise.
17829         * doc/posix-functions/wcscasecmp.texi: Likewise.
17830         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
17831         * doc/posix-functions/wcscoll_l.texi: Likewise.
17832         * doc/posix-functions/wcsdup.texi: Likewise.
17833         * doc/posix-functions/wcsncasecmp.texi: Likewise.
17834         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
17835         * doc/posix-functions/wcsnlen.texi: Likewise.
17836         * doc/posix-functions/wcsnrtombs.texi: Likewise.
17837         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
17838         * doc/posix-functions/wctrans_l.texi: Likewise.
17839         * doc/posix-functions/wctype_l.texi: Likewise.
17840         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
17841         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
17842         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
17843         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
17844         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
17845         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
17846         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
17847         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
17848         * doc/glibc-functions/wcschrnul.texi: Likewise.
17849         * doc/glibc-functions/wcsftime_l.texi: Likewise.
17850         * doc/glibc-functions/wcstod_l.texi: Likewise.
17851         * doc/glibc-functions/wcstof_l.texi: Likewise.
17852         * doc/glibc-functions/wcstol_l.texi: Likewise.
17853         * doc/glibc-functions/wcstold_l.texi: Likewise.
17854         * doc/glibc-functions/wcstoll_l.texi: Likewise.
17855         * doc/glibc-functions/wcstoq.texi: Likewise.
17856         * doc/glibc-functions/wcstoul_l.texi: Likewise.
17857         * doc/glibc-functions/wcstoull_l.texi: Likewise.
17858         * doc/glibc-functions/wcstouq.texi: Likewise.
17859         * doc/glibc-functions/wmempcpy.texi: Likewise.
17860
17861 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
17862             Eric Blake  <ebb9@byu.net>
17863             Paolo Bonzini  <bonzini@gnu.org>
17864             Bruno Haible  <bruno@clisp.org>
17865
17866         Make c-stack work on Haiku.
17867         * lib/c-stack.c (SA_ONSTACK): Define fallback.
17868         (c_stack_action): Use SA_ONSTACK flag.
17869
17870 2008-12-22  Bruno Haible  <bruno@clisp.org>
17871
17872         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
17873
17874 2008-12-22  Bruno Haible  <bruno@clisp.org>
17875
17876         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
17877         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
17878         being overridden.
17879         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
17880         New macros.
17881         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
17882         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
17883         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
17884         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
17885
17886 2008-12-22  Bruno Haible  <bruno@clisp.org>
17887
17888         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
17889         from test code.
17890
17891 2008-12-22  Eric Blake  <ebb9@byu.net>
17892
17893         Avoid gcc warnings on cygwin.
17894         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
17895         Avoid unused variable.
17896         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
17897         Likewise.
17898
17899 2008-12-22  Bruno Haible  <bruno@clisp.org>
17900
17901         Remove HAVE_MBRTOWC conditionals.
17902         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
17903         (mbscasecmp): Assume mbrtowc function.
17904         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
17905         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
17906         * lib/mbschr.c: Include mbuiter.h unconditionally.
17907         (mbschr): Assume mbrtowc function.
17908         * lib/mbscspn.c: Include mbuiter.h unconditionally.
17909         (mbscspn): Assume mbrtowc function.
17910         * lib/mbslen.c: Include mbuiter.h unconditionally.
17911         (mbslen): Assume mbrtowc function.
17912         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
17913         (mbsncasecmp): Assume mbrtowc function.
17914         * lib/mbsnlen.c: Include mbiter.h unconditionally.
17915         (mbsnlen): Assume mbrtowc function.
17916         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
17917         (mbspbrk): Assume mbrtowc function.
17918         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
17919         (mbspcasecmp): Assume mbrtowc function.
17920         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
17921         (mbsrchr): Assume mbrtowc function.
17922         * lib/mbssep.c: Include mbuiter.h unconditionally.
17923         (mbssep): Assume mbrtowc function.
17924         * lib/mbsspn.c: Include mbuiter.h unconditionally.
17925         (mbsspn): Assume mbrtowc function.
17926         * lib/mbsstr.c: Include mbuiter.h unconditionally.
17927         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
17928         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
17929         (mbstok_r): Assume mbrtowc function.
17930         * lib/propername.c: Include mbuiter.h unconditionally.
17931         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
17932         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
17933         (trim2): Assume mbrtowc function.
17934         * lib/mbswidth.c (mbsinit): Remove fallback definition.
17935         (mbsnwidth): Assume mbrtowc function.
17936         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
17937         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
17938         fallback definitions.
17939         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
17940
17941 2008-12-22  Bruno Haible  <bruno@clisp.org>
17942
17943         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
17944
17945 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
17946
17947         * modules/regex: Request emulations for the mb*/wc* functions we need.
17948         * m4/regex.m4: Don't look for those functions here.
17949         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
17950
17951 2008-12-22  Bruno Haible  <bruno@clisp.org>
17952
17953         * modules/fnmatch (Depends-on): Remove duplicated dependency.
17954
17955 2008-12-21  Bruno Haible  <bruno@clisp.org>
17956
17957         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
17958         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
17959         (Include): Remove conditionalization.
17960         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
17961         (Include): Remove conditionalization.
17962         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
17963         (Include): Remove conditionalization.
17964         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
17965         * m4/mbfile.m4 (gl_MBFILE): Likewise.
17966         * NEWS: Mention the change.
17967         Reported by Alan Hourihane <alanh@fairlite.co.uk>
17968         via Sergey Poznyakoff <gray@gnu.org.ua>.
17969
17970 2008-12-21  Bruno Haible  <bruno@clisp.org>
17971
17972         * MODULES.html.sh (Extended multibyte and wide character utilities
17973         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
17974         wcrtomb, wcsrtombs.
17975         (Support for systems lacking POSIX:2008): Add accept, bind, close,
17976         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
17977         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
17978         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
17979
17980 2008-12-21  Bruno Haible  <bruno@clisp.org>
17981
17982         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
17983
17984 2008-12-21  Bruno Haible  <bruno@clisp.org>
17985
17986         * modules/wcsnrtombs-tests: New file.
17987         * tests/test-wcsnrtombs1.sh: New file.
17988         * tests/test-wcsnrtombs2.sh: New file.
17989         * tests/test-wcsnrtombs3.sh: New file.
17990         * tests/test-wcsnrtombs4.sh: New file.
17991         * tests/test-wcsnrtombs.c: New file.
17992
17993         New module 'wcsnrtombs'.
17994         * lib/wchar.in.h (wcsnrtombs): New declaration.
17995         * lib/wcsnrtombs.c: New file.
17996         * lib/wcsrtombs-state.c: New file.
17997         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
17998         (internal_state): Remove variable.
17999         * m4/wcsnrtombs.m4: New file.
18000         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
18001         compilation units.
18002         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
18003         HAVE_WCSNRTOMBS.
18004         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
18005         HAVE_WCSNRTOMBS.
18006         * modules/wcsnrtombs: New file.
18007         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
18008         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
18009
18010 2008-12-21  Bruno Haible  <bruno@clisp.org>
18011
18012         * modules/wcsrtombs-tests: New file.
18013         * tests/test-wcsrtombs1.sh: New file.
18014         * tests/test-wcsrtombs2.sh: New file.
18015         * tests/test-wcsrtombs3.sh: New file.
18016         * tests/test-wcsrtombs4.sh: New file.
18017         * tests/test-wcsrtombs.c: New file.
18018
18019         New module 'wcsrtombs'.
18020         * lib/wchar.in.h (wcsrtombs): New declaration.
18021         * lib/wcsrtombs.c: New file.
18022         * m4/wcsrtombs.m4: New file.
18023         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
18024         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
18025         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
18026         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
18027         * modules/wcsrtombs: New file.
18028         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
18029         bugs.
18030
18031 2008-12-21  Bruno Haible  <bruno@clisp.org>
18032
18033         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
18034         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
18035         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
18036         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
18037         if not correct.
18038         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
18039         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
18040         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18041         m4/locale-zh.m4, m4/codeset.m4.
18042         * doc/posix-functions/wcrtomb.texi: Document the bug.
18043
18044 2008-12-21  Bruno Haible  <bruno@clisp.org>
18045
18046         Work around a btowc() bug on IRIX 6.5.
18047         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
18048         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
18049         REPLACE_WTOBC if not.
18050         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
18051         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
18052         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
18053
18054 2008-12-21  Bruno Haible  <bruno@clisp.org>
18055
18056         * modules/wcrtomb-tests: New file.
18057         * tests/test-wcrtomb.sh: New file.
18058         * tests/test-wcrtomb.c: New file.
18059
18060         New module 'wcrtomb'.
18061         * lib/wchar.in.h (wcrtomb): New declaration.
18062         * lib/wcrtomb.c: New file.
18063         * m4/wcrtomb.m4: New file.
18064         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
18065         HAVE_WCRTOMB.
18066         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
18067         HAVE_WCRTOMB.
18068         * modules/wcrtomb: New file.
18069         * doc/posix-functions/wcrtomb.texi: Mention the new module.
18070
18071 2008-12-21  Bruno Haible  <bruno@clisp.org>
18072
18073         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
18074         * modules/mbsrtowcs (Files): Likewise.
18075         * modules/wctob (Files): Likewise.
18076         * modules/c-strcase-tests (Files): Likewise.
18077         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
18078         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
18079         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
18080         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
18081         * modules/vasnprintf-posix-tests (Files): Likewise.
18082
18083 2008-12-21  William Pursell  <bill.pursell@gmail.com>
18084
18085         gitlog-to-changelog: pass all command-line arguments to git-log
18086         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
18087         it is sometimes convenient to filter the commits in various ways.
18088         gitlog-to-changelog only allows --since to specify a start date,
18089         but git-log itself supports many other filtering mechanisms.
18090         At the moment, I want to filter by branch name.  Rather than
18091         adding a --branch option to gitlog-to-changelog, it seems more
18092         flexible to simply pass all options directly to git-log and let
18093         git do the work.  Notice that this effectively makes --since a
18094         redundant option for gitlog-to-changelog, but removing it would
18095         require current usage to change since calls would then require
18096         an additional '--'.
18097
18098 2008-12-21  Bruno Haible  <bruno@clisp.org>
18099
18100         * modules/mbsnrtowcs-tests: New file.
18101         * tests/test-mbsnrtowcs1.sh: New file.
18102         * tests/test-mbsnrtowcs2.sh: New file.
18103         * tests/test-mbsnrtowcs3.sh: New file.
18104         * tests/test-mbsnrtowcs4.sh: New file.
18105         * tests/test-mbsnrtowcs.c: New file.
18106
18107         New module 'mbsnrtowcs'.
18108         * lib/wchar.in.h (mbsnrtowcs): New declaration.
18109         * lib/mbsnrtowcs.c: New file.
18110         * lib/mbsrtowcs-state.c: New file.
18111         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
18112         (internal_state): Remove variable.
18113         * m4/mbsnrtowcs.m4: New file.
18114         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
18115         compilation units.
18116         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
18117         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18118         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
18119         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18120         * modules/mbsnrtowcs: New file.
18121         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
18122         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
18123         portability problem.
18124
18125 2008-12-21  Bruno Haible  <bruno@clisp.org>
18126
18127         Work around mbsrtowcs bug.
18128         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
18129         (gl_FUNC_MBSRTOWCS): Invoke it.
18130         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18131         m4/locale-zh.m4.
18132         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
18133
18134 2008-12-21  Bruno Haible  <bruno@clisp.org>
18135
18136         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
18137
18138 2008-12-21  Bruno Haible  <bruno@clisp.org>
18139
18140         Update doc for AIX.
18141         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
18142         16-bit wchar_t type.
18143         * doc/posix-functions/btowc.texi: Likewise.
18144         * doc/posix-functions/fgetwc.texi: Likewise.
18145         * doc/posix-functions/fgetws.texi: Likewise.
18146         * doc/posix-functions/fputwc.texi: Likewise.
18147         * doc/posix-functions/fputws.texi: Likewise.
18148         * doc/posix-functions/fwide.texi: Likewise.
18149         * doc/posix-functions/fwprintf.texi: Likewise.
18150         * doc/posix-functions/fwscanf.texi: Likewise.
18151         * doc/posix-functions/getwchar.texi: Likewise.
18152         * doc/posix-functions/getwc.texi: Likewise.
18153         * doc/posix-functions/iswalnum.texi: Likewise.
18154         * doc/posix-functions/iswalpha.texi: Likewise.
18155         * doc/posix-functions/iswblank.texi: Likewise.
18156         * doc/posix-functions/iswcntrl.texi: Likewise.
18157         * doc/posix-functions/iswctype.texi: Likewise.
18158         * doc/posix-functions/iswdigit.texi: Likewise.
18159         * doc/posix-functions/iswgraph.texi: Likewise.
18160         * doc/posix-functions/iswlower.texi: Likewise.
18161         * doc/posix-functions/iswprint.texi: Likewise.
18162         * doc/posix-functions/iswpunct.texi: Likewise.
18163         * doc/posix-functions/iswspace.texi: Likewise.
18164         * doc/posix-functions/iswupper.texi: Likewise.
18165         * doc/posix-functions/iswxdigit.texi: Likewise.
18166         * doc/posix-functions/mbrtowc.texi: Likewise.
18167         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18168         * doc/posix-functions/mbstowcs.texi: Likewise.
18169         * doc/posix-functions/mbtowc.texi: Likewise.
18170         * doc/posix-functions/putwchar.texi: Likewise.
18171         * doc/posix-functions/putwc.texi: Likewise.
18172         * doc/posix-functions/swprintf.texi: Likewise.
18173         * doc/posix-functions/tolower.texi: Likewise.
18174         * doc/posix-functions/toupper.texi: Likewise.
18175         * doc/posix-functions/towctrans.texi: Likewise.
18176         * doc/posix-functions/ungetwc.texi: Likewise.
18177         * doc/posix-functions/vswprintf.texi: Likewise.
18178         * doc/posix-functions/wcrtomb.texi: Likewise.
18179         * doc/posix-functions/wcscat.texi: Likewise.
18180         * doc/posix-functions/wcschr.texi: Likewise.
18181         * doc/posix-functions/wcscmp.texi: Likewise.
18182         * doc/posix-functions/wcscoll.texi: Likewise.
18183         * doc/posix-functions/wcscpy.texi: Likewise.
18184         * doc/posix-functions/wcscspn.texi: Likewise.
18185         * doc/posix-functions/wcsftime.texi: Likewise.
18186         * doc/posix-functions/wcslen.texi: Likewise.
18187         * doc/posix-functions/wcsncat.texi: Likewise.
18188         * doc/posix-functions/wcsncmp.texi: Likewise.
18189         * doc/posix-functions/wcsncpy.texi: Likewise.
18190         * doc/posix-functions/wcspbrk.texi: Likewise.
18191         * doc/posix-functions/wcsrchr.texi: Likewise.
18192         * doc/posix-functions/wcsrtombs.texi: Likewise.
18193         * doc/posix-functions/wcsspn.texi: Likewise.
18194         * doc/posix-functions/wcsstr.texi: Likewise.
18195         * doc/posix-functions/wcstod.texi: Likewise.
18196         * doc/posix-functions/wcstof.texi: Likewise.
18197         * doc/posix-functions/wcstoimax.texi: Likewise.
18198         * doc/posix-functions/wcstok.texi: Likewise.
18199         * doc/posix-functions/wcstold.texi: Likewise.
18200         * doc/posix-functions/wcstoll.texi: Likewise.
18201         * doc/posix-functions/wcstol.texi: Likewise.
18202         * doc/posix-functions/wcstombs.texi: Likewise.
18203         * doc/posix-functions/wcstoull.texi: Likewise.
18204         * doc/posix-functions/wcstoul.texi: Likewise.
18205         * doc/posix-functions/wcstoumax.texi: Likewise.
18206         * doc/posix-functions/wcswidth.texi: Likewise.
18207         * doc/posix-functions/wcsxfrm.texi: Likewise.
18208         * doc/posix-functions/wctob.texi: Likewise.
18209         * doc/posix-functions/wctomb.texi: Likewise.
18210         * doc/posix-functions/wctrans.texi: Likewise.
18211         * doc/posix-functions/wctype.texi: Likewise.
18212         * doc/posix-functions/wcwidth.texi: Likewise.
18213         * doc/posix-functions/wmemchr.texi: Likewise.
18214         * doc/posix-functions/wmemcmp.texi: Likewise.
18215         * doc/posix-functions/wmemcpy.texi: Likewise.
18216         * doc/posix-functions/wmemmove.texi: Likewise.
18217         * doc/posix-functions/wmemset.texi: Likewise.
18218         * doc/posix-functions/wprintf.texi: Likewise.
18219         * doc/posix-functions/wscanf.texi: Likewise.
18220
18221 2008-12-21  Bruno Haible  <bruno@clisp.org>
18222
18223         Update doc for HP-UX 11.11.
18224         * doc/posix-functions/btowc.texi: Clarify that the function is missing
18225         in HP-UX version 11.00, not in all versions of HP-UX 11.
18226         * doc/posix-functions/fwide.texi: Likewise.
18227         * doc/posix-functions/fwprintf.texi: Likewise.
18228         * doc/posix-functions/fwscanf.texi: Likewise.
18229         * doc/posix-functions/inet_ntop.texi: Likewise.
18230         * doc/posix-functions/inet_pton.texi: Likewise.
18231         * doc/posix-functions/mbrlen.texi: Likewise.
18232         * doc/posix-functions/mbrtowc.texi: Likewise.
18233         * doc/posix-functions/mbsinit.texi: Likewise.
18234         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18235         * doc/posix-functions/swprintf.texi: Likewise.
18236         * doc/posix-functions/swscanf.texi: Likewise.
18237         * doc/posix-functions/towctrans.texi: Likewise.
18238         * doc/posix-functions/vfwprintf.texi: Likewise.
18239         * doc/posix-functions/vswprintf.texi: Likewise.
18240         * doc/posix-functions/vwprintf.texi: Likewise.
18241         * doc/posix-functions/wcrtomb.texi: Likewise.
18242         * doc/posix-functions/wcsrtombs.texi: Likewise.
18243         * doc/posix-functions/wcsstr.texi: Likewise.
18244         * doc/posix-functions/wctob.texi: Likewise.
18245         * doc/posix-functions/wctrans.texi: Likewise.
18246         * doc/posix-functions/wmemchr.texi: Likewise.
18247         * doc/posix-functions/wmemcmp.texi: Likewise.
18248         * doc/posix-functions/wmemcpy.texi: Likewise.
18249         * doc/posix-functions/wmemmove.texi: Likewise.
18250         * doc/posix-functions/wmemset.texi: Likewise.
18251         * doc/posix-functions/wprintf.texi: Likewise.
18252         * doc/posix-functions/wscanf.texi: Likewise.
18253
18254 2008-12-21  Bruno Haible  <bruno@clisp.org>
18255
18256         Work around a portability problem.
18257         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
18258         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
18259
18260 2008-12-20  Bruno Haible  <bruno@clisp.org>
18261
18262         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
18263         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
18264         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
18265         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
18266         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
18267
18268         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
18269         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
18270         set.
18271         (GNULIB_defined_mbstate_t): New macro.
18272         (mbsinit): Redefine if REPLACE_MBSINIT is set.
18273         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
18274         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
18275         reuses the system's mbrtowc function but works around the bugs.
18276         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
18277         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
18278         macros.
18279         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
18280         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
18281         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
18282         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
18283         REPLACE_MBSINIT if mbsinit needs to be overridden.
18284         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
18285         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18286         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
18287         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18288         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18289         m4/locale-zh.m4.
18290         (Depends): Add mbsinit.
18291         * modules/mbsinit (Depends): Add mbrtowc.
18292         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
18293
18294 2008-12-20  Bruno Haible  <bruno@clisp.org>
18295
18296         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
18297         so that there are no conversion errors on AIX.
18298         * tests/test-mbsrtowcs.c (main): LIkewise.
18299
18300 2008-12-20  Bruno Haible  <bruno@clisp.org>
18301
18302         Work around wctob bug on Solaris <= 9.
18303         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
18304         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
18305         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
18306         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
18307         * modules/wctob (Files): Add m4/locale-fr.m4.
18308         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
18309
18310 2008-12-20  Bruno Haible  <bruno@clisp.org>
18311
18312         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
18313         /dev/null.
18314         * tests/test-select-in.sh: Likewise.
18315         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
18316
18317 2008-12-20  Bruno Haible  <bruno@clisp.org>
18318
18319         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
18320         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
18321         Cygwin 1.5.x.
18322
18323 2008-12-20  Bruno Haible  <bruno@clisp.org>
18324
18325         Ensure mbstate_t is defined on HP-UX 11.11.
18326         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
18327         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
18328         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
18329         AC_USE_SYSTEM_EXTENSIONS.
18330         * modules/fnmatch (Depends-on): Add extensions.
18331         * modules/mbrlen (Depends-on): Likewise.
18332         * modules/mbrtowc (Depends-on): Likewise.
18333         * modules/mbsinit (Depends-on): Likewise.
18334         * modules/mbsrtowcs (Depends-on): Likewise.
18335         * modules/mbswidth (Depends-on): Likewise.
18336         * modules/quotearg (Depends-on): Likewise.
18337         * modules/strftime (Depends-on): Likewise.
18338
18339 2008-12-20  Bruno Haible  <bruno@clisp.org>
18340
18341         Ensure wctob is declared on IRIX 6.5.
18342         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
18343         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
18344         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
18345         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
18346         of HAVE_WCTOB.
18347         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
18348         HAVE_WCTOB.
18349         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
18350
18351 2008-12-19  Bruno Haible  <bruno@clisp.org>
18352
18353         * modules/mbsrtowcs-tests: New file.
18354         * tests/test-mbsrtowcs1.sh: New file.
18355         * tests/test-mbsrtowcs2.sh: New file.
18356         * tests/test-mbsrtowcs3.sh: New file.
18357         * tests/test-mbsrtowcs4.sh: New file.
18358         * tests/test-mbsrtowcs.c: New file.
18359
18360         New module 'mbsrtowcs'.
18361         * lib/wchar.in.h (mbsrtowcs): New declaration.
18362         * lib/mbsrtowcs.c: New file.
18363         * m4/mbsrtowcs.m4: New file.
18364         * modules/mbsrtowcs: New file.
18365         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
18366         HAVE_MBSRTOWCS.
18367         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
18368         HAVE_MBSRTOWCS.
18369         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
18370
18371 2008-12-19  Bruno Haible  <bruno@clisp.org>
18372
18373         New module 'mbrlen'.
18374         * lib/wchar.in.h (mbrlen): New declaration.
18375         * lib/mbrlen.c: New file.
18376         * m4/mbrlen.m4: New file.
18377         * modules/mbrlen: New file.
18378         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
18379         HAVE_MBRLEN.
18380         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
18381         HAVE_MBRLEN.
18382         * doc/posix-functions/mbrlen.texi: Document the new module.
18383
18384 2008-12-19  Bruno Haible  <bruno@clisp.org>
18385
18386         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
18387         * modules/mbrtowc (Depends-on): Add verify.
18388         Suggested by Paul Eggert.
18389
18390 2008-12-18  Bruno Haible  <bruno@clisp.org>
18391
18392         * modules/mbsinit-tests: New file.
18393         * tests/test-mbsinit.sh: New file.
18394         * tests/test-mbsinit.c: New file.
18395
18396 2008-12-18  Bruno Haible  <bruno@clisp.org>
18397
18398         * modules/mbrtowc-tests: New file.
18399         * tests/test-mbrtowc1.sh: New file.
18400         * tests/test-mbrtowc2.sh: New file.
18401         * tests/test-mbrtowc3.sh: New file.
18402         * tests/test-mbrtowc4.sh: New file.
18403         * tests/test-mbrtowc.c: New file.
18404
18405         New module 'mbrtowc'.
18406         * lib/wchar.in.h (mbstate_t): Override when the system does not have
18407         mbsinit and mbrtowc.
18408         (mbrtowc): New declaration.
18409         * lib/mbrtowc.c: New file.
18410         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
18411         * modules/mbrtowc: New file.
18412         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
18413         HAVE_MBRTOWC.
18414         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
18415         HAVE_MBRTOWC.
18416         * doc/posix-functions/mbrtowc.texi: Document the new module.
18417
18418 2008-12-18  Bruno Haible  <bruno@clisp.org>
18419
18420         New module 'wctob'.
18421         * lib/wchar.in.h (wctob): New declaration.
18422         * lib/wctob.c: New file.
18423         * m4/wctob.m4: New file.
18424         * modules/wctob: New file.
18425         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
18426         HAVE_WCTOB.
18427         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
18428         * doc/posix-functions/wctob.texi: Document the new module.
18429
18430 2008-12-18  Bruno Haible  <bruno@clisp.org>
18431
18432         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
18433         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
18434
18435 2008-12-18  Simon Josefsson  <simon@josefsson.org>
18436
18437         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
18438         G. Christensen" <tgc@jupiterrise.com>.
18439
18440         * lib/flock.c: Need to include errno.h.  Reported by "Tom
18441         G. Christensen" <tgc@jupiterrise.com>.
18442
18443         * lib/flock.c: Need to include string.h.  Reported by "Tom
18444         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
18445         <ebb9@byu.net>.
18446
18447 2008-12-18  Bruno Haible  <bruno@clisp.org>
18448
18449         * m4/locale-ja.m4: New file, from GNU gettext.
18450
18451 2008-12-17  Bruno Haible  <bruno@clisp.org>
18452
18453         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
18454         Suggested by Eric Blake.
18455
18456 2008-12-17  Bruno Haible  <bruno@clisp.org>
18457
18458         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
18459
18460 2008-12-17  Bruno Haible  <bruno@clisp.org>
18461
18462         * lib/mbsinit.c: Include verify.h. Verify an assumption.
18463         * modules/mbsinit (Depends-on): Add verify.
18464         Suggested by Paul Eggert.
18465
18466 2008-12-17  Bruno Haible  <bruno@clisp.org>
18467
18468         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
18469         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
18470         gl_FUNC_MBRTOWC.
18471         * m4/mbiter.m4 (gl_MBITER): LIkewise.
18472         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
18473         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
18474         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
18475         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
18476         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
18477         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
18478         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
18479         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
18480         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
18481         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
18482         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
18483         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
18484         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
18485         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
18486         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
18487         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
18488         * modules/trim (configure.ac): Likewise.
18489
18490 2008-12-17  Bruno Haible  <bruno@clisp.org>
18491
18492         * modules/btowc-tests: New file.
18493         * tests/test-btowc1.sh: New file.
18494         * tests/test-btowc2.sh: New file.
18495         * tests/test-btowc.c: New file.
18496
18497         New module 'btowc'.
18498         * lib/wchar.in.h (btowc): New declaration.
18499         * lib/btowc.c: New file.
18500         * m4/btowc.m4: New file.
18501         * modules/btowc: New file.
18502         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
18503         HAVE_BTOWC.
18504         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
18505         * doc/posix-functions/btowc.texi: Document the new module.
18506
18507 2008-12-17  Bruno Haible  <bruno@clisp.org>
18508
18509         New module 'mbsinit'.
18510         * lib/wchar.in.h (mbsinit): New declaration.
18511         * lib/mbsinit.c: New file.
18512         * m4/mbsinit.m4: New file.
18513         * modules/mbsinit: New file.
18514         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
18515         HAVE_MBSINIT.
18516         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
18517         HAVE_MBSINIT.
18518         * doc/posix-functions/mbsinit.texi: Document the new module.
18519
18520 2008-12-16  Bruno Haible  <bruno@clisp.org>
18521
18522         * lib/unistd.in.h: Add comment.
18523         * tests/test-environ.c: Don't include <stdlib.h>.
18524
18525 2008-12-16  Bruno Haible  <bruno@clisp.org>
18526
18527         * lib/parse-duration.h (parse_duration): Document return value
18528         convention.
18529         * lib/parse-duration.c: Include specification header first. Add
18530         comments.
18531         (_): Remove macro.
18532         (parse_year_month_day, parse_hour_minute_second): Move side effects
18533         outside of strchr call.
18534         (parse_non_iso8601): Move side effects outside of isspace call.
18535         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
18536         call.
18537
18538 2008-12-16  Bruno Haible  <bruno@clisp.org>
18539
18540         * tests/test-parse-duration.sh: Produce no output when the test
18541         succeeds.
18542
18543 2008-12-16  Bruno Haible  <bruno@clisp.org>
18544
18545         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
18546         expressions.
18547
18548 2008-12-15  Bruno Haible  <bruno@clisp.org>
18549
18550         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
18551         * doc/glibc-functions/flistxattr.texi: Likewise.
18552         * doc/glibc-functions/fopencookie.texi: Likewise.
18553         * doc/glibc-functions/fremovexattr.texi: Likewise.
18554         * doc/glibc-functions/fsetxattr.texi: Likewise.
18555         * doc/glibc-functions/getxattr.texi: Likewise.
18556         * doc/glibc-functions/lgetxattr.texi: Likewise.
18557         * doc/glibc-functions/listxattr.texi: Likewise.
18558         * doc/glibc-functions/llistxattr.texi: Likewise.
18559         * doc/glibc-functions/lremovexattr.texi: Likewise.
18560         * doc/glibc-functions/lsetxattr.texi: Likewise.
18561         * doc/glibc-functions/removexattr.texi: Likewise.
18562         * doc/glibc-functions/setxattr.texi: Likewise.
18563         * doc/posix-functions/open_memstream.texi: Likewise.
18564
18565 2008-12-15  Eric Blake  <ebb9@byu.net>
18566
18567         Update doc for cygwin 1.7.
18568         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
18569         functions.
18570         * doc/posix-functions/fchmodat.texi: Likewise.
18571         * doc/posix-functions/fchownat.texi: Likewise.
18572         * doc/posix-functions/fdopendir.texi: Likewise.
18573         * doc/posix-functions/fmemopen.texi: Likewise.
18574         * doc/posix-functions/freeaddrinfo.texi: Likewise.
18575         * doc/posix-functions/fstatat.texi: Likewise.
18576         * doc/posix-functions/futimens.texi: Likewise.
18577         * doc/posix-functions/gai_strerror.texi: Likewise.
18578         * doc/posix-functions/getaddrinfo.texi: Likewise.
18579         * doc/posix-functions/getnameinfo.texi: Likewise.
18580         * doc/posix-functions/if_freenameindex.texi: Likewise.
18581         * doc/posix-functions/if_indextoname.texi: Likewise.
18582         * doc/posix-functions/if_nameindex.texi: Likewise.
18583         * doc/posix-functions/if_nametoindex.texi: Likewise.
18584         * doc/posix-functions/insque.texi: Likewise.
18585         * doc/posix-functions/linkat.texi: Likewise.
18586         * doc/posix-functions/llrint.texi: Likewise.
18587         * doc/posix-functions/llrintf.texi: Likewise.
18588         * doc/posix-functions/llrintl.texi: Likewise.
18589         * doc/posix-functions/lockf.texi: Likewise.
18590         * doc/posix-functions/lrintl.texi: Likewise.
18591         * doc/posix-functions/mkdirat.texi: Likewise.
18592         * doc/posix-functions/mkfifoat.texi: Likewise.
18593         * doc/posix-functions/mknodat.texi: Likewise.
18594         * doc/posix-functions/mq_close.texi: Likewise.
18595         * doc/posix-functions/mq_getattr.texi: Likewise.
18596         * doc/posix-functions/mq_notify.texi: Likewise.
18597         * doc/posix-functions/mq_open.texi: Likewise.
18598         * doc/posix-functions/mq_receive.texi: Likewise.
18599         * doc/posix-functions/mq_send.texi: Likewise.
18600         * doc/posix-functions/mq_setattr.texi: Likewise.
18601         * doc/posix-functions/mq_timedreceive.texi: Likewise.
18602         * doc/posix-functions/mq_timedsend.texi: Likewise.
18603         * doc/posix-functions/mq_unlink.texi: Likewise.
18604         * doc/posix-functions/open_memstream.texi: Likewise.
18605         * doc/posix-functions/openat.texi: Likewise.
18606         * doc/posix-functions/posix_fadvise.texi: Likewise.
18607         * doc/posix-functions/posix_fallocate.texi: Likewise.
18608         * doc/posix-functions/posix_madvise.texi: Likewise.
18609         * doc/posix-functions/posix_memalign.texi: Likewise.
18610         * doc/posix-functions/posix_openpt.texi: Likewise.
18611         * doc/posix-functions/readlinkat.texi: Likewise.
18612         * doc/posix-functions/remque.texi: Likewise.
18613         * doc/posix-functions/renameat.texi: Likewise.
18614         * doc/posix-functions/rintl.texi: Likewise.
18615         * doc/posix-functions/sem_unlink.texi: Likewise.
18616         * doc/posix-functions/shm_open.texi: Likewise.
18617         * doc/posix-functions/shm_unlink.texi: Likewise.
18618         * doc/posix-functions/signgam.texi: Likewise.
18619         * doc/posix-functions/sigset.texi: Likewise.
18620         * doc/posix-functions/stpcpy.texi: Likewise.
18621         * doc/posix-functions/stpncpy.texi: Likewise.
18622         * doc/posix-functions/strerror.texi: Likewise.
18623         * doc/posix-functions/strtod.texi: Likewise.
18624         * doc/posix-functions/symlinkat.texi: Likewise.
18625         * doc/posix-functions/unlinkat.texi: Likewise.
18626         * doc/posix-functions/utimensat.texi: Likewise.
18627         * doc/glibc-functions/bindresvport.texi: Likewise.
18628         * doc/glibc-functions/dn_expand.texi: Likewise.
18629         * doc/glibc-functions/exp10.texi: Likewise.
18630         * doc/glibc-functions/exp10f.texi: Likewise.
18631         * doc/glibc-functions/fgetxattr.texi: Likewise.
18632         * doc/glibc-functions/flistxattr.texi: Likewise.
18633         * doc/glibc-functions/fopencookie.texi: Likewise.
18634         * doc/glibc-functions/freeifaddrs.texi: Likewise.
18635         * doc/glibc-functions/fremovexattr.texi: Likewise.
18636         * doc/glibc-functions/fsetxattr.texi: Likewise.
18637         * doc/glibc-functions/getifaddrs.texi: Likewise.
18638         * doc/glibc-functions/getxattr.texi: Likewise.
18639         * doc/glibc-functions/lgetxattr.texi: Likewise.
18640         * doc/glibc-functions/listxattr.texi: Likewise.
18641         * doc/glibc-functions/llistxattr.texi: Likewise.
18642         * doc/glibc-functions/lremovexattr.texi: Likewise.
18643         * doc/glibc-functions/lsetxattr.texi: Likewise.
18644         * doc/glibc-functions/pow10.texi: Likewise.
18645         * doc/glibc-functions/pow10f.texi: Likewise.
18646         * doc/glibc-functions/rcmd_af.texi: Likewise.
18647         * doc/glibc-functions/removexattr.texi: Likewise.
18648         * doc/glibc-functions/res_init.texi: Likewise.
18649         * doc/glibc-functions/res_mkquery.texi: Likewise.
18650         * doc/glibc-functions/res_query.texi: Likewise.
18651         * doc/glibc-functions/res_querydomain.texi: Likewise.
18652         * doc/glibc-functions/res_send.texi: Likewise.
18653         * doc/glibc-functions/rresvport_af.texi: Likewise.
18654         * doc/glibc-functions/setxattr.texi: Likewise.
18655         * doc/glibc-functions/strcasestr.texi: Likewise.
18656
18657 2008-12-15  Bruno Haible  <bruno@clisp.org>
18658
18659         Fix compilation error on OSF/1 4.0.
18660         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
18661         <sys/time.h>, simply delegate to the system header.
18662         Reported by Daniel Richard G. <oss@teragram.com>.
18663
18664 2008-12-15  Bruno Haible  <bruno@clisp.org>
18665
18666         * doc/posix-functions/openat.texi: Mention the 'openat' module.
18667         * doc/posix-functions/fchmodat.texi: Likewise.
18668         * doc/posix-functions/fchownat.texi: Likewise.
18669         * doc/posix-functions/fdopendir.texi: Likewise.
18670         * doc/posix-functions/fstatat.texi: Likewise.
18671         * doc/posix-functions/mkdirat.texi: Likewise.
18672         * doc/posix-functions/unlinkat.texi: Likewise.
18673
18674 2008-12-14  Bruno Haible  <bruno@clisp.org>
18675
18676         Update doc for POSIX:2008.
18677         * doc/posix-functions/faccessat.texi: New file.
18678         * doc/posix-functions/fchmodat.texi: New file.
18679         * doc/posix-functions/fchownat.texi: New file.
18680         * doc/posix-functions/fdopendir.texi: New file.
18681         * doc/posix-functions/fstatat.texi: New file.
18682         * doc/posix-functions/futimens.texi: New file.
18683         * doc/posix-functions/linkat.texi: New file.
18684         * doc/posix-functions/mkdirat.texi: New file.
18685         * doc/posix-functions/mkfifoat.texi: New file.
18686         * doc/posix-functions/mknodat.texi: New file.
18687         * doc/posix-functions/open_wmemstream.texi: New file.
18688         * doc/posix-functions/openat.texi: New file.
18689         * doc/posix-functions/psiginfo.texi: New file.
18690         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
18691         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
18692         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
18693         * doc/posix-functions/readlinkat.texi: New file.
18694         * doc/posix-functions/renameat.texi: New file.
18695         * doc/posix-functions/strerror_l.texi: New file.
18696         * doc/posix-functions/symlinkat.texi: New file.
18697         * doc/posix-functions/unlinkat.texi: New file.
18698         * doc/posix-functions/utimensat.texi: New file.
18699         * doc/gnulib.texi (Function Substitutes): Add these subsections.
18700
18701 2008-12-14  Bruno Haible  <bruno@clisp.org>
18702
18703         Update doc for POSIX:2008.
18704         * doc/posix-functions/alphasort.texi: Renamed from
18705         doc/glibc-functions/alphasort.texi.
18706         * doc/posix-functions/dirfd.texi: Renamed from
18707         doc/glibc-functions/dirfd.texi.
18708         * doc/posix-functions/dprintf.texi: Renamed from
18709         doc/glibc-functions/dprintf.texi.
18710         * doc/posix-functions/duplocale.texi: Renamed from
18711         doc/glibc-functions/duplocale.texi.
18712         * doc/posix-functions/fexecve.texi: Renamed from
18713         doc/glibc-functions/fexecve.texi.
18714         * doc/posix-functions/fmemopen.texi: Renamed from
18715         doc/glibc-functions/fmemopen.texi.
18716         * doc/posix-functions/freelocale.texi: Renamed from
18717         doc/glibc-functions/freelocale.texi.
18718         * doc/posix-functions/getdate_err.texi: Renamed from
18719         doc/glibc-functions/getdate_err.texi.
18720         * doc/posix-functions/isalnum_l.texi: Renamed from
18721         doc/glibc-functions/isalnum_l.texi.
18722         * doc/posix-functions/isalpha_l.texi: Renamed from
18723         doc/glibc-functions/isalpha_l.texi.
18724         * doc/posix-functions/isblank_l.texi: Renamed from
18725         doc/glibc-functions/isblank_l.texi.
18726         * doc/posix-functions/iscntrl_l.texi: Renamed from
18727         doc/glibc-functions/iscntrl_l.texi.
18728         * doc/posix-functions/isdigit_l.texi: Renamed from
18729         doc/glibc-functions/isdigit_l.texi.
18730         * doc/posix-functions/isgraph_l.texi: Renamed from
18731         doc/glibc-functions/isgraph_l.texi.
18732         * doc/posix-functions/islower_l.texi: Renamed from
18733         doc/glibc-functions/islower_l.texi.
18734         * doc/posix-functions/isprint_l.texi: Renamed from
18735         doc/glibc-functions/isprint_l.texi.
18736         * doc/posix-functions/ispunct_l.texi: Renamed from
18737         doc/glibc-functions/ispunct_l.texi.
18738         * doc/posix-functions/isspace_l.texi: Renamed from
18739         doc/glibc-functions/isspace_l.texi.
18740         * doc/posix-functions/isupper_l.texi: Renamed from
18741         doc/glibc-functions/isupper_l.texi.
18742         * doc/posix-functions/iswalnum_l.texi: Renamed from
18743         doc/glibc-functions/iswalnum_l.texi.
18744         * doc/posix-functions/iswalpha_l.texi: Renamed from
18745         doc/glibc-functions/iswalpha_l.texi.
18746         * doc/posix-functions/iswblank_l.texi: Renamed from
18747         doc/glibc-functions/iswblank_l.texi.
18748         * doc/posix-functions/iswcntrl_l.texi: Renamed from
18749         doc/glibc-functions/iswcntrl_l.texi.
18750         * doc/posix-functions/iswctype_l.texi: Renamed from
18751         doc/glibc-functions/iswctype_l.texi.
18752         * doc/posix-functions/iswdigit_l.texi: Renamed from
18753         doc/glibc-functions/iswdigit_l.texi.
18754         * doc/posix-functions/iswgraph_l.texi: Renamed from
18755         doc/glibc-functions/iswgraph_l.texi.
18756         * doc/posix-functions/iswlower_l.texi: Renamed from
18757         doc/glibc-functions/iswlower_l.texi.
18758         * doc/posix-functions/iswprint_l.texi: Renamed from
18759         doc/glibc-functions/iswprint_l.texi.
18760         * doc/posix-functions/iswpunct_l.texi: Renamed from
18761         doc/glibc-functions/iswpunct_l.texi.
18762         * doc/posix-functions/iswspace_l.texi: Renamed from
18763         doc/glibc-functions/iswspace_l.texi.
18764         * doc/posix-functions/iswupper_l.texi: Renamed from
18765         doc/glibc-functions/iswupper_l.texi.
18766         * doc/posix-functions/iswxdigit_l.texi: Renamed from
18767         doc/glibc-functions/iswxdigit_l.texi.
18768         * doc/posix-functions/isxdigit_l.texi: Renamed from
18769         doc/glibc-functions/isxdigit_l.texi.
18770         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
18771         doc/glibc-functions/mbsnrtowcs.texi.
18772         * doc/posix-functions/mkdtemp.texi: Renamed from
18773         doc/glibc-functions/mkdtemp.texi.
18774         * doc/posix-functions/newlocale.texi: Renamed from
18775         doc/glibc-functions/newlocale.texi.
18776         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
18777         doc/glibc-functions/nl_langinfo_l.texi.
18778         * doc/posix-functions/open_memstream.texi: Renamed from
18779         doc/glibc-functions/open_memstream.texi.
18780         * doc/posix-functions/opterr.texi: Renamed from
18781         doc/glibc-functions/opterr.texi.
18782         * doc/posix-functions/optind.texi: Renamed from
18783         doc/glibc-functions/optind.texi.
18784         * doc/posix-functions/optopt.texi: Renamed from
18785         doc/glibc-functions/optopt.texi.
18786         * doc/posix-functions/psignal.texi: Renamed from
18787         doc/glibc-functions/psignal.texi.
18788         * doc/posix-functions/scandir.texi: Renamed from
18789         doc/glibc-functions/scandir.texi.
18790         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
18791         doc/glibc-functions/sched_get_priority_min.texi.
18792         * doc/posix-functions/signgam.texi: Renamed from
18793         doc/glibc-functions/signgam.texi.
18794         * doc/posix-functions/stpcpy.texi: Renamed from
18795         doc/glibc-functions/stpcpy.texi.
18796         * doc/posix-functions/stpncpy.texi: Renamed from
18797         doc/glibc-functions/stpncpy.texi.
18798         * doc/posix-functions/strcasecmp_l.texi: Renamed from
18799         doc/glibc-functions/strcasecmp_l.texi.
18800         * doc/posix-functions/strcoll_l.texi: Renamed from
18801         doc/glibc-functions/strcoll_l.texi.
18802         * doc/posix-functions/strfmon_l.texi: Renamed from
18803         doc/glibc-functions/strfmon_l.texi.
18804         * doc/posix-functions/strftime_l.texi: Renamed from
18805         doc/glibc-functions/strftime_l.texi.
18806         * doc/posix-functions/strncasecmp_l.texi: Renamed from
18807         doc/glibc-functions/strncasecmp_l.texi.
18808         * doc/posix-functions/strndup.texi: Renamed from
18809         doc/glibc-functions/strndup.texi.
18810         * doc/posix-functions/strnlen.texi: Renamed from
18811         doc/glibc-functions/strnlen.texi.
18812         * doc/posix-functions/strsignal.texi: Renamed from
18813         doc/glibc-functions/strsignal.texi.
18814         * doc/posix-functions/strxfrm_l.texi: Renamed from
18815         doc/glibc-functions/strxfrm_l.texi.
18816         * doc/posix-functions/timer_gettime.texi: Renamed from
18817         doc/glibc-functions/timer_gettime.texi.
18818         * doc/posix-functions/tolower_l.texi: Renamed from
18819         doc/glibc-functions/tolower_l.texi.
18820         * doc/posix-functions/toupper_l.texi: Renamed from
18821         doc/glibc-functions/toupper_l.texi.
18822         * doc/posix-functions/towctrans_l.texi: Renamed from
18823         doc/glibc-functions/towctrans_l.texi.
18824         * doc/posix-functions/towlower_l.texi: Renamed from
18825         doc/glibc-functions/towlower_l.texi.
18826         * doc/posix-functions/towupper_l.texi: Renamed from
18827         doc/glibc-functions/towupper_l.texi.
18828         * doc/posix-functions/uselocale.texi: Renamed from
18829         doc/glibc-functions/uselocale.texi.
18830         * doc/posix-functions/vdprintf.texi: Renamed from
18831         doc/glibc-functions/vdprintf.texi.
18832         * doc/posix-functions/wcpcpy.texi:
18833         Renamed from doc/glibc-functions/wcpcpy.texi.
18834         * doc/posix-functions/wcpncpy.texi: Renamed from
18835         doc/glibc-functions/wcpncpy.texi.
18836         * doc/posix-functions/wcscasecmp.texi: Renamed from
18837         doc/glibc-functions/wcscasecmp.texi.
18838         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
18839         doc/glibc-functions/wcscasecmp_l.texi.
18840         * doc/posix-functions/wcscoll_l.texi: Renamed from
18841         doc/glibc-functions/wcscoll_l.texi.
18842         * doc/posix-functions/wcsdup.texi: Renamed from
18843         doc/glibc-functions/wcsdup.texi.
18844         * doc/posix-functions/wcsncasecmp.texi: Renamed from
18845         doc/glibc-functions/wcsncasecmp.texi.
18846         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
18847         doc/glibc-functions/wcsncasecmp_l.texi.
18848         * doc/posix-functions/wcsnlen.texi: Renamed from
18849         doc/glibc-functions/wcsnlen.texi.
18850         * doc/posix-functions/wcsnrtombs.texi: Renamed from
18851         doc/glibc-functions/wcsnrtombs.texi.
18852         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
18853         doc/glibc-functions/wcsxfrm_l.texi.
18854         * doc/posix-functions/wctrans_l.texi: Renamed from
18855         doc/glibc-functions/wctrans_l.texi.
18856         * doc/posix-functions/wctype_l.texi: Renamed from
18857         doc/glibc-functions/wctype_l.texi.
18858         * doc/gnulib.texi (Function Substitutes): Add these subsections.
18859         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
18860         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
18861         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
18862         these subsections.
18863         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
18864         Remove sections.
18865
18866 2008-12-14  Bruno Haible  <bruno@clisp.org>
18867
18868         Update doc for POSIX:2008.
18869         * doc/posix-functions/*.texi: Update URL of POSIX specification.
18870
18871 2008-12-14  Bruno Haible  <bruno@clisp.org>
18872
18873         Update doc for POSIX:2008.
18874         * doc/pastposix-functions/bcmp.texi: Renamed from
18875         doc/posix-functions/bcmp.texi.
18876         * doc/pastposix-functions/bcopy.texi: Renamed from
18877         doc/posix-functions/bcopy.texi.
18878         * doc/pastposix-functions/bsd_signal.texi: Renamed from
18879         doc/posix-functions/bsd_signal.texi.
18880         * doc/pastposix-functions/bzero.texi: Renamed from
18881         doc/posix-functions/bzero.texi.
18882         * doc/pastposix-functions/ecvt.texi: Renamed from
18883         doc/posix-functions/ecvt.texi.
18884         * doc/pastposix-functions/fcvt.texi: Renamed from
18885         doc/posix-functions/fcvt.texi.
18886         * doc/pastposix-functions/ftime.texi: Renamed from
18887         doc/posix-functions/ftime.texi.
18888         * doc/pastposix-functions/gcvt.texi: Renamed from
18889         doc/posix-functions/gcvt.texi.
18890         * doc/pastposix-functions/getcontext.texi: Renamed from
18891         doc/posix-functions/getcontext.texi.
18892         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
18893         doc/posix-functions/gethostbyaddr.texi.
18894         * doc/pastposix-functions/gethostbyname.texi: Renamed from
18895         doc/posix-functions/gethostbyname.texi.
18896         * doc/pastposix-functions/getwd.texi: Renamed from
18897         doc/posix-functions/getwd.texi.
18898         * doc/pastposix-functions/h_errno.texi: Renamed from
18899         doc/posix-functions/h_errno.texi.
18900         * doc/pastposix-functions/index.texi: Renamed from
18901         doc/posix-functions/index.texi.
18902         * doc/pastposix-functions/makecontext.texi: Renamed from
18903         doc/posix-functions/makecontext.texi.
18904         * doc/pastposix-functions/mktemp.texi: Renamed from
18905         doc/posix-functions/mktemp.texi.
18906         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
18907         doc/posix-functions/pthread_attr_getstackaddr.texi.
18908         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
18909         doc/posix-functions/pthread_attr_setstackaddr.texi.
18910         * doc/pastposix-functions/rindex.texi: Renamed from
18911         doc/posix-functions/rindex.texi.
18912         * doc/pastposix-functions/scalb.texi: Renamed from
18913         doc/posix-functions/scalb.texi.
18914         * doc/pastposix-functions/setcontext.texi: Renamed from
18915         doc/posix-functions/setcontext.texi.
18916         * doc/pastposix-functions/swapcontext.texi: Renamed from
18917         doc/posix-functions/swapcontext.texi.
18918         * doc/pastposix-functions/ualarm.texi: Renamed from
18919         doc/posix-functions/ualarm.texi.
18920         * doc/pastposix-functions/usleep.texi: Renamed from
18921         doc/posix-functions/usleep.texi.
18922         * doc/pastposix-functions/vfork.texi: Renamed from
18923         doc/posix-functions/vfork.texi.
18924         * doc/pastposix-functions/wcswcs.texi: Renamed from
18925         doc/posix-functions/wcswcs.texi.
18926         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
18927         (Function Substitutes): Update.
18928
18929 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18930
18931         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
18932         m4/strerror.m4.
18933
18934 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18935             Bruno Haible  <bruno@clisp.org>
18936
18937         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
18938
18939 2008-12-13  Bruno Haible  <bruno@clisp.org>
18940
18941         * modules/strtoull (Depends-on): Remove unistd.
18942
18943 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18944
18945         * modules/strtoull (Depends-on): Add stdlib.
18946
18947 2008-12-11  Simon Josefsson  <simon@josefsson.org>
18948
18949         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
18950
18951 2008-12-10  Jim Meyering  <meyering@redhat.com>
18952
18953         gl_ASSERT: don't say assertions are disabled when they're not
18954         * m4/assert.m4 (gl_ASSERT): Do not make configure report
18955         "checking whether to enable assertions... no", when they are in
18956         fact enabled.  This is solely a bug in the output of configure.
18957         In spite of saying "no", NDEBUG was not defined in that case.
18958         Also, as noted by Eric Blake, leave assertions enabled upon
18959         --enable-assert=INVALID.
18960
18961 2008-12-10  Bruno Haible  <bruno@clisp.org>
18962
18963         Change MODULES.html to refer to POSIX:2008 where possible.
18964         * MODULES.html.sh (POSIX2008_URL): New variable.
18965         (posix_headers): Remove sys/timeb, ucontext.
18966         (posix2001_headers): New variable.
18967         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
18968         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
18969         index, makecontext, mktemp, pthread_attr_getstackaddr,
18970         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
18971         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
18972         (posix2001_functions): New variable.
18973         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
18974         otherwise.
18975
18976 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18977
18978         add missing include to parse-duration.c
18979         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
18980         * modules/parse-duration (Depends-on): Add xalloc.
18981
18982         fix sed script reading maint.mk
18983         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
18984         (syntax-check-rules): Use it.
18985
18986 2008-12-09  Bruno Haible  <bruno@clisp.org>
18987
18988         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
18989         MacOS X 10.4/PowerPC.
18990         Reported by Simon Josefsson.
18991
18992 2008-12-08  Jim Meyering  <meyering@redhat.com>
18993
18994         work around mingw's lack of some S_IF definitions
18995         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
18996         Reported by Simon Josefsson.
18997
18998 2008-12-08  Bruno Haible  <bruno@clisp.org>
18999
19000         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
19001         applied to variables. Needed on MacOS X 10.4/PowerPC.
19002         Reported by Simon Josefsson.
19003
19004 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
19005         and Eric Blake  <ebb9@byu.net>
19006
19007         assert: honor --enable-assert
19008         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
19009         order to honor --enable-assert, rather than treating it as a
19010         synonym for --disable-assert.
19011
19012 2008-12-08  Jim Meyering  <meyering@redhat.com>
19013
19014         * lib/posixtm.c: Remove now-useless declaration of mktime.
19015
19016         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
19017
19018 2008-12-07  Bruno Haible  <bruno@clisp.org>
19019
19020         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
19021         test_once): Mark functions as static.
19022         * tests/test-tls.c (test_tls): Likewise.
19023
19024 2008-12-07  Bruno Haible  <bruno@clisp.org>
19025
19026         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
19027         iconv_register_autodetect.
19028
19029 2008-12-07  Jim Meyering  <meyering@redhat.com>
19030
19031         posixtm.c: avoid a warning
19032         * lib/posixtm.c (posixtime): Don't initialize tm0.
19033         It's no longer needed to placate gcc4's -Wuninitialized,
19034         and the attempt to placate would elicit a new warning.
19035
19036         unicodeio.c: mark unused parameters
19037         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
19038         (fallback_failure_callback): Likewise.
19039
19040 2008-12-07  Bruno Haible  <bruno@clisp.org>
19041
19042         * gnulib-tool (func_create_testdir): When building the tests
19043         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
19044         Reported by Simon Josefsson.
19045
19046 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19047
19048         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
19049
19050 2008-12-06  Bruno Haible  <bruno@clisp.org>
19051
19052         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
19053         Suggested by Eric Blake.
19054
19055 2008-12-06  Bruno Haible  <bruno@clisp.org>
19056
19057         Fix a c-stack test failure on MacOS X.
19058         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
19059         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
19060         handler for SIGBUS as well.
19061         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
19062         install a signal handler for SIGBUS as well.
19063         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
19064
19065 2008-12-06  Bruno Haible  <bruno@clisp.org>
19066
19067         Advocacy documentation.
19068         * doc/gnulib-intro.texi (Benefits): New section.
19069         * doc/gnulib.texi: Update.
19070
19071 2008-12-06  Bruno Haible  <bruno@clisp.org>
19072
19073         Document the 'manywarnings' module.
19074         * doc/manywarnings.texi: New file.
19075         * doc/gnulib.texi: Include it.
19076
19077 2008-12-05  Eric Blake  <ebb9@byu.net>
19078
19079         tests: silence some gcc warnings
19080         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
19081         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
19082         type mismatches.
19083
19084 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19085             Bruno Haible  <bruno@clisp.org>
19086
19087         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
19088
19089 2008-11-29  Jim Meyering  <meyering@redhat.com>
19090
19091         unicodeio.c: mark unused parameters
19092         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
19093         (fallback_failure_callback): Likewise.
19094
19095         fts: fix a thinko
19096         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
19097         (set_stat_type): Return S_IF*-valued "type" directly.
19098         Prompted by James Youngman's spotting a related bug.
19099         Confirmed by further testing through find.
19100
19101         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
19102         * lib/fts.c (D_TYPE): Define.
19103         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
19104         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
19105         (s_ifmt_shift_bits): New function.
19106         (set_stat_type): New function.
19107         (fts_build): When not calling fts_stat, call set_stat_type
19108         to propagate dirent.d_type info to fts_read caller.
19109         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
19110         fts_statp->st_mode type information may be valid.
19111
19112 2008-11-28  Simon Josefsson  <simon@josefsson.org>
19113
19114         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
19115         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
19116         <sds@gnu.org>.
19117
19118 2008-11-20  Bruno Haible  <bruno@clisp.org>
19119
19120         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
19121         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
19122         INCLUDE_NEXT.
19123         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
19124         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
19125         * modules/math (Makefile.am): Substitute
19126         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
19127         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
19128
19129 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
19130             Bruno Haible  <bruno@clisp.org>
19131
19132         * lib/stdint.in.h: Define all type macros so that their expansion is
19133         a single typedef'ed token. Fixes a compilation failure in Boost which
19134         does "using ::int8_t;".
19135
19136 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19137
19138         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
19139         gl_MANYWARN_ALL_GCC.
19140         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
19141         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
19142         * modules/manywarnings: New file.
19143         * MODULES.html.sh: Mention manywarnings module.
19144
19145 2008-11-18  Bruno Haible  <bruno@clisp.org>
19146
19147         * doc/gnulib-tool.texi (Unit tests): New section.
19148
19149 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19150
19151         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
19152         paths like 'lib/po/foo.po'.
19153
19154 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19155
19156         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
19157         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
19158
19159 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19160
19161         * m4/warnings.m4: Use CPPFLAGS to really check whether the
19162         parameter works.
19163
19164 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19165
19166         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
19167
19168 2008-11-17  Bruce Korb  <bkorb@gnu.org>
19169
19170         * modules/parse-duration-tests: New file.
19171         * tests/test-parse-duration.sh: New file.
19172         * tests/test-parse-duration.c: New file.
19173
19174         New module 'parse-duration'.
19175         * lib/parse-duration.h: New file.
19176         * lib/parse-duration.c: New file.
19177         * modules/parse-duration: New file.
19178
19179 2008-11-17  Bruno Haible  <bruno@clisp.org>
19180
19181         * tests/test-select-out.sh: Comment out the first pipe test.
19182         Reported by Simon Josefsson.
19183
19184 2008-11-17  Bruno Haible  <bruno@clisp.org>
19185
19186         * modules/getaddrinfo (Depends-on): Add servent, hostent.
19187         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
19188         gl_HOSTENT.
19189
19190 2008-11-17  Bruno Haible  <bruno@clisp.org>
19191
19192         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
19193         -lnetwork and -lnet. Needed for Haiku and BeOS.
19194
19195 2008-11-16  Bruno Haible  <bruno@clisp.org>
19196
19197         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
19198
19199 2008-11-16  Bruno Haible  <bruno@clisp.org>
19200
19201         Avoid test failure on Haiku.
19202         * tests/test-fsync.c: Include <errno.h>.
19203         (main): Don't require that fsync (0) fails.
19204
19205 2008-11-15  Bruno Haible  <bruno@clisp.org>
19206
19207         New module 'hostent'.
19208         * modules/hostent: New file.
19209         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
19210
19211 2008-11-15  Bruno Haible  <bruno@clisp.org>
19212
19213         New module 'servent'.
19214         * modules/servent: New file.
19215         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
19216
19217 2008-11-15  Bruno Haible  <bruno@clisp.org>
19218
19219         Avoid generating same test program with two different rules.
19220         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
19221         test-frexp to test-frexp-nolibm.
19222         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
19223         test-frexpl to test-frexpl-nolibm.
19224
19225 2008-11-15  Bruno Haible  <bruno@clisp.org>
19226
19227         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
19228         $(FREXPL_LIBM).
19229
19230 2008-11-15  Bruno Haible  <bruno@clisp.org>
19231
19232         * lib/netdb.in.h: Activate the definitions also when the system's
19233         <netdb.h> has 'struct addrinfo'.
19234         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
19235         EAI_OVERFLOW or AI_NUMERICSERV.
19236         * doc/posix-headers/netdb.texi: Document the problem.
19237
19238 2008-11-15  Bruno Haible  <bruno@clisp.org>
19239
19240         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
19241
19242         Make the 'sched' module work on platforms where <sched.h> exists but
19243         is incomplete (such as Haiku).
19244         * lib/sched.in.h; Include the system's <sched.h> if it exists.
19245         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
19246         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
19247         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
19248         HAVE_STRUCT_SCHED_PARAM.
19249         * modules/sched (Depends-on): Add include_next.
19250         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
19251         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
19252         * doc/posix-headers/sched.texi: Document the issue.
19253
19254 2008-11-13  Jim Meyering  <meyering@redhat.com>
19255
19256         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
19257         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
19258         test would fail due to the difference in the Report bugs to ...
19259         line.  The expected address is empty, "<>", while the actual
19260         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
19261
19262 2008-11-12  Bruno Haible  <bruno@clisp.org>
19263
19264         lstat: don't compile lstat.c on systems lacking lstat
19265         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
19266         which don't have lstat; this is handled by lib/sys_stat.in.h already.
19267         Reported by Daniel P. Berrange via Jim Meyering.
19268
19269 2008-11-12  Jim Meyering  <meyering@redhat.com>
19270
19271         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
19272
19273 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19274
19275         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
19276         instead.
19277
19278 2008-11-12  Bruno Haible  <bruno@clisp.org>
19279
19280         * lib/unicodeio.c: Include unistr.h.
19281         (utf8_wctomb): Remove function.
19282         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
19283
19284 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19285
19286         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
19287         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
19288         <bruno@clisp.org>.
19289         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
19290
19291 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19292
19293         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
19294         * doc/gnulib.texi: Add section for warnings.
19295
19296 2008-11-11  Bruno Haible  <bruno@clisp.org>
19297
19298         * lib/sockets.h: Add a comment.
19299
19300 2008-11-11  Karl Berry  <karl@gnu.org>
19301
19302         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
19303
19304 2008-11-11  Eric Blake  <ebb9@byu.net>
19305
19306         fdl.texi: avoid git symlinks
19307         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
19308
19309 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19310
19311         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
19312
19313 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19314
19315         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
19316         (gl_WARN_ADD): Substitute $2 if literal.
19317
19318 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19319
19320         * m4/warning.m4: Remove.
19321
19322 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19323
19324         * m4/warnings.m4: Almost complete rewrite. :-)
19325
19326 2008-11-10  Simon Josefsson  <simon@josefsson.org>
19327
19328         * modules/warnings: New module.
19329         * m4/warnings.m4: New file.
19330         * MODULES.html.sh: Mention warnings module.
19331         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
19332         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19333
19334 2008-11-10  Eric Blake  <ebb9@byu.net>
19335
19336         fdl.texi: make a symlink to the latest version
19337         * doc/standards.texi: Revert today's earlier change.
19338         * doc/fdl-1.2.texi: Rename from old fdl.texi...
19339         * doc/fdl.texi: ...and replace this with a symlink to the newer
19340         fdl-1.3.texi.
19341
19342 2008-11-10  Bruno Haible  <bruno@clisp.org>
19343
19344         * tests/test-select-fd.c (main): Accept the result file name as fourth
19345         argument.
19346         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
19347         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
19348
19349 2008-11-10  Bruno Haible  <bruno@clisp.org>
19350
19351         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
19352         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
19353         as autoconf-substituted macros.
19354         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
19355         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
19356         gl_NETDB_H_DEFAULTS. Set these variables.
19357         * modules/netdb (Makefile.am): Substitute these variables.
19358
19359 2008-11-10  Eric Blake  <ebb9@byu.net>
19360
19361         standards.texi: include correct file for FDL 1.3
19362         * doc/standards.texi (GNU Free Documentation License): Change
19363         include file to pull in FDL 1.3, not 1.2.
19364
19365         fdl.texi: revert accidental change to license
19366         * doc/fdl.texi: This is FDL 1.2, not 1.3.
19367
19368 2008-11-10  Bruno Haible  <bruno@clisp.org>
19369
19370         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
19371         cross-compiling guesses also when the native compile gives no result.
19372
19373 2008-11-10  Bruno Haible  <bruno@clisp.org>
19374
19375         * lib/spawni.c (__spawni): Force variable into the stack.
19376
19377 2008-11-10  Bruno Haible  <bruno@clisp.org>
19378
19379         Add support for Haiku.
19380         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
19381         glibc and BeOS, but also on Haiku.
19382         * lib/fpurge.c (fpurge): Likewise.
19383         * lib/freadable.c (freadable): Likewise.
19384         * lib/freadahead.c (freadahead): Likewise.
19385         * lib/freading.c (freading): Likewise.
19386         * lib/freadptr.c (freadptr): Likewise.
19387         * lib/freadseek.c (freadptrinc): Likewise.
19388         * lib/fseeko.c (rpl_fseeko): Likewise.
19389         * lib/fseterr.c (fseterr): Likewise.
19390         * lib/fwritable.c (fwritable): Likewise.
19391         * lib/fwriting.c (fwriting): Likewise.
19392         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
19393
19394 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
19395
19396         * lib/config.charset: Treat Haiku like BeOS.
19397
19398 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
19399
19400         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
19401         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
19402
19403 2008-11-08  Bruno Haible  <bruno@clisp.org>
19404
19405         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
19406         AC_CACHE_CHECK.
19407
19408 2008-11-08  Bruno Haible  <bruno@clisp.org>
19409
19410         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
19411
19412 2008-11-08  Bruno Haible  <bruno@clisp.org>
19413
19414         * tests/test-select-fd.c: New file.
19415         * tests/test-select-in.sh: New file.
19416         * tests/test-select-out.sh: New file.
19417         * tests/test-select-stdin.c: New file.
19418         * modules/select-tests (Files): Add the new files.
19419         (Depends-on): Add gettimeofday.
19420         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
19421         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
19422         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
19423
19424 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
19425             Bruno Haible  <bruno@clisp.org>
19426
19427         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
19428
19429 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
19430
19431         * build-aux/pmccabe2html: Added support for C++ source files.
19432
19433 2008-11-05  Ben Pfaff  <blp@gnu.org>
19434
19435         Fix lib/close.c build on Windows.
19436         * modules/close (Files): Add lib/w32sock.h.
19437
19438 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
19439
19440         Accept Bison's NEWS format.
19441         * build-aux/announce-gen (print_news_deltas): Tweak
19442         $re_prefix.
19443
19444 2008-11-04  Bruno Haible  <bruno@clisp.org>
19445
19446         * modules/random_r (Maintainer): Add glibc.
19447
19448 2008-11-04  Simon Josefsson  <simon@josefsson.org>
19449
19450         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
19451         by karl@freefriends.org (Karl Berry).
19452         * doc/alloca.texi: Likewise.
19453         * doc/c-ctype.texi: Likewise.
19454         * doc/c-strcase.texi: Likewise.
19455         * doc/c-strcaseeq.texi: Likewise.
19456         * doc/c-strcasestr.texi: Likewise.
19457         * doc/c-strstr.texi: Likewise.
19458         * doc/c-strtod.texi: Likewise.
19459         * doc/c-strtold.texi: Likewise.
19460         * doc/ctime.texi: Likewise.
19461         * doc/error.texi: Likewise.
19462         * doc/fdl.texi: Likewise.
19463         * doc/gcd.texi: Likewise.
19464         * doc/getdate.texi: Likewise.
19465         * doc/gnulib-intro.texi: Likewise.
19466         * doc/gnulib-tool.texi: Likewise.
19467         * doc/gnulib.texi: Likewise.
19468         * doc/inet_ntoa.texi: Likewise.
19469         * doc/maintain.texi: Likewise.
19470         * doc/make-stds.texi: Likewise.
19471         * doc/quote.texi: Likewise.
19472         * doc/regexprops-generic.texi: Likewise.
19473         * doc/standards.texi: Likewise.
19474         * doc/verify.texi: Likewise.
19475         * doc/visibility.texi: Likewise.
19476         * doc/gnulib.texi (GNU Free Documentation License): Include
19477         fdl-1.3.texi instead of fdl.texi.
19478
19479 2008-11-04  Simon Josefsson  <simon@josefsson.org>
19480
19481         * doc/fdl-1.3.texi: New file, from
19482         <http://www.gnu.org/licenses/fdl-1.3.texi>.
19483         * modules/fdl-1.3: Add.
19484         * MODULES.html.sh: Add fdl-1.3.
19485
19486 2008-11-03  Bruno Haible  <bruno@clisp.org>
19487
19488         Make determination of absolute name of header file work with AIX xlc.
19489         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
19490         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
19491         preprocessing.
19492         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19493         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
19494
19495 2008-11-03  Simon Josefsson  <simon@josefsson.org>
19496
19497         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
19498         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
19499         <ludo@gnu.org>.
19500
19501 2008-11-02  Bruno Haible  <bruno@clisp.org>
19502
19503         Mark 'strpbrk' obsolete.
19504         * modules/strpbrk (Status, Notice): New sections.
19505         * modules/strtok_r (Depends-on): Add strpbrk.
19506
19507 2008-11-02  Bruno Haible  <bruno@clisp.org>
19508
19509         Mark 'strdup' obsolete.
19510         * modules/strdup (Status, Notice): New sections.
19511         * modules/findprog (Depends-on): Add strdup.
19512         * modules/getaddrinfo (Depends-on): Likewise.
19513         * modules/localename (Depends-on): Likewise.
19514         * modules/relocatable-lib (Depends-on): Likewise.
19515         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
19516         * modules/relocatable-prog (Depends-on): Likewise.
19517         * modules/trim (Depends-on): Likewise.
19518         * modules/unictype/gen-ctype (Depends-on): Likewise.
19519         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
19520
19521 2008-11-02  Bruno Haible  <bruno@clisp.org>
19522
19523         Mark 'strcspn' obsolete.
19524         * modules/strcspn (Status, Notice): New sections.
19525
19526 2008-11-02  Bruno Haible  <bruno@clisp.org>
19527
19528         Mark 'rmdir' obsolete.
19529         * modules/rmdir (Status, Notice): New sections.
19530         * modules/clean-temp (Depends-on): Add rmdir.
19531         * modules/openat (Depends-on): Likewise.
19532
19533 2008-11-02  Bruno Haible  <bruno@clisp.org>
19534
19535         Mark 'raise' obsolete.
19536         * modules/raise (Status, Notice): New sections.
19537         (Include): Specify <signal.h>.
19538         * modules/stdio (Depends-on): Add raise.
19539         * modules/write (Depends-on): Likewise.
19540
19541 2008-11-02  Bruno Haible  <bruno@clisp.org>
19542
19543         Mark 'memset' obsolete.
19544         * modules/memset (Status, Notice): New sections.
19545
19546 2008-11-02  Bruno Haible  <bruno@clisp.org>
19547
19548         Mark 'memmove' obsolete.
19549         * modules/memmove (Status, Notice): New sections.
19550         * modules/argp (Depends-on): Add memmove.
19551         * modules/argz (Depends-on): Likewise.
19552         * modules/canonicalize (Depends-on): Likewise.
19553         * modules/canonicalize-lgpl (Depends-on): Likewise.
19554         * modules/fts (Depends-on): Likewise.
19555         * modules/getcwd (Depends-on): Likewise.
19556         * modules/human (Depends-on): Likewise.
19557         * modules/regex (Depends-on): Likewise.
19558         * modules/striconveh (Depends-on): Likewise.
19559         * modules/trim (Depends-on): Likewise.
19560         * modules/unistr/u8-move (Depends-on): Likewise.
19561         * modules/unistr/u16-move (Depends-on): Likewise.
19562         * modules/unistr/u32-move (Depends-on): Likewise.
19563
19564 2008-11-02  Bruno Haible  <bruno@clisp.org>
19565
19566         Mark 'memcpy' obsolete.
19567         * modules/memcpy (Status, Notice): New sections.
19568
19569 2008-11-02  Bruno Haible  <bruno@clisp.org>
19570
19571         Mark 'memcmp' obsolete.
19572         * modules/memcmp (Status, Notice): New sections.
19573         * modules/argmatch (Depends-on): Add memchr.
19574         * modules/backupfile (Depends-on): Likewise.
19575         * modules/c-strcasestr (Depends-on): Likewise.
19576         * modules/crypto/des (Depends-on): Likewise.
19577         * modules/csharpcomp (Depends-on): Likewise.
19578         * modules/fnmatch (Depends-on): Likewise.
19579         * modules/git-merge-changelog (Depends-on): Likewise.
19580         * modules/isnand (Depends-on): Likewise.
19581         * modules/isnand-nolibm (Depends-on): Likewise.
19582         * modules/isnanf (Depends-on): Likewise.
19583         * modules/isnanf-nolibm (Depends-on): Likewise.
19584         * modules/isnanl (Depends-on): Likewise.
19585         * modules/isnanl-nolibm (Depends-on): Likewise.
19586         * modules/mbchar (Depends-on): Likewise.
19587         * modules/memcoll (Depends-on): Likewise.
19588         * modules/quotearg (Depends-on): Likewise.
19589         * modules/regex (Depends-on): Likewise.
19590         * modules/relocatable-prog (Depends-on): Likewise.
19591         * modules/same (Depends-on): Likewise.
19592         * modules/signbit (Depends-on): Likewise.
19593         * modules/strcasestr-simple (Depends-on): Likewise.
19594         * modules/unictype/gen-ctype (Depends-on): Likewise.
19595         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
19596         * modules/uniname/uniname (Depends-on): Likewise.
19597         * modules/unistr/u8-cmp (Depends-on): Likewise.
19598
19599 2008-11-02  Bruno Haible  <bruno@clisp.org>
19600
19601         Mark 'memchr' obsolete.
19602         * modules/memchr (Status, Notice): New sections.
19603         * modules/argp (Depends-on): Add memchr.
19604         * modules/base64 (Depends-on): Likewise.
19605         * modules/c-strcasestr (Depends-on): Likewise.
19606         * modules/chdir-long (Depends-on): Likewise.
19607         * modules/fnmatch (Depends-on): Likewise.
19608         * modules/getsubopt (Depends-on): Likewise.
19609         * modules/git-merge-changelog (Depends-on): Likewise.
19610         * modules/glob (Depends-on): Likewise.
19611         * modules/strcasestr-simple (Depends-on): Likewise.
19612         * modules/strnlen (Depends-on): Likewise.
19613
19614 2008-11-02  Bruno Haible  <bruno@clisp.org>
19615
19616         Mark 'atexit' obsolete.
19617         * modules/atexit (Status, Notice): New sections.
19618         * modules/chdir-long (Depends-on): Add atexit.
19619         * modules/wait-process (Depends-on): Likewise.
19620
19621 2008-11-02  Bruno Haible  <bruno@clisp.org>
19622
19623         * gnulib-tool: New option --with-obsolete.
19624         (func_usage): Document it.
19625         (func_modules_transitive_closure): Drop obsolete dependencies if
19626         incobsolete is not true.
19627         (func_import): Read and save the incobsolete variable to the cache.
19628
19629 2008-11-02  Bruno Haible  <bruno@clisp.org>
19630
19631         * modules/TEMPLATE-EXTENDED: New field 'Status'.
19632         * gnulib-tool: New option --extract-status.
19633         (func_usage): Document it.
19634         (sed_extract_prog): Recognize it.
19635         (func_get_status): New function.
19636
19637 2008-10-30  Simon Josefsson  <simon@josefsson.org>
19638
19639         * modules/sockets (License): Change from LGPL to LGPLv2+.
19640
19641 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19642
19643         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
19644
19645 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19646
19647         * MODULES.html.sh (Support for systems lacking POSIX:2001):
19648         Mention times and sys_times.
19649         * modules/sys_times, modules/sys_times-tests: New modules.
19650         * modules/times, modules/times-tests: Likewise
19651         * m4/sys_times_h.m4: New file.
19652         * lib/sys_times.in.h: Likewise
19653         * lib/times.c: Likewise.
19654         * tests/test-sys_times.c: Likewise.
19655         * tests/test-times.c: Likewise.
19656         * doc/posix-headers/sys_times.texi: Update.
19657         * doc/posix-functions/times.texi: Update.
19658
19659 2008-10-28  Jim Meyering  <meyering@redhat.com>
19660
19661         * modules/tempname (Depends-on): Add lstat.
19662
19663         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
19664
19665 2008-10-28  Simon Josefsson  <simon@josefsson.org>
19666
19667         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
19668         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
19669         using idiom used elsewhere in gnulib.
19670
19671 2008-10-27  Jim Meyering  <meyering@redhat.com>
19672
19673         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
19674
19675 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19676
19677         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
19678         TESTS_ENVIRONMENT, for shell scripts that needs to call built
19679         programs.
19680         * tests/test-argp-2.sh: Use $EXEEXT when needed.
19681
19682 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19683
19684         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
19685
19686 2008-10-27  Bruno Haible  <bruno@clisp.org>
19687
19688         * tests/test-lstat.c: Include <stdio.h>.
19689
19690 2008-10-27  Simon Josefsson  <simon@josefsson.org>
19691
19692         * modules/lstat-tests: New module.
19693         * tests/test-lstat.c: New file.
19694
19695 2008-10-26  Jim Meyering  <meyering@redhat.com>
19696
19697         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
19698
19699 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19700             Bruno Haible  <bruno@clisp.org>
19701
19702         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
19703         * modules/configmake (Include): Add a note that the include must come
19704         after all system headers.
19705         * lib/javaversion.c: Include configmake.h after all other includes.
19706
19707 2008-10-26  Bruno Haible  <bruno@clisp.org>
19708
19709         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
19710         HAVE_STRUCT_RANDOM_DATA to 1.
19711         (gl_STDLIB_H): Simplify.
19712
19713 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19714
19715         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
19716         substitute HAVE_STRUCT_RANDOM_DATA.
19717         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
19718         random_data.
19719         * modules/stdlib (Makefile.am): Substitute
19720         HAVE_STRUCT_RANDOM_DATA.
19721
19722 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19723
19724         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
19725         * doc/gnulib-intro.texi (Copyright): Likewise.
19726
19727 2008-10-26  Simon Josefsson  <simon@josefsson.org>
19728
19729         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
19730         findings.
19731
19732 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
19733             Bruno Haible  <bruno@clisp.org>
19734
19735         * lib/unistd.in.h: Include <winsock2.h>.
19736         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
19737         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
19738         Provide dummy declarations.
19739         (gethostname): Override.
19740         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
19741         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
19742         gl_PREREQ_SYS_H_WINSOCK2.
19743         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
19744         * doc/posix-functions/gethostname.texi: More details.
19745
19746 2008-10-25  Bruno Haible  <bruno@clisp.org>
19747
19748         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
19749         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
19750         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
19751
19752         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
19753         here ...
19754         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
19755         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
19756         gl_UNISTD_H_DEFAULTS.
19757
19758 2008-10-25  Eric Blake  <ebb9@byu.net>
19759
19760         signbit: avoid spurious compiler failure
19761         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
19762         declarations inside function.
19763
19764 2008-10-24  Simon Josefsson  <simon@josefsson.org>
19765             Bruno Haible  <bruno@clisp.org>
19766
19767         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
19768         * modules/random_r (Depends-on): Add stdint.
19769
19770 2008-10-24  Bruno Haible  <bruno@clisp.org>
19771
19772         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
19773         Eggert.
19774         * modules/strerror (License): Likewise.
19775
19776 2008-10-24  Jim Meyering  <meyering@redhat.com>
19777
19778         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
19779         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
19780
19781 2008-10-24  Eric Blake  <ebb9@byu.net>
19782
19783         getgroups: fix compilation when getgroups is available
19784         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
19785         but with <config.h> override of getgroups disabled.
19786
19787 2008-10-24  Simon Josefsson  <simon@josefsson.org>
19788
19789         * doc/gnulib.texi (Header files): Add note about C++ problems.
19790         Explained by Bruno Haible <bruno@clisp.org>.
19791
19792 2008-10-23  Bruno Haible  <bruno@clisp.org>
19793
19794         Define a dummy SA_NODEFER macro on Interix.
19795         * lib/signal.in.h (SA_NODEFER): Define fallback.
19796         Reported by Aleksey Cheusov <cheusov@tut.by> via
19797         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
19798
19799 2008-10-23  Bruno Haible  <bruno@clisp.org>
19800
19801         * modules/freadahead (License): Change to LGPLv2+.
19802         Suggested by Simon Josefsson.
19803
19804 2008-10-23  Jim Meyering  <meyering@redhat.com>
19805
19806         random_r: new module
19807         * modules/random_r: New file.
19808         * m4/random_r.m4: New file.
19809         * lib/random_r.c: New file, from glibc.
19810         * modules/random_r-tests: New file.
19811         * tests/test-random_r.c: New file.
19812         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
19813          Declare.
19814         (RAND_MAX): Define.
19815         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
19816         * modules/stdlib: Substitute them, too.
19817         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
19818         * doc/glibc-functions/initstate_r.texi: Mention the new module.
19819         * doc/glibc-functions/random_r.texi: Likewise.
19820         * doc/glibc-functions/setstate_r.texi: Likewise.
19821         * doc/glibc-functions/srandom_r.texi: Likewise.
19822         * config/srclist.txt: Mention it.
19823
19824 2008-10-23  David Lutterkort  <lutter@redhat.com>
19825
19826         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
19827         link requirement
19828
19829 2008-10-23  Jim Meyering  <meyering@redhat.com>
19830
19831         selinux-h: mark parameters of stub functions as intentionally unused
19832         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
19833         * lib/se-context.in.h: Likewise.
19834
19835 2008-10-22  Simon Josefsson  <simon@josefsson.org>
19836
19837         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
19838
19839 2008-10-22  Simon Josefsson  <simon@josefsson.org>
19840
19841         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
19842
19843 2008-10-22  Eric Blake  <ebb9@byu.net>
19844
19845         glthread/thread: avoid compiler warning
19846         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
19847         Add unreachable abort to silence compiler.
19848
19849 2008-10-22  Eric Blake  <ebb9@byu.net>
19850
19851         netdb: also supply struct addrinfo for cygwin 1.5.x
19852         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
19853         older cygwin.
19854         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
19855         cygwin.
19856         * doc/posix-headers/netdb.texi (netdb.h): Document this.
19857
19858 2008-10-22  Bruno Haible  <bruno@clisp.org>
19859
19860         * users.txt: Update entry about pspp.
19861
19862 2008-10-21  Bruno Haible  <bruno@clisp.org>
19863
19864         Simplification.
19865         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
19866         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
19867
19868         Simplification.
19869         * lib/ioctl.c (ioctl): Don't undefine.
19870         * lib/socket.c (socket): Don't undefine.
19871
19872         Remove unused module indicator macros.
19873         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
19874         GNULIB_$1 as a C macro.
19875
19876         * doc/posix-functions/close.texi: Undo last change.
19877         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
19878         Windows platforms.
19879
19880 2008-10-21  Bruno Haible  <bruno@clisp.org>
19881
19882         Add gethostname() declaration to <unistd.h>.
19883         * lib/unistd.in.h (gethostname): New declaration.
19884         * lib/gethostname.c: Include <unistd.h>.
19885         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
19886         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
19887         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
19888         and HAVE_GETHOSTNAME.
19889         * modules/gethostname (Depends-on): Add unistd.
19890         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
19891         (Include): Specify <unistd.h>.
19892         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
19893         HAVE_GETHOSTNAME.
19894         * tests/test-gethostname.c: Include <unistd.h> first.
19895
19896 2008-10-21  Bruno Haible  <bruno@clisp.org>
19897
19898         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
19899         * modules/select-tests (Depends-on): Likewise.
19900         Reported by Simon Josefsson.
19901
19902 2008-10-21  Simon Josefsson  <simon@josefsson.org>
19903
19904         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
19905         * lib/accept.c: New file, based on winsock.c.
19906         * lib/bind.c: New file, based on winsock.c.
19907         * lib/connect.c: New file, based on winsock.c.
19908         * lib/getpeername.c: New file, based on winsock.c.
19909         * lib/getsockname.c: New file, based on winsock.c.
19910         * lib/getsockopt.c: New file, based on winsock.c.
19911         * lib/ioctl.c: New file, based on winsock.c.
19912         * lib/listen.c: New file, based on winsock.c.
19913         * lib/recv.c: New file, based on winsock.c.
19914         * lib/recvfrom.c: New file, based on winsock.c.
19915         * lib/send.c: New file, based on winsock.c.
19916         * lib/sendto.c: New file, based on winsock.c.
19917         * lib/setsockopt.c: New file, based on winsock.c.
19918         * lib/shutdown.c: New file, based on winsock.c.
19919         * lib/socket.c: New file, based on winsock.c.
19920         * lib/w32sock.h: New file, based on winsock.c.
19921         * lib/winsock.c: Remove file.
19922         * modules/accept: Likewise.
19923         * modules/bind: Likewise.
19924         * modules/connect: Likewise.
19925         * modules/getpeername: Likewise.
19926         * modules/getsockname: Likewise.
19927         * modules/getsockopt: Likewise.
19928         * modules/ioctl: Likewise.
19929         * modules/listen: Likewise.
19930         * modules/recv: Likewise.
19931         * modules/recvfrom: Likewise.
19932         * modules/send: Likewise.
19933         * modules/sendto: Likewise.
19934         * modules/setsockopt: Likewise.
19935         * modules/shutdown: Likewise.
19936         * modules/socket: Use socket.c instead of winsock.c.
19937         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
19938         * doc/posix-functions/accept.texi: Doc fix.
19939         * doc/posix-functions/bind.texi: Doc fix.
19940         * doc/posix-functions/close.texi: Doc fix.
19941         * doc/posix-functions/connect.texi: Doc fix.
19942         * doc/posix-functions/getpeername.texi: Doc fix.
19943         * doc/posix-functions/getsockname.texi: Doc fix.
19944         * doc/posix-functions/getsockopt.texi: Doc fix.
19945         * doc/posix-functions/ioctl.texi: Doc fix.
19946         * doc/posix-functions/listen.texi: Doc fix.
19947         * doc/posix-functions/recv.texi: Doc fix.
19948         * doc/posix-functions/recvfrom.texi: Doc fix.
19949         * doc/posix-functions/send.texi: Doc fix.
19950         * doc/posix-functions/sendto.texi: Doc fix.
19951         * doc/posix-functions/setsockopt.texi: Doc fix.
19952         * doc/posix-functions/shutdown.texi: Doc fix.
19953         * doc/posix-functions/socket.texi: Doc fix.
19954
19955 2008-10-20  Bruno Haible  <bruno@clisp.org>
19956
19957         Take into account the role of SIGABRT_COMPAT on Windows 2008.
19958         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
19959         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
19960         as an alias for SIGABRT.
19961         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
19962         (sigaction): Map it to SIGABRT.
19963         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
19964
19965 2008-10-20  Bruno Haible  <bruno@clisp.org>
19966
19967         * lib/fts.c: Don't include lstat.h.
19968         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
19969
19970         Move the lstat() declaration to <sys/stat.h>.
19971         * lib/lstat.h: Remove file.
19972         * lib/sys_stat.in.h: Add special invocation convention.
19973         (lstat): New declaration.
19974         * lib/lstat.c (orig_lstat): New function.
19975         (rpl_lstat): Use orig_lstat instead of lstat.
19976         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
19977         AC_C_INLINE. Set REPLACE_LSTAT.
19978         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
19979         and REPLACE_LSTAT.
19980         * modules/lstat (Files): Remove lib/lstat.h.
19981         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
19982         (Include): Specify <sys/stat.h> instead of lstat.h.
19983         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
19984         REPLACE_LSTAT.
19985         * NEWS: Mention the change.
19986
19987 2008-10-20  Bruno Haible  <bruno@clisp.org>
19988
19989         * modules/posix_spawn-tests: New file.
19990         * tests/test-posix_spawn3.c: New file.
19991
19992 2008-10-20  Bruno Haible  <bruno@clisp.org>
19993
19994         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
19995         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
19996         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
19997         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
19998         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
19999
20000 2008-10-20  Bruno Haible  <bruno@clisp.org>
20001
20002         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
20003         of posix_spawn on AIX 5.3.
20004
20005 2008-10-20  Bruno Haible  <bruno@clisp.org>
20006
20007         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
20008
20009 2008-10-20  Bruno Haible  <bruno@clisp.org>
20010
20011         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
20012         of AC_LANG_PROGRAM.
20013
20014 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20015
20016         * lib/netdb.in.h: Don't define GNU specific constants until they
20017         are supported or needed.  Reported by Bruno Haible
20018         <bruno@clisp.org>.
20019
20020 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20021
20022         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
20023
20024 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20025
20026         * lib/getaddrinfo.h: Remove file.
20027         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
20028         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
20029         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
20030         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
20031         * modules/netdb: Substitute GNULIB_GETADDRINFO.
20032         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
20033         * tests/test-getaddrinfo.c: Likewise.
20034         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
20035         * NEWS: Mention change.
20036
20037 2008-10-19  Bruno Haible  <bruno@clisp.org>
20038
20039         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
20040
20041 2008-10-19  Bruno Haible  <bruno@clisp.org>
20042
20043         * lib/wait-process.c: Include simply <sys/wait.h>.
20044         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
20045         WIFSTOPPED): Remove fallback definitions.
20046         * modules/wait-process (Depends-on): Add sys_wait.
20047
20048         New module 'sys_wait'.
20049         * modules/sys_wait: New file.
20050         * lib/sys_wait.in.h: New file, partially copied from
20051         lib/wait-process.c.
20052         * m4/sys_wait_h.m4: New file.
20053         * doc/posix-headers/sys_wait.texi: Mention the new module.
20054
20055 2008-10-19  Bruno Haible  <bruno@clisp.org>
20056
20057         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
20058
20059 2008-10-19  Bruno Haible  <bruno@clisp.org>
20060
20061         Assume that waitpid() fills an 'int' status, not a 'union wait'.
20062         * lib/wait-process.c (WAIT_T): Remove type.
20063         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
20064         (wait_subprocess): Update.
20065
20066 2008-10-19  Bruno Haible  <bruno@clisp.org>
20067
20068         New module 'atoll'.
20069         * modules/atoll: New file.
20070         * lib/stdlib.in.h (atoll): New declaration.
20071         * lib/atoll.c: New file, from glibc with modifications.
20072         * m4/atoll.m4: New file.
20073         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
20074         HAVE_ATOLL.
20075         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
20076         * doc/posix-functions/atoll.texi: Mention the new module.
20077
20078 2008-10-19  Bruno Haible  <bruno@clisp.org>
20079
20080         Add strtoull() declaration to <stdlib.h>.
20081         * lib/stdlib.in.h (strtoull): New declaration.
20082         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20083         Set HAVE_STRTOULL.
20084         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
20085         HAVE_STRTOULL.
20086         * modules/strtoull (Depends-on): Add stdlib.
20087         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20088         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
20089         HAVE_STRTOULL.
20090
20091 2008-10-19  Bruno Haible  <bruno@clisp.org>
20092
20093         Add strtoll() declaration to <stdlib.h>.
20094         * lib/stdlib.in.h (strtoll): New declaration.
20095         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20096         Set HAVE_STRTOLL.
20097         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
20098         HAVE_STRTOLL.
20099         * modules/strtoll (Depends-on): Add stdlib.
20100         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20101         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
20102
20103 2008-10-19  Bruno Haible  <bruno@clisp.org>
20104
20105         * modules/bcopy (Depends-on): Add strings.
20106         (Include): Specify <strings.h>.
20107
20108 2008-10-19  Bruno Haible  <bruno@clisp.org>
20109
20110         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
20111
20112 2008-10-19  Bruno Haible  <bruno@clisp.org>
20113
20114         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
20115         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
20116         mingw.
20117
20118 2008-10-19  Bruno Haible  <bruno@clisp.org>
20119
20120         * lib/atanl.c: Don't include isnanl.h.
20121         * lib/cosl.c: Likewise.
20122         * lib/ldexpl.c: Likewise.
20123         * lib/logl.c: Likewise.
20124         * lib/sinl.c: Likewise.
20125         * lib/sqrtl.c: Likewise.
20126         * lib/tanl.c: Likewise.
20127
20128         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
20129         * lib/isnanf.h: Remove file.
20130         * lib/isnand.h: Remove file.
20131         * lib/isnanl.h: Remove file.
20132         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
20133         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
20134         macros.
20135         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
20136         HAVE_ISNANF, don't define it as a C macro.
20137         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
20138         HAVE_ISNAND, don't define it as a C macro.
20139         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
20140         HAVE_ISNANL, don't define it as a C macro.
20141         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
20142         HAVE_ISNAN[FDL].
20143         * modules/isnanf (Files): Remove lib/isnanf.h.
20144         (Depends-on): Add math.
20145         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20146         (Include): Specify <math.h> instead of isnanf.h.
20147         * modules/isnand (Files): Remove lib/isnand.h.
20148         (Depends-on): Add math.
20149         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20150         (Include): Specify <math.h> instead of isnand.h.
20151         * modules/isnanl (Files): Remove lib/isnanl.h.
20152         (Depends-on): Add math.
20153         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20154         (Include): Specify <math.h> instead of isnanl.h.
20155         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
20156         HAVE_ISNAN[FDL].
20157         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
20158         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
20159         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
20160         * NEWS: Mention the change.
20161
20162 2008-10-18  Bruno Haible  <bruno@clisp.org>
20163
20164         Add getusershell(), setusershell(), endusershell() declarations to
20165         <unistd.h>.
20166         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
20167         declarations.
20168         * lib/getusershell.c: Include unistd.h.
20169         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
20170         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20171         HAVE_GETUSERSHELL.
20172         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
20173         and HAVE_GETUSERSHELL.
20174         * modules/getusershell (Depends-on): Add unistd, extensions.
20175         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20176         (Include): Specify <unistd.h>.
20177         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
20178         HAVE_GETUSERSHELL.
20179
20180 2008-10-18  Bruno Haible  <bruno@clisp.org>
20181
20182         Add a getloadavg() declaration to <stdlib.h>.
20183         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
20184         getloadavg declaration.
20185         (getloadavg): New declaration.
20186         * lib/getloadavg.c: Include <stdlib.h> first.
20187         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
20188         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
20189         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
20190         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
20191         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20192         * modules/getloadavg (Depends-on): Add stdlib, extensions.
20193         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20194         (Include): Specify <stdlib.h>.
20195         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
20196         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20197
20198 2008-10-18  Bruno Haible  <bruno@clisp.org>
20199
20200         * lib/dirchownmod.c: Don't include lchmod.h.
20201
20202         Move the lchmod() declaration to <sys/stat.h>.
20203         * lib/lchmod.h: Remove file.
20204         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
20205         (lchmod): New declaration, moved here from lib/lchown.h.
20206         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
20207         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
20208         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
20209         and HAVE_LCHMOD.
20210         * modules/lchmod (Files): Remove lib/lchmod.h.
20211         (Depends-on): Add sys_stat, extensions.
20212         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
20213         (Include): Specify <sys/stat.h> instead of lchmod.h.
20214         * modules/sys_stat (Depends-on): Add link-warning.
20215         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
20216         definition of GL_LINK_WARNING.
20217         * NEWS: Mention the change.
20218
20219 2008-10-18  Bruno Haible  <bruno@clisp.org>
20220
20221         * lib/fchdir.c: Don't include dirfd.h.
20222         * lib/fts.c: Likewise.
20223         * lib/getcwd.c: Likewise.
20224         * lib/glob.c: Likewise.
20225
20226         Move the dirfd() declaration to <dirent.h>.
20227         * lib/dirfd.h: Remove file.
20228         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
20229         (dirfd): New declaration.
20230         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
20231         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
20232         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
20233         HAVE_DECL_DIRFD.
20234         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
20235         HAVE_DECL_DIRFD.
20236         * modules/dirfd (Files): Remove lib/dirfd.h.
20237         (Depends-on): Add dirent, extensions.
20238         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
20239         (Include): Specify <dirent.h> instead of dirfd.h.
20240         * modules/dirent (Depends-on): Add link-warning.
20241         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
20242         definition of GL_LINK_WARNING.
20243         * NEWS: Mention the change.
20244
20245 2008-10-18  Bruno Haible  <bruno@clisp.org>
20246
20247         Move the euidaccess() declaration to <unistd.h>.
20248         * lib/euidaccess.h: Remove file.
20249         * lib/unistd.in.h (euidaccess): New declaration.
20250         * lib/euidaccess.c: Don't include euidaccess.h.
20251         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
20252         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
20253         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
20254         and HAVE_EUIDACCESS.
20255         * modules/euidaccess (Files): Remove lib/euidaccess.h.
20256         (Depends-on): Add unistd.
20257         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20258         (Include): Specify <unistd.h> instead of euidaccess.h.
20259         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
20260         HAVE_EUIDACCESS.
20261         * NEWS: Mention the change.
20262
20263 2008-10-18  Bruno Haible  <bruno@clisp.org>
20264
20265         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
20266
20267         Move the getdomainname() declaration to <unistd.h>.
20268         * lib/getdomainname.h: Remove file.
20269         * lib/unistd.in.h (getdomainname): New declaration.
20270         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
20271         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
20272         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20273         HAVE_GETDOMAINNAME.
20274         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20275         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
20276         * modules/getdomainname (Files): Remove lib/getdomainname.h.
20277         (Depends-on): Add unistd, extensions.
20278         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20279         (Includes): Specify <unistd.h> instead of getdomainname.h.
20280         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
20281         HAVE_GETDOMAINNAME.
20282         * NEWS: Mention the change.
20283
20284 2008-10-18  Bruno Haible  <bruno@clisp.org>
20285
20286         * modules/dirent: New file.
20287         * m4/dirent_h.m4: New file.
20288         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
20289         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
20290         * modules/fchdir (Files): Remove lib/dirent.in.h.
20291         (Depends-on): Add dirent.
20292         (Makefile.am): Move rules to modules/dirent.
20293         * doc/posix-headers/dirent.texi: Mention the new module.
20294
20295 2008-10-18  Bruno Haible  <bruno@clisp.org>
20296
20297         Avoid -Wunused-parameter warnings in public gnulib header files.
20298         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
20299         macro.
20300         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
20301
20302 2008-10-18  Bruno Haible  <bruno@clisp.org>
20303
20304         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
20305         * doc/glibc-functions/error.texi: Mention the module 'error'.
20306         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
20307         * doc/glibc-functions/getdomainname.texi: Mention the module
20308         'getdomainname'.
20309         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
20310         * doc/glibc-functions/getpagesize.texi: Mention the module
20311         'getpagesize'.
20312         * doc/glibc-functions/getusershell.texi: Mention the module
20313         'getusershell'.
20314         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
20315         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
20316         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
20317         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
20318         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
20319         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
20320         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
20321         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
20322         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
20323         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
20324         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
20325         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
20326         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
20327         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
20328
20329 2008-10-17  Bruno Haible  <bruno@clisp.org>
20330
20331         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
20332         HP-UX and IRIX, use -0.0L.
20333         * tests/test-ceill.c (minus_zero): Likewise.
20334         * tests/test-floorl.c (minus_zero): Likewise.
20335         * tests/test-frexpl.c (minus_zero): Likewise.
20336         * tests/test-isnan.c (minus_zerol): Likewise.
20337         * tests/test-isnanl.h (minus_zero): Likewise.
20338         * tests/test-ldexpl.c (minus_zero): Likewise.
20339         * tests/test-roundl.c (minus_zero): Likewise.
20340         * tests/test-signbit.c (minus_zerol): Likewise.
20341         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
20342         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
20343         * tests/test-truncl.c (minus_zero): Likewise.
20344         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
20345         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
20346         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
20347         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
20348
20349 2008-10-17  Bruno Haible  <bruno@clisp.org>
20350
20351         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
20352         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
20353         that it gets activated only for gcc >= 3.0.
20354         * lib/dirent.in.h: Likewise.
20355         * lib/errno.in.h: Likewise.
20356         * lib/fcntl.in.h: Likewise.
20357         * lib/float.in.h: Likewise.
20358         * lib/iconv.in.h: Likewise.
20359         * lib/inttypes.in.h: Likewise.
20360         * lib/locale.in.h: Likewise.
20361         * lib/math.in.h: Likewise.
20362         * lib/netdb.in.h: Likewise.
20363         * lib/netinet_in.in.h: Likewise.
20364         * lib/search.in.h: Likewise.
20365         * lib/signal.in.h: Likewise.
20366         * lib/spawn.in.h: Likewise.
20367         * lib/stdarg.in.h: Likewise.
20368         * lib/stdint.in.h: Likewise.
20369         * lib/stdio.in.h: Likewise.
20370         * lib/stdlib.in.h: Likewise.
20371         * lib/string.in.h: Likewise.
20372         * lib/strings.in.h: Likewise.
20373         * lib/sys_file.in.h: Likewise.
20374         * lib/sys_ioctl.in.h: Likewise.
20375         * lib/sys_select.in.h: Likewise.
20376         * lib/sys_socket.in.h: Likewise.
20377         * lib/sys_stat.in.h: Likewise.
20378         * lib/sys_time.in.h: Likewise.
20379         * lib/sysexits.in.h: Likewise.
20380         * lib/time.in.h: Likewise.
20381         * lib/unistd.in.h: Likewise.
20382         * lib/wchar.in.h: Likewise.
20383         * lib/wctype.in.h: Likewise.
20384         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
20385
20386 2008-10-17  Jim Meyering  <meyering@redhat.com>
20387
20388         ignore-value: don't depend on inline module
20389         * modules/ignore-value (Depends-on): Remove 'inline'.
20390         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
20391         Suggestion from Bruno Haible.
20392
20393 2008-10-17  Bruno Haible  <bruno@clisp.org>
20394
20395         New implementation of condition variables for Win32.
20396         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
20397         (gl_linked_waitqueue_t): New type.
20398         (gl_cond_t): Use it.
20399         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
20400         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
20401         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
20402         (glthread_cond_init_func, glthread_cond_wait_func,
20403         glthread_cond_timedwait_func, glthread_cond_signal_func,
20404         glthread_cond_broadcast_func, glthread_cond_destroy_func):
20405         Reimplemented on the basis of gl_linked_waitqueue_t.
20406         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
20407         gl_waitqueue_t.
20408         (gl_rwlock_t): Update.
20409         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
20410
20411 2008-10-17  Simon Josefsson  <simon@josefsson.org>
20412
20413         * modules/recvfrom (Depends-on): Add dependency on getpeername.
20414         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20415
20416 2008-10-17  Jim Meyering  <meyering@redhat.com>
20417
20418         ignore-value: new module
20419         * modules/ignore-value: New file.
20420         * lib/ignore-value.h: New file.
20421         * MODULES.html.sh (Compiler warning management): New section,
20422         just for this module.  More to come.
20423
20424 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
20425
20426         open-safer.c: avoid 'signed and unsigned in conditional...' warning
20427         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
20428         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
20429
20430 2008-10-16  Jim Meyering  <meyering@redhat.com>
20431
20432         openat-die.c: avoid 'no previous prototype' warning
20433         * lib/openat-die.c: Include "openat.h".
20434         Reported by Reuben Thomas <rrt@sc3d.org>.
20435
20436 2008-10-16  Simon Josefsson  <simon@josefsson.org>
20437
20438         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
20439         * lib/netdb.in.h: Fix typo.
20440         Reported by Bruno Haible  <bruno@clisp.org>
20441
20442         * lib/netdb.in.h: Include sys/socket.h for platforms without
20443         netdb.h, to get structures like hostent on MinGW.
20444         * modules/netdb (Depends-on): Add sys_socket.
20445
20446 2008-10-15  Simon Josefsson  <simon@josefsson.org>
20447
20448         * modules/netdb, modules/netdb-tests: New file.
20449         * m4/netdb_h.m4: New file.
20450         * lib/netdb.in.h: Add, currently just an empty file pending
20451         definitions.
20452         * tests/test-netdb.c: New file.
20453         * doc/posix-headers/netdb.texi: Mention that we replace it if
20454         needed.
20455         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20456         netdb.
20457
20458 2008-10-15  Simon Josefsson  <simon@josefsson.org>
20459
20460         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
20461         with code.
20462
20463 2008-10-13  Bruno Haible  <bruno@clisp.org>
20464
20465         * lib/glthread/cond.c (glthread_cond_wait_func,
20466         glthread_cond_timedwait_func): Add a comment.
20467
20468 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20469
20470         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
20471         * tests/test-select.c: Likewise,
20472
20473 2008-10-13  Bruno Haible  <bruno@clisp.org>
20474
20475         * lib/glthread/cond.c (glthread_cond_wait_func,
20476         glthread_cond_timedwait_func): Fix variable name.
20477         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20478
20479 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
20480
20481         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
20482         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
20483         struct sockaddr.sa_len.
20484         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
20485
20486 2008-10-13  Simon Josefsson  <simon@josefsson.org>
20487
20488         * build-aux/pmccabe2html: Add css and css_url parameters.
20489
20490 2008-10-12  Bruno Haible  <bruno@clisp.org>
20491
20492         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
20493         calling aclx_get.
20494         Reported by Rainer Tammer <tammer@tammer.net>.
20495
20496 2008-10-12  Bruno Haible  <bruno@clisp.org>
20497
20498         Use msvcrt aware primitives for creation/termination of Win32 threads.
20499         * lib/glthread/thread.c: Include <process.h>.
20500         (glthread_create_func): Use _beginthreadex instead of CreateThread.
20501         (wrapper_func): Update signature.
20502         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
20503
20504 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20505             Bruno Haible  <bruno@clisp.org>
20506
20507         Provide a Win32 implementation of the 'cond' module.
20508         * lib/glthread/cond.h [USE_WIN32]: New implementation.
20509         * lib/glthread/cond.c (glthread_cond_init_func,
20510         glthread_cond_wait_func, glthread_cond_timedwait_func,
20511         glthread_cond_signal_func, glthread_cond_broadcast_func,
20512         glthread_cond_destroy_func) [USE_WIN32]: New functions.
20513         * modules/cond (Dependencies): Add gettimeofday.
20514
20515 2008-10-11  Bruno Haible  <bruno@clisp.org>
20516
20517         Make sleep work on older versions of mingw.
20518         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
20519         only whether it exists.
20520         * doc/posix-functions/sleep.texi: Mention the problem with older
20521         versions of mingw.
20522
20523 2008-10-11  Bruno Haible  <bruno@clisp.org>
20524
20525         New module 'shutdown'.
20526         * modules/shutdown: New file.
20527         * lib/sys_socket.in.h (shutdown): New declaration.
20528         * lib/winsock.c (shutdown): New function.
20529         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
20530         GNULIB_SHUTDOWN.
20531         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
20532         * doc/posix-functions/shutdown.texi: Document the new module.
20533
20534 2008-10-11  Jim Meyering  <meyering@redhat.com>
20535
20536         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
20537
20538 2008-10-11  Bruno Haible  <bruno@clisp.org>
20539
20540         New module 'fclose'.
20541         * modules/fclose: New file.
20542         * lib/stdio.in.h (fclose): New declaration.
20543         * lib/fclose.c: New file.
20544         * m4/fclose.m4: New file.
20545         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
20546         REPLACE_FCLOSE.
20547         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
20548         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
20549         REPLACE_FCLOSE.
20550         * modules/close (Depends-on): fclose.
20551         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
20552
20553 2008-10-11  Bruno Haible  <bruno@clisp.org>
20554
20555         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
20556         set errno and don't call _close.
20557
20558 2008-10-10  Bruno Haible  <bruno@clisp.org>
20559
20560         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
20561         ACL, not afterwards. Fixes test failure on Cygwin.
20562
20563 2008-10-09  Ben Pfaff  <blp@gnu.org>
20564
20565         * build-aux/announce-gen: Fix gnulib version related part of usage
20566         message.  Die with a useful error message if no tarballs are
20567         found.
20568
20569 2008-10-10  Jim Meyering  <meyering@redhat.com>
20570
20571         bootstrap: use git's --depth=N option only if it's supported
20572         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
20573         recognize the --depth option.  Reported by Pádraig Brady.
20574
20575 2008-10-09  Bruno Haible  <bruno@clisp.org>
20576
20577         New module 'ioctl'.
20578         * modules/ioctl: New file.
20579         * lib/sys_socket.in.h (ioctl): Remove declaration.
20580         * lib/winsock.c: Include <sys/ioctl.h>.
20581         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
20582         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
20583         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
20584         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
20585         * doc/posix-functions/ioctl.texi: Mention the new module.
20586
20587 2008-10-09  Bruno Haible  <bruno@clisp.org>
20588
20589         New module 'sys_ioctl'.
20590         * lib/sys_ioctl.in.h: New file.
20591         * m4/sys_ioctl_h.m4: New file.
20592         * modules/sys_ioctl: New file.
20593         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
20594
20595 2008-10-09  Bruno Haible  <bruno@clisp.org>
20596
20597         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
20598         * lib/winsock.c: Include <stdarg.h>.
20599         (rpl_ioctl): Change to second argument 'int' and then varargs.
20600
20601 2008-10-09  Bruno Haible  <bruno@clisp.org>
20602
20603         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
20604         when the sys_socket module is present and the system has <winsock2.h>.
20605
20606 2008-10-09  Bruno Haible  <bruno@clisp.org>
20607
20608         * doc/posix-functions/close.texi: Mention module 'close' instead of
20609         module 'sys_socket'.
20610
20611 2008-10-09  Bruno Haible  <bruno@clisp.org>
20612
20613         * doc/glibc-headers/sys_ioctl.texi: New file.
20614         * doc/gnulib.texi: Include it.
20615
20616 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20617             Bruno Haible  <bruno@clisp.org>
20618
20619         Combine the two replacements of 'close'.
20620         * lib/sys_socket.in.h (close): Define to a reminder to include
20621         <unistd.h>.
20622         (_gl_close_fd_maybe_socket): New declaration.
20623         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
20624         * lib/winsock.c (close): Remove undefinition.
20625         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
20626         needed for the gnulib module 'close'.
20627         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
20628         define to an error symbol or to a warning, if suitable.
20629         * lib/close.c: Include <sys/socket.h>.
20630         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
20631         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
20632         UNISTD_H_HAVE_WINSOCK2_H.
20633         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
20634         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20635         UNISTD_H_HAVE_WINSOCK2_H.
20636         * modules/sys_socket (Files): Add m4/unistd_h.m4.
20637         (configure.ac): Set a module indicator.
20638         (Makefile.am): Substitute GNULIB_CLOSE.
20639         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
20640         * modules/poll-tests (Depends-on): Add close.
20641         * modules/select-tests (Depends-on): Likewise.
20642
20643 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20644             Bruno Haible  <bruno@clisp.org>
20645
20646         New module 'close'.
20647         * modules/close: New file.
20648         * lib/unistd.in.h (close): Move declaration out of the
20649         FCHDIR_REPLACEMENT scope.
20650         (_gl_unregister_fd): New declaration.
20651         * lib/close.c: New file.
20652         * lib/fchdir.c (rpl_close): Remove function.
20653         * m4/close.m4: New file.
20654         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
20655         close.
20656         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
20657         REPLACE_CLOSE.
20658         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
20659         REPLACE_CLOSE.
20660         * modules/fchdir (Depends-on): Add close.
20661
20662 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20663             Bruno Haible  <bruno@clisp.org>
20664
20665         * lib/fcntl.in.h (open): Simplify conditionals.
20666         (_gl_register_fd): New declaration.
20667         * lib/fchdir.c (rpl_open): Remove function.
20668         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
20669         also.
20670         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
20671         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
20672         open.
20673
20674 2008-10-09  Jim Meyering  <meyering@redhat.com>
20675
20676         GNUmakefile: use the more name-space-friendly "_version"
20677         * top/GNUmakefile (_dummy): Update.
20678         (_version): Rename from "version".
20679
20680 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20681             Bruno Haible  <bruno@clisp.org>
20682
20683         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
20684         rpl_close.
20685         (_gl_register_fd): New function, extracted from rpl_open.
20686         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
20687         (rpl_open, rpl_opendir): Use _gl_register_fd.
20688
20689 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
20690
20691         Fix organization of 'open' replacement.
20692         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
20693         (gl_FUNC_OPEN): Use it.
20694         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
20695
20696 2008-10-08  Bruno Haible  <bruno@clisp.org>
20697
20698         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
20699
20700 2008-10-08  Simon Josefsson  <simon@josefsson.org>
20701
20702         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
20703         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
20704         listen).
20705
20706 2008-10-08  Eric Blake  <ebb9@byu.net>
20707
20708         GNUmakefile: add 'make version' target
20709         * top/GNUmakefile (_curr-ver): Split version update rules...
20710         (version): ...into a target.
20711
20712 2008-10-07  Bruno Haible  <bruno@clisp.org>
20713
20714         Use a more portable replacement expression for -0.0L.
20715         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
20716         instead of -0.0L. Fix m4 quotation.
20717
20718         * tests/test-signbit.c: Include <float.h>.
20719         (minus_zero): New variable.
20720         (test_signbitl): Use minus_zero instead of -zero.
20721         * modules/signbit-tests (Depends-on): Add float.
20722
20723         * tests/test-ceill.c: Include <float.h>.
20724         (zero): Remove variable.
20725         (minus_zero): New variable.
20726         (main): Use minus_zero instead of -zero.
20727         * modules/ceill-tests (Depends-on): Add float.
20728
20729         * tests/test-floorl.c: Include <float.h>.
20730         (zero): Remove variable.
20731         (minus_zero): New variable.
20732         (main): Use minus_zero instead of -zero.
20733         * modules/floorl-tests (Depends-on): Add float.
20734
20735         * tests/test-roundl.c: Include <float.h>.
20736         (zero): Remove variable.
20737         (minus_zero): New variable.
20738         (main): Use minus_zero instead of -zero.
20739         * modules/roundl-tests (Depends-on): Add float.
20740
20741         * tests/test-truncl.c: Include <float.h>.
20742         (zero): Remove variable.
20743         (minus_zero): New variable.
20744         (main): Use minus_zero instead of -zero.
20745         * modules/truncl-tests (Depends-on): Add float.
20746
20747         * tests/test-frexpl.c (zero): Remove variable.
20748         (minus_zero): New variable.
20749         (main): Use minus_zero instead of -zero.
20750         * modules/frexpl-tests (Depends-on): Add float.
20751
20752         * tests/test-isnan.c (zerol): Remove variable.
20753         (minus_zerol): New variable.
20754         (test_long_double): Use minus_zerol instead of -zerol.
20755         * modules/isnan-tests (Depends-on): Add float.
20756
20757         * tests/test-isnanl.h (zero): Remove variable.
20758         (minus_zero): New variable.
20759         (main): Use minus_zero instead of -zero.
20760         * modules/isnanl-nolibm-tests (Depends-on): Add float.
20761         * modules/isnanl-tests (Depends-on): Add float.
20762
20763         * tests/test-ldexpl.c (zero): Remove variable.
20764         (minus_zero): New variable.
20765         (main): Use minus_zero instead of -zero.
20766         * modules/ldexpl-tests (Depends-on): Add float.
20767
20768         * tests/test-snprintf-posix.h (zerol): Remove variable.
20769         (minus_zerol): New variable.
20770         (test_function): Use minus_zerol instead of -zerol.
20771         * modules/snprintf-posix-tests (Depends-on): Add float.
20772         * modules/vsnprintf-posix-tests (Depends-on): Add float.
20773
20774         * tests/test-sprintf-posix.h (zerol): Remove variable.
20775         (minus_zerol): New variable.
20776         (test_function): Use minus_zerol instead of -zerol.
20777         * modules/sprintf-posix-tests (Depends-on): Add float.
20778         * modules/vsprintf-posix-tests (Depends-on): Add float.
20779
20780         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
20781         (minus_zerol): New variable.
20782         (test_function): Use minus_zerol instead of -zerol.
20783         * modules/vasnprintf-posix-tests (Depends-on): Add float.
20784
20785         * tests/test-vasprintf-posix.c (zerol): Remove variable.
20786         (minus_zerol): New variable.
20787         (test_function): Use minus_zerol instead of -zerol.
20788         * modules/vasprintf-posix-tests (Depends-on): Add float.
20789
20790 2008-10-07  Simon Josefsson  <simon@josefsson.org>
20791
20792         * MODULES.html.sh (Support for building documentation): Mention
20793         pmccabe2html.  Sort entries.
20794
20795         Add pmccabe2html module, from gnupdf.
20796         * build-aux/pmccabe.css: New file.
20797         * build-aux/pmccabe2html: New file.
20798         * m4/pmccabe2html.m4: New file.
20799         * modules/pmccabe2html: New file.
20800
20801 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
20802
20803         flock: new module
20804         * MODULES.html.sh: Add to list of modules.
20805         * lib/flock.c: flock implementation for Windows and Unix systems
20806         which have fcntl.
20807         * doc/glibc-functions/flock.texi: Update documentation.
20808         * lib/sys_file.in.h: <sys/file.h> header file.
20809         * m4/flock.m4: M4 macros.
20810         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
20811         * modules/flock: flock module.
20812         * modules/flock-tests: flock tests module.
20813         * modules/sys_file: sys/file.h module.
20814         * tests/test-flock.c: test suite for flock.
20815
20816 2008-10-06  Jim Meyering  <meyering@redhat.com>
20817
20818         bootstrap: check for LT_INIT more portably still ;-)
20819         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
20820         Spotted by Bruno Haible.
20821
20822 2008-10-06  Eric Blake  <ebb9@byu.net>
20823
20824         test-signbit: avoid tripping Irix cc bug on -0.0L
20825         * tests/test-signbit.c (minus_zerol): Delete, and replace with
20826         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
20827         entire testsuite consistent and avoids an Irix 6.2 bug.
20828
20829 2008-10-05  Bruno Haible  <bruno@clisp.org>
20830             Jim Meyering  <jim@meyering.net>
20831
20832         Add an option for ignoring EPIPE during close_stdout.
20833         * lib/closeout.h: Include <stdbool.h>.
20834         (close_stdout_set_ignore_EPIPE): New declaration.
20835         * lib/closeout.c: Include <stdbool.h>.
20836         (ignore_EPIPE): New variable.
20837         (close_stdout_set_ignore_EPIPE): New function.
20838         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
20839         * lib/close-stream.c (close_stream): Mention the possible EPIPE
20840         failure.
20841         * modules/closeout (Depends-on): Add stdbool.
20842
20843 2008-10-05  Bruno Haible  <bruno@clisp.org>
20844
20845         * modules/accept: New file.
20846         * modules/bind: New file.
20847         * modules/connect: New file.
20848         * modules/getpeername: New file.
20849         * modules/getsockname: New file.
20850         * modules/getsockopt: New file.
20851         * modules/listen: New file.
20852         * modules/recv: New file.
20853         * modules/recvfrom: New file.
20854         * modules/send: New file.
20855         * modules/sendto: New file.
20856         * modules/setsockopt: New file.
20857         * modules/socket: New file.
20858         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
20859         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
20860         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
20861         the particular module is requested. Add a link warning when the
20862         particular module is not requested.
20863         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
20864         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
20865         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
20866         the particular module is requested.
20867         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
20868         gl_SYS_SOCKET_H_DEFAULTS): New macros.
20869         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
20870         * modules/sys_socket (Depends-on): Add link-warning.
20871         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
20872         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
20873         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
20874         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
20875         GL_LINK_WARNING.
20876         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
20877         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
20878         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
20879         * doc/posix-functions/getpeername.texi: Mention the new module
20880         'getpeername'.
20881         * doc/posix-functions/getsockname.texi: Mention the new module
20882         'getsockname'.
20883         * doc/posix-functions/getsockopt.texi: Mention the new module
20884         'getsockopt'.
20885         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
20886         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
20887         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
20888         * doc/posix-functions/send.texi: Mention the new module 'send'.
20889         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
20890         * doc/posix-functions/setsockopt.texi: Mention the new module
20891         'setsockopt'.
20892         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
20893         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
20894         listen, connect, accept.
20895         * modules/select-tests (Depends-on): Likewise.
20896
20897 2008-10-05  Bruno Haible  <bruno@clisp.org>
20898
20899         * lib/winsock.c (strerror): Remove unused #undef.
20900         (rpl_close): Remove unused local variable.
20901
20902         * modules/sys_socket (Depends-on); Add errno.
20903
20904 2008-10-05  Bruno Haible  <bruno@clisp.org>
20905
20906         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
20907         (select): Add a link warning when the 'select' module is not used.
20908         * modules/sys_select (Depends-on): Add link-warning.
20909         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
20910         Suggested by Paolo Bonzini.
20911
20912 2008-10-05  Jim Meyering  <meyering@redhat.com>
20913
20914         bootstrap: check for LT_INIT more portably
20915         * build-aux/bootstrap: Avoid using grep -E, since it's not
20916         portable enough.  Suggestion from Bruno Haible.
20917
20918 2008-10-05  Bruno Haible  <bruno@clisp.org>
20919
20920         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
20921         as being fixed by gnulib.
20922
20923 2008-10-05  Bruno Haible  <bruno@clisp.org>
20924
20925         * modules/select-tests: New file, mostly copied from
20926         modules/sys_select-tests.
20927         * tests/test-select.c: New file, mostly copied from
20928         tests/test-sys_select.c.
20929         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
20930         * modules/sys_select-tests (Depends-on): Remove all dependencies.
20931         (Makefile.am): Remove test_sys_select_LDADD.
20932
20933         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
20934         to an undefined symbol, for an error message.
20935         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
20936         (gl_SYS_SELECT_H_DEFAULTS): New macro.
20937         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
20938         winsock-select.c here.
20939         * modules/sys_select (Files): Remove lib/winsock-select.c.
20940         (Depends-on): Remove alloca.
20941         (Makefile.am): Substitute GNULIB_SELECT.
20942         * modules/select: New file.
20943         * doc/posix-functions/select.texi: Update.
20944
20945 2008-10-05  Bruno Haible  <bruno@clisp.org>
20946
20947         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
20948         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
20949         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
20950         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
20951         getdtablesize.
20952         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
20953         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
20954
20955 2008-10-05  Bruno Haible  <bruno@clisp.org>
20956
20957         * modules/getdtablesize-tests: New file.
20958         * tests/test-getdtablesize.c: New file.
20959
20960         New module 'getdtablesize'.
20961         * lib/unistd.in.h (getdtablesize): New declaration.
20962         * lib/getdtablesize.c: New file.
20963         * m4/getdtablesize.m4: New file.
20964         * modules/getdtablesize: New file.
20965         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20966         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
20967         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
20968         HAVE_GETDTABLESIZE.
20969         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
20970
20971 2008-10-05  Bruno Haible  <bruno@clisp.org>
20972
20973         * modules/sched (Makefile.am): Fix typo.
20974         Reported by Simon Josefsson.
20975
20976 2008-10-05  Jim Meyering  <meyering@redhat.com>
20977
20978         bootstrap: check for LT_INIT, too
20979         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
20980         are deprecated.  Suggestion from Ralf Wildenhues.
20981
20982 2008-10-05  Bruno Haible  <bruno@clisp.org>
20983
20984         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
20985         overriding them by ours.
20986         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
20987
20988 2008-10-05  Jim Meyering  <meyering@redhat.com>
20989
20990         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
20991         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
20992         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
20993
20994 2008-10-04  Bruno Haible  <bruno@clisp.org>
20995
20996         * modules/dup2 (License): Change to LGPLv2+.
20997         * modules/sleep (License): Likewise.
20998         * modules/perror (License): Likewise.
20999         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
21000         Blake.
21001         * modules/signal (License): Likewise.
21002         * modules/sigprocmask (License): Likewise.
21003         * modules/raise (License): Change to LGPLv2+, with approval by Jim
21004         Meyering.
21005
21006 2008-10-04  Bruno Haible  <bruno@clisp.org>
21007
21008         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
21009         Reported by Rainer Tammer <tammer@tammer.net>.
21010
21011 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
21012             Bruno Haible  <bruno@clisp.org>
21013
21014         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
21015         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
21016         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
21017
21018 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
21019
21020         filevercmp: new module
21021         * lib/filevercmp.h: New function filevercmp comparing version strings.
21022         * lib/filevercmp.c: Implementation of filevercmp function.
21023         * modules/filevercmp: Module metadata.
21024         * tests/test-filevercmp.c: Unit test for new module.
21025         * modules/filevercmp-tests: Unit test metadata.
21026         * MODULES.html.sh: Add filevercmp module.
21027
21028 2008-10-03  Bruno Haible  <bruno@clisp.org>
21029
21030         * lib/c-ctype.h: Add comment.
21031         Reported by Jim Meyering.
21032
21033 2008-10-02  Bruno Haible  <bruno@clisp.org>
21034
21035         * modules/posix_spawn-internal (Depends-on): Add 'open'.
21036
21037 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21038
21039         * build-aux/bootstrap: Allow renaming bootstrap, and change the
21040         name of bootstrap.conf accordingly.
21041
21042 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21043
21044         * build-aux/bootstrap: Install git-merge-changelog configuration
21045         items into .gitconfig if needed.
21046
21047 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21048
21049         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
21050         git repository, and initialize/update it accordingly.
21051
21052 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
21053
21054         * modules/fsync-tests: New file.
21055         * tests/test-fsync.c: New file.
21056
21057         New module 'fsync'.
21058         * lib/fsync.c: New file.
21059         * m4/fsync.m4: New file.
21060         * modules/fsync: New file.
21061         * lib/unistd.in.h (fsync): New declaration.
21062         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
21063         GNULIB_FSYNC and HAVE_FSYNC.
21064         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
21065         * MODULES.html.sh (posix_functions): Add fsync.
21066         * doc/posix-functions/fsync.texi: Mention the new module.
21067
21068 2008-10-02  Jim Meyering  <meyering@redhat.com>
21069
21070         fts.c: sync with similar code from coreutils' remove.c
21071         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
21072         Guard also with "#if defined __linux__", since for now at least,
21073         this code is Linux-kernel-specific.
21074
21075 2008-10-02  Jim Meyering  <meyering@redhat.com>
21076
21077         fts: bug fixes
21078         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
21079         Include <sys/vfs.h>, not <sys/statfs.h>.
21080
21081         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
21082         Include <sys/vfs.h>, not <sys/statfs.h>.
21083
21084 2008-10-01  Bruno Haible  <bruno@clisp.org>
21085
21086         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
21087         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
21088         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
21089         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
21090         * doc/posix-functions/posix_spawnp.texi: Likewise.
21091         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
21092         whether posix_spawn actually works.
21093         * m4/pipe.m4 (gl_PIPE): Likewise.
21094         * modules/execute (Files): Add m4/posix_spawn.m4.
21095         * modules/pipe (Files): Add m4/posix_spawn.m4.
21096         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
21097
21098 2008-10-01  Jim Meyering  <meyering@redhat.com>
21099
21100         remove trailing spaces
21101         * NEWS: Likewise.
21102         * lib/poll.c (poll): Likewise.
21103         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
21104         * lib/winsock.c (rpl_close): Likewise.
21105         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
21106         * modules/yield: Likewise.
21107         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
21108         * tests/test-sys_select.c (connect_to_socket): Likewise.
21109
21110         fts.c: adjust a new interface to be more generally useful
21111         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
21112         (fts_build): Adjust caller.
21113
21114 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21115
21116         * modules/cond-tests: New file.
21117         * tests/test-cond.c: New file.
21118
21119 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21120             Bruno Haible  <bruno@clisp.org>
21121
21122         * modules/cond (Dependencies): Add errno, time.
21123         * lib/glthread/cond.h: Include <time.h>.
21124         (gl_cond_define, gl_cond_define_initialized): Use the same definition
21125         across platforms.
21126
21127 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21128             Bruno Haible  <bruno@clisp.org>
21129
21130         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
21131
21132 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21133             Bruno Haible  <bruno@clisp.org>
21134
21135         * modules/tls-tests (Depends-on): Add thread, yield.
21136         (configure.ac): Remove all checks.
21137         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
21138         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21139         gl_thread_self): Remove definitions. Include glthread/thread.h and
21140         glthread/yield.h instead.
21141         (test_tls): Pass an additional NULL argument to gl_thread_join.
21142
21143 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21144             Bruno Haible  <bruno@clisp.org>
21145
21146         * modules/lock-tests (Depends-on): Add thread, yield.
21147         (configure.ac): Remove all checks.
21148         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
21149         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21150         gl_thread_self): Remove definitions. Include glthread/thread.h and
21151         glthread/yield.h instead.
21152         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
21153         additional NULL argument to gl_thread_join.
21154
21155 2008-09-30  Bruno Haible  <bruno@clisp.org>
21156
21157         Fix the Win32 implementation of the 'thread' module.
21158         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
21159         pointer type.
21160         (gl_thread_self): Invoke gl_thread_self_func.
21161         (gl_thread_self_func): New declaration.
21162         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
21163         (do_init_self_key, init_self_key): New functions.
21164         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
21165         Remove some fields.
21166         (running_threads, running_lock): Remove variables.
21167         (get_current_thread_handle): New function.
21168         (gl_thread_self_func, wrapper_func, glthread_create_func,
21169         glthread_join_func, gl_thread_exit_func): Largely rewritten and
21170         simplified.
21171
21172 2008-09-30  Bruno Haible  <bruno@clisp.org>
21173
21174         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
21175         files.
21176
21177 2008-09-30  Jim Meyering  <meyering@redhat.com>
21178
21179         fts.m4: correct the test for statfs.f_type
21180         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
21181         when checking for statfs.f_type.
21182
21183 2008-09-15  Simon Josefsson  <simon@josefsson.org>
21184
21185         tests: avoid some compiler warnings
21186         * tests/test-memchr.c (main): Pass NULL indirectly.
21187         * tests/test-getdate.c (main): Remove unused variable 'ret'.
21188
21189 2008-09-29  Ondřej Vašík  <ovasik@redhat.com>
21190
21191         getdate.y: disallow countable dayshifts like "4 yesterday ago"
21192         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
21193         exactly specified dayshifts.
21194         (dayshift): New rule.
21195         (rel): Add dayshift.
21196         (relative_time_table) [tomorrow, yesterday, today, now]:
21197         Use tDAY_SHIFT in place of tDAY_UNIT.
21198         * tests/test-getdate.c: Add tests for now-disallowed countable
21199         dayshifts, e.g., "4 yesterday ago".
21200
21201 2008-09-29  Bruno Haible  <bruno@clisp.org>
21202
21203         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
21204         * tests/test-posix_spawn1.in.sh: Renamed from
21205         tests/test-posix_spawn.in.sh.
21206         * tests/test-posix_spawn2.c: New file.
21207         * tests/test-posix_spawn2.in.sh: New file.
21208         * modules/posix_spawnp-tests (Files): Update.
21209         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
21210
21211 2008-09-29  Bruno Haible  <bruno@clisp.org>
21212
21213         Propagate effects of putenv/setenv/unsetenv to child processes.
21214         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
21215         * lib/pipe.c (create_pipe): Likewise.
21216
21217 2008-09-29  Bruno Haible  <bruno@clisp.org>
21218
21219         Enable use of shell scripts as executables in mingw.
21220         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
21221         run the program as a shell script.
21222         * lib/pipe.c (create_pipe): Likewise.
21223         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
21224         resulting array.
21225
21226 2008-09-29  Eric Blake  <ebb9@byu.net>
21227
21228         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
21229
21230 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
21231
21232         * doc/posix-functions/accept.texi: Update mingw problems.
21233         * doc/posix-functions/bind.texi: Update mingw problems.
21234         * doc/posix-functions/close.texi: Update mingw problems.
21235         * doc/posix-functions/connect.texi: Update mingw problems.
21236         * doc/posix-functions/getpeername.texi: Update mingw problems.
21237         * doc/posix-functions/getsockname.texi: Update mingw problems.
21238         * doc/posix-functions/getsockopt.texi: Update mingw problems.
21239         * doc/posix-functions/ioctl.texi: Update mingw problems.
21240         * doc/posix-functions/listen.texi: Update mingw problems.
21241         * doc/posix-functions/recv.texi: Update mingw problems.
21242         * doc/posix-functions/recvfrom.texi: Update mingw problems.
21243         * doc/posix-functions/select.texi: Update mingw problems.
21244         * doc/posix-functions/send.texi: Update mingw problems.
21245         * doc/posix-functions/sendto.texi: Update mingw problems.
21246         * doc/posix-functions/setsockopt.texi: Update mingw problems.
21247         * doc/posix-functions/socket.texi: Update mingw problems.
21248
21249 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
21250             Bruno Haible  <bruno@clisp.org>
21251
21252         * lib/sys_select.in.h: Include sys/time.h.
21253         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
21254         * modules/sys_select: Depend on sys_time.
21255         * tests/test-sys_select.c: Test that sys/select.h defines struct
21256         timeval fully.
21257
21258 2008-09-29  Bruno Haible  <bruno@clisp.org>
21259
21260         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
21261         * lib/sys_select.in.h: Likewise.
21262
21263 2008-09-29  Bruno Haible  <bruno@clisp.org>
21264
21265         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
21266
21267 2008-09-29  Bruno Haible  <bruno@clisp.org>
21268
21269         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
21270         Set LIBSOCKET instead of augmenting LIBS.
21271         * modules/sockets (Link): New section.
21272         * modules/sockets-tests (test_sockets_LDADD): New variable.
21273         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
21274         * modules/poll-tests (test_poll_LDADD): New variable.
21275         * NEWS: Document the change.
21276
21277 2008-09-29  Bruno Haible  <bruno@clisp.org>
21278
21279         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
21280         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
21281         ARPA_INET_H directly.
21282         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
21283
21284 2008-09-28  Bruno Haible  <bruno@clisp.org>
21285
21286         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
21287         from gl_HEADER_SYS_SOCKET.
21288         (gl_HEADER_SYS_SOCKET): Invoke it.
21289         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
21290
21291 2008-09-28  Bruno Haible  <bruno@clisp.org>
21292
21293         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
21294         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
21295         Needed on OSF/1 4.0.
21296
21297 2008-09-28  Bruno Haible  <bruno@clisp.org>
21298
21299         Override open more carefully.
21300         * lib/open.c (orig_open): New function.
21301         (rpl_open): Use orig_open instead of open.
21302         * lib/fcntl.in.h: Add special invocation convention.
21303         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
21304         (gl_FUNC_OPEN): Invoke it.
21305
21306         Override freopen more carefully.
21307         * lib/freopen.c (orig_freopen): New function.
21308         (rpl_freopen): Use orig_freopen instead of freopen.
21309         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
21310         (gl_FUNC_FREOPEN): Invoke it.
21311
21312         Override fopen more carefully.
21313         * lib/fopen.c (orig_fopen): New function.
21314         (rpl_fopen): Use orig_fopen instead of fopen.
21315         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
21316         (gl_FUNC_FOPEN): Invoke it.
21317         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
21318
21319 2008-09-28  Bruno Haible  <bruno@clisp.org>
21320
21321         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
21322         SIGPIPE.
21323
21324 2008-09-28  Bruno Haible  <bruno@clisp.org>
21325
21326         * tests/test-sigaction.c (handler, main): Disable the check whether
21327         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
21328         glibc systems with LinuxThreads.
21329
21330 2008-09-28  Bruno Haible  <bruno@clisp.org>
21331
21332         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
21333
21334         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
21335         with AIX xlc.
21336         * lib/fcntl.in.h (open): Likewise.
21337         Reported by Rainer Tammer <tammer@tammer.net>.
21338
21339 2008-09-28  Bruno Haible  <bruno@clisp.org>
21340
21341         * modules/posix_spawnp-tests: New file.
21342         * tests/test-posix_spawn.c: New file.
21343         * tests/test-posix_spawn.in.sh: New file.
21344
21345         New module 'posix_spawnp'.
21346         * modules/posix_spawnp: New file.
21347         * lib/spawnp.c: New file, from GNU libc with modifications.
21348         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
21349
21350         New module 'posix_spawn'.
21351         * modules/posix_spawn: New file.
21352         * lib/spawn.c: New file, from GNU libc with modifications.
21353         * doc/posix-functions/posix_spawn.texi: Mention the new module.
21354
21355         New module 'posix_spawnattr_destroy'.
21356         * modules/posix_spawnattr_destroy: New file.
21357         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
21358         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
21359         module.
21360
21361         New module 'posix_spawnattr_setsigmask'.
21362         * modules/posix_spawnattr_setsigmask: New file.
21363         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
21364         modifications.
21365         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
21366         new module.
21367
21368         New module 'posix_spawnattr_getsigmask'.
21369         * modules/posix_spawnattr_getsigmask: New file.
21370         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
21371         modifications.
21372         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
21373         new module.
21374
21375         New module 'posix_spawnattr_setsigdefault'.
21376         * modules/posix_spawnattr_setsigdefault: New file.
21377         * lib/spawnattr_setdefault.c: New file, from GNU libc with
21378         modifications.
21379         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
21380         new module.
21381
21382         New module 'posix_spawnattr_getsigdefault'.
21383         * modules/posix_spawnattr_getsigdefault: New file.
21384         * lib/spawnattr_getdefault.c: New file, from GNU libc with
21385         modifications.
21386         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
21387         new module.
21388
21389         New module 'posix_spawnattr_setschedpolicy'.
21390         * modules/posix_spawnattr_setschedpolicy: New file.
21391         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
21392         modifications.
21393         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
21394         new module.
21395
21396         New module 'posix_spawnattr_getschedpolicy'.
21397         * modules/posix_spawnattr_getschedpolicy: New file.
21398         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
21399         modifications.
21400         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
21401         new module.
21402
21403         New module 'posix_spawnattr_setschedparam'.
21404         * modules/posix_spawnattr_setschedparam: New file.
21405         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
21406         modifications.
21407         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
21408         new module.
21409
21410         New module 'posix_spawnattr_getschedparam'.
21411         * modules/posix_spawnattr_getschedparam: New file.
21412         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
21413         modifications.
21414         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
21415         new module.
21416
21417         New module 'posix_spawnattr_setpgroup'.
21418         * modules/posix_spawnattr_setpgroup: New file.
21419         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
21420         modifications.
21421         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
21422         module.
21423
21424         New module 'posix_spawnattr_getpgroup'.
21425         * modules/posix_spawnattr_getpgroup: New file.
21426         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
21427         modifications.
21428         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
21429         module.
21430
21431         New module 'posix_spawnattr_setflags'.
21432         * modules/posix_spawnattr_setflags: New file.
21433         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
21434         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
21435         module.
21436
21437         New module 'posix_spawnattr_getflags'.
21438         * modules/posix_spawnattr_getflags: New file.
21439         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
21440         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
21441         module.
21442
21443         New module 'posix_spawnattr_init'.
21444         * modules/posix_spawnattr_init: New file.
21445         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
21446         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
21447         module.
21448
21449         New module 'posix_spawn_file_actions_destroy'.
21450         * modules/posix_spawn_file_actions_destroy: New file.
21451         * lib/spawn_faction_destroy.c: New file, from GNU libc with
21452         modifications.
21453         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
21454         the new module.
21455
21456         New module 'posix_spawn_file_actions_addopen'.
21457         * modules/posix_spawn_file_actions_addopen: New file.
21458         * lib/spawn_faction_addopen.c: New file, from GNU libc with
21459         modifications.
21460         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
21461         the new module.
21462
21463         New module 'posix_spawn_file_actions_adddup2'.
21464         * modules/posix_spawn_file_actions_adddup2: New file.
21465         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
21466         modifications.
21467         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
21468         the new module.
21469
21470         New module 'posix_spawn_file_actions_addclose'.
21471         * modules/posix_spawn_file_actions_addclose: New file.
21472         * lib/spawn_faction_addclose.c: New file, from GNU libc with
21473         modifications.
21474         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
21475         the new module.
21476
21477         New module 'posix_spawn_file_actions_init'.
21478         * modules/posix_spawn_file_actions_init: New file.
21479         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
21480         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
21481         new module.
21482
21483         New module 'posix_spawn-internal'.
21484         * modules/posix_spawn-internal: New file.
21485         * lib/spawn_int.h: New file, from GNU libc with modifications.
21486         * lib/spawni.c: New file, from GNU libc with modifications.
21487         * m4/posix_spawn.m4: New file.
21488
21489         New module 'spawn'.
21490         * modules/spawn: New file.
21491         * lib/spawn.in.h: New file, from GNU libc with modifications.
21492         * m4/spawn_h.m4: New file.
21493         * doc/posix-headers/spawn.texi: Mention the new module.
21494
21495 2008-09-28  Bruno Haible  <bruno@clisp.org>
21496
21497         * modules/sched-tests: New file.
21498         * tests/test-sched.c: New file.
21499
21500         New module 'sched'.
21501         * modules/sched: New file.
21502         * lib/sched.in.h: New file.
21503         * m4/sched_h.m4: New file.
21504         * doc/posix-headers/sched.texi: Mention the new module.
21505
21506 2008-09-27  Eric Blake  <ebb9@byu.net>
21507
21508         Fix previous patch, and tweak references to $0.
21509         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
21510         (func_version, func_gnulib_dir): Don't call this program
21511         gnulib-tool.
21512         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
21513         with using $0 in function.
21514         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
21515         (func_fatal_error): Reuse the name the user invoked us with.
21516
21517 2008-09-27  Bruno Haible  <bruno@clisp.org>
21518
21519         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
21520         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
21521         (gl_ICONV_H): Not here.
21522         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
21523         instead of assigning ICONV_H directly.
21524
21525         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
21526         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
21527         WCHAR_H directly.
21528
21529 2008-09-27  Bruno Haible  <bruno@clisp.org>
21530
21531         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
21532         * modules/arpa_inet (Depends-on): Add link-warning.
21533         (Makefile.am): Insert the definition of GL_LINK-WARNING.
21534         * modules/unistd (Makefile.am): Likewise.
21535
21536 2008-09-26  Bruno Haible  <bruno@clisp.org>
21537
21538         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
21539         variables.
21540         (func_version): Essentially copied from gnulib-tool.
21541         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
21542         func_readlink): Copied from gnulib-tool.
21543
21544 2008-09-26  Bruno Haible  <bruno@clisp.org>
21545
21546         * gnulib-tool (func_version): Change directory to $gnulib_dir before
21547         invoking git-version-gen.
21548
21549 2008-09-26  Bruno Haible  <bruno@clisp.org>
21550
21551         * posix-modules: Update to directory names changed on 2008-01-19.
21552         Remove commas in output before splitting into words. No more need to
21553         avoid 'ftruncate' since 2007-02-19.
21554
21555 2008-09-26  Bruno Haible  <bruno@clisp.org>
21556
21557         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
21558
21559 2008-09-26  Bruno Haible  <bruno@clisp.org>
21560
21561         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
21562         * modules/fwriteerror (Depends-on): Add errno.
21563
21564 2008-09-26  Bruno Haible  <bruno@clisp.org>
21565
21566         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
21567         * tests/test-vc-list-files-cvs.sh: Likewise.
21568
21569 2008-09-26  Bruno Haible  <bruno@clisp.org>
21570
21571         * doc/posix-headers/sys_resource.texi: Reorder items.
21572
21573 2008-09-26  Jim Meyering  <meyering@redhat.com>
21574
21575         fts: tweak inode comparison function
21576         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
21577         inode numbers, as documented.
21578
21579         fts: sort dirent entries on inode number before traversing
21580         This avoids a quadratic, seek-related performance penalty when
21581         operating on a directory containing many entries (measurable at 10k;
21582         3.5 hours at 2 million entries with a cold cache) on certain types
21583         of file systems, including ext3 and ext4, but not tmpfs.
21584         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
21585         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
21586         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
21587         (fs_handles_readdir_ordered_dirents_efficiently): New function.
21588         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
21589         (fts_build): Set the stat.st_ino member from D_INO.
21590         If it is likely to be useful, sort dirent entries on inode number.
21591
21592         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
21593         and the struct statfs.f_type member.
21594         * modules/fts (Depends-on): Add d-ino.
21595
21596 2008-09-26  Bruno Haible  <bruno@clisp.org>
21597
21598         * modules/sigpipe-die (Depends-on): Add sigpipe.
21599
21600         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
21601         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
21602         and GNULIB_STDIO_H_SIGPIPE are set.
21603         * lib/stdio-write.c: New file.
21604         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
21605         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21606         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21607         REPLACE_STDIO_WRITE_FUNCS.
21608         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
21609         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21610         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21611         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
21612         * modules/stdio (Files): Add lib/stdio-write.c.
21613         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
21614         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
21615         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
21616         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
21617         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
21618         REPLACE_FPRINTF_POSIX.
21619         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
21620         REPLACE_PRINTF_POSIX.
21621         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
21622         REPLACE_VFPRINTF_POSIX.
21623         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
21624         REPLACE_VPRINTF_POSIX.
21625         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
21626         SIGPIPE issue.
21627         * doc/posix-functions/fputc.texi: Likewise.
21628         * doc/posix-functions/fputs.texi: Likewise.
21629         * doc/posix-functions/fwrite.texi: Likewise.
21630         * doc/posix-functions/printf.texi: Likewise.
21631         * doc/posix-functions/putc.texi: Likewise.
21632         * doc/posix-functions/putchar.texi: Likewise.
21633         * doc/posix-functions/puts.texi: Likewise.
21634         * doc/posix-functions/vfprintf.texi: Likewise.
21635         * doc/posix-functions/vprintf.texi: Likewise.
21636
21637         * modules/safe-write (Depends-on): Add write.
21638
21639         * modules/sigpipe-tests: New file.
21640         * tests/test-sigpipe.c: New file.
21641         * tests/test-sigpipe.sh: New file.
21642
21643         * modules/write: New file.
21644         * lib/unistd.in.h: Include <sys/types.h>.
21645         (write): New declaration.
21646         * lib/write.c: New file.
21647         * m4/write.m4: New file.
21648         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21649         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
21650         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
21651         GNULIB_WRITE, REPLACE_WRITE.
21652         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
21653         and the SIGPIPE issue.
21654
21655         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
21656         (raise): New declaration.
21657         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
21658         (ext_signal): New function.
21659         (rpl_raise): New function.
21660         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
21661         GNULIB_SIGNAL_H_SIGPIPE.
21662         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
21663         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
21664
21665         * modules/sigpipe: New file.
21666         * m4/sigpipe.m4: New file.
21667
21668 2008-09-25  Derek Price  <derek@ximbiot.com>
21669             Bruno Haible  <bruno@clisp.org>
21670
21671         * gnulib-tool (func_import): Report all license incompatibilities, not
21672         just the first one.
21673
21674 2008-09-25  Bruno Haible  <bruno@clisp.org>
21675
21676         * gnulib-tool (func_import): When computing the edits, consider not
21677         only the Makefile.ams that exist but also those that will be generated.
21678
21679 2008-09-25  Simon Josefsson  <simon@josefsson.org>
21680
21681         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
21682         fixes gnulib-tool --test warning about duplicate dependency.
21683
21684 2008-09-25  Bruno Haible  <bruno@clisp.org>
21685
21686         * gnulib-tool: Don't ask the user to perform edits in the generated
21687         Makefile.ams.
21688         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
21689         apply to the Makefile.am being generated.
21690         (func_emit_tests_Makefile_am): Execute edits that apply to the
21691         Makefile.am being generated.
21692         (func_import): Setup list of Makefile.am edits before emitting the
21693         Makefile.ams, not at the end.
21694         (func_create_testdir): Update.
21695         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21696
21697 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21698
21699         * gnulib-tool (func_import): Store the --tests-base option in the
21700         comment in gnulib-cache.m4.
21701
21702 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
21703
21704         * NEWS: Document increased portability that sys_select now provides.
21705
21706         * lib/sys_select.in.h: Install select wrapper.
21707         * lib/sys_socket.in.h: Use more descriptive name when there is no
21708         select wrapper.
21709         * lib/winsock-select.c: New.
21710         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
21711         Require gl_HEADER_SYS_SOCKET.
21712         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
21713         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
21714         * tests/test-sys_select.c: Add functional tests.
21715
21716 2008-09-24  Eric Blake  <ebb9@byu.net>
21717
21718         open, fopen: close fd leak in last patch
21719         * lib/open.c (rpl_open): Close fd before returning error.
21720         * lib/fopen.c (rpl_fopen): Close fd before returning error.
21721         * doc/posix-functions/open.texi (open): Document that Irix also
21722         has the bug.
21723         * doc/posix-functions/fopen.texi (fopen): Likewise.
21724         Reported by Paolo Bonzini.
21725
21726 2008-09-24  Bruno Haible  <bruno@clisp.org>
21727
21728         Ensure that a filename ending in a slash cannot be used to access a
21729         non-directory.
21730         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
21731         to check whether it's really a directory.
21732         * lib/fopen.c: Include fcntl.h, unistd.h.
21733         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
21734         and fdopen().
21735         * modules/fopen (Depends-on): Add unistd.
21736         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
21737         * tests/test-fopen.c (main): Likewise.
21738         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
21739         * doc/posix-functions/fopen.texi: Likewise.
21740         Reported by Eric Blake.
21741
21742 2008-09-23  Eric Blake  <ebb9@byu.net>
21743
21744         c-stack: avoid compiler optimizations when provoking overflow
21745         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
21746         recursion harder to optimize, to ensure a stack overflow occurs.
21747         * tests/test-c-stack.c (recurse): Likewise.
21748         Borrowed from libsigsegv.
21749
21750         c-stack: work around Irix sigaltstack bug
21751         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
21752         whether sigaltstack uses wrong end of stack_t (copied in part from
21753         libsigsegv).
21754         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
21755         Irix bug, without requiring an over-allocation.
21756         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
21757         bug.
21758
21759         fopen: document mingw bug on directories
21760         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
21761         not allowing a stream visiting a directory, even though reading
21762         from such a stream is not portable.
21763
21764 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21765
21766         * lib/poll.c: Rewrite.
21767         * modules/poll: Depend on alloca.
21768
21769 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21770
21771         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
21772         instead define prototypes for a full set of wrappers.  Ensure
21773         that Cygwin does not use the compatibility code, which is only
21774         for MinGW.
21775         * lib/winsock.c: New.
21776         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
21777         * modules/sys_socket: Add lib/winsock.c.
21778
21779         * modules/poll-tests: Add errno and perror.
21780         * tests/test-poll.c: Use ioctl, not ioctlsocket.
21781
21782 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
21783
21784         * tests/test-poll.c: Downgrade minimum needed Winsock version.
21785
21786 2008-09-23  Bruno Haible  <bruno@clisp.org>
21787
21788         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
21789         * doc/glibc-functions/*: Likewise.
21790
21791 2008-09-23  Simon Josefsson  <simon@josefsson.org>
21792
21793         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
21794         success.
21795
21796 2008-09-22  Eric Blake  <ebb9@byu.net>
21797             Bruno Haible  <bruno@clisp.org>
21798
21799         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
21800         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
21801         supply %A but mishandle pseudo-NaN.
21802         Reported by Simon Josefsson.
21803
21804 2008-09-21  Bruno Haible  <bruno@clisp.org>
21805
21806         * tests/test-lock.c (main): Tweak skip message.
21807         * tests/test-tls.c (main): Likewise.
21808
21809 2008-09-21  Bruno Haible  <bruno@clisp.org>
21810
21811         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
21812         whether 'struct sigaction' has sa_sigaction here...
21813         (gl_PREREQ_SIG_HANDLER_H): ... not here.
21814         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
21815
21816 2008-09-21  Bruno Haible  <bruno@clisp.org>
21817
21818         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
21819         section.
21820         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
21821         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
21822         the new section.
21823         (Support for obsolete systems lacking POSIX:2001): New section.
21824         (String handling <string.h>): Move strdup to the new section.
21825         Suggested by Simon Josefsson and Paolo Bonzini.
21826
21827 2008-09-21  Bruno Haible  <bruno@clisp.org>
21828
21829         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
21830         exponents in %e and %g results on 'long double'. Needed for mingw's
21831         improved *printf functions.
21832         * tests/test-vasprintf-posix.c (test_function): Likewise.
21833         * tests/test-snprintf-posix.h (test_function): Likewise.
21834         * tests/test-sprintf-posix.h (test_function): Likewise.
21835         Reported by Eric Blake.
21836
21837 2008-09-21  Bruno Haible  <bruno@clisp.org>
21838
21839         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
21840         * tests/test-sprintf-posix.h (test_function): Likewise.
21841
21842 2008-09-21  Bruno Haible  <bruno@clisp.org>
21843
21844         * modules/getpass (Depends-on): Add strdup-posix.
21845
21846         New module 'strdup-posix'.
21847         * modules/strdup-posix: New file.
21848         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
21849         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
21850         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21851         REPLACE_STRDUP.
21852         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
21853         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
21854         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21855         strdup-posix.
21856
21857         * modules/strdup (Depends-on): Remove malloc-posix.
21858
21859 2008-09-20  Bruno Haible  <bruno@clisp.org>
21860
21861         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
21862         Wildenhues.
21863
21864 2008-09-20  Bruno Haible  <bruno@clisp.org>
21865
21866         Ensure that wint_t gets defined on IRIX 5.3.
21867         * lib/wchar.in.h (wint_t): Define if not defined by the system.
21868         * lib/wctype.in.h (wint_t): Likewise.
21869         (__wctype_wint_t): Remove type.
21870         (isw*): Use wint_t instead of __wctype_wint_t.
21871         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
21872         * modules/wchar (Files): Add m4/wint_t.m4.
21873         (Makefile.am): Substitute HAVE_WINT_T.
21874         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
21875         * tests/test-wctype.c: Check that wint_t is defined.
21876         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
21877         * doc/posix-headers/wctype.texi: Likewise.
21878         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
21879
21880 2008-09-18  Bruno Haible  <bruno@clisp.org>
21881
21882         * gnulib-tool (func_exit): Update comment.
21883
21884 2008-09-18  Simon Josefsson  <simon@josefsson.org>
21885
21886         * modules/getaddrinfo (Depends-on): Remove strdup, this module
21887         assumes strdup exists and does not depend on strdup to return
21888         ENOMEM on out of memory conditions.
21889
21890 2008-09-18  Bruno Haible  <bruno@clisp.org>
21891
21892         * lib/vasnprintf.c (VASNPRINTF): When printing ±0.0L in
21893         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
21894         digits for the exponent.
21895
21896 2008-09-18  Jim Meyering  <meyering@redhat.com>
21897             Bruno Haible  <bruno@clisp.org>
21898
21899         * lib/vasnprintf.c (decimal_point_char): Define also if
21900         NEED_PRINTF_INFINITE_LONG_DOUBLE.
21901
21902 2008-09-16  Bruno Haible  <bruno@clisp.org>
21903         and Eric Blake  <ebb9@byu.net>
21904
21905         vasnprintf: support Irix 5.3
21906         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
21907         that mishandle long double infinity.
21908         Reported by Tom G. Christensen.
21909
21910 2008-09-16  Bruno Haible  <bruno@clisp.org>
21911
21912         * doc/glibc-functions/scandir.texi: Mention the function is missing on
21913         Solaris 9.
21914         * doc/glibc-functions/alphasort.texi: Likewise.
21915         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
21916
21917 2008-09-16  Jim Meyering  <meyering@redhat.com>
21918
21919         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
21920         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
21921         a umask modification leak out of a subshell.  Otherwise, the
21922         opensolaris /bin/sh would be accepted and thus cause unwarranted
21923         failures in the coreutils test suite.
21924
21925 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
21926
21927         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
21928         to succeed.
21929
21930 2008-09-16  Jim Meyering  <meyering@redhat.com>
21931
21932         avoid spurious test failure when library is built without ACL support
21933         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
21934         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
21935         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
21936         * tests/test-copy-acl.sh: Likewise.
21937
21938 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21939
21940         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
21941         based on character occurrence counts.
21942
21943 2008-09-15  Eric Blake  <ebb9@byu.net>
21944
21945         tests: avoid some compiler warnings
21946         * tests/test-memchr.c (main): Pass NULL indirectly.
21947         * tests/test-closein.c (main): Avoid unused variable.
21948
21949 2008-09-15  Bruno Haible  <bruno@clisp.org>
21950
21951         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
21952         are missing on OpenBSD 4.0 individually.
21953         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21954
21955 2008-09-15  Bruno Haible  <bruno@clisp.org>
21956
21957         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
21958         * doc/posix-functions/strerror.texi: Mention also Cygwin.
21959         * doc/posix-functions/perror.texi: Likewise.
21960         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
21961         is missing.
21962         Reported by Eric Blake.
21963
21964         * lib/errno.in.h: Use replacement values >= 2000.
21965         Reported by Eric Blake.
21966
21967 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21968
21969         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
21970         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
21971         limit.
21972         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
21973         compareseq was aborted.
21974
21975 2008-09-14  Bruno Haible  <bruno@clisp.org>
21976
21977         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
21978         yvec_edit_count.
21979         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
21980         (fstrcmp_bounded): Simplify result computation accordingly.
21981
21982 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21983
21984         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
21985         (fstrcmp): Define in terms of fstrcmp_bounded.
21986         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
21987         lower_bound argument.
21988         Return quickly if the result is certainly < lower_bound.
21989         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
21990
21991 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21992
21993         * lib/diffseq.h (EARLY_ABORT): New macro.
21994         (compareseq): Change return type to bool. Return true when EARLY_ABORT
21995         evaluates to true.
21996
21997 2008-09-14  Bruno Haible  <bruno@clisp.org>
21998
21999         * modules/perror-tests: New file.
22000         * tests/test-perror.sh: New file.
22001         * tests/test-perror.c: New file.
22002
22003         New module 'perror'.
22004         * lib/stdio.in.h (perror): New declaration.
22005         * lib/perror.c: New file.
22006         * m4/perror.m4: New file.
22007         * modules/perror: New file.
22008         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
22009         * doc/posix-functions/perror.texi: Mention the perror module.
22010         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
22011         REPLACE_PERROR.
22012         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
22013         REPLACE_PERROR.
22014
22015 2008-09-14  Bruno Haible  <bruno@clisp.org>
22016
22017         * modules/stdio (Makefile.am): Reorder to match the order in
22018         lib/stdio.in.h.
22019         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
22020
22021 2008-09-13  Bruno Haible  <bruno@clisp.org>
22022
22023         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
22024
22025 2008-09-13  Bruno Haible  <bruno@clisp.org>
22026
22027         Extend strerror to cover the added errno values.
22028         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
22029         (rpl_strerror): Provide error messages for the added errno values and
22030         for the WSA* values.
22031         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
22032         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
22033         strerror.
22034         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
22035         * modules/strerror (Depends-on): Add errno.
22036         * doc/posix-functions/strerror.texi: Document the change.
22037         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
22038         and EOVERFLOW.
22039
22040 2008-09-13  Bruno Haible  <bruno@clisp.org>
22041
22042         * modules/EOVERFLOW: Remove file.
22043         * m4/eoverflow.m4: Remove file.
22044         * modules/EOVERFLOW-tests: Remove file.
22045         * tests/test-EOVERFLOW.c: Remove file.
22046         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
22047         * modules/ftell (Depends-on): Likewise.
22048         * modules/getdelim (Depends-on): Likewise.
22049         * modules/getugroups (Depends-on): Likewise.
22050         * modules/poll (Depends-on): Likewise.
22051         * modules/snprintf (Depends-on): Likewise.
22052         * modules/sprintf-posix (Depends-on): Likewise.
22053         * modules/vasnprintf (Depends-on): Likewise.
22054         * modules/vasprintf (Depends-on): Likewise.
22055         * modules/vfprintf-posix (Depends-on): Likewise.
22056         * modules/vsnprintf (Depends-on): Likewise.
22057         * modules/vsprintf-posix (Depends-on): Likewise.
22058         * modules/xvasprintf (Depends-on): Likewise.
22059         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22060         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
22061         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
22062         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
22063         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22064         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
22065         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
22066         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
22067         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22068         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
22069         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
22070         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
22071         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22072         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
22073         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
22074         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
22075         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22076         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
22077         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
22078         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
22079         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22080         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
22081         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
22082         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
22083         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
22084         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22085         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
22086         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
22087         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
22088         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
22089         * MODULES.html.sh: Remove EOVERFLOW.
22090         * NEWS: Mention the change.
22091
22092 2008-09-13  Bruno Haible  <bruno@clisp.org>
22093
22094         * modules/errno-tests: New file.
22095         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
22096
22097         * lib/errno.in.h: New file.
22098         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
22099         * modules/errno: New file.
22100         * doc/posix-headers/errno.texi: Update documentation.
22101         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
22102
22103 2008-09-13  Bruno Haible  <bruno@clisp.org>
22104
22105         * tests/test-poll.c: Use #if for native Windows, rather than testing
22106         __MSVCRT__.
22107
22108 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22109             Bruno Haible  <bruno@clisp.org>
22110
22111         * lib/glob.c: Don't include <pwd.h> on native Windows.
22112         (WINDOWS32): New macro.
22113         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
22114
22115 2008-09-13  Bruno Haible  <bruno@clisp.org>
22116
22117         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
22118         (ETIMEDOUT): Remove macro.
22119         (glthread_cond_timedwait_multithreaded): New declaration.
22120         (glthread_cond_timedwait): Use it.
22121         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
22122         (glthread_cond_timedwait_multithreaded): New function.
22123
22124 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22125
22126         * modules/poll-tests: Do not check for io.h.
22127         * tests/test-poll.c: Check for __MSVCRT__ instead.
22128
22129 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22130
22131         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
22132         * modules/poll-tests: Add inet_pton, stdbool, sockets.
22133         * tests/test-poll.c: Use them.  Use _pipe on Windows.
22134
22135 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22136
22137         * modules/poll-tests: New.
22138         * tests/test-poll.c: New.
22139
22140 2008-09-12  Eric Blake  <ebb9@byu.net>
22141
22142         frexp: test for NetBSD failure on -0.0
22143         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
22144         not all, bugs from NetBSD 3.0 have been fixed.
22145         * doc/posix-functions/frexp.texi (frexp): Document bug.
22146         Reported by Thomas Klausner.
22147
22148         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
22149         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
22150         literal -0.0.
22151         Reported by Jonathan C. Patschke <jp@centtech.com>.
22152
22153 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22154
22155         * lib/glthread/cond.h: Use dummy implementation also if
22156         USE_WIN32_THREADS.
22157
22158 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22159
22160         * modules/fnmatch-posix (License): Change to LGPLv2+.
22161         * modules/fnmatch-gnu (License): Likewise.
22162
22163 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22164
22165         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
22166
22167 2008-09-11  Jim Meyering  <meyering@redhat.com>
22168
22169         * users.txt: Add gtk-vnc.
22170
22171 2008-09-08  Simon Josefsson  <simon@josefsson.org>
22172
22173         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
22174         rotate amounts.
22175
22176         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
22177         required for 16-bit and 8-bit rotates.
22178         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
22179         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
22180         UINT8_MAX instead of hard-coded constants.
22181         Suggested by Paul Eggert.
22182
22183 2008-09-07  Bruno Haible  <bruno@clisp.org>
22184
22185         * tests/test-striconveh.c (main): Check behaviour when converting from
22186         UTF-7.
22187
22188         Make striconveh work better with stateful encodings.
22189         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
22190         that iconv does not increment the inptr when returning -1/EINVAL.
22191
22192 2008-09-07  Bruno Haible  <bruno@clisp.org>
22193
22194         * build-aux/config.rpath: Update according to libtool-2.2.6.
22195         * build-aux/config.libpath: Likewise.
22196
22197 2008-09-06  Bruno Haible  <bruno@clisp.org>
22198
22199         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
22200         * lib/freadptr.c (freadptr): Likewise.
22201         * lib/freadseek.c (freadptrinc): Likewise.
22202         Reported by Simon Josefsson.
22203
22204 2008-09-06  Bruno Haible  <bruno@clisp.org>
22205
22206         * modules/freadptr (License): Change to LGPLv2+.
22207         * modules/freadseek (License): Likewise.
22208         Suggested by Eric Blake.
22209
22210         * modules/memchr2 (License): Change to LGPLv2+.
22211         Approved by Eric Blake.
22212
22213 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22214             Bruno Haible  <bruno@clisp.org>
22215
22216         Make gnulib-tool work with native 'sed' on AIX.
22217         * gnulib-tool (sed_noop): New variable.
22218         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
22219         func_add_or_update, func_create_testdir): Use it to initialize sed
22220         script variables.
22221         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
22222
22223 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
22224             Bruno Haible  <bruno@clisp.org>
22225
22226         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
22227         also works after #include directives.
22228
22229 2008-09-04  Ondřej Vašík  <ovasik@redhat.com>
22230
22231         getdate.y: reject an out-of-range timezone value
22232         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
22233         the range [-24...+24].  When specified with only one or two digits,
22234         * tests/test-getdate.c: Tests for the fix.
22235         * doc/getdate.texi: Document this change.
22236
22237 2008-09-03  Bruno Haible  <bruno@clisp.org>
22238
22239         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
22240
22241 2008-09-02  Simon Josefsson  <simon@josefsson.org>
22242
22243         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
22244         <bruce.korb@gmail.com> with ideas from Ben Pfaff
22245         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
22246         Blake <ebb9@byu.net>.
22247
22248         * tests/test-bitrotate.c: Add more test vectors.
22249
22250 2008-09-02  Eric Blake  <ebb9@byu.net>
22251
22252         vasnprintf-posix: handle large precision via %.*d
22253         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
22254         when handling it ourselves.
22255         * tests/test-vasnprintf-posix.c (test_function): Add test.
22256         * tests/test-snprintf-posix.h (test_function): Likewise.
22257         * tests/test-sprintf-posix.h (test_function): Likewise.
22258         * tests/test-vasprintf-posix.c (test_function): Likewise.
22259         Reported by Alain Guibert.
22260
22261 2008-09-01  Eric Blake  <ebb9@byu.net>
22262
22263         c-stack: make configure-time check more robust
22264         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
22265         successful sigaction call.
22266         Reported by Tom G. Christensen.
22267
22268 2008-09-01  Bruno Haible  <bruno@clisp.org>
22269
22270         New module 'findprog-lgpl'.
22271         * modules/findprog-lgpl: New file.
22272         * lib/findprog-lgpl.c: New file.
22273         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
22274         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
22275         to decide whether to use strdup or xstrdup, concatenated_filename or
22276         xconcatenated_filename.
22277
22278 2008-09-01  Bruno Haible  <bruno@clisp.org>
22279
22280         Split module 'concat-filename' into 'concat-filename' (LGPL) and
22281         'xconcat-filename' (GPL).
22282         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
22283         (License): Change to LGPLv2+.
22284         * modules/xconcat-filename: New file.
22285         * lib/concat-filename.h (concatenated_filename): Change specification.
22286         (xconcatenated_filename): New declaration.
22287         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
22288         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
22289         memory situations.
22290         * lib/xconcat-filename.c: New file.
22291         * NEWS: Mention the change.
22292         * lib/findprog.c: Include concat-filename.h, not filename.h.
22293         (find_in_path): Use xconcatenated_filename instead of
22294         concatenated_filename.
22295         * lib/javacomp.c: Include concat-filename.h, not filename.h.
22296         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
22297         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
22298         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
22299         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
22300         instead of concatenated_filename.
22301         * lib/javaexec.c: Include concat-filename.h, not filename.h.
22302         (execute_java_class): Use xconcatenated_filename instead of
22303         concatenated_filename.
22304         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
22305         * modules/javacomp (Depends-on): Likewise.
22306         * modules/javaexec (Depends-on): Likewise.
22307
22308 2008-09-01  Bruno Haible  <bruno@clisp.org>
22309
22310         Split module 'filename' into 'filename' and 'concat-filename'.
22311         * modules/filename: Keep only lib/filename.h.
22312         (License): Change to LGPLv2+.
22313         * modules/concat-filename: New file, extracted from modules/filename.
22314         * lib/filename.h (concatenated_filename): Remove declaration.
22315         * lib/concat-filename.h: New file, extracted from lib/filename.h.
22316         * lib/concat-filename.c: Include concat-filename.h.
22317         * NEWS: Mention the change.
22318
22319 2008-09-01  Simon Josefsson  <simon@josefsson.org>
22320
22321         * lib/bitrotate.h (rotl8, rotr8): Add.
22322
22323         * modules/bitrotate (configure.ac): Need
22324         AC_REQUIRE([AC_C_INLINE]).
22325         (Description): Mention stdint.h.  Reported by Bruno Haible
22326         <bruno@clisp.org>.
22327
22328         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
22329         Paolo Bonzini <bonzini@gnu.org>.
22330
22331 2008-08-31  Bruno Haible  <bruno@clisp.org>
22332
22333         Assume Solaris specific bi-arch conventions on Solaris systems.
22334         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
22335         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
22336         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
22337         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
22338         like acl_libdirstem.
22339         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
22340         acl_libdirstem.
22341         * NEWS: Mention the change.
22342         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
22343
22344 2008-08-31  Jim Meyering  <meyering@redhat.com>
22345
22346         * lib/strftime.h: Add comments describing the two added arguments.
22347
22348         remove duplicate #include directives
22349         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
22350         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
22351
22352 2008-08-31  Bruno Haible  <bruno@clisp.org>
22353
22354         New module 'sigpipe-die'.
22355         * modules/sigpipe-die: New file.
22356         * lib/sigpipe-die.h: New file.
22357         * lib/sigpipe-die.c: New file.
22358         * MODULES.html.sh (Signal handling): Add sigpipe-die.
22359
22360 2008-08-31  Bruno Haible  <bruno@clisp.org>
22361
22362         Don't override previously installed signal handlers.
22363         * lib/fatal-signal.c (saved_sigactions): New variable.
22364         (uninstall_handlers): Reset the signal to the saved handler, not
22365         to SIG_DFL (except when ignored).
22366         (install_handlers): Save the previous handlers.
22367
22368 2008-08-30  Bruno Haible  <bruno@clisp.org>
22369
22370         * gnulib-tool (func_reset_sigpipe): New function.
22371         (func_get_automake_snippet, func_modules_transitive_closure,
22372         func_import): Invoke it before a join command that reads from stdin,
22373         to avoid "echo: write error: Broken pipe" error messages on stderr.
22374         Reported by Sam Steingold <sds@gnu.org>.
22375
22376 2008-08-30  Bruno Haible  <bruno@clisp.org>
22377
22378         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
22379         Code copied from m4/open.m4.
22380         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
22381         access and the filename ends in a slash. Code copied from lib/open.c.
22382         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
22383         * tests/test-fopen.c (main): Check against bug with trailing slash.
22384
22385 2008-08-29  Bruno Haible  <bruno@clisp.org>
22386
22387         Avoid some "gcc -pedantic" warnings.
22388         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
22389         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
22390         * lib/dirent.in.h: Likewise.
22391         * lib/fcntl.in.h: Likewise.
22392         * lib/float.in.h: Likewise.
22393         * lib/iconv.in.h: Likewise.
22394         * lib/inttypes.in.h: Likewise.
22395         * lib/locale.in.h: Likewise.
22396         * lib/math.in.h: Likewise.
22397         * lib/netinet_in.in.h: Likewise.
22398         * lib/search.in.h: Likewise.
22399         * lib/signal.in.h: Likewise.
22400         * lib/stdarg.in.h: Likewise.
22401         * lib/stdint.in.h: Likewise.
22402         * lib/stdio.in.h: Likewise.
22403         * lib/stdlib.in.h: Likewise.
22404         * lib/string.in.h: Likewise.
22405         * lib/strings.in.h: Likewise.
22406         * lib/sys_select.in.h: Likewise.
22407         * lib/sys_socket.in.h: Likewise.
22408         * lib/sys_stat.in.h: Likewise.
22409         * lib/sys_time.in.h: Likewise.
22410         * lib/sysexits.in.h: Likewise.
22411         * lib/time.in.h: Likewise.
22412         * lib/unistd.in.h: Likewise.
22413         * lib/wchar.in.h: Likewise.
22414         * lib/wctype.in.h: Likewise.
22415         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
22416         * modules/fchdir (Makefile.am): Likewise.
22417         * modules/fcntl (Makefile.am): Likewise.
22418         * modules/float (Makefile.am): Likewise.
22419         * modules/iconv_open (Makefile.am): Likewise.
22420         * modules/inttypes (Makefile.am): Likewise.
22421         * modules/locale (Makefile.am): Likewise.
22422         * modules/math (Makefile.am): Likewise.
22423         * modules/netinet_in (Makefile.am): Likewise.
22424         * modules/search (Makefile.am): Likewise.
22425         * modules/signal (Makefile.am): Likewise.
22426         * modules/stdarg (Makefile.am): Likewise.
22427         * modules/stdint (Makefile.am): Likewise.
22428         * modules/stdio (Makefile.am): Likewise.
22429         * modules/stdlib (Makefile.am): Likewise.
22430         * modules/string (Makefile.am): Likewise.
22431         * modules/strings (Makefile.am): Likewise.
22432         * modules/sys_select (Makefile.am): Likewise.
22433         * modules/sys_socket (Makefile.am): Likewise.
22434         * modules/sys_stat (Makefile.am): Likewise.
22435         * modules/sys_time (Makefile.am): Likewise.
22436         * modules/sysexits (Makefile.am): Likewise.
22437         * modules/time (Makefile.am): Likewise.
22438         * modules/unistd (Makefile.am): Likewise.
22439         * modules/wchar (Makefile.am): Likewise.
22440         * modules/wctype (Makefile.am): Likewise.
22441         Reported by Reuben Thomas <rrt@sc3d.org>.
22442
22443 2008-08-29  Bruno Haible  <bruno@clisp.org>
22444
22445         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
22446         any more.
22447
22448 2008-08-29  Simon Josefsson  <simon@josefsson.org>
22449
22450         * MODULES.html.sh (Misc): Add bitrotate.
22451
22452         * modules/bitrotate: New file.
22453
22454         * lib/bitrotate.h: New file.
22455
22456         * modules/bitrotate-tests: New file.
22457
22458         * tests/test-bitrotate.c: New file.
22459
22460         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
22461         on the bitrotate module.
22462
22463         * lib/arctwo.c: Use new bitrotate module.
22464
22465 2008-08-29  Jim Meyering  <meyering@redhat.com>
22466
22467         bootstrap: merge changes from coreutils
22468         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
22469         of copied files.  Remove a kludge, now that this is fixed.
22470         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
22471         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
22472         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
22473
22474 2008-08-29  Bruno Haible  <bruno@clisp.org>
22475
22476         * MODULES.html.sh: Remove --cvs-urls option.
22477
22478 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
22479
22480         maint.mk: adjust to file name change
22481         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
22482
22483 2008-08-28  Jim Meyering  <meyering@redhat.com>
22484
22485         * modules/getndelim2 (License): Relicense to LGPLv2+.
22486         Approved by Richard Stallman for the version of 1995, and by
22487         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
22488
22489 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
22490
22491         * lib/getdelim.c (flockfile, funlockfile): Make all of them
22492         dummy if one is not available.  Do not touch them if
22493         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
22494         (getc_maybe_unlocked): New.
22495         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
22496
22497 2008-08-26  Eric Blake  <ebb9@byu.net>
22498
22499         doc/INSTALL: resync from autoconf
22500         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
22501         (INSTALL_PRELUDE): Delete; this is done more efficiently by
22502         moving...
22503         * install.texi [!autoconf]: ...here.  Resync from autoconf.
22504         * INSTALL: Regenerate.
22505         * INSTALL.ISO: New file.
22506         * INSTALL.UTF-8: Likewise.
22507
22508 2008-08-26  Jim Meyering  <meyering@redhat.com>
22509
22510         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
22511         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
22512         these definitions conditional, so that they may be overridden, too.
22513
22514 2008-08-26  Bruno Haible  <bruno@clisp.org>
22515
22516         Generate INSTALL file variants with prettier quotes.
22517         * doc/Makefile (INSTALL_PRELUDE): New macro.
22518         (INSTALL): Use it.
22519         (INSTALL.ISO, INSTALL.UTF-8): New rules.
22520
22521 2008-08-26  Bruno Haible  <bruno@clisp.org>
22522
22523         Run makeinfo in an English locale.
22524         * doc/Makefile (MAKEINFO): New variable.
22525
22526 2008-08-26  Bruno Haible  <bruno@clisp.org>
22527
22528         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
22529         Suggested by Eric Blake.
22530
22531 2008-08-25  Bruno Haible  <bruno@clisp.org>
22532
22533         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
22534
22535 2008-08-25  Eric Blake  <ebb9@byu.net>
22536
22537         c-stack: test that stack overflow can be caught
22538         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
22539         that platform allows handling stack overflow; at least OS/2 EMX
22540         has sigaltstack, but crashes before transferring control to
22541         handler on stack overflow.
22542         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
22543         check for HAVE_STACK_OVERFLOW_HANDLING.
22544         Reported by Elbert Pol.
22545
22546 2008-08-25  Bruno Haible  <bruno@clisp.org>
22547
22548         * doc/posix-functions/strftime.texi: Fix description of strftime
22549         module.
22550
22551 2008-08-24  Bruno Haible  <bruno@clisp.org>
22552
22553         * tests/uniwidth/test-uc_width2.c: New file.
22554         * tests/uniwidth/test-uc_width2.sh: New file.
22555         * modules/uniwidth/width-tests (Files): Add the new files.
22556         (TESTS): Add uniwidth/test-uc_width2.sh.
22557         (TESTS_ENVIRONMENT): New variable.
22558         (check_PROGRAMS): Add test-uc_width2.
22559         (test_uc_width2_SOURCES): New variable.
22560
22561         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
22562         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
22563         not 0x00AB.
22564         Reported by Alexander V. Lukyanov <lav@netis.ru>.
22565
22566 2008-08-22  Eric Blake  <ebb9@byu.net>
22567
22568         test-lock, test-tls: mention why a test is skipped
22569         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
22570         skipped.
22571         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
22572
22573         count-one-bits: relax license
22574         * modules/count-one-bits (License): Relicense to LGPLv2+.
22575         Suggested by Ludovic Courtès, approved by Ben Pfaff.
22576
22577 2008-08-22  Andreas Schwab  <schwab@suse.de>
22578
22579         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
22580         Remove spurious space in assignment.
22581
22582 2008-08-21  Simon Josefsson  <simon@josefsson.org>
22583
22584         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
22585         Paul Eggert <eggert@CS.UCLA.EDU>.
22586
22587 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
22588
22589         * modules/gettext: Add m4/threadlib.m4.
22590
22591 2008-08-19  Eric Blake  <ebb9@byu.net>
22592
22593         test-c-stack: fix compilation failure on FreeBSD 5.0
22594         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
22595         headers before <sys/resource.h>.
22596         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
22597         the bug.
22598         Reported by Nelson H. F. Beebe.
22599
22600         strverscmp: migrate from "strverscmp.h" to <string.h>
22601         * modules/string (Makefile.am): Add new hooks.
22602         * modules/strverscmp (Files): Remove strverscmp.h.
22603         (Depends-on): Add string.
22604         (configure.ac): Add indicator.
22605         (Include): Mention new header.
22606         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
22607         defaults.
22608         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
22609         results.
22610         * lib/strverscmp.h: Delete.
22611         * lib/string.in.h (strverscmp): Provide declaration, when needed.
22612         * tests/test-strverscmp.c (includes): Adjust client.
22613         * lib/check-version.c (includes): Likewise.
22614         * NEWS: Document the change.
22615
22616         strverscmp: add unit test
22617         * modules/strverscmp-tests: New file.
22618         * tests/test-strverscmp.c: Likewise.
22619
22620 2008-08-19  Simon Josefsson  <simon@josefsson.org>
22621
22622         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
22623         regarding Windows crypto stuff, from Mono.
22624
22625 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
22626
22627         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
22628         if present, for intel RND.  Return error on failures.
22629
22630 2008-08-18  Ben Pfaff  <blp@gnu.org>
22631
22632         gitlog-to-changelog: give better diagnostic for failed pipe-open
22633         * build-aux/gitlog-to-changelog: Improve error message: suggest
22634         that the version of Git may be too old.
22635
22636 2008-08-18  Simon Josefsson  <simon@josefsson.org>
22637
22638         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
22639         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
22640
22641 2008-08-18  Bruno Haible  <bruno@clisp.org>
22642
22643         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
22644         pthread_in_use().
22645
22646 2008-08-18  Bruno Haible  <bruno@clisp.org>
22647
22648         * lib/glthread/threadlib.c: Include <pthread.h>.
22649
22650 2008-08-18  Bruno Haible  <bruno@clisp.org>
22651
22652         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
22653         glthread_recursive_lock_* macros.
22654         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
22655         Fix syntax error.
22656
22657 2008-08-18  Bruno Haible  <bruno@clisp.org>
22658
22659         * lib/glthread/thread.c: Avoid forcing a context switch right after
22660         thread creation.
22661
22662 2008-08-17  Bruno Haible  <bruno@clisp.org>
22663
22664         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
22665         * lib/glthread/thread.h: Provide Win32 specific implementation.
22666         * modules/thread (Files): Add lib/glthread/thread.c.
22667         (Depends-on): Add lock.
22668         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
22669
22670 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22671
22672         New module 'yield'.
22673         * modules/yield: New file.
22674         * lib/glthread/yield.h: New file.
22675         * m4/yield.m4: New file.
22676         * MODULES.html.sh (Multithreading): Add yield.
22677
22678 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22679
22680         New module 'thread'.
22681         * modules/thread: New file.
22682         * lib/glthread/thread.h: New file.
22683         * m4/thread.m4: New file.
22684         * MODULES.html.sh (Multithreading): Add thread.
22685
22686 2008-08-17  Bruno Haible  <bruno@clisp.org>
22687
22688         * lib/glthread/lock.h: Include <stdlib.h> always.
22689         * lib/glthread/tls.h: Likewise.
22690         * lib/glthread/cond.h: Likewise.
22691
22692 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22693
22694         New module 'cond'.
22695         * modules/cond: New file.
22696         * lib/glthread/cond.h: New file.
22697         * lib/glthread/cond.c: New file.
22698         * m4/cond.m4: New file.
22699         * MODULES.html.sh (Multithreading): Add cond.
22700
22701 2008-08-16  Eric Blake  <ebb9@byu.net>
22702
22703         c-stack: fix regression on Irix 5.3 from 2008-06-21
22704         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
22705         sa_sigaction...
22706         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
22707         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
22708         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
22709         * modules/signal (Makefile.am): Use the value.
22710         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
22711         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
22712         * doc/posix-headers/signal.texi (signal.h): Document this
22713         portability issue.
22714         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
22715         Reported by Tom G. Christensen.
22716
22717 2008-08-17  Bruno Haible  <bruno@clisp.org>
22718
22719         New module 'threadlib'.
22720         * modules/threadlib: New file.
22721         * lib/glthread/threadlib.c: New file, extracted from
22722         lib/glthread/lock.c.
22723         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
22724         functions.
22725         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
22726         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
22727         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
22728         macros.
22729         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
22730         (gl_DISABLE_THREADS): Remove macro.
22731         * modules/lock (Files): Remove build-aux/config.rpath.
22732         (Depends-on): Remove havelib. Add threadlib.
22733         (configure.ac-early): Remove section.
22734         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
22735         * modules/tls (Depends-on): Remove lock. Add threadlib.
22736         (Link): New section, copied from threadlib.
22737         * MODULES.html.sh (Multithreading): Add threadlib.
22738
22739 2008-08-14  Bruno Haible  <bruno@clisp.org>
22740
22741         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
22742         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
22743         glthread_rwlock_unlock, glthread_rwlock_destroy,
22744         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
22745         glthread_recursive_lock_destroy): Define as macros always.
22746         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
22747         glthread_lock_lock.
22748         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
22749         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
22750         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
22751         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
22752         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
22753         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
22754         (glthread_recursive_lock_lock_func): Renamed from
22755         glthread_recursive_lock_lock.
22756         (glthread_recursive_lock_unlock_func): Renamed from
22757         glthread_recursive_lock_unlock.
22758         (glthread_recursive_lock_destroy_func): Renamed from
22759         glthread_recursive_lock_destroy.
22760
22761 2008-08-14  Bruno Haible  <bruno@clisp.org>
22762
22763         * lib/glthread/lock.h: Renamed from lib/lock.h.
22764         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
22765         * lib/glthread/tls.h: Renamed from lib/tls.h.
22766         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
22767         * lib/fstrcmp.c: Update includes.
22768         * lib/strsignal.c: Update includes.
22769         * modules/lock (Files, Makefile.am): Update.
22770         (Include): Change to "glthread/lock.h".
22771         * modules/tls (Files, Makefile.am): Update.
22772         (Include): Change to "glthread/tls.h".
22773         * tests/test-lock.c: Update includes.
22774         * tests/test-tls.c: Update includes.
22775         * NEWS: Mention the renamed header files.
22776
22777 2008-08-11  Jim Meyering  <meyering@redhat.com>
22778
22779         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
22780
22781 2008-08-11  Eric Blake  <ebb9@byu.net>
22782
22783         test-c-stack: avoid C99-ism
22784         * tests/test-c-stack.c (main): Fix whitespace, move declaration
22785         before statement.
22786         Reported by Alain Guibert.
22787
22788 2008-08-10  Jim Meyering  <meyering@redhat.com>
22789
22790         ensure that return value of uinttostr et al are not ignored
22791         * lib/inttostr.h (__GNUC_PREREQ): Define.
22792         (__attribute_warn_unused_result__): Define.
22793         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
22794
22795 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
22796
22797         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
22798         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
22799
22800 2008-08-07  Jim Meyering  <meyering@redhat.com>
22801
22802         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
22803
22804         * modules/mkstemp (License): Relicense under LGPLv2+.
22805         * modules/tempname (License): Likewise.
22806
22807 2008-08-06  Bruno Haible  <bruno@clisp.org>
22808
22809         * lib/poll.c (poll): Further micro-optimization.
22810
22811 2008-08-06  Jim Meyering  <meyering@redhat.com>
22812
22813         inet_pton.c: use locale-independent tolower
22814         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
22815         (inet_pton6): Use c_tolower rather than tolower.
22816         * modules/inet_pton (Depends-on): Add c-ctype.
22817
22818 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
22819
22820         * lib/poll.c (poll): Avoid division when timeout is 0, cache
22821         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
22822
22823 2008-08-06  Jim Meyering  <meyering@redhat.com>
22824
22825         * modules/inet_pton (License): Relicense under LGPLv2+.
22826
22827 2008-08-03  Bruno Haible  <bruno@clisp.org>
22828
22829         Additional non-aborting API for lock and tls.
22830         * lib/lock.h: Include <errno.h>.
22831         (glthread_lock_init): New macro/function.
22832         (gl_lock_init): Define as wrapper around glthread_lock_init.
22833         (glthread_lock_lock): New macro/function.
22834         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
22835         (glthread_lock_unlock): New macro/function.
22836         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
22837         (glthread_lock_destroy): New macro/function.
22838         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
22839         (glthread_rwlock_init): New macro/function.
22840         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
22841         (glthread_rwlock_rdlock): New macro/function.
22842         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
22843         (glthread_rwlock_wrlock): New macro/function.
22844         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
22845         (glthread_rwlock_unlock): New macro/function.
22846         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
22847         (glthread_rwlock_destroy): New macro/function.
22848         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
22849         (glthread_recursive_lock_init): New macro/function.
22850         (gl_recursive_lock_init): Define as wrapper around
22851         glthread_recursive_lock_init.
22852         (glthread_recursive_lock_lock): New macro/function.
22853         (gl_recursive_lock_lock): Define as wrapper around
22854         glthread_recursive_lock_lock.
22855         (glthread_recursive_lock_unlock): New macro/function.
22856         (gl_recursive_lock_unlock): Define as wrapper around
22857         glthread_recursive_lock_unlock.
22858         (glthread_recursive_lock_destroy): New macro/function.
22859         (gl_recursive_lock_destroy): Define as wrapper around
22860         glthread_recursive_lock_destroy.
22861         (glthread_once): New macro/function.
22862         (gl_once): Define as wrapper around glthread_once.
22863         Update function declarations.
22864         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
22865         glthread_rwlock_init. Return error code.
22866         (glthread_rwlock_rdlock_multithreaded): Renamed from
22867         glthread_rwlock_rdlock. Return error code.
22868         (glthread_rwlock_wrlock_multithreaded): Renamed from
22869         glthread_rwlock_wrlock. Return error code.
22870         (glthread_rwlock_unlock_multithreaded): Renamed from
22871         glthread_rwlock_unlock. Return error code.
22872         (glthread_rwlock_destroy_multithreaded): Renamed from
22873         glthread_rwlock_destroy. Return error code.
22874         (glthread_recursive_lock_init_multithreaded): Renamed from
22875         glthread_recursive_lock_init. Return error code.
22876         (glthread_recursive_lock_lock_multithreaded): Renamed from
22877         glthread_recursive_lock_lock. Return error code.
22878         (glthread_recursive_lock_unlock_multithreaded): Renamed from
22879         glthread_recursive_lock_unlock. Return error code.
22880         (glthread_recursive_lock_destroy_multithreaded): Renamed from
22881         glthread_recursive_lock_destroy. Return error code.
22882         (glthread_once_call): Make static.
22883         (glthread_once_multithreaded): Renamed from glthread_once.
22884         * lib/tls.h: Include <errno.h>.
22885         (glthread_tls_key_init): New macro/function.
22886         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
22887         (glthread_tls_set): New macro/function.
22888         (gl_tls_set): Define as wrapper around glthread_tls_set.
22889         (glthread_tls_key_destroy): New macro/function.
22890         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
22891         Update function declarations.
22892         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
22893         glthread_tls_get.
22894         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
22895
22896 2008-08-04  Eric Blake  <ebb9@byu.net>
22897
22898         gnumakefile: use space, not TAB, outside of targets
22899         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
22900
22901 2008-08-02  Jim Meyering  <meyering@redhat.com>
22902
22903         getdate.y: avoid locale-dependent date parsing failure
22904         In Turkish locales, getdate would fail to recognize keywords
22905         containing a lowercase "i".  The solution is not to rely on
22906         locale-sensitive case-conversion.
22907         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
22908         (lookup_word): Use c_toupper in place of toupper.
22909         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
22910         Reported by Vefa Bicakci <bicave@superonline.com> in
22911         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
22912         * modules/getdate (Depends-on): Add c-ctype.
22913
22914 2008-08-02  Bruno Haible  <bruno@clisp.org>
22915
22916         * gnulib-tool (func_import): When updating or creating a .gitignore
22917         file, prepend each added line with a slash, and ignore leading slashes
22918         from the existing lines.
22919         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
22920
22921 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22922
22923         Portability fix for GNU make 3.79.1.
22924         * top/GNUmakefile: Avoid 'else COND', which older GNU make
22925         versions do not understand.
22926
22927 2008-08-01  Bruno Haible  <bruno@clisp.org>
22928
22929         Work around bug of HP-UX 10.20 cc with -0.0 literal.
22930         * tests/test-isnanf.h (zero): New variable.
22931         (main): Avoid literal -0.0f.
22932         * tests/test-isnand.h (zero): New variable.
22933         (main): Avoid literal -0.0.
22934         * tests/test-isnanl.h (zero): New variable.
22935         (main): Avoid literal -0.0L.
22936         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
22937         (test_float, test_double, test_long_double): Avoid literals -0.0f,
22938         -0.0, -0.0L.
22939         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
22940         (test_signbitd): Avoid literal -0.0.
22941         (test_signbitl): Avoid literal -0.0L.
22942         * tests/test-ceilf1.c (zero): New variable.
22943         (main): Avoid literal -0.0f.
22944         * tests/test-ceill.c (zero): New variable.
22945         (main): Avoid literal -0.0L.
22946         * tests/test-floorf1.c (zero): New variable.
22947         (main): Avoid literal -0.0f.
22948         * tests/test-floorl.c (zero): New variable.
22949         (main): Avoid literal -0.0L.
22950         * tests/test-roundf1.c (zero): New variable.
22951         (main): Avoid literal -0.0f.
22952         * tests/test-round1.c (zero): New variable.
22953         (main): Avoid literal -0.0.
22954         * tests/test-roundl.c (zero): New variable.
22955         (main): Avoid literal -0.0L.
22956         * tests/test-truncf1.c (zero): New variable.
22957         (main): Avoid literal -0.0f.
22958         * tests/test-trunc1.c (zero): New variable.
22959         (main): Avoid literal -0.0.
22960         * tests/test-truncl.c (zero): New variable.
22961         (main): Avoid literal -0.0L.
22962         * tests/test-frexp.c (zero): New variable.
22963         (main): Avoid literal -0.0.
22964         * tests/test-frexpl.c (zero): New variable.
22965         (main): Avoid literal -0.0L.
22966         * tests/test-ldexpl.c (zero): New variable.
22967         (main): Avoid literal -0.0L.
22968         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
22969         (zerod, zerol): New variables.
22970         (test_function): Avoid literals -0.0, -0.0L.
22971         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
22972         (zerod, zerol): New variables.
22973         (test_function): Avoid literals -0.0, -0.0L.
22974         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
22975         (zerod, zerol): New variables.
22976         (test_function): Avoid literals -0.0, -0.0L.
22977         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
22978         (zerod, zerol): New variables.
22979         (test_function): Avoid literals -0.0, -0.0L.
22980         * tests/test-strtod.c (zero): New variable.
22981         (main): Avoid literal -0.0.
22982         Reported by Jonathan C. Patschke <jp@centtech.com>.
22983
22984 2008-07-31  Jim Meyering  <meyering@redhat.com>
22985
22986         sha256.h: correct definition of SHA224_DIGEST_SIZE
22987         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
22988         Reported by Paulie Pena IV <paulie4@gmail.com>.
22989         Define as 224 / 8, rather than as a literal.
22990         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
22991         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
22992         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
22993
22994 2008-07-31  Bruno Haible  <bruno@clisp.org>
22995
22996         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
22997         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
22998         Reported by Jonathan Patschke <jp@centtech.com>.
22999
23000 2008-07-31  Bruno Haible  <bruno@clisp.org>
23001
23002         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
23003         Reported by Paolo Bonzini <bonzini@gnu.org>.
23004
23005 2008-07-30  Eric Blake  <ebb9@byu.net>
23006
23007         test-strtod: allow compilation without -lm
23008         * tests/test-strtod.c (main): Avoid link dependence on fabs.
23009         Reported by Dennis Clarke <blastwave@gmail.com>.
23010
23011 2008-07-28  Jim Meyering  <meyering@redhat.com>
23012
23013         bootstrap: work also when there are no .po files in po/
23014         * build-aux/bootstrap (update_po_files): Complete the change
23015         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
23016
23017 2008-07-27  Jim Meyering  <meyering@redhat.com>
23018
23019         * users.txt: Add zile.
23020
23021 2008-07-26  Ben Pfaff  <blp@gnu.org>
23022
23023         Add missing dependencies on new m4/exponent[fdl].m4 files.
23024         * modules/isnanf-nolibm: Add m4/exponentf.m4.
23025         * modules/isnand-nolibm: Add m4/exponentd.m4.
23026         * modules/isnanl-nolibm: Add m4/exponentl.m4.
23027         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
23028         m4/isnan[fdl].m4, because the macros actually used moved.
23029         Reported by Jim Meyering.
23030
23031 2008-07-14  Ben Pfaff  <blp@gnu.org>
23032
23033         Add isinf module.
23034         * lib/isinf.c: New file.
23035         * lib/math.in.h: Define isinf macro if we have decided to replace
23036         it.
23037         * m4/isinf.m4: New file.
23038         * m4/math_h.m4: Initialize and substitute variables for isinf
23039         module.
23040         * modules/isinf: New file.
23041         * modules/isinf-tests: New file.
23042         * modules/math: Add substitutions for new module.
23043         * tests/test-isinf.c: New file.
23044         * doc/posix-functions/isinf.texi: Mention new module.
23045         * MODULES.html.sh: Mention new module.
23046
23047 2008-07-14  Ben Pfaff  <blp@gnu.org>
23048
23049         Factor out some macros for use by additional modules.
23050         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
23051         exponentf.m4.
23052         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
23053         exponentd.m4.
23054         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
23055         file exponentl.m4.
23056         * m4/exponentf.m4: New file.
23057         * m4/exponentd.m4: New file.
23058         * m4/exponentl.m4: New file.
23059         * modules/isnanf: Use new file m4/exponentf.m4.
23060         * modules/isnand: Use new file m4/exponentd.m4.
23061         * modules/isnanl: Use new file m4/exponentl.m4.
23062
23063 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
23064
23065         mktime.c: normalize tp->tm_isdst value to -1/0/1.
23066         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
23067         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
23068         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
23069
23070         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
23071         readlink on platforms without PATH_MAX.
23072
23073 2008-07-21  Eric Blake  <ebb9@byu.net>
23074
23075         Warn, not fail, on stale version.
23076         * top/GNUmakefile (_curr-ver): Tone down previous patch.
23077
23078         Don't allow installation with stale devel version number.
23079         * top/GNUmakefile (_is-install-target): New macro.
23080         (_curr-ver): Forbid installation with stale version number.
23081
23082 2008-07-20  Bruno Haible  <bruno@clisp.org>
23083
23084         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
23085         TESTS_ENVIRONMENT.
23086         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
23087
23088 2008-07-20  Bruno Haible  <bruno@clisp.org>
23089
23090         * lib/c-stack.h (c_stack_action): Add documentation.
23091         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
23092
23093 2008-07-20  Bruno Haible  <bruno@clisp.org>
23094
23095         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
23096         * modules/readlink (License): Likewise.
23097
23098 2008-07-17  Eric Blake  <ebb9@byu.net>
23099
23100         * modules/c-stack (Link): Fix typo.
23101
23102         Make c-stack use libsigsegv, when available.
23103         * modules/c-stack (Depends-on): Add libsigsegv.
23104         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
23105         needed.
23106         * lib/c-stack.c (SIGSTKSZ): Define fallback.
23107         (segv_handler, overflow_handler, c_stack_action)
23108         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
23109         implementation when libsigsegv is available, but only when using
23110         the library is necessary.
23111         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
23112         comment, explaining why XSI check fails on Linux.
23113         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
23114         * tests/test-c-stack2.sh: Tweak skip message.
23115         * NEWS: Document new link-time requirements.
23116
23117 2008-07-16  Eric Blake  <ebb9@byu.net>
23118
23119         c-stack: Expose false positives when not using libsigsegv.
23120         * modules/c-stack-tests (Files): Expand test.
23121         * tests/test-c-stack.c (main): Add means to conditionally trigger
23122         non-overflow SIGSEGV.
23123         * tests/test-c-stack2.sh: New file.
23124
23125 2008-07-14  Bruno Haible  <bruno@clisp.org>
23126
23127         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
23128         Reported by Eric Blake.
23129
23130 2008-07-14  Sam Steingold  <sds@gnu.org>
23131             Bruno Haible  <bruno@clisp.org>
23132
23133         New module libsigsegv.
23134         * modules/libsigsegv: New file.
23135         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
23136         modifications.
23137         * MODULES.html.sh (Signal handling): New section.
23138
23139 2008-07-14  Bruno Haible  <bruno@clisp.org>
23140
23141         * modules/unictype/ctype-* (Description): Add the word "function".
23142         Improves the resulting doc in MODULES.html.
23143
23144 2008-07-12  Ben Pfaff  <blp@gnu.org>
23145
23146         Add longlong module.
23147         * modules/longlong: New file.
23148
23149 2008-07-12  Bruno Haible  <bruno@clisp.org>
23150
23151         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
23152         to empty.
23153
23154 2008-07-10  Ben Pfaff  <blp@gnu.org>
23155
23156         Add isnan module.
23157         * doc/posix-functions/isnan.texi: Mention new module.
23158         * lib/math.in.h: Define isnan macro if we have decided to replace
23159         it.
23160         * m4/isnan.m4: New file.
23161         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
23162         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
23163         also.
23164         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
23165         redundancy.
23166         * m4/math_h.m4: Initialize and substitute variables for isnan
23167         module.
23168         * modules/isnan: New file.
23169         * modules/isnan-tests: New file.
23170         * modules/math: Add substitutions for new module.
23171         * tests/test-isnan.c: New file.
23172         * MODULES.html.sh: Mention new module.
23173
23174 2008-07-10  Ben Pfaff  <blp@gnu.org>
23175
23176         Add isnanf module.
23177         * lib/isnanf.m4: New file.
23178         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
23179         (gl_HAVE_ISNANF_IN_LIBM): New macro.
23180         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
23181         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
23182         * modules/isnanf: New file.
23183         * modules/isnanf-tests: New file.
23184         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
23185         files.
23186         * tests/test-isnanf-nolibm.c: factored most of its contents into
23187         new file tests/test-isnanf.h.
23188         * tests/test-isnanf.h: New file.
23189         * tests/test-isnanf.c: New file.
23190         * MODULES.html.sh: Mention new module.
23191         * doc/glibc-functions/isnanf.texi: Mention new module.
23192
23193 2008-07-10  Ben Pfaff  <blp@gnu.org>
23194
23195         Add isnand module.
23196         * lib/isnand.h: New file.
23197         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
23198         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
23199         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
23200         functionality also.
23201         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
23202         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
23203         (gl_HAVE_ISNAND_IN_LIBM): New macro.
23204         * modules/isnand: New file.
23205         * modules/isnand-tests: New file.
23206         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
23207         files.
23208         * tests/test-isnand-nolibm.c: factored most of its contents into
23209         new file tests/test-isnand.h.
23210         * tests/test-isnand.h: New file.
23211         * tests/test-isnand.c: New file.
23212         * MODULES.html.sh: Mention new module.
23213
23214 2008-07-10  Ben Pfaff  <blp@gnu.org>
23215
23216         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
23217         * lib/isnand.h: Rename lib/isnand-nolibm.h.
23218         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
23219         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
23220         * modules/isnanf-nolibm: Update references to renamed files.
23221         * modules/isnand-nolibm: Likewise.
23222         * modules/isnanf-nolibm-tests: Likewise.
23223         * modules/isnand-nolibm-tests: Likewise.
23224         * lib/frexp.c: Likewise.
23225         * lib/isfinite.c: Likewise.
23226         * lib/signbitd.c: Likewise.
23227         * lib/signbitf.c: Likewise.
23228         * lib/vasnprintf.c: Likewise.
23229         * tests/test-ceilf1.c: Likewise.
23230         * tests/test-ceilf2.c: Likewise.
23231         * tests/test-floorf1.c: Likewise.
23232         * tests/test-floorf2.c: Likewise.
23233         * tests/test-frexp.c: Likewise.
23234         * tests/test-round1.c: Likewise.
23235         * tests/test-round2.c: Likewise.
23236         * tests/test-roundf1.c: Likewise.
23237         * tests/test-strtod.c: Likewise.
23238         * tests/test-trunc1.c: Likewise.
23239         * tests/test-trunc2.c: Likewise.
23240         * tests/test-truncf1.c: Likewise.
23241         * tests/test-truncf2.c: Likewise.
23242         * NEWS: Mention the renamed header files.
23243
23244 2008-07-11  Jim Meyering  <meyering@redhat.com>
23245
23246         vc-list-files: make the last-resort awk code more portable
23247         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
23248         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
23249         does not support it.
23250
23251 2008-07-10  Eric Blake  <ebb9@byu.net>
23252
23253         Work with tar's bootstrap.
23254         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
23255         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
23256         an m4 comment.
23257
23258 2008-07-09  Jim Meyering  <meyering@redhat.com>
23259
23260         posix-shell.m4: fix typo that made this test malfunction
23261         * m4/posix-shell.m4: Remove capitalization in variable name.
23262
23263 2008-07-08  Bruno Haible  <bruno@clisp.org>
23264
23265         * m4/onceonly.m4: Update comments.
23266         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23267
23268 2008-07-04  Jim Meyering  <meyering@redhat.com>
23269
23270         * users.txt: Add vc-dwim.
23271         (bison, coreutils): Use the gitweb URL.
23272
23273 2008-07-03  Jim Meyering  <meyering@redhat.com>
23274
23275         * users.txt: Add libffcall.  From Sam Steingold.
23276
23277 2008-07-03  Ondřej Vašík  <ovasik@redhat.com>
23278
23279         getdate.y: do not ignore TZ with relative day, month or year offset
23280         * lib/getdate.y (get_date): Move the tz-handling block to follow the
23281         relative-date-handling, since otherwise, the latter would clobber the
23282         sole output (an updated Start value) of the tz-handling block.
23283         * tests/test-getdate.c: Tests for the fix
23284
23285 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23286
23287         Recognize 'foo_LIBRARIES += libgnu.a'.
23288         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
23289         makefile snippet has already specified an installation location,
23290         also using '+='.
23291
23292 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
23293
23294         getdate.y: factor out common actions
23295         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
23296         Use them in place of open-coded actions.
23297
23298 2008-07-01  Simon Josefsson  <simon@josefsson.org>
23299
23300         Add self-test for getdate module.
23301         * modules/getdate-tests: New file.
23302         * tests/test-getdate.c: New file.
23303
23304 2008-06-29  Bruno Haible  <bruno@clisp.org>
23305
23306         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
23307         .gitignore.
23308         Reported by Sylvain Beucler <beuc@beuc.net>.
23309
23310 2008-06-29  Bruno Haible  <bruno@clisp.org>
23311
23312         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
23313         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
23314
23315 2008-06-29  Bruno Haible  <bruno@clisp.org>
23316
23317         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
23318         EXTRA_DIST.
23319         Reported by Sylvain Beucler <beuc@beuc.net>.
23320
23321 2008-06-26  Jim Meyering  <meyering@redhat.com>
23322
23323         make several modules depend on the "open" module
23324         This provides slightly increased consistency when opening-for-write
23325         the name of a non-directory spelled with a trailing slash.
23326         * modules/chdir-safer: Likewise.
23327         * modules/chown: Likewise.
23328         * modules/clean-temp: Likewise.
23329         * modules/copy-file: Likewise.
23330         * modules/fchdir: Likewise.
23331         * modules/fcntl-safer: Likewise.
23332         * modules/pipe: Likewise.
23333         * modules/utime: Likewise.
23334         Prompted by Eric Blake and Bruno Haible.
23335
23336 2008-06-24  Andreas Schwab  <schwab@suse.de>
23337
23338         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
23339         literals can be used as initializers for global variables.
23340
23341 2008-06-23  Eric Blake  <ebb9@byu.net>
23342
23343         Make gnulib-cache.m4 easier to diff.
23344         * gnulib-tool (func_import): Allow newlines when reading cached
23345         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
23346
23347 2008-06-23  Bruno Haible  <bruno@clisp.org>
23348
23349         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
23350         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
23351         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
23352         m4/signalblocking.m4.
23353         (gl_PREREQ_SIGACTION): Don't invoke it.
23354         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
23355         gl_PREREQ_SIG_HANDLER_H.
23356         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
23357         Don't check for sigaction here.
23358
23359 2008-06-23  Bruno Haible  <bruno@clisp.org>
23360
23361         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
23362         (install_handlers): Don't set the SA_RESETHAND flag.
23363
23364 2008-06-23  Bruno Haible  <bruno@clisp.org>
23365
23366         * m4/sigaction.m4: Comment fixes.
23367         * lib/signal.in.h: Likewise.
23368
23369 2008-06-23  Eric Blake  <ebb9@byu.net>
23370
23371         Fix typo.
23372         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
23373
23374         Avoid SA_ namespace.
23375         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
23376         Reported by Ralf Wildenhues.
23377
23378         Avoid test failure due to SA_RESTORER.
23379         * tests/test-sigaction.c (SA_MASK): New macro.
23380         (main): Avoid failing due to extension flags being set.
23381         Reported by Jim Meyering.
23382
23383         Revert use of sig-handler.h in sigprocmask.c.
23384         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
23385         it requires the existence of struct sigaction.
23386         * lib/sigprocmask.c (handler_t): Restore typedef.
23387         (rpl_signal, old_handlers): Use local type.
23388
23389 2008-06-22  Bruno Haible  <bruno@clisp.org>
23390
23391         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
23392         conditionally.
23393         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23394
23395 2008-06-22  Bruno Haible  <bruno@clisp.org>
23396
23397         * doc/posix-functions/siginterrupt.texi: Move note.
23398
23399         * lib/signal.in.h (SA_RESTART): New macro.
23400         * lib/sigaction.c: Update comment.
23401
23402         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
23403
23404         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
23405         (gl_PREREQ_SIGPROCMASK): Invoke it.
23406         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
23407
23408         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
23409
23410         * lib/sigprocmask.c: Update a comment.
23411
23412 2008-06-21  Eric Blake  <ebb9@byu.net>
23413
23414         Use sigaction module rather than signal().
23415         * modules/c-stack (Depends-on): Add sigaction.
23416         * modules/fatal-signal (Depends-on): Likewise.
23417         * modules/nanosleep (Depends-on): Likewise.
23418         * modules/sigprocmask (Files): Add sig-handler.h.
23419         * modules/sigaction (Files): Likewise.
23420         * lib/sig-handler.h (get_handler): New file, suggested by Paul
23421         Eggert.
23422         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
23423         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
23424         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
23425         (init_fatal_signals): Likewise.
23426         * lib/nanosleep.c (rpl_nanosleep): Likewise.
23427         (siginterrupt): Delete fallback.
23428         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
23429         instead.
23430         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
23431         siginterrupt.
23432
23433         New module sigaction, for mingw.
23434         * modules/sigaction: New module...
23435         * modules/sigaction-tests: ...and its test.
23436         * m4/sigaction.m4: New file.
23437         * lib/sigaction.c: Likewise.
23438         * tests/test-sigaction.c: Likewise.
23439         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
23440         * modules/signal (Makefile.am): Likewise.
23441         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
23442         needed.
23443         * doc/posix-headers/signal.texi (signal.h): Mention provided
23444         types.
23445         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
23446         that sigaction is preferable.
23447         * doc/posix-functions/sigaction.texi (sigaction): Mention new
23448         module.
23449         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23450         sigaction.
23451
23452         Improve robustness of sigprocmask by overriding signal.
23453         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
23454         is in use.
23455         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
23456         (SIGKILL, SIGSTOP): Provide fallbacks.
23457         (rpl_signal): Implement.
23458         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
23459         signal can be called inside handlers.
23460
23461         Fix nanosleep module on mingw.
23462         * modules/nanosleep (Depends-on): Add sys_select.
23463         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
23464
23465         Fix licensing of sigprocmask.
23466         * modules/raise (License): Relicense as LGPL.
23467
23468 2008-06-21  Bruno Haible  <bruno@clisp.org>
23469
23470         * lib/propername.c (proper_name_utf8): Don't use the transliterated
23471         result if it contains question marks.
23472         Reported by Michael Geng <linux@michaelgeng.de>.
23473
23474 2008-06-19  Bruno Haible  <bruno@clisp.org>
23475
23476         Fix CVS-ism.
23477         * doc/gnulib.texi: Include updated-stamp.texi.
23478         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
23479         (updated-stamp.texi): New rule.
23480         (gnulib.info): Depend on it.
23481         * doc/.gitignore: Add updated-stamp.texi.
23482         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
23483
23484 2008-06-19  Bruno Haible  <bruno@clisp.org>
23485
23486         * doc/Makefile (gnulib.info): Update and simplify dependencies.
23487         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
23488
23489 2008-06-19  Eric Blake  <ebb9@byu.net>
23490
23491         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
23492         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
23493         Reported by Stepan Kasal.
23494
23495 2008-06-18  Bruno Haible  <bruno@clisp.org>
23496
23497         * lib/fatal-signal.c (init_fatal_signals): Add comment.
23498         Reported by Eric Blake.
23499
23500 2008-06-18  Eric Blake  <ebb9@byu.net>
23501
23502         Work around cygwin 1.5.25 strsignal bug.
23503         * tests/test-strsignal.c: Allow for const char *.
23504         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
23505
23506 2008-06-18  Simon Josefsson  <simon@josefsson.org>
23507
23508         * users.txt: Update URL to article and add author/date
23509         information.
23510
23511 2008-06-17  Bruno Haible  <bruno@clisp.org>
23512
23513         New macro gl_DISABLE_THREADS.
23514         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
23515         if the user did not pass --enable-threads or --disable-threads option.
23516         (gl_DISABLE_THREADS): New macro.
23517         Reported by Eric Blake <ebb9@byu.net>.
23518
23519 2008-06-17  Bruno Haible  <bruno@clisp.org>
23520
23521         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
23522         when the macro ignores it.
23523         Based on a patch by Eric Blake <ebb9@byu.net>.
23524
23525 2008-06-17  Bruno Haible  <bruno@clisp.org>
23526
23527         * modules/tls (License): Change to LGPLv2+.
23528         Reported by Eric Blake.
23529
23530 2008-06-17  Eric Blake  <ebb9@byu.net>
23531
23532         Simplify c-stack prerequisites.
23533         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
23534         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
23535         no longer requires <ucontext.h> to exist.  Optimize setrlimit
23536         check.
23537         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
23538         <sys/resource.h>.
23539
23540         Move c-stack test into testsuite.
23541         * modules/c-stack-tests: New file.
23542         * lib/c-stack.c [DEBUG]: Move test program...
23543         * tests/test-c-stack.c: ...into this new file.  Skip rather than
23544         fail test if sigaltstack is lacking.
23545         * tests/test-c-stack.sh: New driver file.
23546
23547 2008-06-16  Eric Blake  <ebb9@byu.net>
23548
23549         Use raise module consistently.
23550         * modules/fatal-signal (Depends-on): Add raise.
23551         * modules/sigprocmask (Depends-on): Likewise.
23552         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
23553         * lib/sigprocmask.c (sigprocmask): Likewise.
23554         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
23555         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
23556
23557         Fix compliance bug in sigpending.
23558         * lib/sigprocmask.c (sigpending): Return pending array via
23559         parameter, not return value.
23560
23561 2008-06-14  Eric Blake  <ebb9@byu.net>
23562
23563         Improve obstack-printf test code.
23564         * tests/test-obstack-printf.c (test_function): Fix comment, and
23565         simplify usage of obstack_* in macros.  Add a test for coverage.
23566         Reported by Bruno Haible.
23567
23568 2008-06-14  Bruno Haible  <bruno@clisp.org>
23569
23570         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
23571         array size as a constant, not as a const variable.
23572         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
23573         AC_USE_SYSTEM_EXTENSIONS.
23574         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
23575         Test whether the obstack_printf function actually exists.
23576         * modules/obstack-printf (Depends-on): Add extensions.
23577         (Include): Remove obstack.h.
23578         * modules/obstack-printf-posix (Depends-on): Add extensions.
23579         (Include): Remove obstack.h.
23580
23581 2008-06-13  Eric Blake  <ebb9@byu.net>
23582
23583         Add obstack-printf and obstack-printf-posix modules.
23584         * modules/obstack-printf: New file.
23585         * modules/obstack-printf-posix: Likewise.
23586         * MODULES.html.sh (Misc): Mention them.
23587         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
23588         Likewise.
23589         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
23590         Likewise.
23591         * modules/stdio (Makefile.am): Accomodate new modules.
23592         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
23593         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
23594         Declare.
23595         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
23596         functions.
23597         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
23598         (gl_REPLACE_OBSTACK_PRINTF): New macros
23599         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
23600         * tests/test-obstack-printf.c: New file.
23601         * modules/obstack-printf-tests: Likewise.
23602         * modules/obstack-printf-posix-tests: Likewise.
23603
23604 2008-06-11  Bruno Haible  <bruno@clisp.org>
23605
23606         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
23607         * lib/open.c: Include errno.h.
23608         (open): Fail when attempting to write to a file that has a trailing
23609         slash.
23610         * tests/test-open.c (main): Test against trailing slash bug.
23611         * doc/posix-functions/open.texi: Mention the trailing slash bug.
23612
23613 2008-06-10  Bruno Haible  <bruno@clisp.org>
23614
23615         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
23616         for $? to work inside the trap command, with various /bin/sh-s.
23617         * tests/test-vc-list-files-cvs.sh: Likewise.
23618
23619 2008-06-10  Bruno Haible  <bruno@clisp.org>
23620
23621         * lib/acl-internal.h: Don't include gettext.h here.
23622         * lib/set-mode-acl.c: Include gettext.h here.
23623         * lib/copy-acl.c: Likewise.
23624
23625 2008-06-10  Bruno Haible  <bruno@clisp.org>
23626
23627         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
23628         * lib/wait-process.c (wait_subprocess): Likewise.
23629         * lib/execute.h (execute): Add termsigp argument.
23630         * lib/execute.c (execute): Likewise.
23631         * lib/csharpcomp.c (compile_csharp_using_pnet,
23632         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
23633         * lib/csharpexec.c (execute_csharp_using_pnet,
23634         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
23635         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
23636         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
23637         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
23638         is_jikes_present): Update.
23639         * lib/javaexec.c (execute_java_class): Update.
23640         * lib/javaversion.c (execute_and_read_line): Update.
23641         * NEWS: Document the changes.
23642         Reported by Eric Blake.
23643
23644 2008-06-10  Eric Blake  <ebb9@byu.net>
23645
23646         Add missing include.
23647         * tests/test-strstr.c (includes): Add <signal.h>.
23648         * tests/test-strcasestr.c (includes): Likewise.
23649         * tests/test-memmem.c (includes): Likewise.
23650
23651 2008-06-10  Bruno Haible  <bruno@clisp.org>
23652
23653         * lib/wait-process.c (wait_subprocess): Add an assertion.
23654
23655 2008-06-10  Bruno Haible  <bruno@clisp.org>
23656
23657         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
23658
23659 2008-06-10  Bruno Haible  <bruno@clisp.org>
23660
23661         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
23662         using alarm().
23663         * tests/test-strcasestr.c (main): Likewise.
23664         * tests/test-strstr.c (main): Likewise.
23665
23666 2008-06-09  Bruno Haible  <bruno@clisp.org>
23667
23668         Work around the Solaris 10 ACE ACLs ABI change.
23669         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
23670         declare if ACL_NO_TRIVIAL is present.
23671         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
23672         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
23673         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
23674         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
23675         define if ACL_NO_TRIVIAL is present.
23676         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
23677         and use the current ABI.
23678         (file_has_acl): Use same #if condition as elsewhere.
23679         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
23680         in use, and use the current ABI.
23681         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
23682         Reported by Jim Meyering.
23683
23684 2008-06-09  Eric Blake  <ebb9@byu.net>
23685
23686         Work around environments that (stupidly) ignore SIGALRM.
23687         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
23688         before using alarm().
23689         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
23690         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
23691         Reported by Ian Beckwith <ianb@erislabs.net>.
23692
23693         Produce autobuild blurb earlier in log.
23694         * modules/autobuild (configure.ac-early): Move AB_INIT here.
23695
23696 2008-06-09  Jim Meyering  <meyering@redhat.com>
23697         and Ondřej Vašík  <ovasik@redhat.com>
23698
23699         utimens.c: correct kernel bug work-around
23700         Ondřej Vašík found that the invalid return value of 280 indicates
23701         failure, not success, and the kernel bug we're trying to work
23702         around affects not just the utimensat call, but also the fallback
23703         futimens call.
23704         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
23705         not success.
23706         [HAVE_FUTIMENS]: Use the same work-around, here.
23707
23708 2008-06-09  Jim Meyering  <meyering@redhat.com>
23709
23710         add more guards around definition of ACE_-related code
23711         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
23712         ALLOW and ACE_OWNER are also defined.
23713
23714 2008-06-08  Bruno Haible  <bruno@clisp.org>
23715
23716         * lib/acl-internal.h: Add me as co-author.
23717         * lib/file-has-acl.c: Likewise.
23718         * lib/set-mode-acl.c: Likewise.
23719         * lib/copy-acl.c: Likewise.
23720
23721 2008-06-08  Bruno Haible  <bruno@clisp.org>
23722
23723         Add support for AIX ACLs.
23724         * lib/acl-internal.h (acl_nontrivial): New declaration.
23725         * lib/file-has-acl.c (acl_nontrivial): New function.
23726         (file_has_acl): Add implementation using AIX 4 ACL API.
23727         * lib/set-mode-acl.c (qset_acl): Likewise.
23728         * lib/copy-acl.c (qcopy_acl): Likewise.
23729
23730 2008-06-08  Bruno Haible  <bruno@clisp.org>
23731
23732         Add support for HP-UX ACLs.
23733         * lib/acl-internal.h (acl_nontrivial): New declaration.
23734         * lib/file-has-acl.c (acl_nontrivial): New function.
23735         (file_has_acl): Add implementation using HP-UX 11 ACL API.
23736         * lib/set-mode-acl.c (qset_acl): Likewise.
23737         * lib/copy-acl.c (qcopy_acl): Likewise.
23738
23739 2008-06-08  Bruno Haible  <bruno@clisp.org>
23740
23741         Add support for Cygwin ACLs.
23742         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
23743         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
23744         the chmod_or_fchmod call.
23745         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
23746
23747 2008-06-08  Bruno Haible  <bruno@clisp.org>
23748
23749         Fix bug with setuid modes in Solaris 10+ code.
23750         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
23751         succeeded, when the mode contains some special bits.
23752
23753 2008-06-08  Bruno Haible  <bruno@clisp.org>
23754
23755         Add support for Solaris 7..10 ACLs.
23756         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
23757         declarations.
23758         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
23759         functions.
23760         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
23761         * lib/set-mode-acl.c (qset_acl): Likewise.
23762         * lib/copy-acl.c (qcopy_acl): Likewise.
23763
23764 2008-06-08  Bruno Haible  <bruno@clisp.org>
23765
23766         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
23767         declaration.
23768         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
23769         (acl_access_nontrivial): Remove MacOS X case.
23770         (file_has_acl): Use acl_extended_nontrivial.
23771         * lib/copy-acl.c (qcopy_acl): Likewise.
23772
23773 2008-06-08  Bruno Haible  <bruno@clisp.org>
23774
23775         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
23776
23777 2008-06-08  Jim Meyering  <meyering@redhat.com>
23778
23779         * modules/acl (Maintainer): Add Bruno Haible.
23780
23781 2008-06-07  Bruno Haible  <bruno@clisp.org>
23782
23783         Improve support for Tru64 ACLs.
23784         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
23785         ACL on OSF/1.
23786
23787 2008-06-07  Bruno Haible  <bruno@clisp.org>
23788
23789         Add support for MacOS X ACLs.
23790         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
23791         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
23792         * lib/set-mode-acl.c (qset_acl): Likewise.
23793         * lib/copy-acl.c (qcopy_acl): Likewise.
23794
23795 2008-06-07  Bruno Haible  <bruno@clisp.org>
23796
23797         Fix memory leak introduced on 2008-05-22.
23798         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
23799         use.
23800
23801 2008-06-07  Bruno Haible  <bruno@clisp.org>
23802
23803         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
23804         to construct an empty ACL.
23805
23806 2008-06-07  Bruno Haible  <bruno@clisp.org>
23807
23808         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
23809         precisely.
23810         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
23811
23812 2008-06-07  Bruno Haible  <bruno@clisp.org>
23813
23814         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
23815         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
23816
23817 2008-06-07  Bruno Haible  <bruno@clisp.org>
23818
23819         * doc/posix-functions/_setjmp.texi: Explain the use of this function
23820         regardless of POSIX.
23821         * doc/posix-functions/_longjmp.texi: Likewise.
23822         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
23823         SystemV platform in this case.
23824
23825 2008-06-06  Eric Blake  <ebb9@byu.net>
23826
23827         Document abort() bugs.
23828         * doc/posix-functions/abort.texi (abort): Mention anomalies.
23829
23830         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
23831         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
23832         sigsetjmp.
23833         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
23834         siglongjmp, but only as a macro.
23835         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
23836         is obsolete.
23837         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
23838
23839         Tweak documentation to cover cygwin argz bugs.
23840         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
23841         argz bug fix; no code change needed since no cygwin releases
23842         occurred between the last fix and the bug being tested.
23843         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
23844         module and recently fixed cygwin bugs.
23845         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
23846         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
23847         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
23848         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
23849         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
23850         Likewise.
23851         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
23852         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
23853         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
23854         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
23855         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
23856         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
23857         Likewise.
23858
23859         Avoid gcc warning on cygwin.
23860         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
23861         !ACL_NO_TRIVIAL]: Avoid unused variable.
23862
23863 2008-06-05  Eric Blake  <ebb9@byu.net>
23864
23865         Be tolerant of UNKNOWN version in gnulib-tool test dir.
23866         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
23867         git-version-gen fails to come up with a version.
23868         Reported by Simon Josefsson.
23869
23870 2008-06-05  Jim Meyering  <meyering@redhat.com>
23871             Paul Eggert  <eggert@cs.ucla.edu>
23872
23873         utimens.c: work around a probable Linux kernel bug
23874         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
23875         appears to be a kernel bug that causes utimensat to return 280
23876         instead of 0, indicating success.
23877
23878 2008-06-04  Bruno Haible  <bruno@clisp.org>
23879
23880         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
23881         2008-06-01 commit.
23882
23883 2008-06-04  Bruno Haible  <bruno@clisp.org>
23884
23885         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
23886         * lib/file-has-acl.c (acl_access_nontrivial): New function.
23887         (file_has_acl): Use it. Save errno afterwards.
23888         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
23889
23890 2008-06-03  Bruno Haible  <bruno@clisp.org>
23891
23892         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
23893         draft code. Simplify #ifs.
23894         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
23895         Put Solaris code after POSIX-draft code. Fix comments regarding
23896         Solaris 10, HP-UX. Mention Cygwin.
23897         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
23898
23899 2008-06-03  Eric Blake  <ebb9@byu.net>
23900
23901         Provide fallback for older kernels.
23902         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
23903         Provide runtime fallback if kernel lacks support.
23904         Reported by Mike Frysinger.
23905
23906 2008-06-02  Bruno Haible  <bruno@clisp.org>
23907
23908         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
23909         it exists.
23910
23911 2008-06-02  Bruno Haible  <bruno@clisp.org>
23912
23913         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
23914         * lib/copy-acl.c (qcopy_acl): Update comment.
23915
23916 2008-06-02  Bruno Haible  <bruno@clisp.org>
23917
23918         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
23919         like ACL APIs.
23920
23921 2008-06-02  Bruno Haible  <bruno@clisp.org>
23922
23923         * tests/test-file-has-acl.sh: Use different code for Cygwin.
23924         * tests/test-set-mode-acl.sh: Likewise.
23925         * tests/test-copy-acl.sh: Likewise.
23926         * tests/test-copy-file.sh: Likewise.
23927
23928 2008-06-02  Bruno Haible  <bruno@clisp.org>
23929
23930         * tests/test-file-has-acl.sh: Remove unused code.
23931
23932 2008-06-01  Bruno Haible  <bruno@clisp.org>
23933
23934         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
23935         (copy_acl): Just a wrapper around qcopy_acl that emits the error
23936         messages.
23937         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
23938
23939 2008-06-01  Bruno Haible  <bruno@clisp.org>
23940
23941         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
23942         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
23943         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
23944         APIs.
23945         * modules/acl-tests (configure.ac): Remove tests now contained in
23946         m4/acl.m4.
23947
23948 2008-06-02  Jim Meyering  <meyering@redhat.com>
23949
23950         announce-gen: use a better key-server host name
23951         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
23952         it may be more consistently reliable.  Suggested by Werner Koch
23953         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
23954
23955 2008-06-01  Bruno Haible  <bruno@clisp.org>
23956
23957         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
23958         Reported by Voroskoi Andras <voroskoi@gmail.com>.
23959
23960 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
23961
23962         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
23963
23964 2008-06-01  Bruno Haible  <bruno@clisp.org>
23965
23966         New ACL tests.
23967         * tests/test-file-has-acl.sh: New file.
23968         * tests/test-file-has-acl.c: New file.
23969         * tests/test-set-mode-acl.sh: New file.
23970         * tests/test-set-mode-acl.c: New file.
23971         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
23972         * tests/test-copy-acl.c: New file.
23973         * modules/acl-tests: New file, based on modules/copy-file-tests.
23974         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
23975         (Depends-on): Add acl-tests.
23976         (configure.ac): Remove checks.
23977         (Makefile.am): Don't create test-sameacls program here any more.
23978
23979 2008-06-01  Bruno Haible  <bruno@clisp.org>
23980
23981         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
23982         * tests/test-sameacls.c: Include progname.h.
23983         (main): Invoke set_program_name. Portability fixes for MacOS X,
23984         Solaris, HP-UX.
23985
23986 2008-06-01  Bruno Haible  <bruno@clisp.org>
23987
23988         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
23989         function.
23990         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
23991
23992 2008-06-01  Bruno Haible  <bruno@clisp.org>
23993
23994         * modules/rpmatch (Depends-on): Add strdup.
23995
23996 2008-06-01  Bruno Haible  <bruno@clisp.org>
23997
23998         * lib/pipe.c: Include unistd-safer.h.
23999         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
24000         * modules/pipe (Depends-on): Add unistd-safer.
24001
24002 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24003
24004         * modules/autobuild (configure.ac): Call AB_INIT.
24005
24006 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24007
24008         * tests/test-getaddrinfo.c: Don't print debug messages by default.
24009         Suggested by Bruno Haible <bruno@clisp.org>.
24010
24011 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24012
24013         * tests/test-base64.c: Cast size_t to unsigned long when invoking
24014         printf.  Use %lu instead of %d.  Reported by Bruno Haible
24015         <bruno@clisp.org>.
24016
24017 2008-05-29  Eric Blake  <ebb9@byu.net>
24018
24019         Prefer new POSIX 200x interfaces over futimesat.
24020         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
24021         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
24022         when available.
24023         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
24024
24025 2008-05-28  Bruno Haible  <bruno@clisp.org>
24026
24027         * modules/stpcpy (License): Change to LGPLv2+.
24028         Requested by David Lutterkort <dlutter@redhat.com>.
24029
24030 2008-05-27  Bruno Haible  <bruno@clisp.org>
24031
24032         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
24033         current mingw.
24034         Reported by Jose E. Marchesi <jemarch@gnu.org>.
24035
24036 2008-05-27  Bruno Haible  <bruno@clisp.org>
24037
24038         * modules/iconv_open (Link): New section, from module 'iconv'.
24039         * modules/striconv (Link): Likewise.
24040         * modules/striconveh (Link): Likewise.
24041         * modules/xstriconv (Link): Likewise.
24042         * modules/unicodeio (Link): Likewise.
24043         * modules/propername (Link): Likewise.
24044         Reported by Jim Meyering.
24045
24046 2008-05-26  Jim Meyering  <meyering@redhat.com>
24047
24048         sha256: do not artificially restrict buffer length to be < 2^32
24049         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
24050         uint32_t to size_t.
24051         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
24052         to match.
24053
24054         avoid unaligned access errors, e.g., on sparc
24055         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
24056         direct access through a possibly-unaligned uint64* pointer.
24057         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
24058         direct access through a possibly-unaligned uint32* pointer.
24059         Prompted by this patch from Tom "spot" Callaway:
24060         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
24061
24062         sha512.c: fix typo in comment
24063         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
24064
24065 2008-05-25  Bruno Haible  <bruno@clisp.org>
24066
24067         * lib/set-mode-acl.c: Renamed from lib/acl.c.
24068         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
24069         (Makefile.am): Update lib_SOURCES.
24070
24071 2008-05-25  Bruno Haible  <bruno@clisp.org>
24072
24073         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
24074
24075 2008-05-25  Jim Meyering  <meyering@redhat.com>
24076
24077         useless-if-before-free: freed expr may have white-space differences
24078         * build-aux/useless-if-before-free: Recognize cases in which the
24079         freed expression differs from the tested one in embedded white
24080         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
24081         $1 was used, so we can't make any regexp shy.  Improved tests now
24082         detect this.
24083
24084         useless-if-before-free: accept white space in the expression.
24085         * build-aux/useless-if-before-free: For now, any white space
24086         in the expression must be identical in the free argument.
24087
24088         useless-if-before-free: efficiency tweak
24089         * build-aux/useless-if-before-free: Make the expression-matching
24090         regexp "shy".
24091         Make the *outer* regexp shy, not the expr-matching one.
24092
24093         update code-in-comment to accept cast of free arg
24094         * build-aux/useless-if-before-free: Update regexp.
24095
24096 2008-05-25  Bruno Haible  <bruno@clisp.org>
24097
24098         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
24099         * modules/copy-file-tests (Files, Makefile.am): Update.
24100         * tests/test-copy-file.c (func_test_copy): Update.
24101
24102 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
24103
24104         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
24105
24106 2008-05-23  Bruno Haible  <bruno@clisp.org>
24107
24108         Improve support for ACLs on OSF/1.
24109         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
24110         Remove fallback for unknown flavors of ACLs.
24111
24112 2008-05-22  Bruno Haible  <bruno@clisp.org>
24113
24114         Add support for ACLs on OSF/1.
24115         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
24116         replacements.
24117         (acl_free_text): New macro fallback.
24118         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
24119         acl_free.
24120         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
24121         acl_free_text function. Require AC_C_INLINE.
24122
24123 2008-05-22  Bruno Haible  <bruno@clisp.org>
24124
24125         Make copy_acl work on MacOS X 10.5.
24126         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
24127         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
24128         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
24129         If MODE_INSIDE_ACL, don't assume that every system has the same text
24130         representation for ACLs as FreeBSD.
24131         * lib/copy-acl.c (copy_acl): Add support for platforms with
24132         !MODE_INSIDE_ACL.
24133         * lib/file-has-acl.c (file_has_acl): Likewise.
24134         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
24135         FreeBSD, MacOS X, or IRIX, respectively.
24136
24137 2008-05-22  Bruno Haible  <bruno@clisp.org>
24138
24139         * lib/acl.h: Don't include <sys/acl.h>.
24140         (GETACLCNT): Move fallback to lib/acl-internal.h.
24141         * lib/acl-internal.h: Include <sys/acl.h> here.
24142         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
24143
24144 2008-05-22  Bruno Haible  <bruno@clisp.org>
24145
24146         Split off copy_acl function to separate file.
24147         * lib/copy-acl.c: New file, extracted from lib/acl.c.
24148         * lib/acl.c (copy_acl): Moved function to separate file.
24149         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
24150         * modules/acl (Files): Add lib/copy-acl.c.
24151         (Makefiles.am): Augment lib_SOURCES.
24152
24153 2008-05-22  Bruno Haible  <bruno@clisp.org>
24154
24155         * modules/copy-file-tests: New file.
24156         * tests/test-copy-file.sh: New file.
24157         * tests/test-copy-file.c: New file.
24158         * tests/test-copy-file-sameacls.c: New file.
24159
24160 2008-05-22  Eric Blake  <ebb9@byu.net>
24161
24162         Avoid gcc warning.
24163         * tests/test-memcmp.c (main): Pass NULL indirectly.
24164
24165 2008-05-21  Bruno Haible  <bruno@clisp.org>
24166
24167         Add reference doc about ACLs.
24168         * doc/acl-resources.txt: New file.
24169         * doc/acl-cygwin.txt: New file.
24170
24171 2008-05-21  Bruno Haible  <bruno@clisp.org>
24172
24173         Avoid one more warning from gcc.
24174         * lib/vasnprintf.c (IF_LINT): Update comments.
24175         (VASNPRINTF): Use it also for the 'prefix' array initializer.
24176
24177 2008-05-21  Jim Meyering  <meyering@redhat.com>
24178
24179         avoid a warning from gcc
24180         * lib/vasnprintf.c (IF_LINT): Define.
24181         (scale10_round_decimal_long_double):
24182         Use it to avoid a "may be used uninitialized" warning.
24183         (scale10_round_decimal_double): Likewise.
24184
24185 2008-05-21  Simon Josefsson  <simon@josefsson.org>
24186
24187         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
24188         declared.
24189
24190 2008-05-20  Bruno Haible  <bruno@clisp.org>
24191
24192         * tests/test-memcmp.c (main): Test also the sign of the result. Test
24193         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
24194
24195 2008-05-20  Simon Josefsson  <simon@josefsson.org>
24196
24197         * modules/memcmp-tests: New file.
24198         * tests/test-memcmp.c: New file.
24199
24200 2008-05-19  Bruno Haible  <bruno@clisp.org>
24201
24202         * modules/propername (Notice, configure.ac): Put quoted "..." into
24203         --keyword option.
24204         * lib/propername.h: Update comments accordingly.
24205         Reported by Eric Blake.
24206
24207 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
24208
24209         * modules/getpass-gnu (Depends-on): Add fseeko.
24210
24211 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24212
24213         * modules/base64-tests: New file.
24214
24215 2008-05-19  Bo Borgerson <gigabo@gmail.com>
24216
24217         * lib/base64.c (base64_decode_ctx): If a decode context structure
24218         was passed in use it to ignore newlines.  If a context structure
24219         was _not_ passed in, continue to treat newlines as garbage (this
24220         is the historical behavior).  Formerly base64_decode.
24221         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24222         takes a decode context structure.
24223         * lib/base64.h (base64_decode): Macro for four-argument calls.
24224         (base64_decode_alloc): Likewise.
24225         * lib/base64.c (base64_decode_ctx): If a decode context structure
24226         was passed in use it to ignore newlines.  If a context structure
24227         was _not_ passed in, continue to treat newlines as garbage (this
24228         is the historical behavior).  Formerly base64_decode.
24229         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24230         takes a decode context structure.
24231         * lib/base64.h (base64_decode): Macro for four-argument calls.
24232         (base64_decode_alloc): Likewise.
24233
24234 2008-05-19  Jim Meyering  <meyering@redhat.com>
24235
24236         avoid a warning from gcc
24237         * lib/trim.c (IF_LINT): Define.
24238         (trim2): Use it to avoid a "may be used uninitialized" warning.
24239
24240         Fix doc typo.
24241         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
24242
24243 2008-05-19  Bruno Haible  <bruno@clisp.org>
24244
24245         * doc/glibc-functions/getpass.texi: Document limits of other
24246         implementations.
24247
24248 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24249             Bruno Haible <bruno@clisp.org>
24250
24251         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
24252
24253 2008-05-18  Bruno Haible  <bruno@clisp.org>
24254
24255         * modules/propername: New file, from GNU gettext.
24256         * lib/propername.h: New file, from GNU gettext.
24257         * lib/propername.c: New file, from GNU gettext.
24258         * MODULES.html.sh (Internationalization functions): Add propername.
24259
24260 2008-05-16  Jim Meyering  <meyering@redhat.com>
24261             Bruno Haible  <bruno@clisp.org>
24262
24263         Avoid some warnings from "gcc -Wshadow".
24264         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
24265
24266 2008-05-15  Eric Blake  <ebb9@byu.net>
24267
24268         Extend previous patch to cygwin 1.7.0.
24269         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
24270         fast implementation in cygwin >= 1.7.0.
24271         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24272         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24273
24274 2008-05-15  Bruno Haible  <bruno@clisp.org>
24275
24276         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
24277         implementation in glibc >= 2.9.
24278         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24279         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24280
24281 2008-05-15  Bruno Haible  <bruno@clisp.org>
24282
24283         * MODULES.html.sh (Internationalization functions): Remove linebreak.
24284         (Unicode string functions): Add unilbrk/*.
24285         Reported by Karl Berry.
24286
24287 2008-05-15  Eric Blake  <ebb9@byu.net>
24288
24289         Fix violation of <stdbool.h> replacement in regex.
24290         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
24291         * lib/regexec.c (re_search_internal): Likewise.
24292         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
24293
24294 2008-05-15  Jim Meyering  <meyering@redhat.com>
24295
24296         avoid distracting test output when git or cvs is not found
24297         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
24298         * tests/test-vc-list-files-git.sh: Likewise.
24299
24300 2008-05-15  Eric Blake  <ebb9@byu.net>
24301
24302         Glibc finally accepted the memmem speedup code, bugzilla #5514.
24303         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
24304         glibc version.
24305         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
24306         * doc/posix-functions/strstr.texi (strstr): Likewise.
24307         * lib/str-two-way.h (MAX): Sychronize with glibc.
24308
24309 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
24310
24311         * lib/regcomp.c (optimize_utf8): Add a note on why we test
24312         opr.ctx_type.
24313         (calc_first): Initialize constraint field.
24314         (duplicate_node_closure): Use it instead of special casing ANCHORS.
24315         Fix grammar.
24316         (duplicate_node): Merge constraint field for all node types.
24317         (calc_eclosure_iter): Look at constraint field for all node types.
24318         * lib/regex_internal.c (create_cd_newstate): Don't look at
24319         opr.ctx_type.
24320
24321 2008-05-14  Bruno Haible  <bruno@clisp.org>
24322
24323         Help GCC to do better code generation.
24324         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
24325         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
24326         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
24327         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
24328         Declare with attribute 'malloc' if supported.
24329
24330 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
24331
24332         use "echo STR|wc -c" rather than unportable "expr length STR"
24333         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
24334         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
24335
24336 2008-05-14  Jim Meyering  <meyering@redhat.com>
24337
24338         use dd ibs=$n count=1 ... rather than less-portable head -c$n
24339         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
24340         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
24341         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
24342         via Collin Lasse.
24343
24344 2008-05-14  Eric Blake  <ebb9@byu.net>
24345
24346         Avoid quadratic growth in gl_LIBSOURCES.
24347         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
24348         Suggested by Bruno Haible.
24349
24350         Test xmemdup0.
24351         * modules/xmemdup0-tests: New file.
24352         * tests/test-xmemdup0.c: Likewise.
24353
24354 2008-05-13  Eric Blake  <ebb9@byu.net>
24355
24356         Split xmemdup0 into its own module.
24357         * modules/xmemdup0: New file.
24358         * lib/xmemdup0.h: Likewise.
24359         * lib/xmemdup0.c: Likewise.
24360         * MODULES.html.sh (Memory management functions): Add xmemdup0.
24361         * lib/xalloc.h (xmemdup0): Remove.
24362         * lib/xmalloc.c (xmemdup0): Likewise.
24363
24364 2008-05-13  Eric Blake  <ebb9@byu.net>
24365             Bruno Haible  <bruno@clisp.org>
24366
24367         Reduce number of forks required during autoconf.
24368         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
24369         and gl_LIBSOURCES_DIR.
24370         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
24371         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
24372         m4_syscmd per file.
24373         <m4_foreach_w>: Move...
24374         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
24375
24376 2008-05-13  Eric Blake  <ebb9@byu.net>
24377
24378         * gnulib-tool: Fix various comment typos.
24379
24380 2008-05-12  Bruno Haible  <bruno@clisp.org>
24381
24382         Tailor the linebreaking algorithm.
24383         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
24384
24385 2008-05-12  Bruno Haible  <bruno@clisp.org>
24386
24387         Update to Unicode 5.0.0.
24388         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
24389         LBP_JV, LBP_JT. Redistribute values.
24390         (unilbrk_table): Change size.
24391         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
24392         Unicode TR#14 rev. 22.
24393         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
24394         LBP_JV, LBP_JT. Redistribute values.
24395         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
24396         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
24397         Update.
24398         * lib/unilbrk/lbrkprop1.h: Regenerated.
24399         * lib/unilbrk/lbrkprop2.h: Regenerated.
24400         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
24401         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
24402         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
24403         Likewise.
24404         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
24405         Likewise.
24406         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
24407         result.
24408         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
24409         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
24410         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
24411         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
24412         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
24413         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
24414
24415 2008-05-11  Bruno Haible  <bruno@clisp.org>
24416
24417         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
24418
24419 2008-05-11  Bruno Haible  <bruno@clisp.org>
24420
24421         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
24422         * modules/unilbrk/gen-lbrk: New file.
24423
24424 2008-05-11  Bruno Haible  <bruno@clisp.org>
24425
24426         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
24427         * m4/sha512.m4 (gl_SHA512): Likewise.
24428
24429 2008-05-11  Jim Meyering  <meyering@redhat.com>
24430
24431         New modules: crypto/sha256, crypto/sha512 (from coreutils)
24432         * modules/crypto/sha256: New file.
24433         * modules/crypto/sha512: Likewise.
24434         * lib/sha256.c: Likewise.
24435         * lib/sha256.h: Likewise.
24436         * lib/sha512.c: Likewise.
24437         * lib/sha512.h: Likewise.
24438         * lib/u64.h: Likewise.
24439         * m4/sha256.m4: Likewise.
24440         * m4/sha512.m4: Likewise.
24441         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
24442
24443 2008-05-10  Bruno Haible  <bruno@clisp.org>
24444
24445         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
24446         (Input/Output <stdio.h>): Add xprintf.
24447         (Signal handling <signal.h>): Add strsignal.
24448         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
24449         (Core language properties): Add func.
24450         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
24451         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
24452         strings.
24453         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
24454         (Input/output): New section.
24455         (File system functions): Add openat-die, stat-macros.
24456         (Networking functions): Add sockets.
24457         (Unicode string functions): Add unictype/*.
24458         (Support for building libraries and executables): Add gperf.
24459         (Support for building documentation): Add agpl-3.0.
24460         (Misc): Add nocrash.
24461
24462 2008-05-10  Bruno Haible  <bruno@clisp.org>
24463
24464         * modules/unictype/gen-ctype: New file.
24465
24466 2008-05-10  Jim Meyering  <meyering@redhat.com>
24467
24468         Make chdir-safer.c more efficient on a system with no symlinks.
24469         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
24470         also if ELOOP is zero.  Suggested by Bruno Haible.
24471
24472         Make chdir-safer.c slightly safer.
24473         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
24474         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
24475
24476         Avoid compile failure on systems without ELOOP (like mingw).
24477         * lib/chdir-safer.c (ELOOP): Define if not already defined.
24478         Reported by Bruno Haible.
24479
24480 2008-05-10  Bruno Haible  <bruno@clisp.org>
24481
24482         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
24483         (is_utf8_encoding): Use a case-insensitive comparison.
24484         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
24485         streq.
24486
24487 2008-05-10  Bruno Haible  <bruno@clisp.org>
24488
24489         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
24490         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
24491         * lib/unilbrk/ulc-common.h (iconv_string_length,
24492         iconv_string_keeping_offsets): Remove declarations.
24493         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
24494         Don't include <iconv.h>, streq.h, xsize.h.
24495         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
24496         conversion.
24497         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
24498         <iconv.h>, streq.h, xsize.h.
24499         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
24500         conversion.
24501         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
24502         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
24503         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
24504         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
24505
24506 2008-05-10  Bruno Haible  <bruno@clisp.org>
24507
24508         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
24509         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
24510
24511         * modules/unilbrk/u32-width-linebreaks-tests: New file.
24512         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
24513
24514         * modules/unilbrk/u16-width-linebreaks-tests: New file.
24515         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
24516
24517         * modules/unilbrk/u8-width-linebreaks-tests: New file.
24518         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
24519
24520         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
24521         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
24522
24523         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
24524         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
24525
24526         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
24527         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
24528
24529         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
24530         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
24531
24532 2008-05-10  Bruno Haible  <bruno@clisp.org>
24533
24534         Split up 'linebreak' module.
24535         * lib/unilbrk.h: New file, based on lib/linebreak.h.
24536         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
24537         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
24538         modifications.
24539         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
24540         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
24541         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
24542         lib/linebreak.c.
24543         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
24544         lib/linebreak.c.
24545         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
24546         lib/linebreak.c.
24547         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
24548         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
24549         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
24550         lib/linebreak.c.
24551         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
24552         lib/linebreak.c.
24553         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
24554         lib/linebreak.c.
24555         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
24556         lib/linebreak.c.
24557         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
24558         lib/linebreak.c.
24559         * modules/unilbrk/base: New file.
24560         * modules/unilbrk/tables: New file.
24561         * modules/unilbrk/u8-possible-linebreaks: New file.
24562         * modules/unilbrk/u16-possible-linebreaks: New file.
24563         * modules/unilbrk/u32-possible-linebreaks: New file.
24564         * modules/unilbrk/ulc-common: New file.
24565         * modules/unilbrk/ulc-possible-linebreaks: New file.
24566         * modules/unilbrk/u8-width-linebreaks: New file.
24567         * modules/unilbrk/u16-width-linebreaks: New file.
24568         * modules/unilbrk/u32-width-linebreaks: New file.
24569         * modules/unilbrk/ulc-width-linebreaks: New file.
24570         * lib/linebreak.h: Remove file.
24571         * lib/linebreak.c: Remove file.
24572         * m4/linebreak.m4: Remove file.
24573         * modules/linebreak: Remove file.
24574         * NEWS: Mention the changes.
24575
24576 2008-05-09  Eric Blake  <ebb9@byu.net>
24577
24578         Add xmemdup0.
24579         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
24580         implementation.
24581         * lib/xmalloc.c (xmemdup0): New C implementation.
24582
24583 2008-05-08  Bruno Haible  <bruno@clisp.org>
24584
24585         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
24586
24587 2008-05-07  Eric Blake  <ebb9@byu.net>
24588
24589         Support cross-compilation of <wctype.h>.
24590         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
24591         AC_CACHE_CHECK.
24592
24593 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
24594
24595         * build-aux/vc-list-files: Add support for bzr.
24596
24597 2008-05-03  Jim Meyering  <meyering@redhat.com>
24598
24599         avoid failed assertion with tight malloc
24600         * tests/test-getndelim2.c: Correct an off-by-one assertion.
24601
24602 2008-05-03  Simon Josefsson  <simon@josefsson.org>
24603
24604         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
24605         are needed from arpa/inet.h.
24606         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
24607         Reported by Bruno Haible.
24608
24609 2008-05-02  Jim Meyering  <meyering@redhat.com>
24610
24611         avoid compilation error on FreeBSD 6
24612         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
24613
24614 2008-05-01  Jim Meyering  <meyering@redhat.com>
24615
24616         useless-if-before-free: correct --help's exit status description
24617         * build-aux/useless-if-before-free (usage): Like grep, exit 0
24618         for one or more matches, etc.  Reported by Bruno Haible.
24619
24620         vc-list-files: make the stand-alone gnulib test work
24621         * modules/vc-list-files-tests (configure.ac):
24622         Define and AC_SUBST abs_aux_dir.
24623         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
24624         $(abs_top_srcdir) to each script and having each of them
24625         duplicate the work of setting PATH, set PATH here, using
24626         the new variable, abs_aux_dir instead.
24627         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
24628         * tests/test-vc-list-files-git.sh: Likewise.
24629         Reported by Bruno Haible.
24630
24631 2008-05-01  Bruno Haible  <bruno@clisp.org>
24632
24633         * lib/getndelim2.c (getndelim2): Fix newsize computation during
24634         reallocation. Rename 'done' to 'found_delimiter'.
24635
24636 2008-05-01  Jim Meyering  <meyering@redhat.com>
24637
24638         vc-list-files: accommodate /bin/sh like the one from Solaris 10
24639         * build-aux/vc-list-files: Use `...`, not $(...).
24640
24641 2008-04-30  Jim Meyering  <meyering@redhat.com>
24642
24643         add tests for vc-list-files
24644         * modules/vc-list-files-tests: New module.
24645         * tests/test-vc-list-files-cvs.sh: New file.
24646         * tests/test-vc-list-files-git.sh: New file.
24647
24648         avoid a warning from gcc
24649         * lib/getndelim2.c (IF_LINT): Define.
24650         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
24651
24652         vc-list-files: work properly with build-aux/cvsu, too
24653         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
24654         to all cvs-based clauses.
24655
24656         vc-list-files: work properly in the CVS+awk case, too
24657         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
24658
24659         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
24660         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
24661         take more than one file argument, so .  Add quotes, just in case $dir
24662         ever contains a shell meta-character.  Prompted by Soren Hansen in
24663         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
24664
24665 2008-04-29  Eric Blake  <ebb9@byu.net>
24666
24667         Optimize getndelim2 to use block operations when possible.
24668         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
24669         freadseek, and memchr2.
24670         * lib/getndelim2.c (getndelim2): Use them for block reads.
24671
24672 2008-04-29  Bruno Haible  <bruno@clisp.org>
24673
24674         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
24675         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
24676         * modules/inet_ntop (Depends-on): Add extensions.
24677         * modules/inet_pton (Depends-on): Likewise.
24678         Reported by Simon Josefsson.
24679
24680 2008-04-29  Jim Meyering  <meyering@redhat.com>
24681
24682         When the is more than one match in a block, match all of them.
24683         * build-aux/useless-if-before-free: Iterate through each block
24684         until there are no more matches.
24685
24686         Fix broken useless-if-before-free script.
24687         * build-aux/useless-if-before-free: Fix typo: missing "?" after
24688         the expression to match cast of argument to free-like function.
24689
24690 2008-04-29  Eric Blake  <ebb9@byu.net>
24691
24692         Use new header.
24693         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
24694
24695 2008-04-29  Jim Meyering  <meyering@redhat.com>
24696
24697         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
24698         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
24699         by gnulib to exist and to declare e.g., inet_ntop.
24700         Don't include "inet_ntop.h", now removed.
24701
24702         * m4/arpa_inet_h.m4: Remove trailing blanks.
24703
24704 2008-04-29  Eric Blake  <ebb9@byu.net>
24705
24706         Silence valgrind on safe reads beyond potential array bounds.
24707         * lib/rawmemchr.valgrind: New file.
24708         * lib/strchrnul.valgrind: Likewise.
24709         * modules/rawmemchr (Files): Distribute new file.
24710         * modules/strchrnul (Files): Likewise.
24711         Suggested by Bruno Haible.
24712
24713 2008-04-29  Bruno Haible  <bruno@clisp.org>
24714
24715         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
24716         (inet_ntop, inet_pton): Change portability warning's wording.
24717         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
24718         Invoke gl_CHECK_NEXT_HEADERS.
24719         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
24720         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
24721         set ARPA_INET_H.
24722         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
24723         * modules/arpa_inet (Description): No longer only for systems that
24724         lack it.
24725         (Depends-on): Add include_next.
24726         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
24727         HAVE_ARPA_INET_H.
24728
24729 2008-04-29  Jim Meyering  <meyering@redhat.com>
24730
24731         * modules/mkdir (License): Re-license as LGPLv2+.
24732
24733 2008-04-29  Bruno Haible  <bruno@clisp.org>
24734
24735         * modules/rawmemchr (Maintainer): Set to Eric.
24736         * modules/strchrnul (Maintainer): Likewise.
24737
24738 2008-04-29  Simon Josefsson  <simon@josefsson.org>
24739
24740         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
24741         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
24742
24743         * modules/arpa_inet (arpa/inet.h): Use them.
24744
24745 2008-04-28  Eric Blake  <ebb9@byu.net>
24746
24747         Test getndelim2.
24748         * modules/getndelim2-tests: New file.
24749         * tests/test-getndelim2.c: Likewise.
24750         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
24751         stream.
24752         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
24753
24754         * MODULES.html.sh: Document new module.
24755
24756 2008-04-20  Bruno Haible  <bruno@clisp.org>
24757
24758         * lib/c-stack.c (die): Use raise.
24759         * modules/c-stack (Depends-on): Add raise.
24760
24761 2008-04-28  Bruno Haible  <bruno@clisp.org>
24762
24763         Expect rpmatch to be declared.
24764         * lib/yesno.c (rpmatch): Remove declaration.
24765
24766         Declare rpmatch.
24767         * lib/stdlib.in.h (rpmatch): New declaration.
24768         * lib/rpmatch.c: Include <stdlib.h> first.
24769         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
24770         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
24771         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
24772         HAVE_RPMATCH.
24773         * modules/rpmatch (Depends-on): Add stdlib, extensions.
24774         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
24775         (Include): Set to <stdlib.h>.
24776         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
24777         HAVE_RPMATCH.
24778         * NEWS: Document the change.
24779
24780 2008-04-28  Bruno Haible  <bruno@clisp.org>
24781
24782         Change rpmatch to use nl_langinfo when appropriate.
24783         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
24784         (N_): New macro.
24785         (localized_pattern): New function/macro.
24786         (try): Remove match, nomatch arguments. Copy the pattern into safe
24787         memory before caching it.
24788         (rpmatch): Use localized_pattern. Add translator comments.
24789         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
24790         Suggested by Eric Blake.
24791         * modules/rpmatch (Depends-on): Add stdbool.
24792
24793 2008-04-28  Eric Blake  <ebb9@byu.net>
24794
24795         Add rawmemchr module, matching glibc.
24796         * modules/string (Makefile.am): New indicator.
24797         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
24798         * lib/string.in.h (rawmemchr): Declare when appropriate.
24799         * modules/rawmemchr: New file.
24800         * m4/rawmemchr.m4: Likewise.
24801         * lib/rawmemchr.c: Likewise.
24802         * modules/rawmemchr-tests: Likewise.
24803         * tests/test-rawmemchr.c: Likewise.
24804         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
24805         module.
24806         * modules/strchrnul (Depends-on): Add rawmemchr.
24807         * lib/strchrnul.c (strchrnul): Optimize a corner case.
24808
24809         Whitespace cleanup.
24810         * tests/test-strchrnul.c: Reindent.
24811         * lib/strchrnul.c: Likewise.
24812
24813         Optimize and test strchrnul.
24814         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
24815         * modules/strchrnul-tests: New file.
24816         * tests/test-strchrnul.c: Likewise.
24817
24818         Remove intprops dependency.
24819         * modules/memchr (Depends-on): Remove intprops.
24820         * modules/memrchr (Depends-on): Likewise.
24821         * modules/memchr2 (Depends-on): Likewise.
24822         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
24823         * lib/memrchr.c (__memrchr): Likewise.
24824         * lib/memrchr2.c (memchr2): Likewise.
24825         Reported by Simon Josefsson.
24826
24827 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24828
24829         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
24830         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24831
24832 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24833
24834         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
24835
24836         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
24837
24838         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
24839
24840         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
24841         declarations.
24842         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
24843
24844         * m4/inet_pton.m4: Don't check for header files.
24845
24846         * m4/inet_ntop.m4: Don't check for header files.
24847
24848 2008-04-28  Simon Josefsson  <simon@josefsson.org>
24849
24850         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
24851         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
24852         trigger for cygwin).
24853         Reported by Bruno Haible  <bruno@clisp.org>.
24854
24855 2008-04-28  Bruno Haible  <bruno@clisp.org>
24856
24857         * doc/posix-functions/strdup.texi: Mention mingw problem.
24858
24859 2008-04-27  Bruno Haible  <bruno@clisp.org>
24860
24861         * modules/stat-time-tests (Depends-on): Add sleep.
24862         * tests/test-stat-time.c (force_unlink): New function.
24863         (cleanup): Use it.
24864         (test_mtime): Remove the ctime related tests.
24865         (test_ctime): New function, containing the ctime related tests.
24866         (main): Call test_ctime, except on native Windows platforms.
24867
24868 2008-04-27  Bruno Haible  <bruno@clisp.org>
24869
24870         * lib/rpmatch.c (rpmatch): Add some comments.
24871         Reported by James Youngman <jay@gnu.org>.
24872
24873 2008-04-27  Bruno Haible  <bruno@clisp.org>
24874
24875         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
24876         quiet NaNs.
24877
24878 2008-04-27  Bruno Haible  <bruno@clisp.org>
24879
24880         Make test-yesno.sh work on mingw.
24881         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
24882         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
24883         (main): Set stdin to binary mode.
24884         * modules/yesno-tests (Depends-on): Add binary-io.
24885
24886 2008-04-27  Bruno Haible  <bruno@clisp.org>
24887
24888         Fix 'isfinite' on x86, x86_64, ia64 platforms.
24889         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
24890         argument that lie outside the IEEE 854 domain.
24891         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
24892         (gl_ISFINITE): Use it.
24893         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
24894
24895 2008-04-27  Bruno Haible  <bruno@clisp.org>
24896
24897         Allow local renaming in config.h.
24898         * lib/memrchr.c (memrchr): Don't undefine outside libc.
24899
24900 2008-04-27  Bruno Haible  <bruno@clisp.org>
24901
24902         * lib/memchr.c (__memchr): Change type of 'i'.
24903         * lib/memchr2.c (memchr2): Likewise.
24904
24905 2008-04-26  Eric Blake  <ebb9@byu.net>
24906         and Bruno Haible  <bruno@clisp.org>
24907
24908         Optimize and test memrchr.
24909         * modules/memrchr (Depends-on): Add intprops.
24910         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
24911         * modules/memrchr-tests: New file.
24912         * tests/test-memrchr.c: New file.
24913
24914 2008-04-26  Bruno Haible  <bruno@clisp.org>
24915
24916         Add tentative support for DragonFly BSD.
24917         * lib/stdio-impl.h: Add macros for DragonFly BSD.
24918         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
24919         fp.
24920         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
24921         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
24922         * lib/fpurge.c (fpurge): Likewise.
24923         * lib/freadable.c (freaadable): Likewise.
24924         * lib/freadahead.c (freadahead): Likewise.
24925         * lib/freading.c (freading): Likewise.
24926         * lib/freadptr.c (freadptr): Likewise.
24927         * lib/freadseek.c (freadptrinc): Likewise.
24928         * lib/fseeko.c (fseeko): Likewise.
24929         * lib/fseterr.c (fseterr): Likewise.
24930         * lib/fwritable.c (fwritable): Likewise.
24931         * lib/fwriting.c (fwriting): Likewise.
24932
24933 2008-04-26  Bruno Haible  <bruno@clisp.org>
24934
24935         * lib/stdio-impl.h: New file.
24936         * lib/fbufmode.c: Include stdio-impl.h.
24937         (fbufmode): Use fp_, remove redundant #defines.
24938         * lib/fflush.c: Include stdio-impl.h.
24939         (clear_ungetc_buffer): Remove redundant #defines.
24940         * lib/fpurge.c: Include stdio-impl.h.
24941         (fpurge): Remove redundant #defines.
24942         * lib/freadable.c: Include stdio-impl.h.
24943         (freadable): Remove redundant #defines.
24944         * lib/freadahead.c: Include stdio-impl.h.
24945         (freadahead): Remove redundant #defines.
24946         * lib/freading.c: Include stdio-impl.h.
24947         (freading): Remove redundant #defines.
24948         * lib/freadptr.c: Include stdio-impl.h.
24949         (freadptr): Remove redundant #defines.
24950         * lib/freadseek.c: Include stdio-impl.h.
24951         (freadptrinc): Remove redundant #defines.
24952         * lib/fseeko.c: Include stdio-impl.h.
24953         (rpl_fseeko): Remove redundant #defines.
24954         * lib/fseterr.c: Include stdio-impl.h.
24955         (fseterr): Remove redundant #defines.
24956         * lib/fwritable.c: Include stdio-impl.h.
24957         (fwritable: Remove redundant #defines.
24958         * lib/fwriting.c: Include stdio-impl.h.
24959         (fwriting): Remove redundant #defines.
24960         * modules/fbufmode (Files): Add lib/stdio-impl.h.
24961         * modules/fflush (Files): Likewise.
24962         * modules/fpurge (Files): Likewise.
24963         * modules/freadable (Files): Likewise.
24964         * modules/freadahead (Files): Likewise.
24965         * modules/freading (Files): Likewise.
24966         * modules/freadptr (Files): Likewise.
24967         * modules/freadseek (Files): Likewise.
24968         * modules/fseeko (Files): Likewise.
24969         * modules/fseterr (Files): Likewise.
24970         * modules/fwritable (Files): Likewise.
24971         * modules/fwriting (Files): Likewise.
24972
24973 2008-04-26  Bruno Haible  <bruno@clisp.org>
24974
24975         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
24976         restore_seek_optimization, update_fpos_cache): New functions, extracted
24977         from rpl_fflush.
24978         (rpl_fflush): Use them.
24979         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
24980         (gl_REPLACE_FFLUSH): Use it.
24981
24982 2008-04-26  Bruno Haible  <bruno@clisp.org>
24983
24984         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
24985         on Solaris.
24986         * tests/test-xstrtoimax.sh: Likewise.
24987         * tests/test-xstrtoumax.sh: Likewise.
24988         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24989
24990 2008-04-26  Bruno Haible  <bruno@clisp.org>
24991
24992         * modules/memchr-tests: New file.
24993         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
24994
24995 2008-04-26  Eric Blake  <ebb9@byu.net>
24996             Bruno Haible  <bruno@clisp.org>
24997
24998         * lib/memchr.c: Include intprops.h.
24999         (__memchr): Optimize parallel detection of matching bytes. Rename local
25000         variables. Add explanatory comments.
25001
25002 2008-04-26  Bruno Haible  <bruno@clisp.org>
25003
25004         Fix module 'memchr', broken since 2000-10-28.
25005         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
25006
25007 2008-04-26  Bruno Haible  <bruno@clisp.org>
25008
25009         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
25010         comments.
25011
25012 2008-04-25  Eric Blake  <ebb9@byu.net>
25013
25014         Use native fstatat on cygwin 1.7.0.
25015         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
25016         first.
25017
25018 2008-04-23  Eric Blake  <ebb9@byu.net>
25019
25020         Improve memchr2 performance.
25021         * lib/memchr2.c (memchr2): Further optimize parallel detection of
25022         NUL bytes.
25023         * modules/memchr2 (Depends-on): Use intprops.h.
25024
25025 2008-04-23  Simon Josefsson  <simon@josefsson.org>
25026
25027         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
25028         an inline function instead of a CPP macro.  Patch by Ben Pfaff
25029         <blp@cs.stanford.edu>.
25030
25031 2008-04-23  Simon Josefsson  <simon@josefsson.org>
25032
25033         * lib/arpa_inet.in.h: New file.
25034
25035         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
25036         (Makefile.am): Sed in substitute header file.
25037
25038         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
25039         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
25040
25041         * modules/inet_ntop (configure.ac): Use
25042         gl_ARPA_INET_MODULE_INDICATOR.
25043
25044         * modules/inet_pton (configure.ac): Use
25045         gl_ARPA_INET_MODULE_INDICATOR.
25046
25047 2008-04-22  Jim Meyering  <meyering@redhat.com>
25048
25049         * modules/verify (License): Re-license as LGPLv2+.
25050
25051 2008-04-22  Simon Josefsson  <simon@josefsson.org>
25052
25053         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
25054         parameter to void* as per POSIX standard (MinGW uses char*).
25055
25056 2008-04-21  Bruno Haible  <bruno@clisp.org>
25057
25058         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
25059         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
25060         Define to replacements if REPLACE_ISWCNTRL is 1.
25061         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
25062         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
25063         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
25064         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
25065         what it fixes.
25066         * doc/posix-functions/iswalpha.texi: Likewise.
25067         * doc/posix-functions/iswblank.texi: Likewise.
25068         * doc/posix-functions/iswcntrl.texi: Likewise.
25069         * doc/posix-functions/iswdigit.texi: Likewise.
25070         * doc/posix-functions/iswgraph.texi: Likewise.
25071         * doc/posix-functions/iswlower.texi: Likewise.
25072         * doc/posix-functions/iswprint.texi: Likewise.
25073         * doc/posix-functions/iswpunct.texi: Likewise.
25074         * doc/posix-functions/iswspace.texi: Likewise.
25075         * doc/posix-functions/iswupper.texi: Likewise.
25076         * doc/posix-functions/iswxdigit.texi: Likewise.
25077         Reported by Alain Guibert.
25078
25079 2008-04-21  Bruno Haible  <bruno@clisp.org>
25080
25081         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
25082         Patch by Alain Guibert.
25083
25084 2008-04-21  Bruno Haible  <bruno@clisp.org>
25085
25086         Fix test failures on mingw.
25087         * tests/test-xstrtol.c (print_no_progname): New function.
25088         (main): Install it in error_print_progname hook.
25089         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
25090         * tests/test-xstrtoimax.sh: Likewise.
25091         * tests/test-xstrtoumax.sh: Likewise.
25092
25093 2008-04-21  Bruno Haible  <bruno@clisp.org>
25094
25095         Fix test failure on mingw.
25096         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
25097
25098 2008-04-21  Bruno Haible  <bruno@clisp.org>
25099
25100         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
25101         Actually assign a value.
25102
25103 2008-04-20  Bruno Haible  <bruno@clisp.org>
25104
25105         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
25106         take 2.
25107         * lib/canonicalize.c (canonicalize_file_name): Elide if the
25108         'canonicalize-lgpl' module is also used.
25109         * lib/canonicalize-lgpl.c: Undo last change.
25110         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
25111
25112 2008-04-20  Bruno Haible  <bruno@clisp.org>
25113
25114         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
25115         config.h. Provide _mkdir based fallback for mingw.
25116         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
25117         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
25118         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
25119         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
25120         rather than defining mkdir in config.h.
25121         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
25122         (gl_SYS_STAT_H_DEFAULTS): New macro.
25123         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
25124         HAVE_IO_H any more.
25125         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
25126         HAVE_DECL_MKDIR and HAVE_IO_H.
25127
25128 2008-04-20  Bruno Haible  <bruno@clisp.org>
25129
25130         * lib/isapipe.c: Port to native Windows platforms.
25131
25132 2008-04-20  Bruno Haible  <bruno@clisp.org>
25133
25134         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
25135
25136 2008-04-21  Eric Blake  <ebb9@byu.net>
25137
25138         Work around preprocessors that don't handle UINTMAX_MAX.
25139         * lib/memchr2.c (memchr2): Avoid embedded #if.
25140         Reported by Alain Guibert, fix suggested by Bruno Haible.
25141
25142 2008-04-21  Simon Josefsson  <simon@josefsson.org>
25143
25144         * doc/posix-functions/strftime.texi (strftime): Explain better
25145         Windows incompatibility.  Suggested by Micah Cowan
25146         <micah@cowan.name>.
25147
25148 2008-04-20  Bruno Haible  <bruno@clisp.org>
25149
25150         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
25151         unistr/u8-mblen.
25152
25153 2008-04-20  Bruno Haible  <bruno@clisp.org>
25154
25155         Fix test failure on platforms with non-GNU iconv.
25156         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
25157         (U_TO_U8): Use it, rather than u16_to_u8.
25158         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
25159         units at the end of the input string.
25160         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
25161
25162 2008-04-20  Bruno Haible  <bruno@clisp.org>
25163
25164         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
25165         when the resulting length is 0.
25166         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
25167
25168 2008-04-20  Bruno Haible  <bruno@clisp.org>
25169
25170         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
25171         works.
25172         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
25173
25174 2008-04-20  Bruno Haible  <bruno@clisp.org>
25175
25176         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
25177         * modules/tsearch-tests (configure.ac): Test for initstate function.
25178
25179 2008-04-20  Bruno Haible  <bruno@clisp.org>
25180
25181         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
25182         for nlink_t if missing.
25183         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
25184
25185 2008-04-19  Bruno Haible  <bruno@clisp.org>
25186
25187         Work around snprintf bug on Linux libc5.
25188         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
25189         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
25190         gl_SNPRINTF_SIZE1.
25191         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25192         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
25193         that test failed.
25194         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
25195         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
25196         * modules/snprintf (Files): Add m4/printf.m4.
25197         * modules/vsnprintf (Files): Likewise.
25198         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
25199         * doc/posix-functions/vsnprintf.texi: Likewise.
25200
25201 2008-04-19  Bruno Haible  <bruno@clisp.org>
25202
25203         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
25204         from 0.0058 to less than 10^-7.
25205
25206 2008-04-19  Bruno Haible  <bruno@clisp.org>
25207
25208         Fix rounding when a precision is given.
25209         * lib/vasnprintf.c (is_borderline): New function.
25210         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
25211         9...9x.
25212         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
25213         %e, %g.
25214         * tests/test-vasprintf-posix.c (test_function): Likewise.
25215         * tests/test-snprintf-posix.h (test_function): Likewise.
25216         * tests/test-sprintf-posix.h (test_function): Likewise.
25217         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
25218         * tests/test-printf-posix.h (test_function): Likewise.
25219         * tests/test-printf-posix.output: Update.
25220         Reported by John Darrington <john@darrington.wattle.id.au> via
25221         Ben Pfaff <blp@cs.stanford.edu>.
25222
25223 2008-04-18  Simon Josefsson  <simon@josefsson.org>
25224
25225         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
25226         Suggested by Bruno Haible <bruno@clisp.org>.
25227
25228 2008-04-17  Bruno Haible  <bruno@clisp.org>
25229
25230         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
25231         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
25232         implementation.
25233         Patch by Bruce Merry <bmerry@gmail.com>.
25234
25235 2008-04-17  Simon Josefsson  <simon@josefsson.org>
25236
25237         * doc/posix-functions/strftime.texi (strftime): Mention that %e
25238         doesn't work under Windows.
25239
25240 2008-04-16  Bruno Haible  <bruno@clisp.org>
25241
25242         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
25243         New macros.
25244         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
25245         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
25246         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
25247         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
25248         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
25249         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
25250         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
25251         macros.
25252         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
25253         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
25254         Northern Sotho, Uighur.
25255
25256 2008-04-16  Bruno Haible  <bruno@clisp.org>
25257
25258         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
25259         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
25260         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
25261         Reported by Daniel Bergström <daniel@octocode.com>.
25262
25263 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
25264             Bruno Haible  <bruno@clisp.org>
25265
25266         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
25267         function.
25268         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
25269         New functions, mostly extracted from gl_locale_name_default.
25270         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
25271
25272 2008-04-16  Eric Blake  <ebb9@byu.net>
25273
25274         Adjust strtod detection to catch glibc 2.7 bug.
25275         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
25276         Reported by John Gatewood Ham.
25277
25278 2008-04-16  Bruno Haible  <bruno@clisp.org>
25279
25280         Add tentative support for Linux libc5.
25281         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
25282         * lib/fpurge.c (fpurge): Likewise.
25283         * lib/freadable.c (freadable): Likewise.
25284         * lib/freadahead.c (freadahead): Likewise.
25285         * lib/freading.c (freading): Likewise.
25286         * lib/freadptr.c (freadptr): Likewise.
25287         * lib/freadseek.c (freadptrinc): Likewise.
25288         * lib/fseeko.c (rpl_fseeko): Likewise.
25289         * lib/fseterr.c (fseterr): Likewise.
25290         * lib/fwritable.c (fwritable): Likewise.
25291         * lib/fwriting.c (fwriting): Likewise.
25292         Reported by Alain Guibert <alguibert+bts@free.fr>.
25293
25294 2008-04-15  Bruno Haible  <bruno@clisp.org>
25295
25296         * modules/mathl (configure.ac): Define module indicator.
25297
25298 2008-04-15  Bruno Haible  <bruno@clisp.org>
25299
25300         * lib/logl.c (logl): Remove unused variables.
25301
25302 2008-04-15  Bruno Haible  <bruno@clisp.org>
25303
25304         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
25305         fails.
25306
25307 2008-04-15  Bruno Haible  <bruno@clisp.org>
25308
25309         * lib/trim.c (trim2): Fix argument of isspace() macro.
25310
25311 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
25312
25313         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
25314         to 0.
25315         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
25316
25317 2008-04-14  Bruno Haible  <bruno@clisp.org>
25318
25319         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
25320         AC_LANG_PROGRAM argument.
25321         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
25322         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
25323         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
25324         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
25325         * m4/math_h.m4 (gl_MATH_H): Likewise.
25326         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
25327         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25328         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
25329         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
25330         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
25331         * m4/regex.m4 (gl_REGEX): Likewise.
25332         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
25333         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
25334         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25335         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
25336         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25337         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25338         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
25339         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
25340
25341 2008-04-14  Jim Meyering  <meyering@redhat.com>
25342
25343         test-strtod: fix typos: s/abs/fabs/
25344         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
25345
25346 2008-04-13  Bruno Haible  <bruno@clisp.org>
25347
25348         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
25349         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
25350         module is also used and while not building the reloc-wrapper.
25351
25352 2008-04-13  Bruno Haible  <bruno@clisp.org>
25353
25354         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
25355
25356 2008-04-13  Bruno Haible  <bruno@clisp.org>
25357
25358         Fix AIX compilation failure introduced on 2008-04-02.
25359         * tests/test-frexp.c (exp): Undefine before redefining.
25360         * tests/test-frexpl.c (exp): Likewise.
25361
25362 2008-04-13  Bruno Haible  <bruno@clisp.org>
25363
25364         Work around a HP-UX stdio bug.
25365         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
25366         * tests/test-ftello.c (main): Likewise.
25367         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
25368         * doc/posix-functions/ftello.texi: Likewise.
25369
25370 2008-04-13  Bruno Haible  <bruno@clisp.org>
25371
25372         Make test-signbit pass on HP-UX/hppa.
25373         * tests/test-signbit.c (minus_zerol): New variable.
25374         (test_signbitl): Use it.
25375
25376 2008-04-13  Bruno Haible  <bruno@clisp.org>
25377
25378         Make truncl work on OSF/1 4.0.
25379         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
25380         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
25381         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
25382         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
25383         HAVE_DECL_TRUNCL.
25384         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
25385         HAVE_DECL_TRUNCL.
25386         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
25387
25388 2008-04-13  Bruno Haible  <bruno@clisp.org>
25389
25390         * lib/unictype.h: Remove trailing comma from enumeration definitions.
25391
25392 2008-04-13  Bruno Haible  <bruno@clisp.org>
25393
25394         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
25395         expression, so as to avoid HP-UX 11 cc compiler bug.
25396
25397 2008-04-13  Bruno Haible  <bruno@clisp.org>
25398
25399         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
25400
25401 2008-04-13  Bruno Haible  <bruno@clisp.org>
25402
25403         * lib/git-merge-changelog.c: Remove empty declaration outside of
25404         functions.
25405
25406 2008-04-13  Bruno Haible  <bruno@clisp.org>
25407
25408         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
25409
25410 2008-04-13  Bruno Haible  <bruno@clisp.org>
25411
25412         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
25413         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
25414         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
25415         also if it exists but lacks definitions of the SHUT_* macros.
25416         * modules/sys_socket (Description): Update.
25417         Reported by Elbert Pol <e.pol@chello.nl>.
25418
25419 2008-04-13  Bruno Haible  <bruno@clisp.org>
25420
25421         * lib/localcharset.c (OS2): Don't redefine if already defined.
25422         Reported by Elbert Pol <e.pol@chello.nl>.
25423
25424 2008-04-13  Bruno Haible  <bruno@clisp.org>
25425
25426         * lib/binary-io.h [__EMX__]: Include <io.h>.
25427         Reported by Elbert Pol <e.pol@chello.nl>.
25428
25429 2008-04-12  Bruno Haible  <bruno@clisp.org>
25430
25431         * lib/fpucw.h: Enable the definitions also for x86_64.
25432         Needed for NetBSD/x86_64.
25433         Reported by Thomas Klausner <tk@giga.or.at>.
25434
25435 2008-04-12  Bruno Haible  <bruno@clisp.org>
25436
25437         * tests/test-strtod.c: Include isnand.h.
25438         (main): Use isnand instead of isnan.
25439         Reported by Jim Meyering.
25440
25441 2008-04-12  Bruno Haible  <bruno@clisp.org>
25442
25443         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
25444         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
25445
25446 2008-04-12  Jim Meyering  <meyering@redhat.com>
25447
25448         * m4/math_h.m4 (gl_MATH_H): Fix typos.
25449
25450 2008-04-12  Bruno Haible  <bruno@clisp.org>
25451
25452         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
25453         Reported by Elbert Pol <e.pol@chello.nl>.
25454
25455 2008-04-12  Eric Blake  <ebb9@byu.net>
25456
25457         Work around Solaris 10 math.h bug.
25458         * m4/math_h.m4 (gl_MATH_H): Check for bug.
25459         (gl_MATH_H_DEFAULTS): Set up default.
25460         * modules/math (Makefile.am): Replace new indicators.
25461         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
25462         * tests/test-math.c (main): Test this.
25463         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
25464         * doc/posix-headers/math.texi (math.h): Mention bug.
25465         Reported by Nelson H. F. Beebe and Jim Meyering.
25466
25467 2008-04-11  Bruno Haible  <bruno@clisp.org>
25468
25469         Adapt to future versions of Apple GCC.
25470         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
25471         Reported by Peter O'Gorman <peter@pogma.com>.
25472
25473 2008-04-11  Bruno Haible  <bruno@clisp.org>
25474
25475         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
25476
25477 2008-04-11  Bruno Haible  <bruno@clisp.org>
25478
25479         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
25480
25481         * modules/getaddrinfo-tests (Makefile.am): Define
25482         test_getaddrinfo_LDADD.
25483
25484 2008-04-11  Bruno Haible  <bruno@clisp.org>
25485
25486         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
25487         (init): Fix syntax error.
25488         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
25489         is declared.
25490
25491 2008-04-11  Bruno Haible  <bruno@clisp.org>
25492
25493         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
25494         * modules/glob (Depends-on): Add stdbool.
25495
25496 2008-04-11  Bruno Haible  <bruno@clisp.org>
25497
25498         * lib/trim.c: Include <string.h>.
25499
25500 2008-04-11  Eric Blake  <ebb9@byu.net>
25501
25502         Avoid compile failure on OS/2.
25503         * lib/regex_internal.h (internal_function): Disable optimization
25504         on OS/2 (__EMX__), where it caused compiler error.
25505         Reported by Elbert Pol.
25506
25507 2008-04-11  Bruno Haible  <bruno@clisp.org>
25508
25509         Flush the standard error stream before aborting. Needed on mingw.
25510         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
25511         * tests/test-array_list.c (ASSERT): Likewise.
25512         * tests/test-array_oset.c (ASSERT): Likewise.
25513         * tests/test-avltree_list.c (ASSERT): Likewise.
25514         * tests/test-avltree_oset.c (ASSERT): Likewise.
25515         * tests/test-avltreehash_list.c (ASSERT): Likewise.
25516         * tests/test-binary-io.c (ASSERT): Likewise.
25517         * tests/test-byteswap.c (ASSERT): Likewise.
25518         * tests/test-c-ctype.c (ASSERT): Likewise.
25519         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
25520         * tests/test-c-strcasestr.c (ASSERT): Likewise.
25521         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
25522         * tests/test-c-strstr.c (ASSERT): Likewise.
25523         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
25524         * tests/test-canonicalize.c (ASSERT): Likewise.
25525         * tests/test-carray_list.c (ASSERT): Likewise.
25526         * tests/test-ceilf1.c (ASSERT): Likewise.
25527         * tests/test-ceilf2.c (ASSERT): Likewise.
25528         * tests/test-ceill.c (ASSERT): Likewise.
25529         * tests/test-count-one-bits.c (ASSERT): Likewise.
25530         * tests/test-fbufmode.c (ASSERT): Likewise.
25531         * tests/test-fflush2.c (ASSERT): Likewise.
25532         * tests/test-floorf1.c (ASSERT): Likewise.
25533         * tests/test-floorf2.c (ASSERT): Likewise.
25534         * tests/test-floorl.c (ASSERT): Likewise.
25535         * tests/test-fopen.c (ASSERT): Likewise.
25536         * tests/test-fpending.c (ASSERT): Likewise.
25537         * tests/test-fprintf-posix.c (ASSERT): Likewise.
25538         * tests/test-fpurge.c (ASSERT): Likewise.
25539         * tests/test-freadable.c (ASSERT): Likewise.
25540         * tests/test-freadahead.c (ASSERT): Likewise.
25541         * tests/test-freading.c (ASSERT): Likewise.
25542         * tests/test-freadptr.c (ASSERT): Likewise.
25543         * tests/test-freadptr2.c (ASSERT): Likewise.
25544         * tests/test-freadseek.c (ASSERT): Likewise.
25545         * tests/test-freopen.c (ASSERT): Likewise.
25546         * tests/test-frexp.c (ASSERT): Likewise.
25547         * tests/test-frexpl.c (ASSERT): Likewise.
25548         * tests/test-fseek.c (ASSERT): Likewise.
25549         * tests/test-fseeko.c (ASSERT): Likewise.
25550         * tests/test-fstrcmp.c (ASSERT): Likewise.
25551         * tests/test-ftell.c (ASSERT): Likewise.
25552         * tests/test-ftello.c (ASSERT): Likewise.
25553         * tests/test-func.c (ASSERT): Likewise.
25554         * tests/test-fwritable.c (ASSERT): Likewise.
25555         * tests/test-fwriting.c (ASSERT): Likewise.
25556         * tests/test-getdelim.c (ASSERT): Likewise.
25557         * tests/test-getline.c (ASSERT): Likewise.
25558         * tests/test-i-ring.c (ASSERT): Likewise.
25559         * tests/test-iconv-utf.c (ASSERT): Likewise.
25560         * tests/test-iconv.c (ASSERT): Likewise.
25561         * tests/test-isfinite.c (ASSERT): Likewise.
25562         * tests/test-isnand.c (ASSERT): Likewise.
25563         * tests/test-isnanf.c (ASSERT): Likewise.
25564         * tests/test-isnanl.h (ASSERT): Likewise.
25565         * tests/test-ldexpl.c (ASSERT): Likewise.
25566         * tests/test-linked_list.c (ASSERT): Likewise.
25567         * tests/test-linkedhash_list.c (ASSERT): Likewise.
25568         * tests/test-localename.c (ASSERT): Likewise.
25569         * tests/test-lseek.c (ASSERT): Likewise.
25570         * tests/test-mbscasecmp.c (ASSERT): Likewise.
25571         * tests/test-mbscasestr1.c (ASSERT): Likewise.
25572         * tests/test-mbscasestr2.c (ASSERT): Likewise.
25573         * tests/test-mbscasestr3.c (ASSERT): Likewise.
25574         * tests/test-mbscasestr4.c (ASSERT): Likewise.
25575         * tests/test-mbschr.c (ASSERT): Likewise.
25576         * tests/test-mbscspn.c (ASSERT): Likewise.
25577         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
25578         * tests/test-mbspbrk.c (ASSERT): Likewise.
25579         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
25580         * tests/test-mbsrchr.c (ASSERT): Likewise.
25581         * tests/test-mbsspn.c (ASSERT): Likewise.
25582         * tests/test-mbsstr1.c (ASSERT): Likewise.
25583         * tests/test-mbsstr2.c (ASSERT): Likewise.
25584         * tests/test-mbsstr3.c (ASSERT): Likewise.
25585         * tests/test-memchr2.c (ASSERT): Likewise.
25586         * tests/test-memmem.c (ASSERT): Likewise.
25587         * tests/test-open.c (ASSERT): Likewise.
25588         * tests/test-printf-frexp.c (ASSERT): Likewise.
25589         * tests/test-printf-frexpl.c (ASSERT): Likewise.
25590         * tests/test-printf-posix.c (ASSERT): Likewise.
25591         * tests/test-quotearg.c (ASSERT): Likewise.
25592         * tests/test-rbtree_list.c (ASSERT): Likewise.
25593         * tests/test-rbtree_oset.c (ASSERT): Likewise.
25594         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
25595         * tests/test-round1.c (ASSERT): Likewise.
25596         * tests/test-roundf1.c (ASSERT): Likewise.
25597         * tests/test-roundl.c (ASSERT): Likewise.
25598         * tests/test-signbit.c (ASSERT): Likewise.
25599         * tests/test-sleep.c (ASSERT): Likewise.
25600         * tests/test-snprintf-posix.c (ASSERT): Likewise.
25601         * tests/test-snprintf.c (ASSERT): Likewise.
25602         * tests/test-sprintf-posix.c (ASSERT): Likewise.
25603         * tests/test-stat-time.c (ASSERT): Likewise.
25604         * tests/test-strcasestr.c (ASSERT): Likewise.
25605         * tests/test-strerror.c (ASSERT): Likewise.
25606         * tests/test-striconv.c (ASSERT): Likewise.
25607         * tests/test-striconveh.c (ASSERT): Likewise.
25608         * tests/test-striconveha.c (ASSERT): Likewise.
25609         * tests/test-strsignal.c (ASSERT): Likewise.
25610         * tests/test-strstr.c (ASSERT): Likewise.
25611         * tests/test-strtod.c (ASSERT): Likewise.
25612         * tests/test-trunc1.c (ASSERT): Likewise.
25613         * tests/test-trunc2.c (ASSERT): Likewise.
25614         * tests/test-truncf1.c (ASSERT): Likewise.
25615         * tests/test-truncf2.c (ASSERT): Likewise.
25616         * tests/test-truncl.c (ASSERT): Likewise.
25617         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
25618         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
25619         * tests/test-vasnprintf.c (ASSERT): Likewise.
25620         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
25621         * tests/test-vasprintf.c (ASSERT): Likewise.
25622         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
25623         * tests/test-vprintf-posix.c (ASSERT): Likewise.
25624         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
25625         * tests/test-vsnprintf.c (ASSERT): Likewise.
25626         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
25627         * tests/test-wcwidth.c (ASSERT): Likewise.
25628         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
25629         * tests/test-xprintf-posix.c (ASSERT): Likewise.
25630         * tests/test-xvasprintf.c (ASSERT): Likewise.
25631         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
25632         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
25633         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
25634         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
25635         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
25636         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
25637         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
25638         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
25639         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
25640         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
25641         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
25642         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
25643         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
25644         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
25645         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
25646         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
25647         * tests/unictype/test-block_list.c (ASSERT): Likewise.
25648         * tests/unictype/test-block_of.c (ASSERT): Likewise.
25649         * tests/unictype/test-block_test.c (ASSERT): Likewise.
25650         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
25651         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
25652         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
25653         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
25654         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
25655         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
25656         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
25657         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
25658         * tests/unictype/test-combining.c (ASSERT): Likewise.
25659         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
25660         * tests/unictype/test-digit.c (ASSERT): Likewise.
25661         * tests/unictype/test-mirror.c (ASSERT): Likewise.
25662         * tests/unictype/test-numeric.c (ASSERT): Likewise.
25663         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
25664         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
25665         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
25666         * tests/unictype/test-scripts.c (ASSERT): Likewise.
25667         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
25668         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
25669         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
25670         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
25671         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
25672         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
25673         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
25674         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
25675         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
25676         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
25677         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
25678         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
25679         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
25680         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
25681         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
25682         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
25683         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
25684         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
25685         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
25686         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
25687         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
25688         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
25689         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
25690         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
25691         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
25692         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
25693         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
25694         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
25695         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
25696         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
25697         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
25698         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
25699         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
25700         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
25701         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
25702         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
25703         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
25704         Reported by Eric Blake.
25705
25706 2008-04-11  Bruno Haible  <bruno@clisp.org>
25707
25708         * lib/wchar.in.h: Tweak comment.
25709
25710 2008-04-11  Bruno Haible  <bruno@clisp.org>
25711
25712         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
25713         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
25714         gl_COMMON.
25715         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
25716
25717 2008-04-11  Bruno Haible  <bruno@clisp.org>
25718
25719         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
25720
25721 2008-04-11  Simon Josefsson  <simon@josefsson.org>
25722
25723         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
25724         of attempting to use non-existing /dev/*random.  Based on patch
25725         from Adam Strzelecki <ono@java.pl> in
25726         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
25727
25728 2008-04-08  Bruno Haible  <bruno@clisp.org>
25729
25730         Add tentative support for emx+gcc.
25731         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
25732         * lib/fpurge.c (fpurge): Likewise.
25733         * lib/freadable.c (freadable): Likewise.
25734         * lib/freadahead.c (freadahead): Likewise.
25735         * lib/freading.c (freading): Likewise.
25736         * lib/freadptr.c (freadptr): Likewise.
25737         * lib/freadseek.c (freadptrinc): Likewise.
25738         * lib/fseeko.c (rpl_fseeko): Likewise.
25739         * lib/fseterr.c (fseterr): Likewise.
25740         * lib/fwritable.c (fwritable): Likewise.
25741         * lib/fwriting.c (fwriting): Likewise.
25742         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
25743
25744 2008-04-09  Eric Blake  <ebb9@byu.net>
25745
25746         Avoid some autoconf warnings.
25747         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
25748         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
25749         * m4/afs.m4 (gl_AFS): Likewise.
25750         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
25751         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
25752         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
25753         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
25754         (gl_INTEGER_TYPE_SUFFIX): Likewise.
25755         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
25756         (AC_CHECK_DECLS_ONCE): Likewise.
25757         Rename file...
25758         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
25759         gnulib-tool requires autoconf 2.59 or better.
25760         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
25761
25762 2008-04-08  Eric Blake  <ebb9@byu.net>
25763
25764         Use 'git describe --match' if present (added in git 1.5.5).
25765         * build-aux/git-version-gen: Limit result to tags that match 'v*'
25766         if possible.
25767
25768 2008-04-08  Bruno Haible  <bruno@clisp.org>
25769
25770         Add tentative support for OpenServer.
25771         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
25772         _ptr, _cnt.
25773         * lib/fpurge.c (fpurge): Likewise.
25774         * lib/freadable.c (freadable): Likewise.
25775         * lib/freadahead.c (freadahead): Likewise.
25776         * lib/freading.c (freading): Likewise.
25777         * lib/freadptr.c (freadptr): Likewise.
25778         * lib/freadseek.c (freadptrinc): Likewise.
25779         * lib/fseeko.c (rpl_fseeko): Likewise.
25780         * lib/fseterr.c (fseterr): Likewise.
25781         * lib/fwritable.c (fwritable): Likewise.
25782         * lib/fwriting.c (fwriting): Likewise.
25783         Reported by Roger Cornelius <rac@tenzing.org> and
25784         Brian K. White <brian@aljex.com>.
25785
25786 2008-04-06  Jim Meyering  <meyering@redhat.com>
25787
25788         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
25789
25790 2008-04-06  Bruno Haible  <bruno@clisp.org>
25791
25792         Avoid possible error with non-ASCII bytes in UTF-8 locales.
25793         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
25794         * tests/test-printf-posix.sh: Likewise.
25795         * tests/test-vfprintf-posix.sh: Likewise.
25796         * tests/test-vprintf-posix.sh: Likewise.
25797         * tests/test-xprintf-posix.sh: Likewise.
25798
25799 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25800
25801         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
25802         hide error from 'ls', needed on OS/2.
25803         Report by Elbert Pol <elbert.pol@gmail.com>.
25804
25805 2008-04-04  Eric Blake  <ebb9@byu.net>
25806
25807         Make test-fseeko.c failures meaningful.
25808         * tests/test-fseeko.c: Print line number on failure.
25809         * tests/test-fseek.c: Likewise.
25810         Reported by Nelson H. F. Beebe.
25811
25812         Improve strtod bug detection check.
25813         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
25814         required for Solaris 10.
25815         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
25816
25817 2008-04-04  Bruno Haible  <bruno@clisp.org>
25818
25819         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
25820         by m4/setenv.m4.
25821
25822 2008-04-03  Eric Blake  <ebb9@byu.net>
25823
25824         Ensure sane .version contents.
25825         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
25826         version string.
25827         * build-aux/git-version-gen: Improve documentation.
25828
25829         Make GNU make output nicer.
25830         * top/GNUmakefile [!_have-Makefile]: Add dependency on
25831         MAKECMDGOALS to enforce message for all command line targets.  Set
25832         srcdir for use in maint.mk.
25833
25834         Another maintainer tweak.
25835         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
25836         a target that regenerates version.
25837
25838 2008-04-03  Jim Meyering  <meyering@redhat.com>
25839
25840         vc-list-files: don't cause coreutils "make po-check" failure
25841         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
25842
25843 2008-04-03  Eric Blake  <ebb9@byu.net>
25844
25845         Allow VPATH usage of vc-list-files.
25846         * build-aux/vc-list-files (scriptversion): Add timestamp.
25847         (options): Add --help, --version, -C.
25848         (CVS): Support installed cvsu.
25849
25850 2008-04-02  Bruno Haible  <bruno@clisp.org>
25851
25852         Avoid some "statement with no effect" warnings from gcc.
25853         * tests/test-wctype.c (main): Explicitly ignore unused values.
25854         Reported by Jim Meyering.
25855
25856 2008-04-02  Jim Meyering  <meyering@redhat.com>
25857
25858         Avoid some warnings from "gcc -Wshadow".
25859         * tests/test-frexp.c (exp): Define to a different identifier.
25860         * tests/test-frexpl.c (exp): Likewise.
25861
25862 2008-04-03  Jim Meyering  <meyering@redhat.com>
25863
25864         bootstrap: remove dangling *.[ch] symlinks from lib
25865         * build-aux/bootstrap [dangling symlink removal]: Move find's
25866         -depth option to precede all others, to avoid a warning.
25867         Remove *.[ch] files too, and from "$source_base" (usually lib/).
25868
25869 2008-04-02  Bruno Haible  <bruno@clisp.org>
25870
25871         Avoid some warnings from "gcc -Wshadow".
25872         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
25873         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
25874         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
25875         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
25876         Reported by Jim Meyering.
25877
25878 2008-04-01  Bruno Haible  <bruno@clisp.org>
25879
25880         Fix test to work on IRIX 6.5 with cc.
25881         * tests/test-math.c (numeric_equal): New function.
25882         (main): Use it.
25883
25884 2008-04-01  Bruno Haible  <bruno@clisp.org>
25885
25886         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
25887
25888 2008-04-01  Bruno Haible  <bruno@clisp.org>
25889
25890         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
25891         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25892         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
25893         (Depends-on): Remove math.
25894
25895         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
25896         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25897         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
25898         (Depends-on): Remove math.
25899
25900         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
25901         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25902         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
25903         (Depends-on): Remove math.
25904         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
25905         (Depends-on): Remove math.
25906
25907         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
25908         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
25909         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
25910         (Depends-on): Remove math.
25911         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
25912         (Depends-on): Remove math.
25913
25914         * tests/test-round1.c: Include nan.h.
25915         (main): Use NaNd instead of NAN.
25916         * modules/round-tests (Files): Add tests/nan.h.
25917
25918         * tests/test-trunc1.c: Include nan.h.
25919         (main): Use NaNd instead of NAN.
25920         * modules/trunc-tests (Files): Add tests/nan.h.
25921
25922         * tests/test-roundf1.c: Include nan.h.
25923         (main): Use NaNf instead of NAN.
25924         * modules/roundf-tests (Files): Add tests/nan.h.
25925
25926         * tests/test-truncf1.c: Include nan.h.
25927         (main): Use NaNf instead of NAN.
25928         * modules/truncf-tests (Files): Add tests/nan.h.
25929
25930         * tests/test-ceilf1.c: Include nan.h.
25931         (main): Use NaNf instead of NAN.
25932         * modules/ceilf-tests (Files): Add tests/nan.h.
25933
25934         * tests/test-floorf1.c: Include nan.h.
25935         (main): Use NaNf instead of NAN.
25936         * modules/floorf-tests (Files): Add tests/nan.h.
25937
25938         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
25939         (main): Use NaNf instead of NAN.
25940         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
25941
25942         * tests/test-isnand.c: Include nan.h instead of <math.h>.
25943         (main): Use NaNd instead of NAN.
25944         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
25945
25946         * tests/test-frexp.c: Include nan.h.
25947         (main): Use NaNd instead of NAN.
25948         * modules/frexp-tests (Files): Add tests/nan.h.
25949
25950         * lib/isnan.c: Don't include <math.h>.
25951         (FUNC): Don't use NAN macro.
25952         * modules/isnand-nolibm (Depends-on): Remove math.
25953         * modules/isnanf-nolibm (Depends-on): Remove math.
25954         * modules/isnanl (Depends-on): Remove math.
25955         * modules/isnanl-nolibm (Depends-on): Remove math.
25956
25957         * tests/nan.h: New file.
25958
25959 2008-04-01  Eric Blake  <ebb9@byu.net>
25960
25961         Fix typos.
25962         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
25963         values to be the right type.
25964
25965         For now, cater to gnulib strtod inaccuracies.
25966         * tests/test-strtod.c (main): Allow 1-ulp error on expected
25967         fractional results.  While not as nice from a QoI perspective, it
25968         is a quicker patch than correctly implementing decimal to binary
25969         rounding.
25970
25971 2008-03-31  Eric Blake  <ebb9@byu.net>
25972
25973         Guarantee a definition of NAN.
25974         * lib/math.in.h (NAN): Define if missing.
25975         * tests/test-math.c (main): Test it.
25976         * doc/posix-headers/math.texi (math.h): Document this.
25977         * lib/isnan.c (rpl_isnand): Use it.
25978         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
25979         * tests/test-floorf1.c (NaN): Likewise.
25980         * tests/test-frexp.c (NaN): Likewise.
25981         * tests/test-isnand.c (NaN): Likewise.
25982         * tests/test-isnanf.c (NaN): Likewise.
25983         * tests/test-round1.c (NaN): Likewise.
25984         * tests/test-roundf1.c (NaN): Likewise.
25985         * tests/test-snprintf-posix.h (NaN): Likewise.
25986         * tests/test-sprintf-posix.h (NaN): Likewise.
25987         * tests/test-trunc1.c (NaN): Likewise.
25988         * tests/test-truncf1.c (NaN): Likewise.
25989         * tests/test-vasnprintf-posix.c (NaN): Likewise.
25990         * tests/test-vasprintf-posix.c (NaN): Likewise.
25991         * modules/isnand-nolibm (Depends-on): Add math.
25992         * modules/isnanf-nolibm (Depends-on): Likewise.
25993         * modules/isnanl (Depends-on): Likewise.
25994         * modules/isnanl-nolibm (Depends-on): Likewise.
25995         * modules/snprintf-posix-tests (Depends-on): Likewise.
25996         * modules/sprintf-posix-tests (Depends-on): Likewise.
25997         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
25998         * modules/vsprintf-posix-tests (Depends-on): Likewise.
25999         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
26000         * modules/vasprintf-posix-tests (Depends-on): Likewise.
26001
26002 2008-03-31  Bruno Haible  <bruno@clisp.org>
26003
26004         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
26005         * doc/posix-functions/strtod.texi: Likewise.
26006
26007 2008-03-31  Bruno Haible  <bruno@clisp.org>
26008
26009         * tests/test-strtod.c (main): Don't use C99 syntax.
26010
26011 2008-03-31  Bruno Haible  <bruno@clisp.org>
26012
26013         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
26014         Reported by Eric Blake.
26015
26016 2008-03-31  Jim Meyering  <meyering@redhat.com>
26017
26018         Don't compare actual signbit return values.
26019         * tests/test-strtod.c (main): Rather, compare only their
26020         zero/non-zero nature.
26021
26022 2008-03-31  Eric Blake  <ebb9@byu.net>
26023
26024         More strtod documentation.
26025         * doc/posix-functions/strtod.texi (strtod): Interpret more test
26026         failures as distinct bugs.
26027
26028 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
26029
26030         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
26031         Problem reported by Erik Benada in
26032         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
26033
26034 2008-03-30  Bruno Haible  <bruno@clisp.org>
26035
26036         * tests/test-strtod.c: Add comments about which assertion fails on which
26037         platform.
26038         * doc/posix-functions/strtod.texi: Add info about many more platforms.
26039
26040 2008-03-30  Eric Blake  <ebb9@byu.net>
26041
26042         Test signbit behavior on zeros.
26043         * tests/test-signbit.c (test_signbitf): Add tests for zero.
26044         (test_signbitd, test_signbitl): Likewise.
26045
26046         More strtod touchups.
26047         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
26048         sign of negative underflow, for now.  Use .5, not .1.
26049         * doc/posix-functions/strtod.texi (strtod): Mention these
26050         limitations.
26051         Reported by Jim Meyering.
26052
26053 2008-03-30  Bruno Haible  <bruno@clisp.org>
26054
26055         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
26056         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
26057
26058 2008-03-30  Bruno Haible  <bruno@clisp.org>
26059
26060         Avoid failure when attempting to return empty iconv results on some
26061         platforms.
26062         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
26063         allocation, don't report ENOMEM when the resulting string is empty.
26064
26065 2008-03-30  Bruno Haible  <bruno@clisp.org>
26066
26067         Fix buffer overrun.
26068         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
26069         Don't consider the width for tmp_length. Check count against tmp_length
26070         before doing the padding. Ensure enough allocation during padding.
26071
26072 2008-03-30  Eric Blake  <ebb9@byu.net>
26073
26074         strtod touchups.
26075         * lib/strtod.c (strtod): Avoid compiler warnings.
26076         Reported by Jim Meyering.
26077
26078 2008-03-30  Bruno Haible  <bruno@clisp.org>
26079
26080         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
26081         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
26082         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
26083         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
26084         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
26085         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
26086         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
26087         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
26088
26089         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
26090         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
26091         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
26092         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
26093         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
26094         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
26095         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
26096         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
26097
26098         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
26099         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
26100         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
26101         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
26102         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
26103         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
26104         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
26105         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
26106
26107         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
26108         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
26109
26110         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
26111         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
26112
26113         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
26114         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
26115
26116         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
26117         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
26118         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
26119
26120         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
26121         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
26122         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
26123
26124         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
26125         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
26126         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
26127
26128         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
26129         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
26130         * modules/vasprintf (Depends-on): Add EOVERFLOW.
26131
26132         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
26133         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
26134         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
26135         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
26136         (Depends-on): Add EOVERFLOW.
26137         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
26138         (Depends-on): Add EOVERFLOW.
26139         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26140         (Depends-on): Add EOVERFLOW.
26141         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26142         (Depends-on): Add EOVERFLOW.
26143         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26144         (Depends-on): Add EOVERFLOW.
26145         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26146         (Depends-on): Add EOVERFLOW.
26147         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26148         (Depends-on): Add EOVERFLOW.
26149         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26150         (Depends-on): Add EOVERFLOW.
26151
26152         * lib/sprintf.c (EOVERFLOW): Remove fallback.
26153         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
26154         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
26155
26156         * lib/snprintf.c (EOVERFLOW): Remove fallback.
26157         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
26158         * modules/snprintf (Depends-on): Add EOVERFLOW.
26159
26160         * lib/poll.c (EOVERFLOW): Remove fallback.
26161         * modules/poll (Depends-on): Add EOVERFLOW.
26162
26163         * lib/getugroups.c (EOVERFLOW): Remove fallback.
26164         * modules/getugroups (Depends-on): Add EOVERFLOW.
26165
26166         * lib/getdelim.c (EOVERFLOW): Remove fallback.
26167         * modules/getdelim (Depends-on): Add EOVERFLOW.
26168
26169         * lib/ftell.c (EOVERFLOW): Remove fallback.
26170         * modules/ftell (Depends-on): Add EOVERFLOW.
26171
26172         * lib/fprintf.c (EOVERFLOW): Remove fallback.
26173         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
26174         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
26175
26176         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
26177
26178         * modules/EOVERFLOW-tests: New file.
26179         * tests/test-EOVERFLOW.c: New file.
26180
26181         * modules/EOVERFLOW: New file.
26182         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
26183
26184 2008-03-30  Bruno Haible  <bruno@clisp.org>
26185
26186         Fix bug introduced on 2007-06-10.
26187         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
26188         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
26189
26190 2008-03-30  Bruno Haible  <bruno@clisp.org>
26191
26192         Improve freadseek's efficiency after ungetc.
26193         * lib/freadseek.c: Include freadahead.h.
26194         (freadptrinc): New function, extracted from freadseek.
26195         (freadseek): Use it in a loop. Use freadahead to determine the number
26196         of loop iterations.
26197         * modules/freadseek (Depends-on): Add freadahead.
26198         (configure.ac): Require AC_C_INLINE.
26199
26200 2008-03-30  Bruno Haible  <bruno@clisp.org>
26201
26202         * lib/freadseek.c (freadseek): Don't ignore the return value of
26203         freadptr.
26204
26205 2008-03-29  Eric Blake  <ebb9@byu.net>
26206
26207         Add hex float support.
26208         * modules/strtod (Depends-on): Add c-ctype.
26209         (Link): Mention POW_LIB.
26210         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
26211         whitespace between 'e' and exponent.
26212         * tests/test-strtod.c (main): Enable hex float tests.
26213         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
26214         now provides.
26215
26216         Document various strtod bugs, with some fixes.
26217         * doc/posix-functions/strtod.texi (strtod): Document bugs with
26218         "-0x", "inf", "nan", and hex constants.
26219         * doc/posix-functions/atof.texi (atof): Likewise.
26220         * modules/stdlib (Makefile.am): Support strtod.
26221         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
26222         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
26223         detect additional strtod bugs.
26224         * lib/stdlib.in.h (rpl_strtod): Add declarations.
26225         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
26226         bool where appropriate.  Parse 'inf' and 'nan'.
26227         * tests/test-strtod.c: New file.
26228         * modules/strtod (Depends-on): Add stdbool, stdlib.
26229         (configure.ac): Turn on module indicator.
26230         * modules/strtod-tests: New module.
26231
26232 2008-03-29  Eric Blake  <ebb9@byu.net>
26233
26234         Fix ftell on mingw.
26235         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
26236         * modules/ftell-tests (Depends-on): Add binary-io.
26237         * modules/ftello-tests (Depends-on): Likewise.
26238         * tests/test-ftell.c (main): Enhance test to cover behavior after
26239         ungetc.  Enforce binary mode.
26240         * tests/test-ftello.c (main): Likewise.
26241
26242         Pass test-freadseek on cygwin.
26243         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
26244         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
26245         ungetc buffer.
26246
26247         * tests/test-fflush2.c (main): Fix typo.
26248
26249 2008-03-29  Bruno Haible  <bruno@clisp.org>
26250
26251         * tests/test-fflush2.c (main): Temporarily disable the contents of
26252         this test.
26253         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
26254         Reported by Eric Blake.
26255
26256 2008-03-28  Simon Josefsson  <simon@josefsson.org>
26257
26258         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
26259         (GC_SHA224_DIGEST_SIZE): Add.
26260
26261         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
26262         (gc_hash_digest_length): Likewise.
26263         (gc_hash_buffer): Likewise.
26264
26265 2008-03-25  Bruno Haible  <bruno@clisp.org>
26266
26267         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
26268         detail which gettext release to use.
26269         Reported by Simon Josefsson.
26270
26271 2008-03-26  Jim Meyering  <meyering@redhat.com>
26272
26273         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
26274         * modules/gnumakefile (clean-GNUmakefile): Also, use
26275         test ... && ... || : syntax rather than if-then ... fi.
26276
26277         gnumakefile: Don't double-quote-expand $(VPATH) value.
26278         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
26279
26280 2008-03-24  Eric Blake  <ebb9@byu.net>
26281
26282         Alter GNUmakefile to install into top directory.
26283         * modules/maintainer-makefile: Split, and add dependency...
26284         * modules/gnumakefile: to this new module.
26285         * build-aux/GNUmakefile: Move...
26286         * top/GNUmakefile: ...here.
26287         * build-aux/maint.mk: Move...
26288         * top/maint.mk: ...here.
26289         * MODULES.html.sh (Support for maintaining...): Document new
26290         module.
26291
26292 2008-03-23  Bruno Haible  <bruno@clisp.org>
26293
26294         * gnulib-tool: New options --vc-files, --no-vc-files.
26295         (func_usage): Document them.
26296         (vc_files): New variable.
26297         (func_import): Consider vc_files.
26298         (func_create_testdir): Set vc_files to empty.
26299         Suggested by Jim Meyering and Karl Berry.
26300
26301 2008-03-23  Bruno Haible  <bruno@clisp.org>
26302
26303         Fix regex compilation error on HP-UX 11.
26304         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
26305         * modules/regex (Files): Add m4/mbstate_t.m4.
26306         Reported by Ton Voon <ton.voon@altinity.com>.
26307
26308 2008-03-23  Bruno Haible  <bruno@clisp.org>
26309
26310         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
26311
26312 2008-03-23  Eric Blake  <ebb9@byu.net>
26313             Bruno Haible  <bruno@clisp.org>
26314
26315         Install files from top/ in the destination directory.
26316         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
26317         augmentation also for the files from top/.
26318         (func_import, func_create_testdir): Rewrite file names:
26319         top/filename -> filename.
26320
26321 2008-03-23  Bruno Haible  <bruno@clisp.org>
26322
26323         Tweak "gnulib --version" output.
26324         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
26325
26326 2008-03-23  Bruno Haible  <bruno@clisp.org>
26327
26328         Tweak "gnulib --version" output.
26329         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
26330         rather than contents of ChangeLog, when possible.
26331
26332 2008-03-21  Eric Blake  <ebb9@byu.net>
26333
26334         More --version tweaks.
26335         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
26336         date of last ChangeLog entry.
26337
26338 2008-03-21  Jim Meyering  <meyering@redhat.com>
26339
26340         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
26341
26342 2008-03-20  Eric Blake  <ebb9@byu.net>
26343
26344         VPATH fix.
26345         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
26346
26347 2008-03-20  Simon Josefsson  <simon@josefsson.org>
26348
26349         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
26350         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
26351
26352 2008-03-20  Eric Blake  <ebb9@byu.net>
26353
26354         Sync GNUmakefile with coreutils.
26355         * build-aux/GNUmakefile (have-Makefile): Rename...
26356         (_have-Makefile): ...to this, for namespace consideration.
26357         (GNUmakefile.cfg): Include, if present.
26358         (_autoreconf): Define a default.
26359         (_is-dist-target): New rule for rebuilds to pick up intra-release
26360         version.
26361         (maint-cfg.mk): Rename...
26362         (cfg.mk): ...to this.
26363
26364 2008-03-18  Jim Meyering  <meyering@redhat.com>
26365
26366         New script and module: mktempd
26367         * MODULES.html.sh (maint+release support): Add mktempd.
26368         * build-aux/mktempd: New file.
26369         * modules/mktempd: New file.
26370
26371 2008-03-15  Jim Meyering  <meyering@redhat.com>
26372
26373         Undo last change.
26374         * lib/sha1.c, lib/md5.c: 63 != ~63.
26375         Reported by Andreas Schwab.
26376
26377         sha1.c, md5.c: Hoist a redundant expression.
26378         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
26379         "ctx->buflen" only once, before calling *_process_block.
26380         * lib/md5.c (md5_process_bytes): Likewise.
26381
26382 2008-03-14  Eric Blake  <ebb9@byu.net>
26383
26384         Bump copyright year in files generated by gnulib-tool.
26385         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
26386         gnulib-tool, rather than hard-coding it.
26387
26388         Fix 'gnulib-tool --version' output to work with git.
26389         * gnulib-tool (func_gnulib_dir): New function, extracted from...
26390         (startup): ...here.
26391         (func_version): Use it to invoke git-version-gen, rather than
26392         relying on CVS keyword expansion.  Modernize wording.
26393         (cvsdatestamp, last_checkin_date, version): Kill unused
26394         variables.
26395
26396 2008-03-12  Jim Meyering  <meyering@redhat.com>
26397
26398         Recognize optional cast of the argument to free.
26399         * build-aux/useless-if-before-free: Update regexps.
26400
26401         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
26402
26403 2008-03-11  Bruno Haible  <bruno@clisp.org>
26404
26405         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
26406         by a single package.
26407         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
26408         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
26409         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
26410         Reported by Sam Steingold <sds@gnu.org>.
26411
26412 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
26413
26414         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
26415         repositories.
26416
26417 2008-03-11  Bruno Haible  <bruno@clisp.org>
26418
26419         Avoid conflicts between local macro definitions.
26420         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
26421         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
26422
26423 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
26424             Bruno Haible  <bruno@clisp.org>
26425
26426         Make va_copy work with some version of xlc on AIX 5.1.
26427         * lib/stdarg.in.h: New file.
26428         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
26429         On AIX, use a <stdarg.h> file substitute.
26430         * modules/stdarg (Files): Add lib/stdarg.in.h.
26431         (Depends-on): Add include_next.
26432         (Makefile.am): Build a stdarg.h substitute if requested.
26433         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
26434
26435 2008-03-10  Bruno Haible  <bruno@clisp.org>
26436
26437         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
26438         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
26439         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
26440
26441 2008-03-10  Bruno Haible  <bruno@clisp.org>
26442
26443         * modules/stdlib (Depends-on): Add include_next, remove
26444         absolute-header.
26445
26446 2008-03-09  Bruno Haible  <bruno@clisp.org>
26447
26448         * lib/freadahead.h (freadahead): Document more precisely.
26449         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
26450         the sum of both buffer sizes.
26451         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
26452         * NEWS: Document the change.
26453
26454 2008-03-09  Bruno Haible  <bruno@clisp.org>
26455
26456         Extend freadptr to return also the buffer size.
26457         * lib/freadptr.h (freadptr): Add sizep argument.
26458         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
26459         (freadptr): Add sizep argument. Determine buffer size like freadahead
26460         does.
26461         * tests/test-freadptr.c: Don't include freadahead.h.
26462         (main): Adapt for new calling convention of freadptr.
26463         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
26464         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
26465         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
26466         tests/test-freadptr2.sh.
26467         (Depends): Remove freadahead.
26468         (TESTS): Add test-freadptr2.sh.
26469         (check_PROGRAMS): Add test-freadptr2.
26470
26471 2008-03-09  Bruno Haible  <bruno@clisp.org>
26472
26473         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
26474         Report and solution by Simon Josefsson.
26475
26476 2008-03-06  Bruno Haible  <bruno@clisp.org>
26477
26478         Make fflush after ungetc work on BSD platforms.
26479         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
26480         * tests/test-fflush2.c: New file.
26481         * tests/test-fflush2.sh: New file.
26482         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
26483         tests/test-fflush2.c.
26484         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
26485         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
26486
26487 2008-03-06  Eric Blake  <ebb9@byu.net>
26488
26489         Likewise for ftello.
26490         * modules/ftello (Dependencies): Add extensions.
26491         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
26492
26493 2008-03-06  Bruno Haible  <bruno@clisp.org>
26494
26495         * modules/fseeko (Dependencies): Add extensions.
26496         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
26497         Needed on glibc systems.
26498
26499 2008-03-06  Bruno Haible  <bruno@clisp.org>
26500
26501         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
26502         email address.
26503         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
26504
26505 2008-03-06  Bruno Haible  <bruno@clisp.org>
26506
26507         * users.txt: Add libgnupdf.
26508
26509 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
26510
26511         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
26512         (Header File Substitutes, Function Substitutes,
26513         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
26514         (Build robot for gnulib): Fix typo.
26515
26516 2008-03-06  Bruno Haible  <bruno@clisp.org>
26517
26518         * doc/gnulib-tool.texi (VCS Issues): Small updates.
26519         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
26520
26521 2008-03-06  Bruno Haible  <bruno@clisp.org>
26522
26523         * doc/func.texi: New file, extracted from doc/gnulib.texi.
26524         * doc/gnulib.texi: Include it.
26525
26526 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26527
26528         * modules/func (License): Change license to unlimited; there was
26529         no LGPL parts in the module anyway.
26530
26531 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26532
26533         * modules/__func__: Renamed to modules/func.
26534         * modules/__func__-tests: Renamed to modules/func-tests.
26535         * tests/test-__func__.c: Renamed to tests/test-func.c.
26536         * m4/__func__.m4: Renamed to m4/func.m4.
26537         * doc/gnulib.texi (__func__): Section renamed to func.
26538         Suggested by Eric Blake <ebb9@byu.net>.
26539
26540 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26541
26542         * doc/gnulib.texi (__func__): Use C99 terminology when talking
26543         about __func__.  Make example self-contained.  Suggested by Eric
26544         Blake <ebb9@byu.net>.
26545
26546         * tests/test-__func__.c (main): Avoid extraneous () around __func.
26547         Suggested by Eric Blake <ebb9@byu.net>.
26548
26549 2008-03-06  Simon Josefsson  <simon@josefsson.org>
26550
26551         * modules/__func__: New file.
26552         * modules/__func__-tests: New file.
26553         * tests/test-__func__.c: New file.
26554         * m4/__func__.m4: New file.
26555         * doc/gnulib.texi (__func__): Document __func__ module.
26556
26557 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26558
26559         * modules/byteswap (License): Re-license as LGPLv2+.
26560
26561 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26562
26563         * doc/Makefile: Add pdf target.
26564
26565 2008-03-05  Simon Josefsson  <simon@josefsson.org>
26566
26567         * modules/inline (License): Use 'unlimited', since there are only
26568         *.m4 files in this module.
26569
26570 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
26571             Bruno Haible  <bruno@clisp.org>
26572
26573         Add support for HP C 7.1 on OpenVMS 8.3.
26574         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
26575
26576 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
26577
26578         Update VMS specifics.
26579         * lib/getopt.c [VMS]: Remove include of unixlib.h.
26580
26581 2008-03-02  Jim Meyering  <meyering@redhat.com>
26582
26583         Remove the last dependency on the "free" module.
26584         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
26585         Reported by Bob Proulx.
26586
26587         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
26588
26589         Remove useless "if" tests before free.  Deprecate "free" module.
26590         * doc/posix-functions/free.texi: Mention that this
26591         module is no longer useful.
26592         * modules/free (Notice): Say this module is obsolete.
26593         * modules/readutmp (Depends-on): Remove free.
26594         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
26595         * lib/putenv.c (putenv): Likewise.
26596         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
26597         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
26598         * tests/test-c-strcasestr.c (main): Likewise.
26599         * tests/test-c-strstr.c (main): Likewise.
26600         * tests/test-mbscasestr1.c (main): Likewise.
26601         * tests/test-mbscasestr2.c (main): Likewise.
26602         * tests/test-mbsstr1.c (main): Likewise.
26603         * tests/test-mbsstr2.c (main): Likewise.
26604         * tests/test-memmem.c (main): Likewise.
26605         * tests/test-strcasestr.c (main): Likewise.
26606         * tests/test-striconv.c (main): Likewise.
26607         * tests/test-striconveh.c (main): Likewise.
26608         * tests/test-striconveha.c (main): Likewise.
26609         * tests/test-strstr.c (main): Likewise.
26610
26611         * build-aux/git-version-gen: Adjust a comment and the Usage string.
26612
26613         bootstrap: sync from coreutils again
26614         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
26615
26616 2008-03-01  Jim Meyering  <meyering@redhat.com>
26617
26618         bootstrap: sync from coreutils
26619         * build-aux/bootstrap (update_po_files): Copy a .po file into place
26620         also when the target doesn't exist.
26621
26622 2008-03-01  Eric Blake  <ebb9@byu.net>
26623
26624         Fix bugs in last patch.
26625         * lib/memchr2.c (memchr2): Fix typo.
26626         * tests/test-memchr2.c: Test previous bug, and don't use GNU
26627         extension.
26628         Reported by Bruce Korb.
26629
26630         New module 'memchr2'.
26631         * modules/memchr2: New file.
26632         * modules/memchr2-tests: Likewise.
26633         * lib/memchr2.h: Likewise.
26634         * lib/memchr2.c: Likewise, based on memchr.c.
26635         * tests/test-memchr2.c: New test.
26636         * MODULES.html.sh (String handling): Add memchr2.
26637
26638 2008-02-29  Bruno Haible  <bruno@clisp.org>
26639
26640         * modules/freadseek-tests: New file.
26641         * tests/test-freadseek.sh: New file.
26642         * tests/test-freadseek.c: New file.
26643
26644         New module 'freadseek'.
26645         * modules/freadseek: New file.
26646         * lib/freadseek.h: New file.
26647         * lib/freadseek.c: New file.
26648         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
26649
26650 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
26651
26652         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
26653         wydawca.
26654
26655         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
26656         program_invocation_name and program_invocation_short_name are
26657         present.
26658
26659 2008-02-28  Bruno Haible  <bruno@clisp.org>
26660
26661         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
26662         * tests/test-freadptr.sh: Also test non-seekable stdin.
26663
26664 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
26665
26666         * build-aux/bootstrap (source_base, m4_base)
26667         (doc_base, tests_base): New variables.
26668         (gnulib_tool_options): Do not hardcode base directories, use
26669         the above variables instead.
26670
26671 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
26672
26673         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
26674
26675 2008-02-28  Bruno Haible  <bruno@clisp.org>
26676
26677         * modules/freadptr-tests: New file.
26678         * tests/test-freadptr.sh: New file.
26679         * tests/test-freadptr.c: New file.
26680
26681         New module 'freadptr'.
26682         * modules/freadptr: New file.
26683         * lib/freadptr.h: New file.
26684         * lib/freadptr.c: New file.
26685         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
26686
26687 2008-02-26  Karl Berry  <karl@freefriends.org>
26688
26689         Sync from Libtool:
26690         * libltdl/argz.c (argz_add, argz_count): New functions.
26691         * libltdl/argz.in.h: Declare them.
26692         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
26693
26694 2008-02-22  Bruno Haible  <bruno@clisp.org>
26695
26696         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
26697         is a pointer type.  Needed for HP-UX 10.
26698         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
26699         * doc/posix-functions/gmtime_r.texi: Likewise.
26700         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
26701
26702 2008-02-24  Bruno Haible  <bruno@clisp.org>
26703
26704         * modules/environ-tests: New file.
26705         * tests/test-environ.c: New file.
26706
26707         New module 'environ'.
26708         * modules/environ: New file.
26709         * lib/unistd.in.h (environ): New declaration.
26710         * m4/environ.m4: New file.
26711         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
26712         after use.
26713         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
26714         HAVE_DECL_ENVIRON.
26715         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
26716         HAVE_DECL_ENVIRON.
26717         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
26718         wrong claim that 'environ' is missing on some systems.
26719         * modules/execute (Depends-on): Add environ.
26720         * lib/execute.c (environ): Remove fallback declaration.
26721         * modules/pipe (Depends-on): Add environ.
26722         * lib/pipe.c (environ): Remove fallback declaration.
26723         * modules/setenv (Depends-on): Add environ.
26724         * lib/setenv.c (environ): Remove fallback declaration.
26725         * modules/unsetenv (Depends-on): Add environ.
26726         * lib/unsetenv.c (environ): Remove fallback declaration.
26727         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
26728         m4/environ.m4.
26729         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
26730         (gl_PREREQ_UNSETENV): Likewise.
26731
26732 2008-02-24  Bruno Haible  <bruno@clisp.org>
26733
26734         * doc/posix-functions/environ.texi: Document the MacOS X problem.
26735
26736 2008-02-20  Bob Proulx  <bob@proulx.com>
26737
26738         Enable use of older two part flavor 'git describe'.
26739         * build-aux/git-version-gen: If using the older two part flavor of
26740         git version then recreate the third part now present in the
26741         newer three part flavor of git describe.
26742
26743 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
26744
26745         * lib/fts.c (fts_build): Typo correction to comment.
26746
26747 2008-02-17  Bruno Haible  <bruno@clisp.org>
26748
26749         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
26750         generating no-op conflicts.
26751
26752 2008-02-17  Bruno Haible  <bruno@clisp.org>
26753
26754         Speed up by 10%.
26755         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
26756         result_entries, rather than an index-based loop.
26757
26758 2008-02-17  Bruno Haible  <bruno@clisp.org>
26759
26760         Speed up by 25%.
26761         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
26762         'hashcode_cached'.
26763         (entry_create): New function.
26764         (entry_hashcode): Use the cached hashcode if possible.
26765         (read_changelog_file, try_split_merged_entry): Use entry_create.
26766
26767 2008-02-17  Bruno Haible  <bruno@clisp.org>
26768
26769         Speed up from O(n^2) to O(n) for long ChangeLog files.
26770         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
26771         (read_changelog_file): Change implementation of entries_reversed list
26772         to rbtreehash.
26773         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
26774
26775 2008-02-17  Bruno Haible  <bruno@clisp.org>
26776
26777         New option --split-merged-entry.
26778         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
26779         (find_paragraph_end, try_split_merged_entry): New functions.
26780         (long_options): Add option --split-merged-entry.
26781         (usage): Document option --split-merged-entry.
26782         (main): Implement option --split-merged-entry.
26783         Reported by Eric Blake.
26784
26785 2008-02-17  Bruno Haible  <bruno@clisp.org>
26786
26787         * lib/git-merge-changelog.c: Include c-strstr.h.
26788         (main): Support the "git pull --rebase" situation.
26789         * modules/git-merge-changelog (Depends-on): Add c-strstr.
26790         Reported by Eric Blake.
26791
26792 2008-02-16  Eric Blake  <ebb9@byu.net>
26793
26794         Avoid doubling \ in common case of "c-maybe" quoting style.
26795         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
26796         eliding outer quotes.
26797         * lib/quotearg.h: Document this.
26798         * tests/test-quotearg.c (result_strings, inputs, results_g)
26799         (flag_results, locale_results): Test it by adding a new string to
26800         each test group.
26801         (compare_strings): Test new string.
26802
26803 2008-02-13  Eric Blake  <ebb9@byu.net>
26804
26805         Avoid trigraph quoting in default output.
26806         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
26807         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
26808         unless explicitly requested.
26809         * tests/test-quotearg.c (flag_results, main): Add additional tests.
26810
26811 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
26812
26813         Don't rely on signed integer overflowing to negative value.
26814         * lib/getugroups.c (getugroups): Include <limits.h>.
26815         Instead, compare against INT_MAX, and increment only if the test passes.
26816
26817 2008-02-13  Jim Meyering  <meyering@redhat.com>
26818         and Eric Blake  <ebb9@byu.net>
26819
26820         Avoid shadowing warning and compile errors on Linux.
26821         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
26822         forwarding macros on Linux.
26823         (dcgettext): Define a stub, for Linux.
26824         (results_g, main): Avoid warnings.
26825
26826 2008-02-12  Eric Blake  <ebb9@byu.net>
26827
26828         Silence warning in last patch.
26829         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
26830
26831         Quotearg part 4: add tests, fix c-maybe colon quoting.
26832         * lib/quotearg.h: Improve documentation.
26833         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
26834         escapes when adding outer quotes.  When quoting trigraphs, use
26835         valid C notation.  When quoting NUL, omit extra characters if next
26836         character is not digit.  Alter prototype.
26837         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
26838         callers.
26839         * modules/quotearg-tests: New module.
26840         * tests/test-quotearg.c: New test.
26841
26842 2008-02-07  Eric Blake  <ebb9@byu.net>
26843
26844         Quotearg part 3: add flag to control outer quote elision.
26845         * lib/quotearg.h (c_maybe_quoting_style): New style.
26846         (enum quoting_flags): Better documentation of flags.
26847         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
26848         c-maybe style.
26849         (quotearg_buffer_restyled): Handle new flag to elide outer
26850         quotes.
26851
26852         Quotearg part 2: add flag that can control NUL elision.
26853         * lib/quotearg.h (set_quoting_flags): New prototype.
26854         * lib/quotearg.c (struct quoting_options): Add flag field.
26855         (set_quoting_flags): New function.
26856         (quotearg_buffer_restyled): Add flags parameter.
26857         (quotearg_alloc_mem): Set the flag if length cannot be returned.
26858         (quotearg_n_options): Set the flag, since length cannot be
26859         returned.
26860         (quoting_options_from_style): Default flags correctly.
26861
26862         Quotearg part 1: more wrappers, restore quotearg_char state.
26863         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
26864         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
26865         (quotearg_colon_mem): New wrappers.
26866         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
26867         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
26868         functions.
26869         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
26870         (quotearg_colon_mem): New functions.
26871
26872 2008-02-11  Bruno Haible  <bruno@clisp.org>
26873
26874         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
26875         library in the current directory: it does not work with parallel make.
26876         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26877
26878 2008-02-11  Bruno Haible  <bruno@clisp.org>
26879
26880         * .gitattributes: New file.
26881
26882 2008-02-11  Jim Meyering  <meyering@redhat.com>
26883
26884         useless-if-before-free: Fix reversed exit values.
26885         * build-aux/useless-if-before-free: Use correct values
26886         for EXIT_MATCH and EXIT_NO_MATCH.
26887
26888         * build-aux/useless-if-before-free: Close stdout carefully.
26889
26890 2008-02-10  Bruno Haible  <bruno@clisp.org>
26891
26892         New module 'git-merge-changelog'.
26893         * modules/git-merge-changelog: New file.
26894         * lib/git-merge-changelog.c: New file.
26895
26896 2008-02-10  Jim Meyering  <meyering@redhat.com>
26897
26898         useless-if-before-free: New option: --list (-l).
26899
26900         useless-if-before-free: Don't exit immediately upon open failure.
26901         * build-aux/useless-if-before-free: Exit 2 for errors.
26902         Upon failure to open a file, don't exit immediately.
26903         Rather, just warn and continue with any remaining files.
26904
26905 2008-02-10  Bruno Haible  <bruno@clisp.org>
26906
26907         New abstract list operation 'node_set_value'.
26908         * lib/gl_list.h (gl_list_node_set_value): New function.
26909         (struct gl_list_implementation): New field node_set_value.
26910         * lib/gl_list.c (gl_list_node_set_value): New function.
26911         * lib/gl_array_list.c (gl_array_node_set_value): New function.
26912         (gl_array_list_implementation): Update.
26913         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
26914         (gl_carray_list_implementation): Update.
26915         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
26916         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
26917         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
26918         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
26919         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
26920         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
26921         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
26922         Update.
26923         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
26924         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
26925         (gl_sublist_list_implementation): Update.
26926
26927 2008-02-10  Bruno Haible  <bruno@clisp.org>
26928
26929         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
26930         Needed when ELEMENT is #defined to 'some_type *'.
26931
26932 2008-02-10  Jim Meyering  <meyering@redhat.com>
26933
26934         New script and module: useless-if-before-free
26935         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
26936         * build-aux/useless-if-before-free: New file.
26937         * modules/useless-if-before-free: New file.
26938
26939         * build-aux/gitlog-to-changelog: Use committer date, not author date.
26940
26941         xstrtol_error: Fix typo.
26942         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
26943         s/exit_failure/exit_status/.
26944
26945 2008-02-09  Jim Meyering  <meyering@redhat.com>
26946
26947         New script and module: gitlog-to-changelog
26948         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
26949         * modules/gitlog-to-changelog: New file.
26950         * build-aux/gitlog-to-changelog: New file.
26951
26952 2008-02-08  Jim Meyering  <meyering@redhat.com>
26953
26954         Avoid two "parameter unused" warnings.
26955         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
26956         Mark "st" as used.
26957
26958         Use "git COMMAND", not "git-COMMAND".
26959         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
26960         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
26961         * build-aux/git-version-gen: Use "git status", not "git-status".
26962
26963 2008-02-07  Bruno Haible  <bruno@clisp.org>
26964
26965         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
26966         Avoids a crash on Windows Vista.
26967         Reported by Adam Strzelecki <ono@java.pl> via
26968         Simon Josefsson <simon@josefsson.org>.
26969
26970 2008-02-06  Bruno Haible  <bruno@clisp.org>
26971
26972         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
26973         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
26974         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
26975         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
26976         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
26977         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
26978         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
26979         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
26980         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
26981         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
26982         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
26983         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
26984         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
26985         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
26986         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
26987         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
26988         left-adjust flag.
26989         * tests/test-snprintf-posix.h (test_function): Likewise.
26990         * tests/test-sprintf-posix.h (test_function): Likewise.
26991         * tests/test-vasprintf-posix.c (test_function): Likewise.
26992         * doc/posix-functions/fprintf.texi: Update.
26993         * doc/posix-functions/printf.texi: Update.
26994         * doc/posix-functions/snprintf.texi: Update.
26995         * doc/posix-functions/sprintf.texi: Update.
26996         * doc/posix-functions/vfprintf.texi: Update.
26997         * doc/posix-functions/vprintf.texi: Update.
26998         * doc/posix-functions/vsnprintf.texi: Update.
26999         * doc/posix-functions/vsprintf.texi: Update.
27000         Reported by Peter Fales <psfales@alcatel-lucent.com>.
27001
27002 2008-02-06  Bruno Haible  <bruno@clisp.org>
27003
27004         Fix bug introduced on 2008-01-26.
27005         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
27006
27007 2008-02-06  Bruno Haible  <bruno@clisp.org>
27008
27009         Fix bug introduced on 2007-06-10.
27010         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
27011         !NEED_PRINTF_FLAG_ZERO.
27012
27013 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
27014
27015         getloadavg: use libperfstat on AIX5
27016         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
27017
27018 2008-02-03  Bruno Haible  <bruno@clisp.org>
27019
27020         * lib/diffseq.h: Add comments about required #includes.
27021         Reported by Michael Biggs <gnulib@doubleplum.net>.
27022
27023 2008-02-01  Bruno Haible  <bruno@clisp.org>
27024
27025         * users.txt: Add gnuit.
27026
27027 2008-01-31  Bruno Haible  <bruno@clisp.org>
27028
27029         * lib/md4.c (set_uint32): Mark as inline.
27030         * lib/md5.c (set_uint32): Likewise.
27031         * lib/sha1.c (set_uint32): Likewise.
27032         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
27033         * m4/md5.m4 (gl_MD5): Likewise.
27034         * m4/sha1.m4 (gl_SHA1): Likewise.
27035
27036 2008-01-31  Jim Meyering  <meyering@redhat.com>
27037
27038         Use "sizeof VAR", rather than a literal "4".
27039         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
27040         * lib/md4.c (md4_read_ctx): Likewise.
27041         * lib/sha1.c (sha1_read_ctx): Likewise.
27042
27043 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27044
27045         * tests/test-sha1.c: New file, based on test-md5.c.
27046
27047         * modules/crypto/sha1-tests: New file.
27048
27049 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27050
27051         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
27052
27053 2008-01-31  Jim Meyering  <meyering@redhat.com>
27054
27055         Prefer "sizeof v" over the equivalent "4".
27056         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
27057         * lib/md5.c (set_uint32): Likewise.
27058         * lib/sha1.c (set_uint32): Likewise.
27059
27060 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27061
27062         * lib/sha1.c (set_uint32): Mark function as static.
27063
27064 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27065
27066         md2: clarify comments to say that alignment is not required.
27067         * lib/md2.h: Remove warning about alignment in comment.
27068         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
27069         never been required.
27070
27071 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27072
27073         md4: adapt alignment constraint fix from sha1.
27074         * lib/md4.c (set_uint32): New function, from sha1.c
27075         (md4_read_ctx): Use it.
27076         (md4_finish_ctx): Doc fix.
27077         * lib/md4.h: Doc fix.
27078
27079 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27080
27081         md5: adapt alignment constraint fix from sha1.
27082         * lib/md5.c (set_uint32): New function, from sha1.c
27083         (md5_read_ctx): Use it.
27084         (md5_finish_ctx): Doc fix.
27085         * lib/md5.h: Doc fix.
27086
27087 2008-01-30  Peter Palfrader  <weasel@debian.org>
27088
27089         sha1: remove the result buffer alignment constraint
27090         * lib/sha1.c (set_uint32): New function.
27091         (sha1_read_ctx): Rewrite to remove the result buffer alignment
27092         constraint.
27093         (sha1_finish_ctx): Remove comment warning about alignment constraint.
27094         * lib/sha1.h: Likewise.
27095
27096 2008-01-30  Andreas Schwab  <schwab@suse.de>
27097             Bruno Haible  <bruno@clisp.org>
27098
27099         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
27100         correct definition of LDBL_MIN_EXP.
27101
27102 2008-01-30  Karl Berry  <karl@gnu.org>
27103
27104         * config/srclist-update: try to preserve x bit on updates.
27105         * config/srclistvars.sh: update for karl.
27106
27107 2008-01-29  Jim Meyering  <meyering@redhat.com>
27108
27109         vasnprintf.c: Avoid warning about unused label
27110         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
27111         "overflow" label definition and associated code with the
27112         same cpp condition that guards the sole use of that label.
27113
27114 2008-01-26  Bruno Haible  <bruno@clisp.org>
27115
27116         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
27117         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
27118         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
27119         * lib/isnanl-nolibm.h (isnanl): Likewise.
27120         Reported by Paul Eggert <eggert@cs.ucla.edu>.
27121
27122 2008-01-26  Bruno Haible  <bruno@clisp.org>
27123
27124         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
27125         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
27126
27127 2008-01-26  Bruno Haible  <bruno@clisp.org>
27128
27129         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
27130         GCC >= 4.0 built-in.
27131         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
27132
27133 2008-01-26  Bruno Haible  <bruno@clisp.org>
27134
27135         Rename isnan, applicable to 'double' only, to isnand.
27136         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
27137         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
27138         (configure.ac): Update.
27139         (Include): Replace "isnan.h" with "isnand.h".
27140         * m4/isnand.m4: Renamed from m4/isnan.m4.
27141         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
27142         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
27143         instead of isnan.c.
27144         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
27145         instead of HAVE_ISNAN_IN_LIBC.
27146         (isnand): Renamed from isnan.
27147         * lib/isnand.c: New file.
27148         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
27149         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
27150         (Makefile.am): Update.
27151         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
27152         Include isnand.h instead of isnan.h.
27153         (main): Test isnand instead of isnan.
27154         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
27155         isnan-nolibm.
27156         * modules/frexp (Depends-on): Likewise.
27157         * modules/frexp-tests (Depends-on): Likewise.
27158         * modules/frexp-nolibm (Depends-on): Likewise.
27159         * modules/frexp-nolibm-tests (Depends-on): Likewise.
27160         * modules/isfinite (Depends-on): Likewise.
27161         * modules/round-tests (Depends-on): Likewise.
27162         * modules/signbit (Depends-on): Likewise.
27163         * modules/signbit-tests (Depends-on): Likewise.
27164         * modules/snprintf-posix (Depends-on): Likewise.
27165         * modules/sprintf-posix (Depends-on): Likewise.
27166         * modules/trunc-tests (Depends-on): Likewise.
27167         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
27168         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
27169         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
27170         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
27171         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
27172         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
27173         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
27174         * modules/vasnprintf-posix (Depends-on): Likewise.
27175         * modules/vasprintf-posix (Depends-on): Likewise.
27176         * modules/vfprintf-posix (Depends-on): Likewise.
27177         * modules/vsnprintf-posix (Depends-on): Likewise.
27178         * modules/vsprintf-posix (Depends-on): Likewise.
27179         * lib/frexp.c: Include isnand.h instead of isnan.h.
27180         (ISNAN): Set to isnand instead of isnan.
27181         * lib/isfinite.c: Include isnand.h instead of isnan.h.
27182         (gl_isfinited): Use isnand instead of isnan.
27183         * lib/signbitd.c: Include isnand.h instead of isnan.h.
27184         (gl_signbitd): Use isnand instead of isnan.
27185         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
27186         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
27187         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
27188         (main): Use isnand instead of isnan.
27189         * tests/test-round1.c: Include isnand.h.
27190         (main): Use isnand instead of isnan.
27191         * tests/test-round2.c: Include isnand.h instead of isnan.h.
27192         (ISNAN): Set to isnand instead of isnan.
27193         * tests/test-trunc1.c: Include isnand.h.
27194         (main): Use isnand instead of isnan.
27195         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
27196         (equal): Use isnand instead of isnan.
27197         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
27198         isnand-nolibm.
27199         * NEWS: Mention the change.
27200
27201 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
27202             Bruno Haible  <bruno@clisp.org>
27203
27204         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
27205         the GCC builtins for signbits are present and set
27206         REPLACE_SIGNBIT_USING_GCC if so.
27207         * lib/math.in.h (signbit): Define using GCC builtins if
27208         REPLACE_SIGNBIT_USING_GCC is set.
27209         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
27210         REPLACE_SIGNBIT_USING_GCC.
27211         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
27212
27213 2008-01-25  Jim Meyering  <meyering@redhat.com>
27214
27215         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
27216         * lib/poll.c: Include <config.h>, not "config.h".
27217         * tests/test-getaddrinfo.c: Likewise.
27218
27219 2008-01-25  Simon Josefsson  <simon@josefsson.org>
27220
27221         * modules/sockets-tests: New file.
27222
27223 2008-01-24  Simon Josefsson  <simon@josefsson.org>
27224
27225         * modules/sockets: New module, can be used to call WSA_Startup and
27226         WSA_Cleanup when needed.
27227
27228         * lib/sockets.h, lib/sockets.c: New files.
27229
27230         * m4/sockets.m4: New file.
27231
27232         * tests/test-sockets.c: New file.
27233
27234 2008-01-19  Bruno Haible  <bruno@clisp.org>
27235
27236         * doc/posix-headers: Renamed from doc/headers.
27237         * doc/posix-functions: Renamed from doc/functions.
27238         * doc/gnulib.texi: Update.
27239
27240 2008-01-19  Bruno Haible  <bruno@clisp.org>
27241
27242         * doc/glibc-functions/strcasestr.texi: Include contents of
27243         doc/functions/strcasestr.texi, fixing the list of platforms.
27244         * doc/functions/strcasestr.texi: Remove file.
27245
27246 2008-01-19  Bruno Haible  <bruno@clisp.org>
27247
27248         * doc/glibc-functions/memmem.texi: Include contents of
27249         doc/functions/memmem.texi.
27250         * doc/functions/memmem.texi: Remove file.
27251
27252 2008-01-18  Bruno Haible  <bruno@clisp.org>
27253
27254         * doc/glibc-functions/*.texi: New files.
27255         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
27256         to use the new files.
27257
27258 2008-01-17  Bruno Haible  <bruno@clisp.org>
27259
27260         * tests/test-gethostname.c (main): Fix printf statement.
27261
27262 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27263
27264         * modules/gethostname-tests: New file.
27265
27266         * tests/test-gethostname.c: New file.
27267
27268 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27269
27270         * lib/gethostname.c: Include string.h unconditionally, strncpy is
27271         used by the UNAME case.  Reported by Bruno Haible
27272         <bruno@clisp.org>.
27273
27274 2008-01-17  Eric Blake  <ebb9@byu.net>
27275
27276         Convert c-strcasestr to be more efficient.
27277         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
27278         (Depends-on): Add c-strcase, remove malloca, strnlen.
27279         * tests/test-c-strcasestr.c (main): Enhance test.
27280         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
27281
27282 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
27283
27284         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
27285         Use it in creating po/Makevars.
27286
27287 2008-01-15  Simon Josefsson  <simon@josefsson.org>
27288
27289         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
27290         Applications that requires it should initialize libgcrypt
27291         manually.
27292
27293 2008-01-16  Simon Josefsson  <simon@josefsson.org>
27294
27295         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
27296
27297 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
27298
27299         Fix problem with getdate on mingw32 reported by Simon Josefsson
27300         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
27301         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
27302         tzname", when deciding whether to declare tzname.
27303         * lib/strftime.c (tzname): Likewise.
27304
27305 2008-01-15  Bruno Haible  <bruno@clisp.org>
27306
27307         Work around a MacOS X 10.5 bug in frexpl().
27308         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
27309         * doc/functions/frexpl.texi: Document the bug.
27310         Reported by Elias Pipping <pipping@gentoo.org>.
27311
27312 2008-01-14  Eric Blake  <ebb9@byu.net>
27313
27314         Touch up previous patch.
27315         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
27316         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
27317
27318         Convert strcasestr module to use Two-Way algorithm.
27319         * modules/strcasestr-simple: New module, based on the old
27320         strcasestr, but with Two-Way rather than KMP.
27321         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
27322         * lib/string.in.h (rpl_strcasestr): Declare.
27323         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
27324         performance.
27325         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
27326         * modules/string (Makefile.am): Support strcasestr.
27327         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
27328         * modules/strcasestr-tests (Depends-on): Check for alarm.
27329         * tests/test-strcasestr.c: Augment test.
27330         * lib/str-two-way.h: Clean up stray macro.
27331         * NEWS: Document new module.
27332         * MODULES.html.sh (string handling): Likewise.
27333         * doc/functions/strcasestr.texi: New file.
27334         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
27335         here, since it is not a POSIX function.
27336
27337 2008-01-14  Colin Watson  <cjwatson@debian.org>
27338             Bruno Haible  <bruno@clisp.org>
27339
27340         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
27341         works fine; if not, set REPLACE_STRSIGNAL.
27342         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
27343         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27344         REPLACE_STRSIGNAL.
27345         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
27346         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
27347         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
27348
27349 2008-01-14  Bruno Haible  <bruno@clisp.org>
27350
27351         * modules/strsignal (Include): Change to <string.h>.
27352
27353 2008-01-14  Colin Watson  <cjwatson@debian.org>
27354
27355         * modules/argp (Notice): Add a notice recommending to change
27356         XGETTEXT_OPTIONS.
27357         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
27358
27359 2008-01-13  Colin Watson  <cjwatson@debian.org>
27360
27361         * modules/strsignal-tests: New file.
27362         * tests/test-strsignal.c: New file.
27363
27364         * lib/strsignal.c: New file, from glibc with modifications.
27365         * lib/siglist.h: New file, from glibc with modifications.
27366         * lib/string.in.h (strsignal): New declaration.
27367         * m4/strsignal.m4: New file.
27368         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27369         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
27370         * modules/strsignal: New file.
27371         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
27372         HAVE_DECL_STRSIGNAL.
27373
27374 2008-01-13  Bruno Haible  <bruno@clisp.org>
27375
27376         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
27377         locale encoding is not ASCII. Needed for OpenBSD 4.0.
27378         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
27379         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
27380
27381 2008-01-13  Bruno Haible  <bruno@clisp.org>
27382
27383         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
27384         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
27385         * lib/argp.h (__attribute__): Likewise.
27386         * lib/c-stack.c (__attribute__): Likewise.
27387         * lib/error.h (__attribute__): Likewise.
27388         * lib/fts.c (__attribute__): Likewise.
27389         * lib/openat.h (__attribute__): Likewise.
27390         * lib/stdio.in.h (__attribute__): Likewise.
27391         * lib/string.in.h (__attribute__): Likewise.
27392         * lib/utimens.c (__attribute__): Likewise.
27393         * lib/vasnprintf.h (__attribute__): Likewise.
27394         * lib/xalloc.h (__attribute__): Likewise.
27395         * lib/xprintf.h (__attribute__): Likewise.
27396         * lib/xstrtol.h (__attribute__): Likewise.
27397         * lib/xvasprintf.h (__attribute__): Likewise.
27398
27399 2008-01-12  Bruno Haible  <bruno@clisp.org>
27400
27401         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
27402         * doc/glibc-headers/a.out.texi: New file.
27403         * doc/glibc-headers/aliases.texi: New file.
27404         * doc/glibc-headers/alloca.texi: New file.
27405         * doc/glibc-headers/ar.texi: New file.
27406         * doc/glibc-headers/argp.texi: New file.
27407         * doc/glibc-headers/argz.texi: New file.
27408         * doc/glibc-headers/byteswap.texi: New file.
27409         * doc/glibc-headers/crypt.texi: New file.
27410         * doc/glibc-headers/endian.texi: New file.
27411         * doc/glibc-headers/envz.texi: New file.
27412         * doc/glibc-headers/err.texi: New file.
27413         * doc/glibc-headers/error.texi: New file.
27414         * doc/glibc-headers/execinfo.texi: New file.
27415         * doc/glibc-headers/fpu_control.texi: New file.
27416         * doc/glibc-headers/fstab.texi: New file.
27417         * doc/glibc-headers/fts.texi: New file.
27418         * doc/glibc-headers/getopt.texi: New file.
27419         * doc/glibc-headers/ieee754.texi: New file.
27420         * doc/glibc-headers/ifaddrs.texi: New file.
27421         * doc/glibc-headers/libintl.texi: New file.
27422         * doc/glibc-headers/mcheck.texi: New file.
27423         * doc/glibc-headers/mntent.texi: New file.
27424         * doc/glibc-headers/obstack.texi: New file.
27425         * doc/glibc-headers/paths.texi: New file.
27426         * doc/glibc-headers/printf.texi: New file.
27427         * doc/glibc-headers/pty.texi: New file.
27428         * doc/glibc-headers/resolv.texi: New file.
27429         * doc/glibc-headers/shadow.texi: New file.
27430         * doc/glibc-headers/sysexits.texi: New file.
27431         * doc/glibc-headers/ttyent.texi: New file.
27432
27433 2008-01-12  Jim Meyering  <meyering@redhat.com>
27434
27435         announce-gen: emit Gnulib's git-based version string.
27436         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
27437         New option --gnulib-version=V, where V is expected to be
27438         the output of running git describe in the gnulib directory.
27439         (get_tool_versions): Request feedback on xdelta.  I suspect it's
27440         not useful, and plan to stop publishing an xdelta file with each
27441         coreutils release.
27442
27443         * build-aux/announce-gen: Also check for lzma-compressed files.
27444
27445 2008-01-11  Bruno Haible  <bruno@clisp.org>
27446
27447         * tests/test-memmem.c (main): Increase maximum allowed time.
27448         * tests/test-strstr.c (main): Likewise.
27449
27450 2008-01-11  Bruno Haible  <bruno@clisp.org>
27451
27452         * doc/functions/memmem.texi: Add more precisions about platforms.
27453         * doc/functions/strstr.texi: Likewise.
27454
27455 2008-01-10  Eric Blake  <ebb9@byu.net>
27456
27457         * m4/strstr.m4: Delete cruft from copy-n-paste.
27458         Reported by Bruno Haible.
27459
27460 2008-01-10  Bruno Haible  <bruno@clisp.org>
27461
27462         Make c-strstr rely on strstr.
27463         * lib/c-strstr.c: Don't include str-kmp.h.
27464         (c_strstr): Define in terms of strstr.
27465         * modules/c-strstr (Files): Remove lib/str-kmp.h.
27466         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
27467
27468 2008-01-10  Bruno Haible  <bruno@clisp.org>
27469
27470         * doc/gnulib.texi (String Functions in C Locale): New section.
27471         * doc/c-ctype.texi: New file.
27472         * doc/c-strcase.texi: New file.
27473         * doc/c-strcaseeq.texi: New file.
27474         * doc/c-strcasestr.texi: New file.
27475         * doc/c-strstr.texi: New file.
27476         * doc/c-strtod.texi: New file.
27477         * doc/c-strtold.texi: New file.
27478
27479 2008-01-10  Eric Blake  <ebb9@byu.net>
27480
27481         * lib/relocatable.h: Fix a comment.
27482
27483 2008-01-10  Eric Blake  <ebb9@byu.net>
27484
27485         Share two-way algorithm.
27486         * lib/str-two-way.h: New file, merged from...
27487         * lib/memmem.c: ...here...
27488         * lib/strstr.c: ...and here.
27489         * modules/memmem (Files): Use it.
27490         * modules/strstr (Files): Likewise.
27491
27492         Avoid quadratic strstr implementations.
27493         * lib/strstr.c: New file.
27494         * m4/strstr.m4: Likewise.
27495         * modules/strstr: Likewise.
27496         * modules/strstr-tests: Likewise.
27497         * tests/test-strstr.c: Likewise.
27498         * lib/string.in.h (rpl_strstr): Declare.
27499         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
27500         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
27501         * modules/string (Makefile.am): Likewise.
27502         * MODULES.html.sh (string handling): Mention new module.
27503         * doc/functions/strstr.texi (strstr): Document the bug.
27504
27505 2008-01-10  Bruno Haible  <bruno@clisp.org>
27506
27507         * lib/relocatable.h (relocate): State whether result is freshly
27508         allocated or not.
27509         * lib/relocatable.c (relocate): Return a freshly allocated string
27510         instead of a pointer to a privately held string.
27511         Reported by Sylvain Beucler <beuc@gnu.org>.
27512
27513 2008-01-10  Colin Watson  <cjwatson@debian.org>
27514
27515         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
27516         s/S_ISNLK/S_ISLNK/.
27517
27518 2008-01-09  Bruno Haible  <bruno@clisp.org>
27519
27520         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
27521         and other files.
27522         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
27523         if it's only a guess.
27524         * modules/memmem: Simplify by depending on memmem-simple.
27525
27526 2008-01-09  Bruno Haible  <bruno@clisp.org>
27527
27528         Work around OpenBSD 4.0 tdelete() bug.
27529         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
27530         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
27531         macros and don't redefine the enum values.
27532         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
27533         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
27534         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
27535
27536 2008-01-09  Bruno Haible  <bruno@clisp.org>
27537
27538         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
27539         (main): Don't perform the tests if setlocale did not install a UTF-8
27540         locale. Needed on OpenBSD 4.0.
27541         * modules/wcwidth-tests (Depends-on): Add localcharset.
27542
27543 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
27544
27545         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
27546         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
27547         * NEWS: announce this.
27548         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
27549
27550 2008-01-09  Simon Josefsson  <simon@josefsson.org>
27551         and Eric Blake  <ebb9@byu.net>
27552
27553         Add memmem-simple module.
27554         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
27555         (gl_FUNC_MEMMEM): Separate performance from presence checks.
27556         * modules/memmem-simple: New file.
27557         * modules/memmem (Description): Tweak.
27558         * MODULES.html.sh (string handling): Mention new module.
27559         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
27560         addressed by memmem-simple.
27561         * NEWS: Document the difference.
27562
27563 2008-01-09  Eric Blake  <ebb9@byu.net>
27564
27565         Give gcc some memmem optimization hints.
27566         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
27567         (strcasestr): Declare as pure.
27568         * modules/memmem (Maintainer): Claim my implementation.
27569
27570 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27571
27572         Support AIX 6.1 and higher.
27573         * build-aux/config.libpath: Likewise.
27574         * build-aux/config.rpath: Likewise.
27575
27576 2008-01-08  Jim Meyering  <meyering@redhat.com>
27577             Bruno Haible  <bruno@clisp.org>
27578
27579         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
27580         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
27581         Reported by Peter Fales in
27582         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
27583
27584 2008-01-08  Bruno Haible  <bruno@clisp.org>
27585
27586         * modules/unictype/category-of (Depends-on): Add
27587         unictype/category-none.
27588         * modules/unictype/category-and-tests (Depends-on): Add
27589         unictype/category-{L,N,Lu,Nd}.
27590         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
27591         * modules/unictype/category-or-tests (Depends-on): Add
27592         unictype/category-{L,N}.
27593         * modules/unictype/category-name-tests (Depends-on): Add
27594         unictype/category-{Z,Nl}.
27595         Reported by Simon Josefsson.
27596
27597 2008-01-08  Bruno Haible  <bruno@clisp.org>
27598
27599         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
27600         convention better.
27601         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
27602         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
27603         Reported by Peter Miller <millerp@canb.auug.org.au>.
27604
27605 2008-01-08  Eric Blake  <ebb9@byu.net>
27606
27607         Rewrite memmem to guarantee linear complexity without malloc.
27608         * lib/memmem.c (memmem): Use Two-Way rather than
27609         Knuth-Morris-Pratt, to allow O(1) space usage.
27610         (critical_factorization, two_way_short_needle)
27611         (two_way_long_needle): New functions.
27612         (knuth_morris_pratt): Delete.
27613         * modules/memmem (Depends-on): No longer need malloca or stdbool.
27614         Add stdint.
27615         * tests/test-memmem.c (main): Add tests for periodic needle and
27616         sublinear performance.
27617         * doc/functions/memmem.texi (memmem): Document other deficiencies
27618         in cygwin and older glibc.
27619
27620 2008-01-08  Bruno Haible  <bruno@clisp.org>
27621
27622         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
27623         augmentation.
27624
27625 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
27626
27627         Add a configure time option: --disable-acl.
27628         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
27629         AC_ARG_ENABLE(acl).
27630
27631 2008-01-06  Simon Josefsson  <simon@josefsson.org>
27632
27633         * tests/test-localename.c: Don't include obsolete "setenv.h".
27634
27635         * modules/localename-tests (Depends-on): Need unsetenv.
27636
27637 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27638
27639         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
27640
27641 2008-01-06  Colin Watson  <cjwatson@debian.org>
27642
27643         * users.txt: Add man-db.
27644
27645 2008-01-07  Bruno Haible  <bruno@clisp.org>
27646
27647         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
27648         previous section name.
27649
27650 2008-01-07  Bruno Haible  <bruno@clisp.org>
27651
27652         * lib/progname.c (set_program_name): Don't strip off a leading
27653         "lt-" prefix outside a .libs directory.
27654         Suggested by Paul Eggert.
27655
27656 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
27657             Bruno Haible  <bruno@clisp.org>
27658
27659         Improve memory cleanup in 'relocatable' module.
27660         * lib/relocatable.h (compute_curr_prefix): Change return type to
27661         'char *'.
27662         * lib/relocatable.c (compute_curr_prefix): Change return type to
27663         'char *'. Free curr_installdir after use.
27664         (relocate): Free curr_prefix_better after use.
27665         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
27666
27667 2008-01-01  Bruno Haible  <bruno@clisp.org>
27668
27669         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
27670         failure on older glibc systems.
27671         Reported by Peter Fales <psfales@alcatel-lucent.com>.
27672
27673 2008-01-05  Eric Blake  <ebb9@byu.net>
27674
27675         Avoid quadratic system memmem.
27676         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
27677         Reported by Ralf Wildenhues.
27678
27679         Fix memmem test for mingw.
27680         * modules/memmem-tests (configure.ac): Check for alarm.
27681         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
27682         it.
27683         * doc/functions/memmem.texi: New file.
27684         * doc/gnulib.texi (Function Substitutes): Add memmem.
27685         Reported by Bruno Haible.
27686
27687 2008-01-04  Bruno Haible  <bruno@clisp.org>
27688
27689         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
27690         Require gl_HEADER_STRINGS_H_DEFAULTS, not
27691         gl_HEADER_STRING_H_DEFAULTS.
27692
27693 2008-01-04  Eric Blake  <ebb9@byu.net>
27694
27695         Shorten duration of memmem test.
27696         * tests/test-memmem.c (main): Use alarm to declare failure if test
27697         is taking too long.
27698         Reported by Ralf Wildenhues.
27699
27700 2007-12-21  Simon Josefsson  <simon@josefsson.org>
27701
27702         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
27703         string, needed by strerror.
27704
27705 2008-01-03  Colin Watson  <cjwatson@debian.org>
27706             Bruno Haible  <bruno@clisp.org>
27707
27708         * doc/gnulib-tool.texi (Localization): New section.
27709
27710 2008-01-02  Bruno Haible  <bruno@clisp.org>
27711
27712         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
27713         variables to 'unsigned char *' type.
27714         Reported by Paul Eggert.
27715
27716 2008-01-02  Jim Meyering  <jim@meyering.net>
27717
27718         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
27719
27720 2007-12-31  Jim Meyering  <jim@meyering.net>
27721
27722         Avoid use of private FTS type name.
27723         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
27724
27725 2007-12-30  Karl Berry  <karl@gnu.org>
27726
27727         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
27728         work around defect in Texinfo and/or the standalone Info browser.
27729
27730 2007-12-30  Bruno Haible  <bruno@clisp.org>
27731
27732         Unify 5 copies of the KMP code.
27733         * lib/str-kmp.h: New file.
27734         * lib/c-strcasestr.c: Include str-kmp.h.
27735         (knuth_morris_pratt): Remove function.
27736         (c_strcasestr): Update.
27737         * lib/c-strstr.c: Include str-kmp.h.
27738         (knuth_morris_pratt): Remove function.
27739         (c_strcasestr): Update.
27740         * lib/mbscasestr.c: Include str-kmp.h.
27741         (knuth_morris_pratt_unibyte): Remove function.
27742         * lib/mbsstr.c: Include str-kmp.h.
27743         (knuth_morris_pratt_unibyte): Remove function.
27744         * lib/strcasestr.c: Include str-kmp.h.
27745         (knuth_morris_pratt): Remove function.
27746         (strcasestr): Update.
27747         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
27748         * modules/c-strstr (Files): Likewise.
27749         * modules/mbscasestr (Files): Likewise.
27750         * modules/mbsstr (Files): Likewise.
27751         * modules/strcasestr (Files): Likewise.
27752         Suggested by Paul Eggert.
27753
27754 2007-12-30  Bruno Haible  <bruno@clisp.org>
27755
27756         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
27757         defined.
27758
27759 2007-12-30  Bruno Haible  <bruno@clisp.org>
27760
27761         * lib/xmalloca.h: Include xalloc.h.
27762         (xnmalloca): New macro.
27763
27764 2007-12-30  Bruno Haible  <bruno@clisp.org>
27765
27766         * lib/malloca.h (nmalloca): New macro.
27767         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
27768         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
27769         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
27770         knuth_morris_pratt_multibyte): Likewise.
27771         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
27772         knuth_morris_pratt_multibyte): Likewise.
27773         * lib/memmem.c (knuth_morris_pratt): Likewise.
27774         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
27775
27776 2007-12-25  Bruno Haible  <bruno@clisp.org>
27777
27778         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
27779         * lib/glob.c: Don't include openat.h.
27780         (link_exists2_p): Add back the code that deals with the
27781         !GLOB_ALTDIRFUNC case.
27782         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
27783         let it do the filename concatenation.
27784         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
27785         * modules/glob (Depends-on): Remove openat.
27786
27787 2007-12-31  Bruno Haible  <bruno@clisp.org>
27788
27789         * modules/dirfd (License): Change to LGPLv2+.
27790         Approved by Jim Meyering.
27791
27792 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
27793
27794         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
27795         when multiplying M by sizeof (size_t).
27796
27797 2007-12-10  Martin Lambers  <marlam@marlam.de>
27798
27799         Override getpagesize on mingw.
27800         * lib/getpagesize.c: New file.
27801         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
27802         * modules/getpagesize (Files): Add lib/getpagesize.c.
27803         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
27804         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
27805         REPLACE_GETPAGESIZE.
27806         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
27807
27808 2007-12-25  Bruno Haible  <bruno@clisp.org>
27809
27810         * modules/localcharset (Notice): New field.
27811         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
27812         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
27813
27814 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
27815             Bruno Haible  <bruno@clisp.org>
27816
27817         Avoid using the syntax symbol() in formatted documentation.
27818         * MODULES.html.sh (func_module): When replacing symbol() with a
27819         hyperlink, remove the parentheses. Show an error if some remain.
27820         Recognize and render the '...' syntax.
27821         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
27822         Rework. Add paragraph about GCC's inlining.
27823         * doc/alloca.texi: Likewise.
27824         * doc/error.texi: Remove parentheses from symbol reference.
27825         * doc/gnulib-intro.texi: Likewise.
27826         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
27827         * modules/fnmatch (Description): Reword to say "the ... function".
27828         * modules/full-read (Description): Likewise.
27829         * modules/full-write (Description): Likewise.
27830         * modules/safe-read (Description): Likewise.
27831         * modules/safe-write (Description): Likewise.
27832         * modules/strchrnul (Description): Likewise.
27833         * modules/trim (Description): Likewise.
27834         * modules/error (Description): Remove parentheses from symbol
27835         references.
27836         * modules/verror (Description): Likewise.
27837         Reported by Karl Berry.
27838
27839 2007-12-25  Bruno Haible  <bruno@clisp.org>
27840
27841         Fixup after 2007-10-16 commit.
27842         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
27843
27844 2007-12-24  Bruno Haible  <bruno@clisp.org>
27845
27846         Make --enable-relocatable work with DESTDIR.
27847         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
27848         to compute installdir from destprog.
27849         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
27850         also set the RELOC_DESTDIR variable.
27851         Reported by Левашев Иван <octagram@bluebottle.com>.
27852
27853 2007-12-24  Bruno Haible  <bruno@clisp.org>
27854
27855         Fix link error due to xalloc_die().
27856         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
27857         of xreadlink.
27858         * lib/relocwrapper.c: Update comments.
27859         * build-aux/install-reloc: Remove xreadlink.c from file list.
27860         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
27861         xreadlink.c.
27862         Reported by Левашев Иван <octagram@bluebottle.com>.
27863
27864 2007-12-24  Bruno Haible  <bruno@clisp.org>
27865
27866         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
27867         * lib/setenv.h: Remove file.
27868         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
27869         lib/setenv.h.
27870         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
27871         (Depends-on): Add stdlib.
27872         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
27873         gl_FUNC_UNSETENV.
27874         (Include): Replace setenv.h with <stdlib.h>.
27875         * modules/unsetenv: New file.
27876         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
27877         * lib/unsetenv.c: Include <stdlib.h> first.
27878         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
27879         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
27880         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
27881         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
27882         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
27883         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
27884         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
27885         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
27886         * doc/functions/unsetenv.texi: Update.
27887         * modules/xsetenv (Depends-on): Add unsetenv.
27888         * modules/getdate (Depends-on): Likewise.
27889         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
27890         * lib/xsetenv.c: Don't include setenv.h.
27891         * lib/getdate.y: Likewise.
27892         * lib/relocwrapper.c: Likewise.
27893         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
27894         (Depends-on): Add stdlib.
27895         * NEWS: Mention the changes.
27896         Reported by Левашев Иван <octagram@bluebottle.com>.
27897
27898 2007-12-23  Bruno Haible  <bruno@clisp.org>
27899
27900         * lib/memmem.c (memmem): Use lowercase variable names. Tab
27901         indentation.
27902
27903 2007-12-23  Bruno Haible  <bruno@clisp.org>
27904
27905         * lib/c-strcasestr.c: Add more comments.
27906         * lib/c-strstr.c: Likewise.
27907         * lib/mbscasestr.c: Likewise.
27908         * lib/mbsstr.c: Likewise.
27909         * lib/strcasestr.c: Likewise.
27910         * lib/memmem.c: Likewise.
27911
27912 2007-12-23  Bruno Haible  <bruno@clisp.org>
27913
27914         * tests/test-memmem.c: Include <string.h> first.
27915
27916 2007-12-22  Bruno Haible  <bruno@clisp.org>
27917
27918         * gnulib-tool (func_create_testdir): Change $auxdir while generating
27919         the contents of $testsbase.
27920         Reported by Ralf Wildenhues.
27921
27922 2007-12-22  Bruno Haible  <bruno@clisp.org>
27923
27924         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
27925         two variables local_ldadd_before, local_ldadd_last.
27926
27927 2007-12-20  Eric Blake  <ebb9@byu.net>
27928
27929         Work around circular library issue when cross-compiling.
27930         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
27931         that progname.o does not need to pull in rpl_memcmp.
27932
27933 2007-12-19  Eric Blake  <ebb9@byu.net>
27934
27935         Fix memmem to avoid O(n^2) worst-case complexity.
27936         * lib/memmem.c (knuth_morris_pratt): New function.
27937         (memmem): Use it if first few naive iterations fail.
27938         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
27939         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
27940         * modules/memchr (License): Likewise.
27941         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
27942         malloca.
27943         * tests/test-memmem.c: Rewrite, borrowing ideas from
27944         test-mbsstr1.c; the old version wouldn't even compile!
27945         * modules/memmem-tests: New file.
27946         * lib/string.in.h (rpl_memmem): Add declaration.
27947         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
27948         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
27949         REPLACE_MEMMEM.
27950
27951 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
27952
27953         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
27954         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
27955         before any system include files, and undef after them all.  This
27956         should fix a problem on VMS reported by John E. Malmberg in
27957         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
27958
27959 2007-12-17  Eric Blake  <ebb9@byu.net>
27960
27961         Revert addition of verify, for BSD/OS.
27962         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
27963         can't handle large files, for the sake of obsolete platforms.
27964         * modules/fseeko (Depends-on): Remove verify.
27965         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
27966         * doc/functions/ftello.texi (ftello): Likewise.
27967         * doc/functions/fgetpos.texi (fgetpos): Likewise.
27968         Reported by Larry Jones.
27969
27970 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
27971
27972         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
27973         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
27974
27975 2007-12-17  Jim Meyering  <meyering@redhat.com>
27976
27977         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
27978         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
27979         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
27980         * modules/getcwd (Depends-on): Add openat.
27981         Reported by Petr Salinger.
27982
27983 2007-12-17  Bruno Haible  <bruno@clisp.org>
27984
27985         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
27986         avoid a segmentation fault of the configure test on x86_64 systems.
27987
27988 2007-12-15  Jim Meyering  <meyering@redhat.com>
27989
27990         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
27991
27992 2007-12-13  Eric Blake  <ebb9@byu.net>
27993
27994         Another fseek test.
27995         * tests/test-fseek.c (main): Also test ungetc handling.
27996         * tests/test-fseeko.c (main): Likewise.
27997         * modules/fseeko (Depends-on): Add verify.
27998         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
27999         large.
28000         Reported by Larry Jones.
28001
28002         Fix fseeko on mingw.
28003         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
28004         seek.
28005
28006         Beef up fseek tests.
28007         * tests/test-fseek.c (main): Also test eof handling.
28008         * tests/test-fseeko.c (main): Likewise.
28009         Reported by Larry Jones.
28010
28011 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
28012
28013         Fix fseeko on BSD-based platforms.
28014         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
28015         successful seek.
28016
28017 2007-12-12  Eric Blake  <ebb9@byu.net>
28018
28019         Allow circular dependency of separate libtests.a
28020         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
28021         when use_libtests.
28022
28023 2007-12-11  Eric Blake  <ebb9@byu.net>
28024
28025         Fix bug with -0.0L in previous patch.
28026         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
28027         * tests/test-isnan.c (main): Also test on zeroes.
28028         * tests/test-isnanf.c (main): Likewise.
28029         * tests/test-isnanl.h (main): Likewise.
28030
28031         Detect pseudo-denormals on x86 even when cross-compiling.
28032         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
28033         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
28034         invalid bit patterns that happen to satisfy ==.
28035
28036         Avoid link failures with separate libtests.a.
28037         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
28038         last, to satisfy circular dependencies.
28039
28040 2007-12-11  Eric Blake  <ebb9@byu.net>
28041         and Bruno Haible  <bruno@clisp.org>
28042
28043         Fix OpenBSD 4.0 <float.h> handling of long double.
28044         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
28045         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
28046         * doc/headers/float.texi (float.h): Document OpenBSD bug.
28047
28048 2007-12-11  Jim Meyering  <meyering@redhat.com>
28049
28050         * users.txt: Add libvirt.
28051
28052         Support versions of autoconf prior to 2.59c.
28053         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
28054         if it is not already defined.
28055
28056 2007-12-09  Bruno Haible  <bruno@clisp.org>
28057
28058         Let 'gnulib-tool --import' collect sources needed for the tests in
28059         tests/ rather than in lib/.
28060         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
28061         argument. If true, add rules to generate libtests.a, and put libtests.a
28062         into $(LDADD). Consider source files in subdirectories and set
28063         uses_subdirs.
28064         (func_emit_initmacro_start, func_emit_initmacro_end,
28065         func_emit_initmacro_done): Pass all arguments explicitly.
28066         (func_import): Determine two module lists main_modules,
28067         testsrelated_modules. Determine use_libtests. Determine two variables
28068         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
28069         instead of just sed_transform_lib_file. Determine two variables
28070         main_files and testsrelated_files. Compute 'files' as the union of
28071         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
28072         func_add_or_update. In the generated gnulib-comp.m4, collect the
28073         object files for tests/ in different variables than those for lib/.
28074         Substitute LIBTESTS_LIBDEPS.
28075         (func_create_testdir): Combine the uses_subdirs results from
28076         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
28077
28078 2007-12-09  Bruno Haible  <bruno@clisp.org>
28079
28080         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
28081         the build-aux directory.
28082
28083 2007-12-09  Bruno Haible  <bruno@clisp.org>
28084
28085         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
28086         introduced on 2006-09-09.
28087
28088 2007-12-07  Jim Meyering  <meyering@redhat.com>
28089
28090         Let these macros work also with autoconf-2.59.
28091         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
28092         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
28093         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
28094
28095 2007-12-06  Jim Meyering  <meyering@redhat.com>
28096
28097         Avoid a configure-time syntax error in gl_FUNC_ACL.
28098         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
28099         function in each branch, before testing the cache variable.
28100
28101 2007-12-04  Eric Blake  <ebb9@byu.net>
28102
28103         Make scripts executable.
28104         * build-aux/config.guess: Add execute permissions.
28105         * build-aux/config.sub: Likewise.
28106         * build-aux/gendocs.sh: Likewise.
28107
28108         Fix frexp on mingw.
28109         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
28110         cross-compiling.
28111         * doc/functions/frexp.texi (frexp): Document the bug.
28112
28113         Make cygwin fseeko check more reliable.
28114         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
28115         version numbers, rather than unrelated feature check.
28116         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
28117         * doc/functions/ftello.texi (ftello): Likewise.
28118         Reported by Bruno Haible.
28119
28120         * m4/strerror.m4: Bump version number.
28121
28122 2007-12-03  Bruno Haible  <bruno@clisp.org>
28123
28124         * doc/functions/mprotect.texi: Mention the mingw problem.
28125
28126 2007-12-03  Eric Blake  <ebb9@byu.net>
28127
28128         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
28129         REPLACE_STRERROR is initialized before this macro.
28130
28131 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
28132
28133         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
28134         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
28135         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
28136         put -lsec in even for programs other than 'ls'.  This fixes a problem
28137         for gettext reported by Bruno Haible in
28138         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
28139         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
28140         Add support for Solaris 10.  This isn't efficient, but should get the
28141         job done for now.
28142
28143 2007-12-03  James Youngman  <jay@gnu.org>
28144
28145         * doc/regexprops-generic.texi: change "an close-group" to "a
28146         close-group" and "illegal" to "not allowed".
28147
28148 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28149
28150         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
28151         pr_byname.h. Needed for the rare case when the maintainer has done
28152         "make maintainer-clean" in the source directory and then attempts a
28153         build outside the source directory.
28154         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
28155         scripts_byname.h.
28156
28157 2007-12-02  Martin Lambers <marlam@marlam.de>
28158             Bruno Haible  <bruno@clisp.org>
28159
28160         * lib/getpagesize.h: Remove file.
28161         * lib/unistd.in.h: Include declaration of getpagesize here.
28162         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
28163         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
28164         HAVE_SYS_PARAM_H.
28165         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
28166         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28167         * modules/getpagesize (Files): Remove lib/getpagesize.h.
28168         (Depends-on): Add unistd.
28169         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28170         (Include): Use <unistd.h> instead of getpagesize.h.
28171         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
28172         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28173         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
28174         gl_GETPAGESIZE invocation, already handled by module dependency.
28175         * lib/pagealign_alloc.c: Don't include getpagesize.h.
28176
28177 2007-12-02  Bruno Haible  <bruno@clisp.org>
28178
28179         * modules/strings-tests: New file.
28180         * tests/test-strings.c: New file.
28181
28182         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
28183         * lib/strings.in.h: New file.
28184         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
28185         * m4/strings_h.m4: New file.
28186         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
28187         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
28188         * modules/strings: New file.
28189         * modules/string (Makefile.am): Update.
28190         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
28191         Reported by Karl Berry.
28192
28193 2007-12-01  Eric Blake  <ebb9@byu.net>
28194
28195         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
28196         accomodate fix in cygwin 1.5.25.
28197
28198 2007-12-01  Jim Meyering  <meyering@redhat.com>
28199
28200         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
28201         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
28202         that would inhibit utf8-optimization of a regexp containing line-
28203         or buffer-anchors, e.g., `^', `$'.
28204
28205 2007-11-30  Bruno Haible  <bruno@clisp.org>
28206
28207         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
28208         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
28209         glthread_recursive_lock_init.
28210         * lib/lock.c (glthread_recursive_lock_init)
28211         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
28212         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
28213
28214 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
28215
28216         New function qset_acl, like set_acl but with syscall semantics.
28217         * lib/acl.h (qset_acl): New decl.
28218         * lib/acl.c (qset_acl): New function.
28219         (set_acl): Use new function.  Use more-consistent diagnostics.
28220
28221 2007-11-28  Jim Meyering  <meyering@redhat.com>
28222
28223         * modules/physmem (License): Change from GPL to LGPLv2+.
28224
28225 2007-11-26  Bruno Haible  <bruno@clisp.org>
28226
28227         * lib/vasnprintf.c (decode_long_double): Don't abort if the
28228         'long double' type has excess precision.
28229         Reported by Jim Meyering in
28230         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
28231
28232 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28233
28234         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
28235         Sync from <http://gnu.org/licenses>.
28236         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
28237         with license text from same location.
28238         * doc/maintain.texi, doc/standards.texi:  Sync from
28239         <http://savannah.gnu.org/projects/gnustandards>.
28240
28241 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
28242         and Jim Meyering  <meyering@redhat.com>
28243
28244         Adjust getdate' grammar to accept a slightly more regular language.
28245         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
28246         Before, the former was rejected.
28247         * lib/getdate.y (digits_to_date_time): New function, factored
28248         out of ...
28249         (number): ...here.  Just call digits_to_date_time.
28250         (hybrid): New non-terminal to handle an <unsigned number,
28251         signed relative offset> sequence consistently.
28252
28253 2007-11-18  Jim Meyering  <meyering@redhat.com>
28254
28255         Pull my changes from coreutils:
28256         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
28257         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
28258         use of $gnulib_tool_option_extras, so that it's separated from the
28259         preceding argument.
28260
28261         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
28262         * build-aux/bootstrap (cp_mark_as_generated): Create any required
28263         parent destination directories before copying a file into place.
28264
28265 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
28266
28267         bootstrap: work also with 4-argument variant of AC_INIT
28268         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
28269
28270 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28271
28272         Port test-getaddrinfo to Solaris.
28273         Problem reported by Bruno Haible in
28274         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
28275         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
28276         explanation of setting 'hints'.
28277         Don't reject an implementation merely because it returns EAI_SERVICE.
28278         (EAI_SERVICE): Define to 0 if not defined.
28279
28280 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
28281
28282         The license of gnu-make and posix-shell is now "GPLed build tool".
28283         * modules/gnu-make (License): Likewise.
28284         * modules/posix-shell (License): Likewise.
28285
28286         New module posix-shell, for determining a POSIX shell
28287         or perhaps something that is close enough to a POSIX shell.
28288         * m4/posix-shell.m4: New file.
28289         * modules/posix-shell: New file.
28290
28291         * MODULES.html.sh: Mention new module.
28292
28293         New module gnu-make, for determining whether we're using GNU Make.
28294         * m4/gnu-make.m4: New file.
28295         * modules/gnu-make: New file.
28296         * MODULES.html.sh: Mention new module.
28297
28298 2007-11-14  Jim Meyering  <meyering@redhat.com>
28299
28300         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
28301         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
28302         use this macro to create a function _definition_.
28303         Remove useless "#undef ARGMATCH_DIE".
28304
28305 2007-11-14  Bruno Haible  <bruno@clisp.org>
28306
28307         * lib/config.charset: Update for OpenBSD 4.1.
28308         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
28309
28310 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
28311
28312         Document 64-bit #if problems in stdint.texi.
28313         * doc/headers/stdint.texi (stdint.h): Mention problems with
28314         64-bit-#if, and how to work around them.
28315
28316         Don't insist on 'long long int' support in the preprocessor.  It
28317         breaks too many things.  For example, PRIdMAX still uses a 'long
28318         long int' format with the latest Sun compiler, even though
28319         HAVE_LONG_LONG_INT isn't defined due to that compiler's
28320         preprocessor problem.  This causes the latest coreutils to dump
28321         core on Solaris 10 sparc with the Sun C compiler.
28322         Instead, fix the 2007-10-16 problem in a different way, by evaluating
28323         the troublesome expressions at configure-time, not at #if-time.
28324         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
28325         preprocessor.
28326         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
28327         compile-time C checks, done at 'configure'-time.
28328         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
28329         * modules/inttypes (Makefile): Substitute the new symbols that
28330         gl_INTTYPES_H now generates.
28331         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
28332
28333 2007-11-12  Bruno Haible  <bruno@clisp.org>
28334
28335         Tests for Unicode character classification functions.
28336
28337         * modules/unictype/bidicategory-byname-tests: New file.
28338         * modules/unictype/bidicategory-name-tests: New file.
28339         * modules/unictype/bidicategory-of-tests: New file.
28340         * modules/unictype/bidicategory-test-tests: New file.
28341         * modules/unictype/block-list-tests: New file.
28342         * modules/unictype/block-of-tests: New file.
28343         * modules/unictype/block-test-tests: New file.
28344         * modules/unictype/category-C-tests: New file.
28345         * modules/unictype/category-Cc-tests: New file.
28346         * modules/unictype/category-Cf-tests: New file.
28347         * modules/unictype/category-Cn-tests: New file.
28348         * modules/unictype/category-Co-tests: New file.
28349         * modules/unictype/category-Cs-tests: New file.
28350         * modules/unictype/category-L-tests: New file.
28351         * modules/unictype/category-Ll-tests: New file.
28352         * modules/unictype/category-Lm-tests: New file.
28353         * modules/unictype/category-Lo-tests: New file.
28354         * modules/unictype/category-Lt-tests: New file.
28355         * modules/unictype/category-Lu-tests: New file.
28356         * modules/unictype/category-M-tests: New file.
28357         * modules/unictype/category-Mc-tests: New file.
28358         * modules/unictype/category-Me-tests: New file.
28359         * modules/unictype/category-Mn-tests: New file.
28360         * modules/unictype/category-N-tests: New file.
28361         * modules/unictype/category-Nd-tests: New file.
28362         * modules/unictype/category-Nl-tests: New file.
28363         * modules/unictype/category-No-tests: New file.
28364         * modules/unictype/category-P-tests: New file.
28365         * modules/unictype/category-Pc-tests: New file.
28366         * modules/unictype/category-Pd-tests: New file.
28367         * modules/unictype/category-Pe-tests: New file.
28368         * modules/unictype/category-Pf-tests: New file.
28369         * modules/unictype/category-Pi-tests: New file.
28370         * modules/unictype/category-Po-tests: New file.
28371         * modules/unictype/category-Ps-tests: New file.
28372         * modules/unictype/category-S-tests: New file.
28373         * modules/unictype/category-Sc-tests: New file.
28374         * modules/unictype/category-Sk-tests: New file.
28375         * modules/unictype/category-Sm-tests: New file.
28376         * modules/unictype/category-So-tests: New file.
28377         * modules/unictype/category-Z-tests: New file.
28378         * modules/unictype/category-Zl-tests: New file.
28379         * modules/unictype/category-Zp-tests: New file.
28380         * modules/unictype/category-Zs-tests: New file.
28381         * modules/unictype/category-and-not-tests: New file.
28382         * modules/unictype/category-and-tests: New file.
28383         * modules/unictype/category-byname-tests: New file.
28384         * modules/unictype/category-name-tests: New file.
28385         * modules/unictype/category-none-tests: New file.
28386         * modules/unictype/category-of-tests: New file.
28387         * modules/unictype/category-or-tests: New file.
28388         * modules/unictype/category-test-withtable-tests: New file.
28389         * modules/unictype/combining-class-tests: New file.
28390         * modules/unictype/ctype-alnum-tests: New file.
28391         * modules/unictype/ctype-alpha-tests: New file.
28392         * modules/unictype/ctype-blank-tests: New file.
28393         * modules/unictype/ctype-cntrl-tests: New file.
28394         * modules/unictype/ctype-digit-tests: New file.
28395         * modules/unictype/ctype-graph-tests: New file.
28396         * modules/unictype/ctype-lower-tests: New file.
28397         * modules/unictype/ctype-print-tests: New file.
28398         * modules/unictype/ctype-punct-tests: New file.
28399         * modules/unictype/ctype-space-tests: New file.
28400         * modules/unictype/ctype-upper-tests: New file.
28401         * modules/unictype/ctype-xdigit-tests: New file.
28402         * modules/unictype/decimal-digit-tests: New file.
28403         * modules/unictype/digit-tests: New file.
28404         * modules/unictype/mirror-tests: New file.
28405         * modules/unictype/numeric-tests: New file.
28406         * modules/unictype/property-alphabetic-tests: New file.
28407         * modules/unictype/property-ascii-hex-digit-tests: New file.
28408         * modules/unictype/property-bidi-arabic-digit-tests: New file.
28409         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
28410         * modules/unictype/property-bidi-block-separator-tests: New file.
28411         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
28412         * modules/unictype/property-bidi-common-separator-tests: New file.
28413         * modules/unictype/property-bidi-control-tests: New file.
28414         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
28415         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
28416         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
28417         * modules/unictype/property-bidi-european-digit-tests: New file.
28418         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
28419         * modules/unictype/property-bidi-left-to-right-tests: New file.
28420         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
28421         * modules/unictype/property-bidi-other-neutral-tests: New file.
28422         * modules/unictype/property-bidi-pdf-tests: New file.
28423         * modules/unictype/property-bidi-segment-separator-tests: New file.
28424         * modules/unictype/property-bidi-whitespace-tests: New file.
28425         * modules/unictype/property-byname-tests: New file.
28426         * modules/unictype/property-combining-tests: New file.
28427         * modules/unictype/property-composite-tests: New file.
28428         * modules/unictype/property-currency-symbol-tests: New file.
28429         * modules/unictype/property-dash-tests: New file.
28430         * modules/unictype/property-decimal-digit-tests: New file.
28431         * modules/unictype/property-default-ignorable-code-point-tests: New file.
28432         * modules/unictype/property-deprecated-tests: New file.
28433         * modules/unictype/property-diacritic-tests: New file.
28434         * modules/unictype/property-extender-tests: New file.
28435         * modules/unictype/property-format-control-tests: New file.
28436         * modules/unictype/property-grapheme-base-tests: New file.
28437         * modules/unictype/property-grapheme-extend-tests: New file.
28438         * modules/unictype/property-grapheme-link-tests: New file.
28439         * modules/unictype/property-hex-digit-tests: New file.
28440         * modules/unictype/property-hyphen-tests: New file.
28441         * modules/unictype/property-id-continue-tests: New file.
28442         * modules/unictype/property-id-start-tests: New file.
28443         * modules/unictype/property-ideographic-tests: New file.
28444         * modules/unictype/property-ids-binary-operator-tests: New file.
28445         * modules/unictype/property-ids-trinary-operator-tests: New file.
28446         * modules/unictype/property-ignorable-control-tests: New file.
28447         * modules/unictype/property-iso-control-tests: New file.
28448         * modules/unictype/property-join-control-tests: New file.
28449         * modules/unictype/property-left-of-pair-tests: New file.
28450         * modules/unictype/property-line-separator-tests: New file.
28451         * modules/unictype/property-logical-order-exception-tests: New file.
28452         * modules/unictype/property-lowercase-tests: New file.
28453         * modules/unictype/property-math-tests: New file.
28454         * modules/unictype/property-non-break-tests: New file.
28455         * modules/unictype/property-not-a-character-tests: New file.
28456         * modules/unictype/property-numeric-tests: New file.
28457         * modules/unictype/property-other-alphabetic-tests: New file.
28458         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
28459         * modules/unictype/property-other-grapheme-extend-tests: New file.
28460         * modules/unictype/property-other-id-continue-tests: New file.
28461         * modules/unictype/property-other-id-start-tests: New file.
28462         * modules/unictype/property-other-lowercase-tests: New file.
28463         * modules/unictype/property-other-math-tests: New file.
28464         * modules/unictype/property-other-uppercase-tests: New file.
28465         * modules/unictype/property-paired-punctuation-tests: New file.
28466         * modules/unictype/property-paragraph-separator-tests: New file.
28467         * modules/unictype/property-pattern-syntax-tests: New file.
28468         * modules/unictype/property-pattern-white-space-tests: New file.
28469         * modules/unictype/property-private-use-tests: New file.
28470         * modules/unictype/property-punctuation-tests: New file.
28471         * modules/unictype/property-quotation-mark-tests: New file.
28472         * modules/unictype/property-radical-tests: New file.
28473         * modules/unictype/property-sentence-terminal-tests: New file.
28474         * modules/unictype/property-soft-dotted-tests: New file.
28475         * modules/unictype/property-space-tests: New file.
28476         * modules/unictype/property-terminal-punctuation-tests: New file.
28477         * modules/unictype/property-test-tests: New file.
28478         * modules/unictype/property-titlecase-tests: New file.
28479         * modules/unictype/property-unassigned-code-value-tests: New file.
28480         * modules/unictype/property-unified-ideograph-tests: New file.
28481         * modules/unictype/property-uppercase-tests: New file.
28482         * modules/unictype/property-variation-selector-tests: New file.
28483         * modules/unictype/property-white-space-tests: New file.
28484         * modules/unictype/property-xid-continue-tests: New file.
28485         * modules/unictype/property-xid-start-tests: New file.
28486         * modules/unictype/property-zero-width-tests: New file.
28487         * modules/unictype/scripts-tests: New file.
28488         * modules/unictype/syntax-c-ident-tests: New file.
28489         * modules/unictype/syntax-c-whitespace-tests: New file.
28490         * modules/unictype/syntax-java-ident-tests: New file.
28491         * modules/unictype/syntax-java-whitespace-tests: New file.
28492         * tests/unictype/test-bidi_byname.c: New file.
28493         * tests/unictype/test-bidi_name.c: New file.
28494         * tests/unictype/test-bidi_of.c: New file.
28495         * tests/unictype/test-bidi_test.c: New file.
28496         * tests/unictype/test-block_list.c: New file.
28497         * tests/unictype/test-block_of.c: New file.
28498         * tests/unictype/test-block_test.c: New file.
28499         * tests/unictype/test-categ_and.c: New file.
28500         * tests/unictype/test-categ_and_not.c: New file.
28501         * tests/unictype/test-categ_byname.c: New file.
28502         * tests/unictype/test-categ_name.c: New file.
28503         * tests/unictype/test-categ_none.c: New file.
28504         * tests/unictype/test-categ_of.c: New file.
28505         * tests/unictype/test-categ_or.c: New file.
28506         * tests/unictype/test-categ_test_withtable.c: New file.
28507         * tests/unictype/test-combining.c: New file.
28508         * tests/unictype/test-decdigit.c: New file.
28509         * tests/unictype/test-digit.c: New file.
28510         * tests/unictype/test-mirror.c: New file.
28511         * tests/unictype/test-numeric.c: New file.
28512         * tests/unictype/test-pr_byname.c: New file.
28513         * tests/unictype/test-pr_test.c: New file.
28514         * tests/unictype/test-predicate-part1.h: New file.
28515         * tests/unictype/test-predicate-part2.h: New file.
28516         * tests/unictype/test-scripts.c: New file.
28517         * tests/unictype/test-sy_c_ident.c: New file.
28518         * tests/unictype/test-sy_java_ident.c: New file.
28519
28520         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
28521         for Unicode 5.0.0.
28522         * tests/unictype/test-categ_Cc.c: Likewise.
28523         * tests/unictype/test-categ_Cf.c: Likewise.
28524         * tests/unictype/test-categ_Cn.c: Likewise.
28525         * tests/unictype/test-categ_Co.c: Likewise.
28526         * tests/unictype/test-categ_Cs.c: Likewise.
28527         * tests/unictype/test-categ_L.c: Likewise.
28528         * tests/unictype/test-categ_Ll.c: Likewise.
28529         * tests/unictype/test-categ_Lm.c: Likewise.
28530         * tests/unictype/test-categ_Lo.c: Likewise.
28531         * tests/unictype/test-categ_Lt.c: Likewise.
28532         * tests/unictype/test-categ_Lu.c: Likewise.
28533         * tests/unictype/test-categ_M.c: Likewise.
28534         * tests/unictype/test-categ_Mc.c: Likewise.
28535         * tests/unictype/test-categ_Me.c: Likewise.
28536         * tests/unictype/test-categ_Mn.c: Likewise.
28537         * tests/unictype/test-categ_N.c: Likewise.
28538         * tests/unictype/test-categ_Nd.c: Likewise.
28539         * tests/unictype/test-categ_Nl.c: Likewise.
28540         * tests/unictype/test-categ_No.c: Likewise.
28541         * tests/unictype/test-categ_P.c: Likewise.
28542         * tests/unictype/test-categ_Pc.c: Likewise.
28543         * tests/unictype/test-categ_Pd.c: Likewise.
28544         * tests/unictype/test-categ_Pe.c: Likewise.
28545         * tests/unictype/test-categ_Pf.c: Likewise.
28546         * tests/unictype/test-categ_Pi.c: Likewise.
28547         * tests/unictype/test-categ_Po.c: Likewise.
28548         * tests/unictype/test-categ_Ps.c: Likewise.
28549         * tests/unictype/test-categ_S.c: Likewise.
28550         * tests/unictype/test-categ_Sc.c: Likewise.
28551         * tests/unictype/test-categ_Sk.c: Likewise.
28552         * tests/unictype/test-categ_Sm.c: Likewise.
28553         * tests/unictype/test-categ_So.c: Likewise.
28554         * tests/unictype/test-categ_Z.c: Likewise.
28555         * tests/unictype/test-categ_Zl.c: Likewise.
28556         * tests/unictype/test-categ_Zp.c: Likewise.
28557         * tests/unictype/test-categ_Zs.c: Likewise.
28558         * tests/unictype/test-ctype_alnum.c: Likewise.
28559         * tests/unictype/test-ctype_alpha.c: Likewise.
28560         * tests/unictype/test-ctype_blank.c: Likewise.
28561         * tests/unictype/test-ctype_cntrl.c: Likewise.
28562         * tests/unictype/test-ctype_digit.c: Likewise.
28563         * tests/unictype/test-ctype_graph.c: Likewise.
28564         * tests/unictype/test-ctype_lower.c: Likewise.
28565         * tests/unictype/test-ctype_print.c: Likewise.
28566         * tests/unictype/test-ctype_punct.c: Likewise.
28567         * tests/unictype/test-ctype_space.c: Likewise.
28568         * tests/unictype/test-ctype_upper.c: Likewise.
28569         * tests/unictype/test-ctype_xdigit.c: Likewise.
28570         * tests/unictype/test-decdigit.h: Likewise.
28571         * tests/unictype/test-digit.h: Likewise.
28572         * tests/unictype/test-numeric.h: Likewise.
28573         * tests/unictype/test-pr_alphabetic.c: Likewise.
28574         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
28575         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
28576         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
28577         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
28578         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
28579         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
28580         * tests/unictype/test-pr_bidi_control.c: Likewise.
28581         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
28582         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
28583         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
28584         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
28585         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
28586         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
28587         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
28588         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
28589         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
28590         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
28591         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
28592         * tests/unictype/test-pr_combining.c: Likewise.
28593         * tests/unictype/test-pr_composite.c: Likewise.
28594         * tests/unictype/test-pr_currency_symbol.c: Likewise.
28595         * tests/unictype/test-pr_dash.c: Likewise.
28596         * tests/unictype/test-pr_decimal_digit.c: Likewise.
28597         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
28598         * tests/unictype/test-pr_deprecated.c: Likewise.
28599         * tests/unictype/test-pr_diacritic.c: Likewise.
28600         * tests/unictype/test-pr_extender.c: Likewise.
28601         * tests/unictype/test-pr_format_control.c: Likewise.
28602         * tests/unictype/test-pr_grapheme_base.c: Likewise.
28603         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
28604         * tests/unictype/test-pr_grapheme_link.c: Likewise.
28605         * tests/unictype/test-pr_hex_digit.c: Likewise.
28606         * tests/unictype/test-pr_hyphen.c: Likewise.
28607         * tests/unictype/test-pr_id_continue.c: Likewise.
28608         * tests/unictype/test-pr_id_start.c: Likewise.
28609         * tests/unictype/test-pr_ideographic.c: Likewise.
28610         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
28611         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
28612         * tests/unictype/test-pr_ignorable_control.c: Likewise.
28613         * tests/unictype/test-pr_iso_control.c: Likewise.
28614         * tests/unictype/test-pr_join_control.c: Likewise.
28615         * tests/unictype/test-pr_left_of_pair.c: Likewise.
28616         * tests/unictype/test-pr_line_separator.c: Likewise.
28617         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
28618         * tests/unictype/test-pr_lowercase.c: Likewise.
28619         * tests/unictype/test-pr_math.c: Likewise.
28620         * tests/unictype/test-pr_non_break.c: Likewise.
28621         * tests/unictype/test-pr_not_a_character.c: Likewise.
28622         * tests/unictype/test-pr_numeric.c: Likewise.
28623         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
28624         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
28625         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
28626         * tests/unictype/test-pr_other_id_continue.c: Likewise.
28627         * tests/unictype/test-pr_other_id_start.c: Likewise.
28628         * tests/unictype/test-pr_other_lowercase.c: Likewise.
28629         * tests/unictype/test-pr_other_math.c: Likewise.
28630         * tests/unictype/test-pr_other_uppercase.c: Likewise.
28631         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
28632         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
28633         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
28634         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
28635         * tests/unictype/test-pr_private_use.c: Likewise.
28636         * tests/unictype/test-pr_punctuation.c: Likewise.
28637         * tests/unictype/test-pr_quotation_mark.c: Likewise.
28638         * tests/unictype/test-pr_radical.c: Likewise.
28639         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
28640         * tests/unictype/test-pr_soft_dotted.c: Likewise.
28641         * tests/unictype/test-pr_space.c: Likewise.
28642         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
28643         * tests/unictype/test-pr_titlecase.c: Likewise.
28644         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
28645         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
28646         * tests/unictype/test-pr_uppercase.c: Likewise.
28647         * tests/unictype/test-pr_variation_selector.c: Likewise.
28648         * tests/unictype/test-pr_white_space.c: Likewise.
28649         * tests/unictype/test-pr_xid_continue.c: Likewise.
28650         * tests/unictype/test-pr_xid_start.c: Likewise.
28651         * tests/unictype/test-pr_zero_width.c: Likewise.
28652         * tests/unictype/test-sy_c_whitespace.c: Likewise.
28653         * tests/unictype/test-sy_java_whitespace.c: Likewise.
28654
28655 2007-11-12  Bruno Haible  <bruno@clisp.org>
28656
28657         Unicode character classification functions.
28658         * lib/unictype.h: New file.
28659         * modules/unictype/base: New file.
28660         * modules/unictype/category-L: New file.
28661         * modules/unictype/category-Lu: New file.
28662         * modules/unictype/category-Ll: New file.
28663         * modules/unictype/category-Lt: New file.
28664         * modules/unictype/category-Lm: New file.
28665         * modules/unictype/category-Lo: New file.
28666         * modules/unictype/category-M: New file.
28667         * modules/unictype/category-Mn: New file.
28668         * modules/unictype/category-Mc: New file.
28669         * modules/unictype/category-Me: New file.
28670         * modules/unictype/category-N: New file.
28671         * modules/unictype/category-Nd: New file.
28672         * modules/unictype/category-Nl: New file.
28673         * modules/unictype/category-No: New file.
28674         * modules/unictype/category-P: New file.
28675         * modules/unictype/category-Pc: New file.
28676         * modules/unictype/category-Pd: New file.
28677         * modules/unictype/category-Ps: New file.
28678         * modules/unictype/category-Pe: New file.
28679         * modules/unictype/category-Pi: New file.
28680         * modules/unictype/category-Pf: New file.
28681         * modules/unictype/category-Po: New file.
28682         * modules/unictype/category-S: New file.
28683         * modules/unictype/category-Sm: New file.
28684         * modules/unictype/category-Sc: New file.
28685         * modules/unictype/category-Sk: New file.
28686         * modules/unictype/category-So: New file.
28687         * modules/unictype/category-Z: New file.
28688         * modules/unictype/category-Zs: New file.
28689         * modules/unictype/category-Zl: New file.
28690         * modules/unictype/category-Zp: New file.
28691         * modules/unictype/category-C: New file.
28692         * modules/unictype/category-Cc: New file.
28693         * modules/unictype/category-Cf: New file.
28694         * modules/unictype/category-Cs: New file.
28695         * modules/unictype/category-Co: New file.
28696         * modules/unictype/category-Cn: New file.
28697         * modules/unictype/category-or: New file.
28698         * modules/unictype/category-of: New file.
28699         * modules/unictype/category-test: New file.
28700         * modules/unictype/category-test-withtable: New file.
28701         * modules/unictype/category-byname: New file.
28702         * modules/unictype/category-none: New file.
28703         * modules/unictype/category-and: New file.
28704         * modules/unictype/category-and-not: New file.
28705         * modules/unictype/category-name: New file.
28706         * modules/unictype/combining-class: New file.
28707         * modules/unictype/category-all: New file.
28708         * modules/unictype/bidicategory-all: New file.
28709         * modules/unictype/bidicategory-byname: New file.
28710         * modules/unictype/bidicategory-name: New file.
28711         * modules/unictype/bidicategory-of: New file.
28712         * modules/unictype/bidicategory-test: New file.
28713         * modules/unictype/decimal-digit: New file.
28714         * modules/unictype/digit: New file.
28715         * modules/unictype/numeric: New file.
28716         * modules/unictype/mirror: New file.
28717         * modules/unictype/property-white-space: New file.
28718         * modules/unictype/property-alphabetic: New file.
28719         * modules/unictype/property-other-alphabetic: New file.
28720         * modules/unictype/property-not-a-character: New file.
28721         * modules/unictype/property-default-ignorable-code-point: New file.
28722         * modules/unictype/property-other-default-ignorable-code-point: New
28723         file.
28724         * modules/unictype/property-deprecated: New file.
28725         * modules/unictype/property-logical-order-exception: New file.
28726         * modules/unictype/property-variation-selector: New file.
28727         * modules/unictype/property-private-use: New file.
28728         * modules/unictype/property-unassigned-code-value: New file.
28729         * modules/unictype/property-uppercase: New file.
28730         * modules/unictype/property-other-uppercase: New file.
28731         * modules/unictype/property-lowercase: New file.
28732         * modules/unictype/property-other-lowercase: New file.
28733         * modules/unictype/property-titlecase: New file.
28734         * modules/unictype/property-soft-dotted: New file.
28735         * modules/unictype/property-id-start: New file.
28736         * modules/unictype/property-other-id-start: New file.
28737         * modules/unictype/property-id-continue: New file.
28738         * modules/unictype/property-other-id-continue: New file.
28739         * modules/unictype/property-xid-start: New file.
28740         * modules/unictype/property-xid-continue: New file.
28741         * modules/unictype/property-pattern-white-space: New file.
28742         * modules/unictype/property-pattern-syntax: New file.
28743         * modules/unictype/property-join-control: New file.
28744         * modules/unictype/property-grapheme-base: New file.
28745         * modules/unictype/property-grapheme-extend: New file.
28746         * modules/unictype/property-other-grapheme-extend: New file.
28747         * modules/unictype/property-grapheme-link: New file.
28748         * modules/unictype/property-bidi-control: New file.
28749         * modules/unictype/property-bidi-left-to-right: New file.
28750         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
28751         * modules/unictype/property-bidi-arabic-right-to-left: New file.
28752         * modules/unictype/property-bidi-european-digit: New file.
28753         * modules/unictype/property-bidi-eur-num-separator: New file.
28754         * modules/unictype/property-bidi-eur-num-terminator: New file.
28755         * modules/unictype/property-bidi-arabic-digit: New file.
28756         * modules/unictype/property-bidi-common-separator: New file.
28757         * modules/unictype/property-bidi-block-separator: New file.
28758         * modules/unictype/property-bidi-segment-separator: New file.
28759         * modules/unictype/property-bidi-whitespace: New file.
28760         * modules/unictype/property-bidi-non-spacing-mark: New file.
28761         * modules/unictype/property-bidi-boundary-neutral: New file.
28762         * modules/unictype/property-bidi-pdf: New file.
28763         * modules/unictype/property-bidi-embedding-or-override: New file.
28764         * modules/unictype/property-bidi-other-neutral: New file.
28765         * modules/unictype/property-hex-digit: New file.
28766         * modules/unictype/property-ascii-hex-digit: New file.
28767         * modules/unictype/property-ideographic: New file.
28768         * modules/unictype/property-unified-ideograph: New file.
28769         * modules/unictype/property-radical: New file.
28770         * modules/unictype/property-ids-binary-operator: New file.
28771         * modules/unictype/property-ids-trinary-operator: New file.
28772         * modules/unictype/property-zero-width: New file.
28773         * modules/unictype/property-space: New file.
28774         * modules/unictype/property-non-break: New file.
28775         * modules/unictype/property-iso-control: New file.
28776         * modules/unictype/property-format-control: New file.
28777         * modules/unictype/property-dash: New file.
28778         * modules/unictype/property-hyphen: New file.
28779         * modules/unictype/property-punctuation: New file.
28780         * modules/unictype/property-line-separator: New file.
28781         * modules/unictype/property-paragraph-separator: New file.
28782         * modules/unictype/property-quotation-mark: New file.
28783         * modules/unictype/property-sentence-terminal: New file.
28784         * modules/unictype/property-terminal-punctuation: New file.
28785         * modules/unictype/property-currency-symbol: New file.
28786         * modules/unictype/property-math: New file.
28787         * modules/unictype/property-other-math: New file.
28788         * modules/unictype/property-paired-punctuation: New file.
28789         * modules/unictype/property-left-of-pair: New file.
28790         * modules/unictype/property-combining: New file.
28791         * modules/unictype/property-composite: New file.
28792         * modules/unictype/property-decimal-digit: New file.
28793         * modules/unictype/property-numeric: New file.
28794         * modules/unictype/property-diacritic: New file.
28795         * modules/unictype/property-extender: New file.
28796         * modules/unictype/property-ignorable-control: New file.
28797         * modules/unictype/property-test: New file.
28798         * modules/unictype/property-byname: New file.
28799         * modules/unictype/property-all: New file.
28800         * modules/unictype/scripts: New file.
28801         * modules/unictype/scripts-all: New file.
28802         * modules/unictype/block-of: New file.
28803         * modules/unictype/block-test: New file.
28804         * modules/unictype/block-list: New file.
28805         * modules/unictype/block-all: New file.
28806         * modules/unictype/syntax-c-whitespace: New file.
28807         * modules/unictype/syntax-java-whitespace: New file.
28808         * modules/unictype/syntax-c-ident: New file.
28809         * modules/unictype/syntax-java-ident: New file.
28810         * modules/unictype/ctype-alnum: New file.
28811         * modules/unictype/ctype-alpha: New file.
28812         * modules/unictype/ctype-cntrl: New file.
28813         * modules/unictype/ctype-digit: New file.
28814         * modules/unictype/ctype-graph: New file.
28815         * modules/unictype/ctype-lower: New file.
28816         * modules/unictype/ctype-print: New file.
28817         * modules/unictype/ctype-punct: New file.
28818         * modules/unictype/ctype-space: New file.
28819         * modules/unictype/ctype-upper: New file.
28820         * modules/unictype/ctype-xdigit: New file.
28821         * modules/unictype/ctype-blank: New file.
28822         * lib/unictype/bidi_byname.c: New file.
28823         * lib/unictype/bidi_name.c: New file.
28824         * lib/unictype/bidi_of.c: New file.
28825         * lib/unictype/bidi_test.c: New file.
28826         * lib/unictype/bitmap.h: New file.
28827         * lib/unictype/block_test.c: New file.
28828         * lib/unictype/blocks.c: New file.
28829         * lib/unictype/categ_C.c: New file.
28830         * lib/unictype/categ_Cc.c: New file.
28831         * lib/unictype/categ_Cf.c: New file.
28832         * lib/unictype/categ_Cn.c: New file.
28833         * lib/unictype/categ_Co.c: New file.
28834         * lib/unictype/categ_Cs.c: New file.
28835         * lib/unictype/categ_L.c: New file.
28836         * lib/unictype/categ_Ll.c: New file.
28837         * lib/unictype/categ_Lm.c: New file.
28838         * lib/unictype/categ_Lo.c: New file.
28839         * lib/unictype/categ_Lt.c: New file.
28840         * lib/unictype/categ_Lu.c: New file.
28841         * lib/unictype/categ_M.c: New file.
28842         * lib/unictype/categ_Mc.c: New file.
28843         * lib/unictype/categ_Me.c: New file.
28844         * lib/unictype/categ_Mn.c: New file.
28845         * lib/unictype/categ_N.c: New file.
28846         * lib/unictype/categ_Nd.c: New file.
28847         * lib/unictype/categ_Nl.c: New file.
28848         * lib/unictype/categ_No.c: New file.
28849         * lib/unictype/categ_P.c: New file.
28850         * lib/unictype/categ_Pc.c: New file.
28851         * lib/unictype/categ_Pd.c: New file.
28852         * lib/unictype/categ_Pe.c: New file.
28853         * lib/unictype/categ_Pf.c: New file.
28854         * lib/unictype/categ_Pi.c: New file.
28855         * lib/unictype/categ_Po.c: New file.
28856         * lib/unictype/categ_Ps.c: New file.
28857         * lib/unictype/categ_S.c: New file.
28858         * lib/unictype/categ_Sc.c: New file.
28859         * lib/unictype/categ_Sk.c: New file.
28860         * lib/unictype/categ_Sm.c: New file.
28861         * lib/unictype/categ_So.c: New file.
28862         * lib/unictype/categ_Z.c: New file.
28863         * lib/unictype/categ_Zl.c: New file.
28864         * lib/unictype/categ_Zp.c: New file.
28865         * lib/unictype/categ_Zs.c: New file.
28866         * lib/unictype/categ_and.c: New file.
28867         * lib/unictype/categ_and_not.c: New file.
28868         * lib/unictype/categ_byname.c: New file.
28869         * lib/unictype/categ_name.c: New file.
28870         * lib/unictype/categ_none.c: New file.
28871         * lib/unictype/categ_of.c: New file.
28872         * lib/unictype/categ_or.c: New file.
28873         * lib/unictype/categ_test.c: New file.
28874         * lib/unictype/combining.c: New file.
28875         * lib/unictype/ctype_alnum.c: New file.
28876         * lib/unictype/ctype_alpha.c: New file.
28877         * lib/unictype/ctype_blank.c: New file.
28878         * lib/unictype/ctype_cntrl.c: New file.
28879         * lib/unictype/ctype_digit.c: New file.
28880         * lib/unictype/ctype_graph.c: New file.
28881         * lib/unictype/ctype_lower.c: New file.
28882         * lib/unictype/ctype_print.c: New file.
28883         * lib/unictype/ctype_punct.c: New file.
28884         * lib/unictype/ctype_space.c: New file.
28885         * lib/unictype/ctype_upper.c: New file.
28886         * lib/unictype/ctype_xdigit.c: New file.
28887         * lib/unictype/decdigit.c: New file.
28888         * lib/unictype/digit.c: New file.
28889         * lib/unictype/identsyntaxmap.h: New file.
28890         * lib/unictype/mirror.c: New file.
28891         * lib/unictype/numeric.c: New file.
28892         * lib/unictype/pr_alphabetic.c: New file.
28893         * lib/unictype/pr_ascii_hex_digit.c: New file.
28894         * lib/unictype/pr_bidi_arabic_digit.c: New file.
28895         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
28896         * lib/unictype/pr_bidi_block_separator.c: New file.
28897         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
28898         * lib/unictype/pr_bidi_common_separator.c: New file.
28899         * lib/unictype/pr_bidi_control.c: New file.
28900         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
28901         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
28902         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
28903         * lib/unictype/pr_bidi_european_digit.c: New file.
28904         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
28905         * lib/unictype/pr_bidi_left_to_right.c: New file.
28906         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
28907         * lib/unictype/pr_bidi_other_neutral.c: New file.
28908         * lib/unictype/pr_bidi_pdf.c: New file.
28909         * lib/unictype/pr_bidi_segment_separator.c: New file.
28910         * lib/unictype/pr_bidi_whitespace.c: New file.
28911         * lib/unictype/pr_byname.c: New file.
28912         * lib/unictype/pr_byname.gperf: New file.
28913         * lib/unictype/pr_combining.c: New file.
28914         * lib/unictype/pr_composite.c: New file.
28915         * lib/unictype/pr_currency_symbol.c: New file.
28916         * lib/unictype/pr_dash.c: New file.
28917         * lib/unictype/pr_decimal_digit.c: New file.
28918         * lib/unictype/pr_default_ignorable_code_point.c: New file.
28919         * lib/unictype/pr_deprecated.c: New file.
28920         * lib/unictype/pr_diacritic.c: New file.
28921         * lib/unictype/pr_extender.c: New file.
28922         * lib/unictype/pr_format_control.c: New file.
28923         * lib/unictype/pr_grapheme_base.c: New file.
28924         * lib/unictype/pr_grapheme_extend.c: New file.
28925         * lib/unictype/pr_grapheme_link.c: New file.
28926         * lib/unictype/pr_hex_digit.c: New file.
28927         * lib/unictype/pr_hyphen.c: New file.
28928         * lib/unictype/pr_id_continue.c: New file.
28929         * lib/unictype/pr_id_start.c: New file.
28930         * lib/unictype/pr_ideographic.c: New file.
28931         * lib/unictype/pr_ids_binary_operator.c: New file.
28932         * lib/unictype/pr_ids_trinary_operator.c: New file.
28933         * lib/unictype/pr_ignorable_control.c: New file.
28934         * lib/unictype/pr_iso_control.c: New file.
28935         * lib/unictype/pr_join_control.c: New file.
28936         * lib/unictype/pr_left_of_pair.c: New file.
28937         * lib/unictype/pr_line_separator.c: New file.
28938         * lib/unictype/pr_logical_order_exception.c: New file.
28939         * lib/unictype/pr_lowercase.c: New file.
28940         * lib/unictype/pr_math.c: New file.
28941         * lib/unictype/pr_non_break.c: New file.
28942         * lib/unictype/pr_not_a_character.c: New file.
28943         * lib/unictype/pr_numeric.c: New file.
28944         * lib/unictype/pr_other_alphabetic.c: New file.
28945         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
28946         * lib/unictype/pr_other_grapheme_extend.c: New file.
28947         * lib/unictype/pr_other_id_continue.c: New file.
28948         * lib/unictype/pr_other_id_start.c: New file.
28949         * lib/unictype/pr_other_lowercase.c: New file.
28950         * lib/unictype/pr_other_math.c: New file.
28951         * lib/unictype/pr_other_uppercase.c: New file.
28952         * lib/unictype/pr_paired_punctuation.c: New file.
28953         * lib/unictype/pr_paragraph_separator.c: New file.
28954         * lib/unictype/pr_pattern_syntax.c: New file.
28955         * lib/unictype/pr_pattern_white_space.c: New file.
28956         * lib/unictype/pr_private_use.c: New file.
28957         * lib/unictype/pr_punctuation.c: New file.
28958         * lib/unictype/pr_quotation_mark.c: New file.
28959         * lib/unictype/pr_radical.c: New file.
28960         * lib/unictype/pr_sentence_terminal.c: New file.
28961         * lib/unictype/pr_soft_dotted.c: New file.
28962         * lib/unictype/pr_space.c: New file.
28963         * lib/unictype/pr_terminal_punctuation.c: New file.
28964         * lib/unictype/pr_test.c: New file.
28965         * lib/unictype/pr_titlecase.c: New file.
28966         * lib/unictype/pr_unassigned_code_value.c: New file.
28967         * lib/unictype/pr_unified_ideograph.c: New file.
28968         * lib/unictype/pr_uppercase.c: New file.
28969         * lib/unictype/pr_variation_selector.c: New file.
28970         * lib/unictype/pr_white_space.c: New file.
28971         * lib/unictype/pr_xid_continue.c: New file.
28972         * lib/unictype/pr_xid_start.c: New file.
28973         * lib/unictype/pr_zero_width.c: New file.
28974         * lib/unictype/scripts.c: New file.
28975         * lib/unictype/sy_c_ident.c: New file.
28976         * lib/unictype/sy_c_whitespace.c: New file.
28977         * lib/unictype/sy_java_ident.c: New file.
28978         * lib/unictype/sy_java_whitespace.c: New file.
28979
28980         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
28981         Unicode 5.0.0.
28982         * lib/unictype/blocks.h: Likewise.
28983         * lib/unictype/categ_C.h: Likewise.
28984         * lib/unictype/categ_Cc.h: Likewise.
28985         * lib/unictype/categ_Cf.h: Likewise.
28986         * lib/unictype/categ_Cn.h: Likewise.
28987         * lib/unictype/categ_Co.h: Likewise.
28988         * lib/unictype/categ_Cs.h: Likewise.
28989         * lib/unictype/categ_L.h: Likewise.
28990         * lib/unictype/categ_Ll.h: Likewise.
28991         * lib/unictype/categ_Lm.h: Likewise.
28992         * lib/unictype/categ_Lo.h: Likewise.
28993         * lib/unictype/categ_Lt.h: Likewise.
28994         * lib/unictype/categ_Lu.h: Likewise.
28995         * lib/unictype/categ_M.h: Likewise.
28996         * lib/unictype/categ_Mc.h: Likewise.
28997         * lib/unictype/categ_Me.h: Likewise.
28998         * lib/unictype/categ_Mn.h: Likewise.
28999         * lib/unictype/categ_N.h: Likewise.
29000         * lib/unictype/categ_Nd.h: Likewise.
29001         * lib/unictype/categ_Nl.h: Likewise.
29002         * lib/unictype/categ_No.h: Likewise.
29003         * lib/unictype/categ_P.h: Likewise.
29004         * lib/unictype/categ_Pc.h: Likewise.
29005         * lib/unictype/categ_Pd.h: Likewise.
29006         * lib/unictype/categ_Pe.h: Likewise.
29007         * lib/unictype/categ_Pf.h: Likewise.
29008         * lib/unictype/categ_Pi.h: Likewise.
29009         * lib/unictype/categ_Po.h: Likewise.
29010         * lib/unictype/categ_Ps.h: Likewise.
29011         * lib/unictype/categ_S.h: Likewise.
29012         * lib/unictype/categ_Sc.h: Likewise.
29013         * lib/unictype/categ_Sk.h: Likewise.
29014         * lib/unictype/categ_Sm.h: Likewise.
29015         * lib/unictype/categ_So.h: Likewise.
29016         * lib/unictype/categ_Z.h: Likewise.
29017         * lib/unictype/categ_Zl.h: Likewise.
29018         * lib/unictype/categ_Zp.h: Likewise.
29019         * lib/unictype/categ_Zs.h: Likewise.
29020         * lib/unictype/categ_of.h: Likewise.
29021         * lib/unictype/combining.h: Likewise.
29022         * lib/unictype/ctype_alnum.h: Likewise.
29023         * lib/unictype/ctype_alpha.h: Likewise.
29024         * lib/unictype/ctype_blank.h: Likewise.
29025         * lib/unictype/ctype_cntrl.h: Likewise.
29026         * lib/unictype/ctype_digit.h: Likewise.
29027         * lib/unictype/ctype_graph.h: Likewise.
29028         * lib/unictype/ctype_lower.h: Likewise.
29029         * lib/unictype/ctype_print.h: Likewise.
29030         * lib/unictype/ctype_punct.h: Likewise.
29031         * lib/unictype/ctype_space.h: Likewise.
29032         * lib/unictype/ctype_upper.h: Likewise.
29033         * lib/unictype/ctype_xdigit.h: Likewise.
29034         * lib/unictype/decdigit.h: Likewise.
29035         * lib/unictype/digit.h: Likewise.
29036         * lib/unictype/mirror.h: Likewise.
29037         * lib/unictype/numeric.h: Likewise.
29038         * lib/unictype/pr_alphabetic.h: Likewise.
29039         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
29040         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
29041         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
29042         * lib/unictype/pr_bidi_block_separator.h: Likewise.
29043         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
29044         * lib/unictype/pr_bidi_common_separator.h: Likewise.
29045         * lib/unictype/pr_bidi_control.h: Likewise.
29046         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
29047         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
29048         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
29049         * lib/unictype/pr_bidi_european_digit.h: Likewise.
29050         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
29051         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
29052         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
29053         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
29054         * lib/unictype/pr_bidi_pdf.h: Likewise.
29055         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
29056         * lib/unictype/pr_bidi_whitespace.h: Likewise.
29057         * lib/unictype/pr_combining.h: Likewise.
29058         * lib/unictype/pr_composite.h: Likewise.
29059         * lib/unictype/pr_currency_symbol.h: Likewise.
29060         * lib/unictype/pr_dash.h: Likewise.
29061         * lib/unictype/pr_decimal_digit.h: Likewise.
29062         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
29063         * lib/unictype/pr_deprecated.h: Likewise.
29064         * lib/unictype/pr_diacritic.h: Likewise.
29065         * lib/unictype/pr_extender.h: Likewise.
29066         * lib/unictype/pr_format_control.h: Likewise.
29067         * lib/unictype/pr_grapheme_base.h: Likewise.
29068         * lib/unictype/pr_grapheme_extend.h: Likewise.
29069         * lib/unictype/pr_grapheme_link.h: Likewise.
29070         * lib/unictype/pr_hex_digit.h: Likewise.
29071         * lib/unictype/pr_hyphen.h: Likewise.
29072         * lib/unictype/pr_id_continue.h: Likewise.
29073         * lib/unictype/pr_id_start.h: Likewise.
29074         * lib/unictype/pr_ideographic.h: Likewise.
29075         * lib/unictype/pr_ids_binary_operator.h: Likewise.
29076         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
29077         * lib/unictype/pr_ignorable_control.h: Likewise.
29078         * lib/unictype/pr_iso_control.h: Likewise.
29079         * lib/unictype/pr_join_control.h: Likewise.
29080         * lib/unictype/pr_left_of_pair.h: Likewise.
29081         * lib/unictype/pr_line_separator.h: Likewise.
29082         * lib/unictype/pr_logical_order_exception.h: Likewise.
29083         * lib/unictype/pr_lowercase.h: Likewise.
29084         * lib/unictype/pr_math.h: Likewise.
29085         * lib/unictype/pr_non_break.h: Likewise.
29086         * lib/unictype/pr_not_a_character.h: Likewise.
29087         * lib/unictype/pr_numeric.h: Likewise.
29088         * lib/unictype/pr_other_alphabetic.h: Likewise.
29089         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
29090         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
29091         * lib/unictype/pr_other_id_continue.h: Likewise.
29092         * lib/unictype/pr_other_id_start.h: Likewise.
29093         * lib/unictype/pr_other_lowercase.h: Likewise.
29094         * lib/unictype/pr_other_math.h: Likewise.
29095         * lib/unictype/pr_other_uppercase.h: Likewise.
29096         * lib/unictype/pr_paired_punctuation.h: Likewise.
29097         * lib/unictype/pr_paragraph_separator.h: Likewise.
29098         * lib/unictype/pr_pattern_syntax.h: Likewise.
29099         * lib/unictype/pr_pattern_white_space.h: Likewise.
29100         * lib/unictype/pr_private_use.h: Likewise.
29101         * lib/unictype/pr_punctuation.h: Likewise.
29102         * lib/unictype/pr_quotation_mark.h: Likewise.
29103         * lib/unictype/pr_radical.h: Likewise.
29104         * lib/unictype/pr_sentence_terminal.h: Likewise.
29105         * lib/unictype/pr_soft_dotted.h: Likewise.
29106         * lib/unictype/pr_space.h: Likewise.
29107         * lib/unictype/pr_terminal_punctuation.h: Likewise.
29108         * lib/unictype/pr_titlecase.h: Likewise.
29109         * lib/unictype/pr_unassigned_code_value.h: Likewise.
29110         * lib/unictype/pr_unified_ideograph.h: Likewise.
29111         * lib/unictype/pr_uppercase.h: Likewise.
29112         * lib/unictype/pr_variation_selector.h: Likewise.
29113         * lib/unictype/pr_white_space.h: Likewise.
29114         * lib/unictype/pr_xid_continue.h: Likewise.
29115         * lib/unictype/pr_xid_start.h: Likewise.
29116         * lib/unictype/pr_zero_width.h: Likewise.
29117         * lib/unictype/scripts.h: Likewise.
29118         * lib/unictype/scripts_byname.gperf: Likewise.
29119         * lib/unictype/sy_c_ident.h: Likewise.
29120         * lib/unictype/sy_c_whitespace.h: Likewise.
29121         * lib/unictype/sy_java_ident.h: Likewise.
29122         * lib/unictype/sy_java_whitespace.h: Likewise.
29123
29124         * lib/unictype/Makefile: New file.
29125         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
29126         glibc.
29127         * lib/unictype/3level.h: New file, copied from glibc.
29128         * lib/unictype/3levelbit.h: New file.
29129
29130 2007-11-11  Bruno Haible  <bruno@clisp.org>
29131
29132         * modules/gperf: New file.
29133         * modules/iconv_open (Depends-on): Add it.
29134         (Makefile.am): Remove the GPERF definition.
29135
29136 2007-11-11  Bruno Haible  <bruno@clisp.org>
29137
29138         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
29139         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
29140
29141 2007-11-11  Bruno Haible  <bruno@clisp.org>
29142
29143         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
29144         (usage): Remove function.
29145
29146 2007-11-11  Bruno Haible  <bruno@clisp.org>
29147
29148         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
29149         gl_FUNC_CEILF_LIBS.
29150         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
29151         gl_FUNC_CEIL_LIBS.
29152         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
29153         gl_FUNC_CEILL_LIBS.
29154         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
29155         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
29156         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
29157
29158 2007-11-11  Bruno Haible  <bruno@clisp.org>
29159
29160         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
29161         roundf were declared but do not exist on functions.
29162         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
29163         roundl were declared but do not exist on functions.
29164         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
29165         HAVE_FLOORL_AND_CEILL, respectively.
29166         Needed for Sun C on Solaris 10.
29167
29168 2007-11-11  Bruno Haible  <bruno@clisp.org>
29169
29170         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
29171         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
29172         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
29173         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
29174         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
29175         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
29176         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
29177         HAVE_DECL_ROUNDF.
29178         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
29179         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
29180         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
29181         of HAVE_DECL_ROUND*.
29182         * modules/math (Makefile.am): Update.
29183
29184 2007-11-10  Bruno Haible  <bruno@clisp.org>
29185
29186         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
29187         ptrdiff_t as m4/intl.m4.
29188
29189 2007-11-10  Jim Meyering  <meyering@redhat.com>
29190
29191         Avoid link failure for the argmatch test.
29192         * tests/test-argmatch.c (usage): Define function to avoid a link
29193         failure: argmatch_die requires a usage function.
29194
29195 2007-11-09  Bruno Haible  <bruno@clisp.org>
29196
29197         * doc/functions/snprintf.texi: Mention BeOS deficiency.
29198         * doc/functions/vsnprintf.texi: Likewise.
29199         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
29200         with a size argument < 2.
29201
29202 2007-11-09  Bruno Haible  <bruno@clisp.org>
29203
29204         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
29205         buffer. Fixes an inefficiency introduced on 2007-11-03.
29206
29207 2007-11-09  Bruno Haible  <bruno@clisp.org>
29208
29209         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
29210         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
29211
29212 2007-11-08  Jim Meyering  <meyering@redhat.com>
29213
29214         Change cache variable name prefix "jm_" to "gl_" everywhere.
29215         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
29216         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
29217         * m4/uptime.m4: s/gl_/jm_/
29218
29219 2007-11-07  Bruno Haible  <bruno@clisp.org>
29220
29221         Update to GNU gettext 0.17.
29222         * m4/intl.m4: Update to GNU gettext 0.17.
29223         * m4/po.m4: Likewise.
29224         * modules/gettext (Files): Remove m4/ulonglong.m4.
29225         (configure.ac): Require gettext infrastructure from version 0.17.
29226
29227 2007-11-06  Bruno Haible  <bruno@clisp.org>
29228
29229         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
29230         symbolic values are not defined in a public header.
29231         * lib/freadable.c (freadable) [QNX]: Likewise.
29232         * lib/freadahead.c (freadahead) [QNX]: Likewise.
29233         * lib/freading.c (freading) [QNX]: Likewise.
29234         * lib/fseterr.c (fseterr) [QNX]: Likewise.
29235         * lib/fwritable.c (fwritable) [QNX]: Likewise.
29236         * lib/fwriting.c (fwriting) [QNX]: Likewise.
29237         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
29238         Reported by Alain Magloire.
29239
29240         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
29241
29242 2007-11-05  Bruno Haible  <bruno@clisp.org>
29243
29244         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
29245         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
29246         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
29247         Reported by Eric Blake.
29248
29249 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29250             Bruno Haible  <bruno@clisp.org>
29251
29252         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
29253         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
29254         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
29255         (malloc): Undefine also before including <stdlib.h>.
29256         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
29257         Needed on OSF/1 4.0.
29258
29259 2007-11-05  Jim Meyering  <meyering@redhat.com>
29260
29261         git-version-gen: sync from coreutils.
29262         * build-aux/git-version-gen: Add comments.
29263         Change the first '-' to '.' in the snapshot version string,
29264         e.g., 6.9-377-08144 -> 6.9.377-08144
29265         Remove first parameter.
29266         Don't declare a version "-dirty" merely because a time
29267         stamp has changed.
29268
29269 2007-11-04  Bruno Haible  <bruno@clisp.org>
29270
29271         * lib/lock.h: Protect all macro definitions containing an 'if'
29272         statement through a "do { ... } while (0)".
29273         * lib/tls.h: Likewise.
29274
29275 2007-11-04  Bruno Haible  <bruno@clisp.org>
29276
29277         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
29278
29279 2007-11-04  Bruno Haible  <bruno@clisp.org>
29280
29281         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
29282         * modules/fprintf-posix (Depends-on): Add nocrash.
29283         * modules/snprintf-posix (Depends-on): Likewise.
29284         * modules/sprintf-posix (Depends-on): Likewise.
29285         * modules/vasnprintf-posix (Depends-on): Likewise.
29286         * modules/vasprintf-posix (Depends-on): Likewise.
29287         * modules/vfprintf-posix (Depends-on): Likewise.
29288         * modules/vsnprintf-posix (Depends-on): Likewise.
29289         * modules/vsprintf-posix (Depends-on): Likewise.
29290         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
29291         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
29292         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
29293         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
29294         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
29295         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
29296         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
29297
29298 2007-11-04  Bruno Haible  <bruno@clisp.org>
29299
29300         * modules/nocrash: New file.
29301         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
29302         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
29303
29304 2007-11-04  Bruno Haible  <bruno@clisp.org>
29305
29306         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
29307         precision handling.
29308         * tests/test-vasprintf-posix.c (test_function): Likewise.
29309         * tests/test-snprintf-posix.h (test_function): Likewise.
29310         * tests/test-sprintf-posix.h (test_function): Likewise.
29311
29312         Fix *printf behaviour for large precisions on mingw and BeOS.
29313         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
29314         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
29315         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
29316         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29317         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29318         gl_PRINTF_PRECISION and test its result. Invoke
29319         gl_PREREQ_VASNPRINTF_PRECISION.
29320         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29321         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29322         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29323         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29324         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29325         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29326         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29327         * doc/functions/fprintf.texi: Update.
29328         * doc/functions/printf.texi: Update.
29329         * doc/functions/snprintf.texi: Update.
29330         * doc/functions/sprintf.texi: Update.
29331         * doc/functions/vfprintf.texi: Update.
29332         * doc/functions/vprintf.texi: Update.
29333         * doc/functions/vsnprintf.texi: Update.
29334         * doc/functions/vsprintf.texi: Update.
29335
29336 2007-11-04  Bruno Haible  <bruno@clisp.org>
29337
29338         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
29339
29340 2007-11-04  Bruno Haible  <bruno@clisp.org>
29341
29342         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
29343         Reported by Sylvain Beucler <beuc@gnu.org>.
29344
29345 2007-11-03  Bruno Haible  <bruno@clisp.org>
29346
29347         * tests/test-fprintf-posix2.sh: New file.
29348         * tests/test-fprintf-posix2.c: New file.
29349         * modules/fprintf-posix-tests (Files): Add them.
29350         (TESTS): Add test-fprintf-posix2.sh.
29351         (configure.ac): Check for getrlimit and setrlimit.
29352         (check_PROGRAMS): Add test-fprintf-posix2.
29353
29354         * tests/test-printf-posix2.sh: New file.
29355         * tests/test-printf-posix2.c: New file.
29356         * modules/printf-posix-tests (Files): Add them.
29357         (TESTS): Add test-printf-posix2.sh.
29358         (configure.ac): Check for getrlimit and setrlimit.
29359         (check_PROGRAMS): Add test-printf-posix2.
29360
29361         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
29362         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
29363         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
29364         (decode_double): New function, copied from decode_long_double.
29365         (scale10_round_decimal_decoded): New function, extracted from
29366         scale10_round_decimal_long_double.
29367         (scale10_round_decimal_long_double): Use it.
29368         (scale10_round_decimal_double): New function.
29369         (floorlog10): New function.
29370         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
29371         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
29372         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29373         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29374         gl_PRINTF_ENOMEM and test its result. Invoke
29375         gl_PREREQ_VASNPRINTF_ENOMEM.
29376         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29377         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29378         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29379         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29380         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29381         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29382         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29383         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
29384         * modules/snprintf-posix (Depends-on): Likewise.
29385         * modules/sprintf-posix (Depends-on): Likewise.
29386         * modules/vasnprintf-posix (Depends-on): Likewise.
29387         * modules/vasprintf-posix (Depends-on): Likewise.
29388         * modules/vfprintf-posix (Depends-on): Likewise.
29389         * modules/vsnprintf-posix (Depends-on): Likewise.
29390         * modules/vsprintf-posix (Depends-on): Likewise.
29391         * doc/functions/fprintf.texi: Update.
29392         * doc/functions/printf.texi: Update.
29393         * doc/functions/snprintf.texi: Update.
29394         * doc/functions/sprintf.texi: Update.
29395         * doc/functions/vfprintf.texi: Update.
29396         * doc/functions/vprintf.texi: Update.
29397         * doc/functions/vsnprintf.texi: Update.
29398         * doc/functions/vsprintf.texi: Update.
29399
29400 2007-11-03  Bruno Haible  <bruno@clisp.org>
29401
29402         * modules/frexp-nolibm-tests: New file.
29403
29404         * modules/frexp-nolibm: New file.
29405         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
29406
29407 2007-11-03  Bruno Haible  <bruno@clisp.org>
29408
29409         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
29410         value is C99 compliant.
29411         Needed for OSF/1 5.1.
29412
29413 2007-11-03  Bruno Haible  <bruno@clisp.org>
29414
29415         Fix out-of-memory handling of vasnprintf.
29416         * lib/printf-parse.c: Include <errno.h>.
29417         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
29418         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
29419         is already set.
29420
29421 2007-11-02  Eric Blake  <ebb9@byu.net>
29422
29423         Fix tests on cygwin.
29424         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
29425
29426 2007-11-01  Bruno Haible  <bruno@clisp.org>
29427
29428         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
29429         warning.
29430         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
29431         needed for POSIX compatibility.
29432
29433 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
29434
29435         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
29436         for compatibility with GNU.
29437
29438 2007-11-01  Bruno Haible  <bruno@clisp.org>
29439
29440         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
29441         (putenv): Renamed from rpl_putenv. Change argument type from
29442         'const char *' to 'char *'.
29443         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
29444         of defining putenv in config.h, just set REPLACE_PUTENV.
29445         * modules/putenv (Depends-on): Add stdlib.
29446         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
29447         (Include): Use <stdlib.h>.
29448         * lib/stdlib.in.h (putenv): New declaration.
29449         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
29450         REPLACE_PUTENV.
29451         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
29452         REPLACE_PUTENV.
29453         Needed for MacOS X 10.5.0.
29454         Reported by Peter O'Gorman <peter@pogma.com>.
29455
29456 2007-11-01  Jim Meyering  <meyering@redhat.com>
29457
29458         Treat an empty date string exactly like "0".
29459         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
29460         if the remaining date string (to be parsed) is empty, use "0".
29461         Reported by Mischa Molhoek and discussed in this thread:
29462         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
29463
29464 2007-10-31  Bruno Haible  <bruno@clisp.org>
29465
29466         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
29467         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
29468         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
29469         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
29470         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
29471         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
29472
29473 2007-10-31  Bruno Haible  <bruno@clisp.org>
29474
29475         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
29476         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
29477         (AC_TYPE_LONG_LONG_INT): Use it.
29478         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
29479         it as well.
29480         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
29481         to m4/longlong.m4.
29482         * modules/stdint (Files): Remove m4/ulonglong.m4.
29483         * modules/strtoull (Files): Use m4/longlong.m4 instead of
29484         m4/ulonglong.m4.
29485         * modules/strtoumax (Files): Likewise.
29486
29487 2007-10-30  Bruno Haible  <bruno@clisp.org>
29488
29489         * modules/xvasprintf-posix: New file.
29490         Suggested by Eric Blake.
29491
29492 2007-10-30  Bruno Haible  <bruno@clisp.org>
29493
29494         * modules/xprintf-posix-tests: New file.
29495         * tests/test-xprintf-posix.sh: New file.
29496         * tests/test-xprintf-posix.c: New file.
29497         * tests/test-xfprintf-posix.c: New file.
29498
29499         * modules/xprintf-posix: New file.
29500
29501 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29502
29503         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
29504         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
29505         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
29506
29507 2007-10-29  Bruno Haible  <bruno@clisp.org>
29508
29509         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
29510         contain the special marker '_cv_'.
29511         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
29512         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
29513         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
29514         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
29515         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
29516         Reported by Ralf Wildenhues.
29517
29518 2007-10-29  Bruno Haible  <bruno@clisp.org>
29519
29520         * gnulib-tool (func_import): When --lgpl is not specified, set
29521         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
29522         GPLv3.
29523         Reported by Simon Josefsson.
29524
29525 2007-10-28  Bruno Haible  <bruno@clisp.org>
29526
29527         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
29528         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
29529         HAVE_DECL_ISFINITE.
29530         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
29531         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
29532         HAVE_DECL_ISFINITE.
29533
29534 2007-10-28  Bruno Haible  <bruno@clisp.org>
29535
29536         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
29537         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
29538
29539 2007-10-28  Bruno Haible  <bruno@clisp.org>
29540
29541         Fix link errors with Sun C 5.0 on Solaris 10.
29542         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
29543         function is declared but not present in the compiler's libm.
29544         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
29545         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
29546         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
29547         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
29548         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
29549         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
29550         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
29551         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
29552         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
29553         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
29554         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
29555         HAVE_DECL_FLOORL.
29556
29557 2007-10-28  Bruno Haible  <bruno@clisp.org>
29558
29559         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
29560         gl_FUNC_FLOORL. Cache the result.
29561         (gl_FUNC_FLOORL): Use it.
29562         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
29563         gl_FUNC_CEILL. Cache the result.
29564         (gl_FUNC_CEILL): Use it.
29565
29566         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
29567         gl_FUNC_FLOOR. Cache the result.
29568         (gl_FUNC_FLOOR): Use it.
29569         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
29570         gl_FUNC_CEIL. Cache the result.
29571         (gl_FUNC_CEIL): Use it.
29572
29573         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
29574         gl_FUNC_FLOORF. Cache the result.
29575         (gl_FUNC_FLOORF): Use it.
29576         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
29577         gl_FUNC_CEILF. Cache the result.
29578         (gl_FUNC_CEILF): Use it.
29579
29580 2007-10-28  Bruno Haible  <bruno@clisp.org>
29581
29582         * gnulib-tool: Allow specifying the LGPL version number through
29583         --lgpl=2 or --lgpl=3.
29584         (func_usage): Document --lgpl with argument.
29585         Handle --lgpl=... arguments.
29586         (func_import): Recognize also gl_LGPL calls with an argument. When
29587         --lgpl=2 is used and the module's license is just LGPL, report an
29588         error. Set sed_transform_lib_file according to the lgpl variable. In
29589         the generated files, use --lgpl or gl_LGPL invocations with argument,
29590         if necessary.
29591         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
29592         an LGPv2+ license.
29593         * doc/gnulib-tool.texi (Modified imports): Update explanation of
29594         gl_LGPL macro.
29595
29596 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29597             Bruno Haible  <bruno@clisp.org>
29598
29599         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
29600         (u16_uctomb_aux): Likewise.
29601         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
29602         !HAVE_INLINE.
29603         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
29604
29605 2007-10-28  Bruno Haible  <bruno@clisp.org>
29606
29607         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
29608         Invoke AM_GETTEXT_OPTION if it exists.
29609         * modules/vasprintf: Likewise.
29610         * modules/verror: Likewise.
29611         * modules/xprintf: Likewise.
29612         * modules/xvasprintf: Likewise.
29613
29614 2007-10-27  Ben Pfaff  <blp@gnu.org>
29615
29616         * lib/math.in.h: Define isfinite macro and prototypes for
29617         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
29618         implementations.
29619         * m4/math_h.m4: New substitutions for isfinite module.
29620         * lib/isfinite.c: New file.
29621         * m4/isfinite.m4: New file.
29622         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
29623         * modules/isfinite: New file.
29624         * modules/isfinite-tests: New file.
29625         * tests/tests-isfinite.c: New file.
29626         * doc/functions/isfinite.texi: Mention isfinite module.
29627         * MODULES.html.sh: Mention new module.
29628
29629 2007-10-27  Ben Pfaff  <blp@gnu.org>
29630
29631         Ralf Wildenhues reported that Tru64 4.0D declares the round
29632         functions but does not have definitions.
29633         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
29634         cannot be found in any library, set the output variable to
29635         "missing" instead of "".
29636         * m4/round.m4: Also use our substitute if we cannot find round in
29637         any library, even if it is declared.
29638         * m4/roundf.m4: Likewise for roundf.
29639         * m4/roundl.m4: Likewise for roundl.
29640         * lib/math.in.h: Undefine roundf, round, roundl before defining
29641         their replacements, to allow for hypothetical systems where these
29642         may be defined as macros but not available in libraries.
29643
29644 2007-10-27  Bruno Haible  <bruno@clisp.org>
29645
29646         * doc/gnulib.texi: Invoke @firstparagraphindent.
29647         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
29648         changes in gnulib.
29649         (Source changes): New section.
29650
29651 2007-10-26  Bruno Haible  <bruno@clisp.org>
29652
29653         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
29654         borrowed from autoconf.
29655
29656 2007-10-26  Bruno Haible  <bruno@clisp.org>
29657
29658         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
29659         strerror returned the empty string. Needed on HP-UX 11.00.
29660
29661 2007-10-24  Micah Cowan  <micah@cowan.name>
29662
29663         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
29664         * build-aux/bootstrap: Remove support for now-unnecessary option,
29665         --cvs-user, and envvars CVS_USER, CVS_RSH.
29666
29667 2007-10-24  Jim Meyering  <meyering@redhat.com>
29668
29669         Avoid diagnostics from sha1sum when there is no cached checksum.
29670         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
29671         if the po.s1 file hasn't been created yet.
29672
29673         * build-aux/bootstrap: Sync from coreutils:
29674         2007-10-24  Jim Meyering  <meyering@redhat.com>
29675         Get gnulib from the git repository, not from an obsolete cvs one.
29676         * build-aux/bootstrap: Suggestion from Micah Cowan.
29677         2007-10-04  Jim Meyering  <jim@meyering.net>
29678         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
29679         (update_po_files): Work also when there are no .po files in po/.
29680
29681 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29682
29683         * README: Append ".git" to git and cg examples.
29684         Problem reported by Benoit Sigoure.
29685
29686 2007-10-23  Micah Cowan  <micah@cowan.name>
29687
29688         * users.txt: Add wget.
29689
29690 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29691
29692         Fix linking of some unistdio tests on FreeBSD.
29693         * modules/unistdio/u16-vsnprintf-tests
29694         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
29695         * modules/unistdio/u16-vsprintf-tests
29696         (test_u16_vsnprintf1_LDADD): Likewise.
29697         * modules/unistdio/u32-vsnprintf-tests
29698         (test_u32_vsnprintf1_LDADD): Likewise.
29699         * modules/unistdio/u32-vsprintf-tests
29700         (test_u32_vsprintf1_LDADD): Likewise.
29701         * modules/unistdio/u8-vsnprintf-tests
29702         (test_u8_vsnprintf1_LDADD): Likewise.
29703         * modules/unistdio/u8-vsprintf-tests
29704         (test_u8_vsprintf1_LDADD): Likewise.
29705         * modules/unistdio/ulc-vsnprintf-tests
29706         (test_ulc_vsnprintf1_LDADD): Likewise.
29707         * modules/unistdio/ulc-vsprintf-tests
29708         (test_ulc_vsprintf1_LDADD): Likewise.
29709
29710         Fix linking of some uniconv tests on FreeBSD.
29711         * modules/uniconv/u16-conv-from-enc-tests
29712         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
29713         * modules/uniconv/u16-conv-to-enc-tests
29714         (test_u16_conv_to_enc_LDADD): Likewise.
29715         * modules/uniconv/u16-strconv-from-enc-tests
29716         (test_u16_strconv_from_enc_LDADD): Likewise.
29717         * modules/uniconv/u16-strconv-to-enc-tests
29718         (test_u16_strconv_to_enc_LDADD): Likewise.
29719         * modules/uniconv/u32-conv-from-enc-tests
29720         (test_u32_conv_from_enc_LDADD): Likewise.
29721         * modules/uniconv/u32-conv-to-enc-tests
29722         (test_u32_conv_to_enc_LDADD): Likewise.
29723         * modules/uniconv/u32-strconv-from-enc-tests
29724         (test_u32_strconv_from_enc_LDADD): Likewise.
29725         * modules/uniconv/u32-strconv-to-enc-tests
29726         (test_u32_strconv_to_enc_LDADD): Likewise.
29727         * modules/uniconv/u8-conv-from-enc-tests
29728         (test_u8_conv_from_enc_LDADD): Likewise.
29729         * modules/uniconv/u8-conv-to-enc-tests
29730         (test_u8_conv_to_enc_LDADD): Likewise.
29731         * modules/uniconv/u8-strconv-from-enc-tests
29732         (test_u8_strconv_from_enc_LDADD): Likewise.
29733         * modules/uniconv/u8-strconv-to-enc-tests
29734         (test_u8_strconv_to_enc_LDADD): Likewise.
29735
29736 2007-10-22  Bruno Haible  <bruno@clisp.org>
29737
29738         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
29739         size.
29740
29741 2007-10-22  Eric Blake  <ebb9@byu.net>
29742
29743         Tweak x*printf documentation.
29744         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
29745         variable name and comments.
29746         Suggested by Bruno Haible.
29747
29748 2007-10-22  Bruno Haible  <bruno@clisp.org>
29749
29750         * lib/acl.c (copy_acl): Fix file name in comment.
29751
29752 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29753
29754         Fix Tru64 problem with stdbool.h.
29755         * lib/stdbool.in.h (false, true):
29756         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
29757         Don't declare as an enum in this situation; it runs afoul of Tru64.
29758         Problem reported by Steven M. Schweda in
29759         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
29760
29761 2007-10-22  Eric Blake  <ebb9@byu.net>
29762
29763         Also wrap vf?printf.
29764         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
29765         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
29766         (xvprintf, xvfprintf): New functions.
29767
29768 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29769
29770         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
29771         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
29772
29773         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
29774         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
29775
29776 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29777
29778         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
29779         by Bruno Haible.
29780
29781 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29782
29783         * lib/getloadavg.c
29784         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
29785         Undef `sys' after including sys/table.h, for Tru64 4.0D.
29786
29787         * tests/test-i-ring.c: Work for C89.
29788
29789 2007-10-22  Bruno Haible  <bruno@clisp.org>
29790
29791         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
29792         -1u, in preprocessor expression, so that we don't test for the bug
29793         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
29794         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
29795
29796 2007-10-22  Eric Blake  <ebb9@byu.net>
29797
29798         * tests/test-yesno.sh: Silence stderr during test.
29799
29800 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29801
29802         * modules/crypto/gc-camellia: New file.
29803
29804         * m4/gc-camellia.m4: New file.
29805
29806         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
29807
29808         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
29809
29810 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29811
29812         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
29813         --help to stdout.  Reported by sms@antinode.org (Steven
29814         M. Schweda).
29815
29816 2007-10-22  Simon Josefsson  <simon@josefsson.org>
29817
29818         * users.txt: Fix link to libksba.
29819
29820 2007-10-21  Ben Pfaff  <blp@gnu.org>
29821
29822         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
29823         round.c roundf implementation that depends on floorf and ceilf to
29824         be tested unconditionally.
29825
29826 2007-10-21  Ben Pfaff  <blp@gnu.org>
29827
29828         * m4/check-libm-func.m4: Removed.
29829         * m4/check-math-lib.m4: New file.
29830         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
29831         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
29832         definition and lack of AC_LIBOBJ([roundf]).
29833         * m4/roundl.m4: Ditto, and similarly for roundl.
29834         * modules/round: Reference new m4 file.
29835         * modules/roundf: Ditto.
29836         * modules/roundl: Ditto.
29837         * tests/test-round2.c (main): Use ROUND instead of round.
29838         Bug report from Bruno Haible.
29839
29840 2007-10-21  Bruno Haible  <bruno@clisp.org>
29841
29842         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
29843         context.
29844
29845 2007-10-21  Bruno Haible  <bruno@clisp.org>
29846
29847         * tests/test-wcwidth.c (main): Allow negative result for some control
29848         characters.
29849
29850         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
29851         Needed on OSF/1 5.1.
29852
29853 2007-10-21  Bruno Haible  <bruno@clisp.org>
29854
29855         * tests/test-floorf1.c: Include isnanf.h.
29856         (main): Use isnanf() instead of isnan().
29857         * tests/test-ceilf1.c: Include isnanf.h.
29858         (main): Use isnanf() instead of isnan().
29859         * tests/test-truncf1.c: Include isnanf.h.
29860         (main): Use isnanf() instead of isnan().
29861         * tests/test-roundf1.c: Include isnanf.h.
29862         (main): Use isnanf() instead of isnan().
29863
29864 2007-10-21  Eric Blake  <ebb9@byu.net>
29865
29866         * users.txt: Update URL for m4.
29867
29868 2007-10-21  Bruno Haible  <bruno@clisp.org>
29869
29870         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
29871
29872 2007-10-21  Bruno Haible  <bruno@clisp.org>
29873
29874         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
29875         Git's management files if the CVS files are not present.
29876
29877 2007-10-20  Bruno Haible  <bruno@clisp.org>
29878
29879         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
29880         gcc-3.4.x.
29881
29882 2007-10-20  Ben Pfaff  <blp@gnu.org>
29883
29884         * lib/math.in.h: Declare round, roundf, roundl if we are providing
29885         implementations.
29886         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
29887         * lib/round.c: New file.
29888         * lib/roundf.c: New file.
29889         * lib/roundl.c: New file.
29890         * m4/round.m4: New file.
29891         * m4/roundf.m4: New file.
29892         * m4/roundl.m4: New file.
29893         * m4/check-libm-func-m4: New file.
29894         * modules/math: Replace round, roundf, roundl related @VARS@ in
29895         math.in.h.
29896         * modules/round: New file.
29897         * modules/round-tests: New file.
29898         * modules/roundf: New file.
29899         * modules/roundf-tests: New file.
29900         * modules/roundl: New file.
29901         * modules/roundl-tests: New file.
29902         * tests/test-round1.c: New file.
29903         * tests/test-round2.c: New file.
29904         * tests/test-roundf1.c: New file.
29905         * tests/test-roundf2.c: New file.
29906         * tests/test-roundl.c: New file.
29907         * doc/functions/round.texi: Mention round module.
29908         * doc/functions/roundf.texi: Mention roundf module.
29909         * doc/functions/roundl.texi: Mention roundl module.
29910         * MODULES.html.sh: Mention new modules.
29911         Thanks to Bruno Haible for suggestions.
29912
29913 2007-10-20  Jim Meyering  <meyering@redhat.com>
29914
29915         * lib/xprintf.c: Include <config.h> unconditionally.
29916
29917         Change xprintf's license to GPL.
29918         * modules/xprintf (License): s/LGPL/GPL/, since this module
29919         depends on modules (exit and exitfail) which are GPL.
29920         Suggestion from Bruno Haible.
29921
29922         xprintf fixes.
29923         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
29924         Use a clearer diagnostic.
29925         Patch from Bruno Haible.
29926
29927 2007-10-20  Bruno Haible  <bruno@clisp.org>
29928
29929         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
29930         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
29931         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29932
29933 2007-10-20  Bruno Haible  <bruno@clisp.org>
29934
29935         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
29936         precision in the comparison result > x - 1 or similar.
29937         * tests/test-ceilf2.c (correct_result_p): Likewise.
29938         * tests/test-truncf2.c (correct_result_p): Likewise.
29939         * tests/test-trunc2.c (correct_result_p): Likewise.
29940         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29941
29942 2007-10-20  Bruno Haible  <bruno@clisp.org>
29943
29944         * modules/ceil: New file.
29945         * m4/ceil.m4: New file.
29946         * doc/functions/ceil.texi: Mention the 'ceil' module.
29947
29948 2007-10-20  Bruno Haible  <bruno@clisp.org>
29949
29950         * modules/floor: New file.
29951         * m4/floor.m4: New file.
29952         * doc/functions/floor.texi: Mention the 'floor' module.
29953
29954 2007-10-20  Bruno Haible  <bruno@clisp.org>
29955
29956         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
29957         of %a.
29958         * modules/floorf-tests (Depends-on): Likewise.
29959         * modules/truncf-tests (Depends-on): Likewise.
29960         * modules/trunc-tests (Depends-on): Likewise.
29961         Reported by Ben Pfaff.
29962
29963 2007-10-19  Jim Meyering  <meyering@redhat.com>
29964
29965         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
29966         Don't bother testing specific errno values.  Just test ferror.
29967
29968         New module: xprintf
29969         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
29970
29971 2007-10-19  Bruno Haible  <bruno@clisp.org>
29972
29973         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
29974         syntax.
29975         * modules/javaexec (Makefile.am): Likewise.
29976         * modules/relocatable-prog (Makefile.am): Likewise.
29977         Suggested by Jim Meyering.
29978
29979 2007-10-18  Bruno Haible  <bruno@clisp.org>
29980
29981         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
29982         Reported by Jim Meyering.
29983
29984 2007-10-18  Eric Blake  <ebb9@byu.net>
29985
29986         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
29987
29988 2007-10-18  Bruno Haible  <bruno@clisp.org>
29989
29990         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
29991         the format string into writable memory. Needed in Fortify conditions.
29992
29993 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
29994             Bruno Haible  <bruno@clisp.org>
29995
29996         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
29997         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
29998         * modules/trim (Depends-on): Add mbchar.
29999         (configure.ac): Add gl_FUNC_MBRTOWC.
30000         (Makefile.am): Augment lib_SOURCES.
30001
30002 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
30003
30004         Modify glob.c to use fstatat and dirfd, to simplify it.
30005         Suggested by Eric Blake.
30006         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
30007         Don't include <stdbool.h>; not used.
30008         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
30009         (link_exists_p): Simplify implementation, since we can now assume
30010         dirfd and fstatat.
30011         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
30012
30013 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30014
30015         * gnulib-tool (func_get_dependencies): Fix sed script to
30016         match only tests.
30017
30018 2007-10-17  Bruno Haible  <bruno@clisp.org>
30019
30020         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
30021         allow locale names without encoding suffix.
30022         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
30023         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
30024
30025 2007-10-16  Bruno Haible  <bruno@clisp.org>
30026
30027         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
30028         * lib/getgroups.c (getgroups): Likewise.
30029         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
30030
30031 2007-10-16  Bruno Haible  <bruno@clisp.org>
30032
30033         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
30034         * modules/malloc-posix (License): Likewise.
30035         * modules/realloc-posix (License): Likewise.
30036         * modules/calloc-posix (License): Likewise.
30037         * modules/intprops (License): Change from GPL to LGPL, with
30038         Paul Eggert's approval.
30039
30040 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
30041
30042         Merge glibc changes into lib/glob.c.
30043
30044         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
30045         2007-10-15 04:59:03 UTC.  Here are the changes:
30046
30047         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
30048
30049         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
30050
30051         * lib/glob.c: Add some branch prediction throughout.
30052
30053         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
30054
30055         [BZ #5103]
30056         * lib/glob.c (glob): Recognize patterns starting \/.
30057
30058         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
30059
30060         [BZ #3996]
30061         * lib/glob.c (attribute_hidden): Define if not defined.
30062         (glob): Unescape dirname, filename or username when needed and not
30063         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
30064         is NULL.  Handle unescaped [ in pattern without closing ].
30065         Don't pass GLOB_CHECK down to recursive glob for directories.
30066         (__glob_pattern_type): New function.
30067         (__glob_pattern_p): Implement using __glob_pattern_type.
30068         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
30069         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
30070         Remove unreachable code.
30071
30072         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
30073
30074         * lib/glob.c (glob_in_dir): Add some comments and asserts to
30075         explain why there are no leaks.
30076
30077         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
30078
30079         [BZ #3253]
30080         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
30081         time, rather allocate increasingly bigger arrays of pointers, if
30082         possible with alloca, if too large with malloc.
30083
30084 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
30085
30086         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
30087         Problem reported by H.Merijn Brand in
30088         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
30089         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
30090         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
30091
30092 2007-10-15  Bruno Haible  <bruno@clisp.org>
30093
30094         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
30095         with explicit rpl_ prefix.
30096         * lib/fopen.c (fopen): Likewise.
30097         * lib/freopen.c (freopen): Likewise.
30098         * lib/iconv.c (iconv): Likewise.
30099         * lib/iconv_close.c (iconv_close): Likewise.
30100
30101 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30102
30103         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
30104
30105 2007-10-15  Bruno Haible  <bruno@clisp.org>
30106
30107         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
30108         <stddef.h> instead of <stdlib.h> since we only need NULL.
30109         Reported by Ben Pfaff <blp@cs.stanford.edu>.
30110
30111 2007-10-15  Bruno Haible  <bruno@clisp.org>
30112
30113         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
30114         Replace paragraph talking about LIBOBJS.
30115         Reported by Colin Watson <cjwatson@debian.org>.
30116
30117 2007-10-15  Bruno Haible  <bruno@clisp.org>
30118
30119         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
30120         <stdlib.h> before using NULL.
30121
30122 2007-10-15  Simon Josefsson  <simon@josefsson.org>
30123
30124         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
30125         Reported by Albert Chin <china@thewrittenword.com>.
30126
30127 2007-10-14  Bruno Haible  <bruno@clisp.org>
30128
30129         * modules/iconv_open-utf-tests: New file.
30130         * tests/test-iconv-utf.c: New file.
30131
30132         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
30133         * modules/iconv_open-utf: New file.
30134         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
30135         (iconv, iconv_close): New declarations.
30136         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
30137         be defined.
30138         (iconv_open): Add special handling of conversion between UTF-8 and
30139         UTF-{16,32}{BE,LE}.
30140         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
30141         * lib/iconv_close.c: New file.
30142         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
30143         gl_FUNC_ICONV_OPEN.
30144         (gl_FUNC_ICONV_OPEN): Use it.
30145         (gl_FUNC_ICONV_OPEN_UTF): New macro.
30146         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
30147         and REPLACE_ICONV_UTF.
30148         * modules/iconv_open (Depends-on): Add c-strcase.
30149         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
30150         ICONV_CONST.
30151         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
30152
30153 2007-10-13  Albert Chin  <china@thewrittenword.com>
30154             Bruno Haible  <bruno@clisp.org>
30155
30156         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
30157         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
30158
30159 2007-10-13  Bruno Haible  <bruno@clisp.org>
30160
30161         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
30162         defined, use the ISO C99 inline semantics.
30163         * lib/argp.h (ARGP_EI): Likewise.
30164
30165 2007-10-13  Bruno Haible  <bruno@clisp.org>
30166
30167         Handle 'inline' change in gcc 4.3.0.
30168         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
30169         argp_fmtstream_write, argp_fmtstream_set_lmargin,
30170         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
30171         argp_fmtstream_point): Disable 'extern' declaration if the function
30172         definition is going to be provided inline.
30173         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
30174         semantics, not the ISO C99 inline semantics.
30175         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
30176         'extern' declaration if the function definition is going to be provided
30177         inline.
30178         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
30179         the GNU C inline semantics, not the ISO C99 inline semantics. With
30180         GCC 4.2, avoid a warning.
30181
30182 2007-10-13  Bruno Haible  <bruno@clisp.org>
30183
30184         * lib/freading.h (freading): Enable the use of __freading for
30185         glibc >= 2.7.
30186         * lib/freading.c (freading): Likewise.
30187
30188 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
30189
30190         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
30191         "warning: C99 inline functions are not supported; using GNU89".
30192
30193 2007-10-12  Bruno Haible  <bruno@clisp.org>
30194
30195         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
30196         of 2.
30197         * tests/test-ceilf2.c: New file.
30198         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
30199
30200         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
30201         * modules/ceilf-tests: Update.
30202
30203 2007-10-12  Bruno Haible  <bruno@clisp.org>
30204
30205         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
30206         of 2.
30207         * tests/test-floorf2.c: New file.
30208         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
30209
30210         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
30211         * modules/floorf-tests: Update.
30212
30213 2007-10-12  Bruno Haible  <bruno@clisp.org>
30214
30215         * tests/test-trunc2.c: New file.
30216         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
30217
30218         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
30219         * modules/trunc-tests: Update.
30220
30221 2007-10-12  Bruno Haible  <bruno@clisp.org>
30222
30223         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
30224         of 2.
30225         * tests/test-truncf2.c: New file.
30226         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
30227
30228         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
30229         * modules/truncf-tests: Update.
30230
30231 2007-10-11  Eric Blake  <ebb9@byu.net>
30232
30233         Don't claim strerror is broken on Interix.
30234         * doc/functions/strerror.texi (strerror): Known broken systems are
30235         now Solaris 8, and not Interix.
30236         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
30237         Interix on cross-compile.
30238         Reported by Martin Koeppe in
30239         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
30240
30241 2007-10-11  Bruno Haible  <bruno@clisp.org>
30242
30243         * modules/i-ring-tests: New file.
30244         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
30245         instead of assert.
30246
30247 2007-10-11  Bruno Haible  <bruno@clisp.org>
30248
30249         * modules/filenamecat-tests: New file.
30250         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
30251         * lib/filenamecat.c: Remove test code.
30252
30253 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
30254
30255         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
30256
30257         * lib/strerror.c: Include <string.h> always, to test interface,
30258         and to remove the need for the dummy.
30259         Include intprops.h to compute width instead of doing it ourselves
30260         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
30261         (strerror): Define it to return NULL if there's no system strerror.
30262         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
30263         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
30264         ancient pre-strerror Unix systems well any more.  Saying "unknown
30265         system error" is enough.
30266         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
30267         simpler strerror.c implementation.
30268         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
30269         Simplify the tests to reflect the simpler strerror implementation.
30270         * modules/strerror (Depends-on): Add intprops.
30271
30272 2007-10-09  Eric Blake  <ebb9@byu.net>
30273
30274         Silence test-fpending.
30275         * modules/fpending-tests (Files): Add wrapper script.
30276         * tests/test-fpending.sh: New file.
30277
30278 2007-10-09  Bruno Haible  <bruno@clisp.org>
30279
30280         * MODULES.html.sh (func_module): Don't create a hyperlink for
30281         function names like 'printf_frexp'.
30282         (Misc): Add crc, memxor.
30283         (Characteristics of floating types): New section.
30284         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
30285         isnanf-nolibm, signbit, trunc, truncf, truncl.
30286         (Enhancements for ISO C 99 functions): New subsection Input/output.
30287         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
30288         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
30289         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
30290         (Compatibility checks for POSIX:2001 functions): Add clock-time.
30291         (Enhancements for POSIX:2001 functions): Add chdir-long.
30292         (File system functions): Add areadlink, chdir-safer, read-file.
30293         Remove cycle-check.
30294         (File system as inode set): New section.
30295         (Date and time): Add gethrxtime.
30296         (Multithreading): Add openmp.
30297         (Internationalization functions): Add localename.
30298         (Unicode string functions): Add unistr/u*-mbsnlen.
30299         (Support for maintaining and releasing projects): Add git-version-gen.
30300         (Lone files): Remove directories.
30301
30302 2007-10-08  Ben Pfaff  <blp@gnu.org>
30303
30304         * lib/xmalloca.h: Fix typo in comment.
30305
30306 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
30307
30308         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
30309         when avoiding problems with integer overflow.  Use a portable test
30310         instead.
30311
30312 2007-10-08  Simon Josefsson  <simon@josefsson.org>
30313
30314         * modules/dummy (License): Change to LGPLv2+.
30315         * modules/float (License): Likewise
30316         * modules/realloc (License): Likewise
30317         * modules/stdlib (License): Likewise
30318
30319 2007-10-07  Bruno Haible  <bruno@clisp.org>
30320
30321         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
30322         * floor.c (TWO_MANT_DIG): Likewise.
30323         * ceil.c (TWO_MANT_DIG): Likewise.
30324         Reported by Ben Pfaff.
30325
30326 2007-10-07  Bruno Haible  <bruno@clisp.org>
30327
30328         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
30329         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
30330         * lib/frexp.c (FUNC): Likewise.
30331         * lib/printf-frexp.h (printf_frexp): Likewise.
30332         * lib/printf-frexpl.h (printf_frexpl): Likewise.
30333         * lib/printf-frexp.c (FUNC): Likewise.
30334         Suggested by Jim Meyering.
30335
30336 2007-10-07  Jim Meyering  <meyering@redhat.com>
30337
30338         Make xnanosleep's integer overflow test more robust.
30339         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
30340         so that gcc-4.3.0 doesn't optimize away this test for overflow.
30341
30342 2007-10-07  Bruno Haible  <bruno@clisp.org>
30343
30344         * NEWS: Mention the license change.
30345
30346         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
30347         abbreviations in the modules files.
30348
30349         Change copyright notice from GPLv2+ to GPLv3+.
30350         * README: Change copyright notice.
30351         * MODULES.html.sh: Likewise.
30352         * build-aux/bootstrap.conf: Likewise.
30353         * build-aux/config.libpath: Likewise.
30354         * build-aux/csharpcomp.sh.in: Likewise.
30355         * build-aux/csharpexec.sh.in: Likewise.
30356         * build-aux/install-reloc: Likewise.
30357         * build-aux/javacomp.sh.in: Likewise.
30358         * build-aux/javaexec.sh.in: Likewise.
30359         * build-aux/ldd.sh.in: Likewise.
30360         * build-aux/reloc-ldflags: Likewise.
30361         * build-aux/relocatable.sh.in: Likewise.
30362         * build-aux/x-to-1.in: Likewise.
30363         * check-module: Likewise.
30364         * config/srclistvars.sh: Likewise.
30365         * gnulib-tool: Likewise.
30366         * lib/acl-internal.h: Likewise.
30367         * lib/acl.c: Likewise.
30368         * lib/acl.h: Likewise.
30369         * lib/acl_entries.c: Likewise.
30370         * lib/areadlink-with-size.c: Likewise.
30371         * lib/areadlink.c: Likewise.
30372         * lib/areadlink.h: Likewise.
30373         * lib/argmatch.c: Likewise.
30374         * lib/argmatch.h: Likewise.
30375         * lib/argp-ba.c: Likewise.
30376         * lib/argp-eexst.c: Likewise.
30377         * lib/argp-fmtstream.c: Likewise.
30378         * lib/argp-fmtstream.h: Likewise.
30379         * lib/argp-fs-xinl.c: Likewise.
30380         * lib/argp-help.c: Likewise.
30381         * lib/argp-namefrob.h: Likewise.
30382         * lib/argp-parse.c: Likewise.
30383         * lib/argp-pin.c: Likewise.
30384         * lib/argp-pv.c: Likewise.
30385         * lib/argp-pvh.c: Likewise.
30386         * lib/argp-xinl.c: Likewise.
30387         * lib/argp.h: Likewise.
30388         * lib/at-func.c: Likewise.
30389         * lib/atanl.c: Likewise.
30390         * lib/backupfile.c: Likewise.
30391         * lib/backupfile.h: Likewise.
30392         * lib/basename.c: Likewise.
30393         * lib/binary-io.h: Likewise.
30394         * lib/byteswap.in.h: Likewise.
30395         * lib/c-stack.c: Likewise.
30396         * lib/c-stack.h: Likewise.
30397         * lib/c-strcasestr.c: Likewise.
30398         * lib/c-strcasestr.h: Likewise.
30399         * lib/c-strstr.c: Likewise.
30400         * lib/c-strstr.h: Likewise.
30401         * lib/c-strtod.c: Likewise.
30402         * lib/calloc.c: Likewise.
30403         * lib/canon-host.c: Likewise.
30404         * lib/canon-host.h: Likewise.
30405         * lib/canonicalize-lgpl.c: Likewise.
30406         * lib/canonicalize.c: Likewise.
30407         * lib/canonicalize.h: Likewise.
30408         * lib/ceil.c: Likewise.
30409         * lib/ceilf.c: Likewise.
30410         * lib/ceill.c: Likewise.
30411         * lib/chdir-long.c: Likewise.
30412         * lib/chdir-long.h: Likewise.
30413         * lib/chdir-safer.c: Likewise.
30414         * lib/chdir-safer.h: Likewise.
30415         * lib/chown.c: Likewise.
30416         * lib/classpath.c: Likewise.
30417         * lib/classpath.h: Likewise.
30418         * lib/clean-temp.c: Likewise.
30419         * lib/clean-temp.h: Likewise.
30420         * lib/cloexec.c: Likewise.
30421         * lib/close-stream.c: Likewise.
30422         * lib/closein.c: Likewise.
30423         * lib/closein.h: Likewise.
30424         * lib/closeout.c: Likewise.
30425         * lib/closeout.h: Likewise.
30426         * lib/concat-filename.c: Likewise.
30427         * lib/copy-file.c: Likewise.
30428         * lib/copy-file.h: Likewise.
30429         * lib/count-one-bits.h: Likewise.
30430         * lib/crc.c: Likewise.
30431         * lib/crc.h: Likewise.
30432         * lib/creat-safer.c: Likewise.
30433         * lib/csharpcomp.c: Likewise.
30434         * lib/csharpcomp.h: Likewise.
30435         * lib/csharpexec.c: Likewise.
30436         * lib/csharpexec.h: Likewise.
30437         * lib/cycle-check.c: Likewise.
30438         * lib/cycle-check.h: Likewise.
30439         * lib/diacrit.c: Likewise.
30440         * lib/diacrit.h: Likewise.
30441         * lib/diffseq.h: Likewise.
30442         * lib/dirchownmod.c: Likewise.
30443         * lib/dirent.in.h: Likewise.
30444         * lib/dirfd.c: Likewise.
30445         * lib/dirfd.h: Likewise.
30446         * lib/dirname.c: Likewise.
30447         * lib/dirname.h: Likewise.
30448         * lib/dummy.c: Likewise.
30449         * lib/dup-safer.c: Likewise.
30450         * lib/dup2.c: Likewise.
30451         * lib/eealloc.h: Likewise.
30452         * lib/error.c: Likewise.
30453         * lib/error.h: Likewise.
30454         * lib/euidaccess.c: Likewise.
30455         * lib/exclude.c: Likewise.
30456         * lib/exclude.h: Likewise.
30457         * lib/execute.c: Likewise.
30458         * lib/execute.h: Likewise.
30459         * lib/exitfail.c: Likewise.
30460         * lib/exitfail.h: Likewise.
30461         * lib/expl.c: Likewise.
30462         * lib/fatal-signal.c: Likewise.
30463         * lib/fatal-signal.h: Likewise.
30464         * lib/fbufmode.c: Likewise.
30465         * lib/fbufmode.h: Likewise.
30466         * lib/fchdir.c: Likewise.
30467         * lib/fchmodat.c: Likewise.
30468         * lib/fchownat.c: Likewise.
30469         * lib/fcntl--.h: Likewise.
30470         * lib/fcntl-safer.h: Likewise.
30471         * lib/fcntl.in.h: Likewise.
30472         * lib/fd-safer.c: Likewise.
30473         * lib/fflush.c: Likewise.
30474         * lib/file-has-acl.c: Likewise.
30475         * lib/file-set.c: Likewise.
30476         * lib/file-type.c: Likewise.
30477         * lib/file-type.h: Likewise.
30478         * lib/fileblocks.c: Likewise.
30479         * lib/filemode.c: Likewise.
30480         * lib/filemode.h: Likewise.
30481         * lib/filename.h: Likewise.
30482         * lib/filenamecat.c: Likewise.
30483         * lib/filenamecat.h: Likewise.
30484         * lib/findprog.c: Likewise.
30485         * lib/findprog.h: Likewise.
30486         * lib/float.in.h: Likewise.
30487         * lib/floor.c: Likewise.
30488         * lib/floorf.c: Likewise.
30489         * lib/floorl.c: Likewise.
30490         * lib/fopen-safer.c: Likewise.
30491         * lib/fopen.c: Likewise.
30492         * lib/fpending.c: Likewise.
30493         * lib/fpending.h: Likewise.
30494         * lib/fprintf.c: Likewise.
30495         * lib/fprintftime.h: Likewise.
30496         * lib/fpucw.h: Likewise.
30497         * lib/fpurge.c: Likewise.
30498         * lib/fpurge.h: Likewise.
30499         * lib/freadable.c: Likewise.
30500         * lib/freadable.h: Likewise.
30501         * lib/freadahead.c: Likewise.
30502         * lib/freadahead.h: Likewise.
30503         * lib/freading.c: Likewise.
30504         * lib/freading.h: Likewise.
30505         * lib/free.c: Likewise.
30506         * lib/freopen.c: Likewise.
30507         * lib/frexp.c: Likewise.
30508         * lib/frexpl.c: Likewise.
30509         * lib/fseek.c: Likewise.
30510         * lib/fseterr.c: Likewise.
30511         * lib/fseterr.h: Likewise.
30512         * lib/fstatat.c: Likewise.
30513         * lib/fstrcmp.c: Likewise.
30514         * lib/fstrcmp.h: Likewise.
30515         * lib/fsusage.c: Likewise.
30516         * lib/fsusage.h: Likewise.
30517         * lib/ftell.c: Likewise.
30518         * lib/ftello.c: Likewise.
30519         * lib/fts-cycle.c: Likewise.
30520         * lib/fts.c: Likewise.
30521         * lib/fts_.h: Likewise.
30522         * lib/full-read.c: Likewise.
30523         * lib/full-read.h: Likewise.
30524         * lib/full-write.c: Likewise.
30525         * lib/full-write.h: Likewise.
30526         * lib/fwritable.c: Likewise.
30527         * lib/fwritable.h: Likewise.
30528         * lib/fwriteerror.c: Likewise.
30529         * lib/fwriteerror.h: Likewise.
30530         * lib/fwriting.c: Likewise.
30531         * lib/fwriting.h: Likewise.
30532         * lib/gcd.c: Likewise.
30533         * lib/gcd.h: Likewise.
30534         * lib/getcwd.c: Likewise.
30535         * lib/getdate.h: Likewise.
30536         * lib/getdate.y: Likewise.
30537         * lib/getdomainname.c: Likewise.
30538         * lib/getdomainname.h: Likewise.
30539         * lib/getgroups.c: Likewise.
30540         * lib/gethostname.c: Likewise.
30541         * lib/gethrxtime.c: Likewise.
30542         * lib/gethrxtime.h: Likewise.
30543         * lib/getloadavg.c: Likewise.
30544         * lib/getndelim2.c: Likewise.
30545         * lib/getndelim2.h: Likewise.
30546         * lib/getnline.c: Likewise.
30547         * lib/getnline.h: Likewise.
30548         * lib/getopt.c: Likewise.
30549         * lib/getopt.in.h: Likewise.
30550         * lib/getopt1.c: Likewise.
30551         * lib/getopt_int.h: Likewise.
30552         * lib/getpagesize.h: Likewise.
30553         * lib/getsubopt.c: Likewise.
30554         * lib/gettime.c: Likewise.
30555         * lib/getugroups.c: Likewise.
30556         * lib/getugroups.h: Likewise.
30557         * lib/getusershell.c: Likewise.
30558         * lib/gl_anyavltree_list1.h: Likewise.
30559         * lib/gl_anyavltree_list2.h: Likewise.
30560         * lib/gl_anyhash_list1.h: Likewise.
30561         * lib/gl_anyhash_list2.h: Likewise.
30562         * lib/gl_anylinked_list1.h: Likewise.
30563         * lib/gl_anylinked_list2.h: Likewise.
30564         * lib/gl_anyrbtree_list1.h: Likewise.
30565         * lib/gl_anyrbtree_list2.h: Likewise.
30566         * lib/gl_anytree_list1.h: Likewise.
30567         * lib/gl_anytree_list2.h: Likewise.
30568         * lib/gl_anytree_oset.h: Likewise.
30569         * lib/gl_anytreehash_list1.h: Likewise.
30570         * lib/gl_anytreehash_list2.h: Likewise.
30571         * lib/gl_array_list.c: Likewise.
30572         * lib/gl_array_list.h: Likewise.
30573         * lib/gl_array_oset.c: Likewise.
30574         * lib/gl_array_oset.h: Likewise.
30575         * lib/gl_avltree_list.c: Likewise.
30576         * lib/gl_avltree_list.h: Likewise.
30577         * lib/gl_avltree_oset.c: Likewise.
30578         * lib/gl_avltree_oset.h: Likewise.
30579         * lib/gl_avltreehash_list.c: Likewise.
30580         * lib/gl_avltreehash_list.h: Likewise.
30581         * lib/gl_carray_list.c: Likewise.
30582         * lib/gl_carray_list.h: Likewise.
30583         * lib/gl_linked_list.c: Likewise.
30584         * lib/gl_linked_list.h: Likewise.
30585         * lib/gl_linkedhash_list.c: Likewise.
30586         * lib/gl_linkedhash_list.h: Likewise.
30587         * lib/gl_list.c: Likewise.
30588         * lib/gl_list.h: Likewise.
30589         * lib/gl_oset.c: Likewise.
30590         * lib/gl_oset.h: Likewise.
30591         * lib/gl_rbtree_list.c: Likewise.
30592         * lib/gl_rbtree_list.h: Likewise.
30593         * lib/gl_rbtree_oset.c: Likewise.
30594         * lib/gl_rbtree_oset.h: Likewise.
30595         * lib/gl_rbtreehash_list.c: Likewise.
30596         * lib/gl_rbtreehash_list.h: Likewise.
30597         * lib/gl_sublist.c: Likewise.
30598         * lib/gl_sublist.h: Likewise.
30599         * lib/group-member.c: Likewise.
30600         * lib/group-member.h: Likewise.
30601         * lib/hard-locale.c: Likewise.
30602         * lib/hard-locale.h: Likewise.
30603         * lib/hash-pjw.c: Likewise.
30604         * lib/hash-pjw.h: Likewise.
30605         * lib/hash-triple.c: Likewise.
30606         * lib/hash.c: Likewise.
30607         * lib/hash.h: Likewise.
30608         * lib/human.c: Likewise.
30609         * lib/human.h: Likewise.
30610         * lib/i-ring.c: Likewise.
30611         * lib/i-ring.h: Likewise.
30612         * lib/idcache.c: Likewise.
30613         * lib/imaxabs.c: Likewise.
30614         * lib/imaxdiv.c: Likewise.
30615         * lib/inet_pton.c: Likewise.
30616         * lib/inet_pton.h: Likewise.
30617         * lib/intprops.h: Likewise.
30618         * lib/inttostr.c: Likewise.
30619         * lib/inttostr.h: Likewise.
30620         * lib/inttypes.in.h: Likewise.
30621         * lib/isapipe.c: Likewise.
30622         * lib/isdir.c: Likewise.
30623         * lib/isnan.c: Likewise.
30624         * lib/isnan.h: Likewise.
30625         * lib/isnanf.c: Likewise.
30626         * lib/isnanf.h: Likewise.
30627         * lib/isnanl-nolibm.h: Likewise.
30628         * lib/isnanl.c: Likewise.
30629         * lib/isnanl.h: Likewise.
30630         * lib/javacomp.c: Likewise.
30631         * lib/javacomp.h: Likewise.
30632         * lib/javaexec.c: Likewise.
30633         * lib/javaexec.h: Likewise.
30634         * lib/javaversion.c: Likewise.
30635         * lib/javaversion.h: Likewise.
30636         * lib/javaversion.java: Likewise.
30637         * lib/lbrkprop.h: Likewise.
30638         * lib/lchmod.h: Likewise.
30639         * lib/lchown.c: Likewise.
30640         * lib/ldexpl.c: Likewise.
30641         * lib/linebreak.c: Likewise.
30642         * lib/linebreak.h: Likewise.
30643         * lib/linebuffer.c: Likewise.
30644         * lib/linebuffer.h: Likewise.
30645         * lib/locale.in.h: Likewise.
30646         * lib/logl.c: Likewise.
30647         * lib/long-options.c: Likewise.
30648         * lib/long-options.h: Likewise.
30649         * lib/lstat.c: Likewise.
30650         * lib/lstat.h: Likewise.
30651         * lib/math.in.h: Likewise.
30652         * lib/mbchar.c: Likewise.
30653         * lib/mbchar.h: Likewise.
30654         * lib/mbfile.h: Likewise.
30655         * lib/mbiter.h: Likewise.
30656         * lib/mbscasecmp.c: Likewise.
30657         * lib/mbscasestr.c: Likewise.
30658         * lib/mbschr.c: Likewise.
30659         * lib/mbscspn.c: Likewise.
30660         * lib/mbslen.c: Likewise.
30661         * lib/mbsncasecmp.c: Likewise.
30662         * lib/mbsnlen.c: Likewise.
30663         * lib/mbspbrk.c: Likewise.
30664         * lib/mbspcasecmp.c: Likewise.
30665         * lib/mbsrchr.c: Likewise.
30666         * lib/mbssep.c: Likewise.
30667         * lib/mbsspn.c: Likewise.
30668         * lib/mbsstr.c: Likewise.
30669         * lib/mbstok_r.c: Likewise.
30670         * lib/mbswidth.c: Likewise.
30671         * lib/mbswidth.h: Likewise.
30672         * lib/mbuiter.h: Likewise.
30673         * lib/memcasecmp.c: Likewise.
30674         * lib/memcasecmp.h: Likewise.
30675         * lib/memchr.c: Likewise.
30676         * lib/memcmp.c: Likewise.
30677         * lib/memcoll.c: Likewise.
30678         * lib/memcoll.h: Likewise.
30679         * lib/memcpy.c: Likewise.
30680         * lib/memrchr.c: Likewise.
30681         * lib/mkancesdirs.c: Likewise.
30682         * lib/mkdir-p.c: Likewise.
30683         * lib/mkdir-p.h: Likewise.
30684         * lib/mkdir.c: Likewise.
30685         * lib/mkdirat.c: Likewise.
30686         * lib/mkdtemp.c: Likewise.
30687         * lib/mkstemp-safer.c: Likewise.
30688         * lib/mkstemp.c: Likewise.
30689         * lib/modechange.c: Likewise.
30690         * lib/modechange.h: Likewise.
30691         * lib/mountlist.c: Likewise.
30692         * lib/mountlist.h: Likewise.
30693         * lib/mpsort.c: Likewise.
30694         * lib/nanosleep.c: Likewise.
30695         * lib/obstack.c: Likewise.
30696         * lib/obstack.h: Likewise.
30697         * lib/open-safer.c: Likewise.
30698         * lib/open.c: Likewise.
30699         * lib/openat-die.c: Likewise.
30700         * lib/openat-priv.h: Likewise.
30701         * lib/openat-proc.c: Likewise.
30702         * lib/openat.c: Likewise.
30703         * lib/openat.h: Likewise.
30704         * lib/pagealign_alloc.c: Likewise.
30705         * lib/pagealign_alloc.h: Likewise.
30706         * lib/physmem.c: Likewise.
30707         * lib/physmem.h: Likewise.
30708         * lib/pipe-safer.c: Likewise.
30709         * lib/pipe.c: Likewise.
30710         * lib/pipe.h: Likewise.
30711         * lib/posixtm.c: Likewise.
30712         * lib/posixtm.h: Likewise.
30713         * lib/posixver.c: Likewise.
30714         * lib/printf-frexp.c: Likewise.
30715         * lib/printf-frexp.h: Likewise.
30716         * lib/printf-frexpl.c: Likewise.
30717         * lib/printf-frexpl.h: Likewise.
30718         * lib/printf.c: Likewise.
30719         * lib/progname.c: Likewise.
30720         * lib/progname.h: Likewise.
30721         * lib/progreloc.c: Likewise.
30722         * lib/putenv.c: Likewise.
30723         * lib/quote.c: Likewise.
30724         * lib/quote.h: Likewise.
30725         * lib/quotearg.c: Likewise.
30726         * lib/quotearg.h: Likewise.
30727         * lib/raise.c: Likewise.
30728         * lib/readline.c: Likewise.
30729         * lib/readline.h: Likewise.
30730         * lib/readlink.c: Likewise.
30731         * lib/readtokens.c: Likewise.
30732         * lib/readtokens.h: Likewise.
30733         * lib/readtokens0.c: Likewise.
30734         * lib/readtokens0.h: Likewise.
30735         * lib/readutmp.c: Likewise.
30736         * lib/readutmp.h: Likewise.
30737         * lib/realloc.c: Likewise.
30738         * lib/relocwrapper.c: Likewise.
30739         * lib/rename-dest-slash.c: Likewise.
30740         * lib/rename.c: Likewise.
30741         * lib/rmdir.c: Likewise.
30742         * lib/rpmatch.c: Likewise.
30743         * lib/safe-read.c: Likewise.
30744         * lib/safe-read.h: Likewise.
30745         * lib/safe-write.c: Likewise.
30746         * lib/safe-write.h: Likewise.
30747         * lib/same-inode.h: Likewise.
30748         * lib/same.c: Likewise.
30749         * lib/same.h: Likewise.
30750         * lib/save-cwd.c: Likewise.
30751         * lib/save-cwd.h: Likewise.
30752         * lib/savedir.c: Likewise.
30753         * lib/savedir.h: Likewise.
30754         * lib/savewd.c: Likewise.
30755         * lib/savewd.h: Likewise.
30756         * lib/search.in.h: Likewise.
30757         * lib/setenv.c: Likewise.
30758         * lib/setenv.h: Likewise.
30759         * lib/settime.c: Likewise.
30760         * lib/sh-quote.c: Likewise.
30761         * lib/sh-quote.h: Likewise.
30762         * lib/sig2str.c: Likewise.
30763         * lib/sig2str.h: Likewise.
30764         * lib/signal.in.h: Likewise.
30765         * lib/signbitd.c: Likewise.
30766         * lib/signbitf.c: Likewise.
30767         * lib/signbitl.c: Likewise.
30768         * lib/sigprocmask.c: Likewise.
30769         * lib/sincosl.c: Likewise.
30770         * lib/sleep.c: Likewise.
30771         * lib/sprintf.c: Likewise.
30772         * lib/sqrtl.c: Likewise.
30773         * lib/stat-time.h: Likewise.
30774         * lib/stdio--.h: Likewise.
30775         * lib/stdio-safer.h: Likewise.
30776         * lib/stdlib--.h: Likewise.
30777         * lib/stdlib-safer.h: Likewise.
30778         * lib/stdlib.in.h: Likewise.
30779         * lib/stpcpy.c: Likewise.
30780         * lib/stpncpy.c: Likewise.
30781         * lib/strchrnul.c: Likewise.
30782         * lib/strcspn.c: Likewise.
30783         * lib/strerror.c: Likewise.
30784         * lib/strftime.c: Likewise.
30785         * lib/strftime.h: Likewise.
30786         * lib/striconveh.c: Likewise.
30787         * lib/striconveh.h: Likewise.
30788         * lib/striconveha.c: Likewise.
30789         * lib/striconveha.h: Likewise.
30790         * lib/stripslash.c: Likewise.
30791         * lib/strnlen1.c: Likewise.
30792         * lib/strnlen1.h: Likewise.
30793         * lib/strtod.c: Likewise.
30794         * lib/strtoimax.c: Likewise.
30795         * lib/strtok_r.c: Likewise.
30796         * lib/strtol.c: Likewise.
30797         * lib/strtoll.c: Likewise.
30798         * lib/strtoul.c: Likewise.
30799         * lib/strtoull.c: Likewise.
30800         * lib/sysexits.in.h: Likewise.
30801         * lib/tempname.c: Likewise.
30802         * lib/tempname.h: Likewise.
30803         * lib/timespec.h: Likewise.
30804         * lib/tls.c: Likewise.
30805         * lib/tls.h: Likewise.
30806         * lib/tmpdir.c: Likewise.
30807         * lib/tmpdir.h: Likewise.
30808         * lib/tmpfile-safer.c: Likewise.
30809         * lib/tmpfile.c: Likewise.
30810         * lib/trigl.c: Likewise.
30811         * lib/trigl.h: Likewise.
30812         * lib/trim.c: Likewise.
30813         * lib/trim.h: Likewise.
30814         * lib/trunc.c: Likewise.
30815         * lib/truncf.c: Likewise.
30816         * lib/truncl.c: Likewise.
30817         * lib/tsearch.c: Likewise.
30818         * lib/unicodeio.c: Likewise.
30819         * lib/unicodeio.h: Likewise.
30820         * lib/unistd--.h: Likewise.
30821         * lib/unistd-safer.h: Likewise.
30822         * lib/unistdio/ulc-fprintf.c: Likewise.
30823         * lib/unistdio/ulc-vfprintf.c: Likewise.
30824         * lib/unlinkdir.c: Likewise.
30825         * lib/unlinkdir.h: Likewise.
30826         * lib/unlocked-io.h: Likewise.
30827         * lib/unsetenv.c: Likewise.
30828         * lib/userspec.c: Likewise.
30829         * lib/utime.c: Likewise.
30830         * lib/utimecmp.c: Likewise.
30831         * lib/utimecmp.h: Likewise.
30832         * lib/utimens.c: Likewise.
30833         * lib/verify.h: Likewise.
30834         * lib/verror.c: Likewise.
30835         * lib/verror.h: Likewise.
30836         * lib/version-etc-fsf.c: Likewise.
30837         * lib/version-etc.c: Likewise.
30838         * lib/version-etc.h: Likewise.
30839         * lib/vfprintf.c: Likewise.
30840         * lib/vprintf.c: Likewise.
30841         * lib/vsprintf.c: Likewise.
30842         * lib/w32spawn.h: Likewise.
30843         * lib/wait-process.c: Likewise.
30844         * lib/wait-process.h: Likewise.
30845         * lib/wcwidth.c: Likewise.
30846         * lib/write-any-file.c: Likewise.
30847         * lib/xalloc-die.c: Likewise.
30848         * lib/xalloc.h: Likewise.
30849         * lib/xasprintf.c: Likewise.
30850         * lib/xgetcwd.c: Likewise.
30851         * lib/xgetcwd.h: Likewise.
30852         * lib/xgetdomainname.c: Likewise.
30853         * lib/xgetdomainname.h: Likewise.
30854         * lib/xgethostname.c: Likewise.
30855         * lib/xmalloc.c: Likewise.
30856         * lib/xmalloca.c: Likewise.
30857         * lib/xmalloca.h: Likewise.
30858         * lib/xmemcoll.c: Likewise.
30859         * lib/xnanosleep.c: Likewise.
30860         * lib/xreadlink.c: Likewise.
30861         * lib/xreadlink.h: Likewise.
30862         * lib/xsetenv.c: Likewise.
30863         * lib/xsetenv.h: Likewise.
30864         * lib/xstriconv.c: Likewise.
30865         * lib/xstriconv.h: Likewise.
30866         * lib/xstrndup.c: Likewise.
30867         * lib/xstrndup.h: Likewise.
30868         * lib/xstrtod.c: Likewise.
30869         * lib/xstrtod.h: Likewise.
30870         * lib/xstrtol-error.c: Likewise.
30871         * lib/xstrtol.c: Likewise.
30872         * lib/xstrtol.h: Likewise.
30873         * lib/xtime.h: Likewise.
30874         * lib/xvasprintf.c: Likewise.
30875         * lib/xvasprintf.h: Likewise.
30876         * lib/yesno.c: Likewise.
30877         * lib/yesno.h: Likewise.
30878         * posix-modules: Likewise.
30879         * tests/test-alloca-opt.c: Likewise.
30880         * tests/test-arcfour.c: Likewise.
30881         * tests/test-arctwo.c: Likewise.
30882         * tests/test-argmatch.c: Likewise.
30883         * tests/test-argp-2.sh: Likewise.
30884         * tests/test-argp.c: Likewise.
30885         * tests/test-arpa_inet.c: Likewise.
30886         * tests/test-array_list.c: Likewise.
30887         * tests/test-array_oset.c: Likewise.
30888         * tests/test-atexit.c: Likewise.
30889         * tests/test-avltree_list.c: Likewise.
30890         * tests/test-avltree_oset.c: Likewise.
30891         * tests/test-avltreehash_list.c: Likewise.
30892         * tests/test-base64.c: Likewise.
30893         * tests/test-binary-io.c: Likewise.
30894         * tests/test-byteswap.c: Likewise.
30895         * tests/test-c-ctype.c: Likewise.
30896         * tests/test-c-strcasecmp.c: Likewise.
30897         * tests/test-c-strcasestr.c: Likewise.
30898         * tests/test-c-strncasecmp.c: Likewise.
30899         * tests/test-c-strstr.c: Likewise.
30900         * tests/test-canonicalize-lgpl.c: Likewise.
30901         * tests/test-canonicalize.c: Likewise.
30902         * tests/test-carray_list.c: Likewise.
30903         * tests/test-ceilf.c: Likewise.
30904         * tests/test-ceill.c: Likewise.
30905         * tests/test-count-one-bits.c: Likewise.
30906         * tests/test-crc.c: Likewise.
30907         * tests/test-dirname.c: Likewise.
30908         * tests/test-fbufmode.c: Likewise.
30909         * tests/test-fcntl.c: Likewise.
30910         * tests/test-fflush.c: Likewise.
30911         * tests/test-floorf.c: Likewise.
30912         * tests/test-floorl.c: Likewise.
30913         * tests/test-fopen.c: Likewise.
30914         * tests/test-fprintf-posix.c: Likewise.
30915         * tests/test-fprintf-posix.h: Likewise.
30916         * tests/test-fpurge.c: Likewise.
30917         * tests/test-freadable.c: Likewise.
30918         * tests/test-freadahead.c: Likewise.
30919         * tests/test-freading.c: Likewise.
30920         * tests/test-freopen.c: Likewise.
30921         * tests/test-frexp.c: Likewise.
30922         * tests/test-frexpl.c: Likewise.
30923         * tests/test-fseek.c: Likewise.
30924         * tests/test-fseeko.c: Likewise.
30925         * tests/test-fseterr.c: Likewise.
30926         * tests/test-fstrcmp.c: Likewise.
30927         * tests/test-ftell.c: Likewise.
30928         * tests/test-ftello.c: Likewise.
30929         * tests/test-fwritable.c: Likewise.
30930         * tests/test-fwriting.c: Likewise.
30931         * tests/test-getaddrinfo.c: Likewise.
30932         * tests/test-getpass.c: Likewise.
30933         * tests/test-gettimeofday.c: Likewise.
30934         * tests/test-hmac-md5.c: Likewise.
30935         * tests/test-hmac-sha1.c: Likewise.
30936         * tests/test-iconv.c: Likewise.
30937         * tests/test-iconvme.c: Likewise.
30938         * tests/test-inttypes.c: Likewise.
30939         * tests/test-isnan.c: Likewise.
30940         * tests/test-isnanf.c: Likewise.
30941         * tests/test-isnanl-nolibm.c: Likewise.
30942         * tests/test-isnanl.c: Likewise.
30943         * tests/test-isnanl.h: Likewise.
30944         * tests/test-ldexpl.c: Likewise.
30945         * tests/test-linked_list.c: Likewise.
30946         * tests/test-linkedhash_list.c: Likewise.
30947         * tests/test-locale.c: Likewise.
30948         * tests/test-localename.c: Likewise.
30949         * tests/test-lock.c: Likewise.
30950         * tests/test-lseek.c: Likewise.
30951         * tests/test-malloca.c: Likewise.
30952         * tests/test-math.c: Likewise.
30953         * tests/test-mbscasecmp.c: Likewise.
30954         * tests/test-mbscasestr1.c: Likewise.
30955         * tests/test-mbscasestr2.c: Likewise.
30956         * tests/test-mbscasestr3.c: Likewise.
30957         * tests/test-mbscasestr4.c: Likewise.
30958         * tests/test-mbschr.c: Likewise.
30959         * tests/test-mbscspn.c: Likewise.
30960         * tests/test-mbsncasecmp.c: Likewise.
30961         * tests/test-mbspbrk.c: Likewise.
30962         * tests/test-mbspcasecmp.c: Likewise.
30963         * tests/test-mbsrchr.c: Likewise.
30964         * tests/test-mbsspn.c: Likewise.
30965         * tests/test-mbsstr1.c: Likewise.
30966         * tests/test-mbsstr2.c: Likewise.
30967         * tests/test-mbsstr3.c: Likewise.
30968         * tests/test-md5.c: Likewise.
30969         * tests/test-memmem.c: Likewise.
30970         * tests/test-netinet_in.c: Likewise.
30971         * tests/test-open.c: Likewise.
30972         * tests/test-printf-frexp.c: Likewise.
30973         * tests/test-printf-frexpl.c: Likewise.
30974         * tests/test-printf-posix.c: Likewise.
30975         * tests/test-printf-posix.h: Likewise.
30976         * tests/test-rbtree_list.c: Likewise.
30977         * tests/test-rbtree_oset.c: Likewise.
30978         * tests/test-rbtreehash_list.c: Likewise.
30979         * tests/test-read-file.c: Likewise.
30980         * tests/test-rijndael.c: Likewise.
30981         * tests/test-search.c: Likewise.
30982         * tests/test-signbit.c: Likewise.
30983         * tests/test-sleep.c: Likewise.
30984         * tests/test-snprintf-posix.c: Likewise.
30985         * tests/test-snprintf-posix.h: Likewise.
30986         * tests/test-snprintf.c: Likewise.
30987         * tests/test-sprintf-posix.c: Likewise.
30988         * tests/test-sprintf-posix.h: Likewise.
30989         * tests/test-stat-time.c: Likewise.
30990         * tests/test-stdbool.c: Likewise.
30991         * tests/test-stdint.c: Likewise.
30992         * tests/test-stdio.c: Likewise.
30993         * tests/test-stdlib.c: Likewise.
30994         * tests/test-stpncpy.c: Likewise.
30995         * tests/test-strcasestr.c: Likewise.
30996         * tests/test-striconv.c: Likewise.
30997         * tests/test-striconveh.c: Likewise.
30998         * tests/test-striconveha.c: Likewise.
30999         * tests/test-string.c: Likewise.
31000         * tests/test-sys_select.c: Likewise.
31001         * tests/test-sys_socket.c: Likewise.
31002         * tests/test-sys_stat.c: Likewise.
31003         * tests/test-sys_time.c: Likewise.
31004         * tests/test-sysexits.c: Likewise.
31005         * tests/test-time.c: Likewise.
31006         * tests/test-tls.c: Likewise.
31007         * tests/test-trunc.c: Likewise.
31008         * tests/test-truncf.c: Likewise.
31009         * tests/test-truncl.c: Likewise.
31010         * tests/test-unistd.c: Likewise.
31011         * tests/test-vasnprintf-posix.c: Likewise.
31012         * tests/test-vasnprintf-posix2.c: Likewise.
31013         * tests/test-vasnprintf.c: Likewise.
31014         * tests/test-vasprintf-posix.c: Likewise.
31015         * tests/test-vasprintf.c: Likewise.
31016         * tests/test-verify.c: Likewise.
31017         * tests/test-vfprintf-posix.c: Likewise.
31018         * tests/test-vprintf-posix.c: Likewise.
31019         * tests/test-vsnprintf-posix.c: Likewise.
31020         * tests/test-vsnprintf.c: Likewise.
31021         * tests/test-vsprintf-posix.c: Likewise.
31022         * tests/test-wchar.c: Likewise.
31023         * tests/test-wctype.c: Likewise.
31024         * tests/test-wcwidth.c: Likewise.
31025         * tests/test-xstrtol.c: Likewise.
31026         * tests/test-xvasprintf.c: Likewise.
31027         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
31028         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
31029         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
31030         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
31031         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
31032         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
31033         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
31034         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
31035         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
31036         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
31037         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
31038         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
31039         * tests/uniname/test-uninames.c: Likewise.
31040         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
31041         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
31042         * tests/unistdio/test-u16-printf1.h: Likewise.
31043         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
31044         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
31045         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
31046         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
31047         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
31048         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
31049         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
31050         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
31051         * tests/unistdio/test-u32-printf1.h: Likewise.
31052         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
31053         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
31054         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
31055         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
31056         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
31057         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
31058         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
31059         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
31060         * tests/unistdio/test-u8-printf1.h: Likewise.
31061         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
31062         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
31063         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
31064         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
31065         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
31066         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
31067         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
31068         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
31069         * tests/unistdio/test-ulc-printf1.h: Likewise.
31070         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
31071         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
31072         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
31073         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
31074         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
31075         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
31076         * tests/uniwidth/test-u16-strwidth.c: Likewise.
31077         * tests/uniwidth/test-u16-width.c: Likewise.
31078         * tests/uniwidth/test-u32-strwidth.c: Likewise.
31079         * tests/uniwidth/test-u32-width.c: Likewise.
31080         * tests/uniwidth/test-u8-strwidth.c: Likewise.
31081         * tests/uniwidth/test-u8-width.c: Likewise.
31082         * tests/uniwidth/test-uc_width.c: Likewise.
31083         * config/srclist-update: Likewise.
31084         (fixlicense): Update to GPLv3+.
31085
31086         Change copyright notice from LGPLv2.1+ to LGPLv3+.
31087         * tests/test-tsearch.c: Change copyright notice.
31088
31089         Change copyright notice from LGPLv2.0+ to LGPLv3+.
31090         * lib/c-strcaseeq.h: Change copyright notice.
31091         * lib/streq.h: Likewise.
31092         * lib/uniconv.h: Likewise.
31093         * lib/uniconv/u-conv-from-enc.h: Likewise.
31094         * lib/uniconv/u-conv-to-enc.h: Likewise.
31095         * lib/uniconv/u-strconv-from-enc.h: Likewise.
31096         * lib/uniconv/u-strconv-to-enc.h: Likewise.
31097         * lib/uniconv/u16-conv-from-enc.c: Likewise.
31098         * lib/uniconv/u16-conv-to-enc.c: Likewise.
31099         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
31100         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
31101         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
31102         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
31103         * lib/uniconv/u32-conv-from-enc.c: Likewise.
31104         * lib/uniconv/u32-conv-to-enc.c: Likewise.
31105         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
31106         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
31107         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
31108         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
31109         * lib/uniconv/u8-conv-from-enc.c: Likewise.
31110         * lib/uniconv/u8-conv-to-enc.c: Likewise.
31111         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
31112         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
31113         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
31114         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
31115         * lib/uniname.h: Likewise.
31116         * lib/uniname/uniname.c: Likewise.
31117         * lib/unistdio.h: Likewise.
31118         * lib/unistdio/u-asnprintf.h: Likewise.
31119         * lib/unistdio/u-asprintf.h: Likewise.
31120         * lib/unistdio/u-printf-args.c: Likewise.
31121         * lib/unistdio/u-printf-args.h: Likewise.
31122         * lib/unistdio/u-printf-parse.h: Likewise.
31123         * lib/unistdio/u-snprintf.h: Likewise.
31124         * lib/unistdio/u-sprintf.h: Likewise.
31125         * lib/unistdio/u-vasprintf.h: Likewise.
31126         * lib/unistdio/u-vsnprintf.h: Likewise.
31127         * lib/unistdio/u-vsprintf.h: Likewise.
31128         * lib/unistdio/u16-asnprintf.c: Likewise.
31129         * lib/unistdio/u16-asprintf.c: Likewise.
31130         * lib/unistdio/u16-printf-parse.c: Likewise.
31131         * lib/unistdio/u16-snprintf.c: Likewise.
31132         * lib/unistdio/u16-sprintf.c: Likewise.
31133         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
31134         * lib/unistdio/u16-u16-asprintf.c: Likewise.
31135         * lib/unistdio/u16-u16-snprintf.c: Likewise.
31136         * lib/unistdio/u16-u16-sprintf.c: Likewise.
31137         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
31138         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
31139         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
31140         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
31141         * lib/unistdio/u16-vasnprintf.c: Likewise.
31142         * lib/unistdio/u16-vasprintf.c: Likewise.
31143         * lib/unistdio/u16-vsnprintf.c: Likewise.
31144         * lib/unistdio/u16-vsprintf.c: Likewise.
31145         * lib/unistdio/u32-asnprintf.c: Likewise.
31146         * lib/unistdio/u32-asprintf.c: Likewise.
31147         * lib/unistdio/u32-printf-parse.c: Likewise.
31148         * lib/unistdio/u32-snprintf.c: Likewise.
31149         * lib/unistdio/u32-sprintf.c: Likewise.
31150         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
31151         * lib/unistdio/u32-u32-asprintf.c: Likewise.
31152         * lib/unistdio/u32-u32-snprintf.c: Likewise.
31153         * lib/unistdio/u32-u32-sprintf.c: Likewise.
31154         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
31155         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
31156         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
31157         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
31158         * lib/unistdio/u32-vasnprintf.c: Likewise.
31159         * lib/unistdio/u32-vasprintf.c: Likewise.
31160         * lib/unistdio/u32-vsnprintf.c: Likewise.
31161         * lib/unistdio/u32-vsprintf.c: Likewise.
31162         * lib/unistdio/u8-asnprintf.c: Likewise.
31163         * lib/unistdio/u8-asprintf.c: Likewise.
31164         * lib/unistdio/u8-printf-parse.c: Likewise.
31165         * lib/unistdio/u8-snprintf.c: Likewise.
31166         * lib/unistdio/u8-sprintf.c: Likewise.
31167         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
31168         * lib/unistdio/u8-u8-asprintf.c: Likewise.
31169         * lib/unistdio/u8-u8-snprintf.c: Likewise.
31170         * lib/unistdio/u8-u8-sprintf.c: Likewise.
31171         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
31172         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
31173         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
31174         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
31175         * lib/unistdio/u8-vasnprintf.c: Likewise.
31176         * lib/unistdio/u8-vasprintf.c: Likewise.
31177         * lib/unistdio/u8-vsnprintf.c: Likewise.
31178         * lib/unistdio/u8-vsprintf.c: Likewise.
31179         * lib/unistdio/ulc-asnprintf.c: Likewise.
31180         * lib/unistdio/ulc-asprintf.c: Likewise.
31181         * lib/unistdio/ulc-printf-parse.c: Likewise.
31182         * lib/unistdio/ulc-snprintf.c: Likewise.
31183         * lib/unistdio/ulc-sprintf.c: Likewise.
31184         * lib/unistdio/ulc-vasnprintf.c: Likewise.
31185         * lib/unistdio/ulc-vasprintf.c: Likewise.
31186         * lib/unistdio/ulc-vsnprintf.c: Likewise.
31187         * lib/unistdio/ulc-vsprintf.c: Likewise.
31188         * lib/unistr.h: Likewise.
31189         * lib/unistr/u-cpy-alloc.h: Likewise.
31190         * lib/unistr/u-cpy.h: Likewise.
31191         * lib/unistr/u-endswith.h: Likewise.
31192         * lib/unistr/u-move.h: Likewise.
31193         * lib/unistr/u-set.h: Likewise.
31194         * lib/unistr/u-startswith.h: Likewise.
31195         * lib/unistr/u-stpcpy.h: Likewise.
31196         * lib/unistr/u-stpncpy.h: Likewise.
31197         * lib/unistr/u-strcat.h: Likewise.
31198         * lib/unistr/u-strcpy.h: Likewise.
31199         * lib/unistr/u-strcspn.h: Likewise.
31200         * lib/unistr/u-strdup.h: Likewise.
31201         * lib/unistr/u-strlen.h: Likewise.
31202         * lib/unistr/u-strncat.h: Likewise.
31203         * lib/unistr/u-strncpy.h: Likewise.
31204         * lib/unistr/u-strnlen.h: Likewise.
31205         * lib/unistr/u-strpbrk.h: Likewise.
31206         * lib/unistr/u-strspn.h: Likewise.
31207         * lib/unistr/u-strstr.h: Likewise.
31208         * lib/unistr/u-strtok.h: Likewise.
31209         * lib/unistr/u16-check.c: Likewise.
31210         * lib/unistr/u16-chr.c: Likewise.
31211         * lib/unistr/u16-cmp.c: Likewise.
31212         * lib/unistr/u16-cpy-alloc.c: Likewise.
31213         * lib/unistr/u16-cpy.c: Likewise.
31214         * lib/unistr/u16-endswith.c: Likewise.
31215         * lib/unistr/u16-mblen.c: Likewise.
31216         * lib/unistr/u16-mbsnlen.c: Likewise.
31217         * lib/unistr/u16-mbtouc-aux.c: Likewise.
31218         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
31219         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
31220         * lib/unistr/u16-mbtouc.c: Likewise.
31221         * lib/unistr/u16-mbtoucr.c: Likewise.
31222         * lib/unistr/u16-move.c: Likewise.
31223         * lib/unistr/u16-next.c: Likewise.
31224         * lib/unistr/u16-prev.c: Likewise.
31225         * lib/unistr/u16-set.c: Likewise.
31226         * lib/unistr/u16-startswith.c: Likewise.
31227         * lib/unistr/u16-stpcpy.c: Likewise.
31228         * lib/unistr/u16-stpncpy.c: Likewise.
31229         * lib/unistr/u16-strcat.c: Likewise.
31230         * lib/unistr/u16-strchr.c: Likewise.
31231         * lib/unistr/u16-strcmp.c: Likewise.
31232         * lib/unistr/u16-strcpy.c: Likewise.
31233         * lib/unistr/u16-strcspn.c: Likewise.
31234         * lib/unistr/u16-strdup.c: Likewise.
31235         * lib/unistr/u16-strlen.c: Likewise.
31236         * lib/unistr/u16-strmblen.c: Likewise.
31237         * lib/unistr/u16-strmbtouc.c: Likewise.
31238         * lib/unistr/u16-strncat.c: Likewise.
31239         * lib/unistr/u16-strncmp.c: Likewise.
31240         * lib/unistr/u16-strncpy.c: Likewise.
31241         * lib/unistr/u16-strnlen.c: Likewise.
31242         * lib/unistr/u16-strpbrk.c: Likewise.
31243         * lib/unistr/u16-strrchr.c: Likewise.
31244         * lib/unistr/u16-strspn.c: Likewise.
31245         * lib/unistr/u16-strstr.c: Likewise.
31246         * lib/unistr/u16-strtok.c: Likewise.
31247         * lib/unistr/u16-to-u32.c: Likewise.
31248         * lib/unistr/u16-to-u8.c: Likewise.
31249         * lib/unistr/u16-uctomb-aux.c: Likewise.
31250         * lib/unistr/u16-uctomb.c: Likewise.
31251         * lib/unistr/u32-check.c: Likewise.
31252         * lib/unistr/u32-chr.c: Likewise.
31253         * lib/unistr/u32-cmp.c: Likewise.
31254         * lib/unistr/u32-cpy-alloc.c: Likewise.
31255         * lib/unistr/u32-cpy.c: Likewise.
31256         * lib/unistr/u32-endswith.c: Likewise.
31257         * lib/unistr/u32-mblen.c: Likewise.
31258         * lib/unistr/u32-mbsnlen.c: Likewise.
31259         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
31260         * lib/unistr/u32-mbtouc.c: Likewise.
31261         * lib/unistr/u32-mbtoucr.c: Likewise.
31262         * lib/unistr/u32-move.c: Likewise.
31263         * lib/unistr/u32-next.c: Likewise.
31264         * lib/unistr/u32-prev.c: Likewise.
31265         * lib/unistr/u32-set.c: Likewise.
31266         * lib/unistr/u32-startswith.c: Likewise.
31267         * lib/unistr/u32-stpcpy.c: Likewise.
31268         * lib/unistr/u32-stpncpy.c: Likewise.
31269         * lib/unistr/u32-strcat.c: Likewise.
31270         * lib/unistr/u32-strchr.c: Likewise.
31271         * lib/unistr/u32-strcmp.c: Likewise.
31272         * lib/unistr/u32-strcpy.c: Likewise.
31273         * lib/unistr/u32-strcspn.c: Likewise.
31274         * lib/unistr/u32-strdup.c: Likewise.
31275         * lib/unistr/u32-strlen.c: Likewise.
31276         * lib/unistr/u32-strmblen.c: Likewise.
31277         * lib/unistr/u32-strmbtouc.c: Likewise.
31278         * lib/unistr/u32-strncat.c: Likewise.
31279         * lib/unistr/u32-strncmp.c: Likewise.
31280         * lib/unistr/u32-strncpy.c: Likewise.
31281         * lib/unistr/u32-strnlen.c: Likewise.
31282         * lib/unistr/u32-strpbrk.c: Likewise.
31283         * lib/unistr/u32-strrchr.c: Likewise.
31284         * lib/unistr/u32-strspn.c: Likewise.
31285         * lib/unistr/u32-strstr.c: Likewise.
31286         * lib/unistr/u32-strtok.c: Likewise.
31287         * lib/unistr/u32-to-u16.c: Likewise.
31288         * lib/unistr/u32-to-u8.c: Likewise.
31289         * lib/unistr/u32-uctomb.c: Likewise.
31290         * lib/unistr/u8-check.c: Likewise.
31291         * lib/unistr/u8-chr.c: Likewise.
31292         * lib/unistr/u8-cmp.c: Likewise.
31293         * lib/unistr/u8-cpy-alloc.c: Likewise.
31294         * lib/unistr/u8-cpy.c: Likewise.
31295         * lib/unistr/u8-endswith.c: Likewise.
31296         * lib/unistr/u8-mblen.c: Likewise.
31297         * lib/unistr/u8-mbsnlen.c: Likewise.
31298         * lib/unistr/u8-mbtouc-aux.c: Likewise.
31299         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
31300         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
31301         * lib/unistr/u8-mbtouc.c: Likewise.
31302         * lib/unistr/u8-mbtoucr.c: Likewise.
31303         * lib/unistr/u8-move.c: Likewise.
31304         * lib/unistr/u8-next.c: Likewise.
31305         * lib/unistr/u8-prev.c: Likewise.
31306         * lib/unistr/u8-set.c: Likewise.
31307         * lib/unistr/u8-startswith.c: Likewise.
31308         * lib/unistr/u8-stpcpy.c: Likewise.
31309         * lib/unistr/u8-stpncpy.c: Likewise.
31310         * lib/unistr/u8-strcat.c: Likewise.
31311         * lib/unistr/u8-strchr.c: Likewise.
31312         * lib/unistr/u8-strcmp.c: Likewise.
31313         * lib/unistr/u8-strcpy.c: Likewise.
31314         * lib/unistr/u8-strcspn.c: Likewise.
31315         * lib/unistr/u8-strdup.c: Likewise.
31316         * lib/unistr/u8-strlen.c: Likewise.
31317         * lib/unistr/u8-strmblen.c: Likewise.
31318         * lib/unistr/u8-strmbtouc.c: Likewise.
31319         * lib/unistr/u8-strncat.c: Likewise.
31320         * lib/unistr/u8-strncmp.c: Likewise.
31321         * lib/unistr/u8-strncpy.c: Likewise.
31322         * lib/unistr/u8-strnlen.c: Likewise.
31323         * lib/unistr/u8-strpbrk.c: Likewise.
31324         * lib/unistr/u8-strrchr.c: Likewise.
31325         * lib/unistr/u8-strspn.c: Likewise.
31326         * lib/unistr/u8-strstr.c: Likewise.
31327         * lib/unistr/u8-strtok.c: Likewise.
31328         * lib/unistr/u8-to-u16.c: Likewise.
31329         * lib/unistr/u8-to-u32.c: Likewise.
31330         * lib/unistr/u8-uctomb-aux.c: Likewise.
31331         * lib/unistr/u8-uctomb.c: Likewise.
31332         * lib/unitypes.h: Likewise.
31333         * lib/uniwidth.h: Likewise.
31334         * lib/uniwidth/cjk.h: Likewise.
31335         * lib/uniwidth/u16-strwidth.c: Likewise.
31336         * lib/uniwidth/u16-width.c: Likewise.
31337         * lib/uniwidth/u32-strwidth.c: Likewise.
31338         * lib/uniwidth/u32-width.c: Likewise.
31339         * lib/uniwidth/u8-strwidth.c: Likewise.
31340         * lib/uniwidth/u8-width.c: Likewise.
31341         * lib/uniwidth/width.c: Likewise.
31342
31343 2007-10-07  Bruno Haible  <bruno@clisp.org>
31344
31345         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
31346         The file is still under LGPL (see modules/inttypes).
31347
31348 2007-10-06  Bruno Haible  <bruno@clisp.org>
31349
31350         * modules/trunc (Dependencies): Add 'extensions'.
31351         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
31352         Reported by Ben Pfaff <blp@gnu.org>.
31353
31354 2007-10-06  Bruno Haible  <bruno@clisp.org>
31355
31356         * modules/freopen-tests: New file.
31357         * tests/test-freopen.c: New file.
31358
31359         * modules/fopen-tests: New file.
31360         * tests/test-fopen.c: New file.
31361
31362         * modules/fopen: New file.
31363         * lib/fopen.c: New file.
31364         * m4/fopen.m4: New file.
31365         * modules/freopen: New file.
31366         * lib/freopen.c: New file.
31367         * m4/freopen.m4: New file.
31368         * lib/stdio.in.h (fopen, freopen): New declarations.
31369         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
31370         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
31371         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
31372         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
31373         * doc/functions/fopen.texi: Mention the 'fopen' module.
31374         * doc/functions/freopen.texi: Mention the 'freopen' module.
31375
31376 2007-10-06  Bruno Haible  <bruno@clisp.org>
31377
31378         * modules/open-tests: New file.
31379         * tests/test-open.c: New file.
31380
31381         * modules/open: New file.
31382         * lib/open.c: New file.
31383         * m4/open.m4: New file.
31384         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
31385         lib/open.c does.
31386         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
31387         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
31388         macros.
31389         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
31390         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
31391         REPLACE_OPEN.
31392         * doc/functions/open.texi: Mention the 'open' module.
31393
31394 2007-10-04  Bruno Haible  <bruno@clisp.org>
31395
31396         * modules/ceill-tests: New file.
31397         * tests/test-ceill.c: New file.
31398
31399         * modules/ceill: New file.
31400         * lib/ceill.c: Replace entire file.
31401         * m4/ceill.m4: New file.
31402         * lib/math.in.h (ceill): Replace declaration.
31403         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
31404         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
31405         * doc/functions/ceill.texi: Mention the 'ceill' module.
31406         * modules/mathl (Files): Remove lib/ceill.c.
31407         (Depends-on): Add ceill.
31408
31409 2007-10-04  Bruno Haible  <bruno@clisp.org>
31410
31411         * modules/ceilf-tests: New file.
31412         * tests/test-ceilf.c: New file.
31413
31414         * modules/ceilf: New file.
31415         * lib/ceil.c: New file.
31416         * lib/ceilf.c: New file.
31417         * m4/ceilf.m4: New file.
31418         * lib/math.in.h (ceilf): New declaration.
31419         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
31420         HAVE_DECL_CEILF.
31421         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
31422         HAVE_DECL_CEILF.
31423         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
31424
31425 2007-10-04  Bruno Haible  <bruno@clisp.org>
31426
31427         * modules/floorl-tests: New file.
31428         * tests/test-floorl.c: New file.
31429
31430         * modules/floorl: New file.
31431         * lib/floorl.c: Replace entire file.
31432         * m4/floorl.m4: New file.
31433         * lib/math.in.h (floorl): Replace declaration.
31434         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
31435         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
31436         * doc/functions/floorl.texi: Mention the 'floorl' module.
31437         * modules/mathl (Files): Remove lib/floorl.c.
31438         (Depends-on): Add floorl.
31439
31440 2007-10-04  Bruno Haible  <bruno@clisp.org>
31441
31442         * modules/floorf-tests: New file.
31443         * tests/test-floorf.c: New file.
31444
31445         * modules/floorf: New file.
31446         * lib/floor.c: New file.
31447         * lib/floorf.c: New file.
31448         * m4/floorf.m4: New file.
31449         * lib/math.in.h (floorf): New declaration.
31450         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
31451         HAVE_DECL_FLOORF.
31452         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
31453         HAVE_DECL_FLOORF.
31454         * doc/functions/floorf.texi: Mention the 'floorf' module.
31455
31456 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
31457             Bruno Haible  <bruno@clisp.org>
31458
31459         Advertise for the Git server instead of the CVS server.
31460         * doc/gnulib-intro.texi (Steady Development): Mention the Git
31461         repository instead of the CVS one.
31462         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
31463         about all VCS systems generically.
31464         * doc/gnulib.texi (Introduction): Capitalize `Git'.
31465
31466 2007-10-04  Bruno Haible  <bruno@clisp.org>
31467
31468         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
31469         means.
31470         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
31471
31472 2007-10-04  Bruno Haible  <bruno@clisp.org>
31473
31474         * modules/truncl-tests: New file.
31475         * tests/test-truncl.c: New file.
31476
31477         * modules/truncl: New file.
31478         * lib/truncl.c: New file.
31479         * m4/truncl.m4: New file.
31480         * lib/math.in.h (truncl): New declaration.
31481         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
31482         HAVE_DECL_TRUNCL.
31483         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
31484         HAVE_DECL_TRUNCL.
31485         * doc/functions/truncl.texi: Mention the 'truncl' module.
31486
31487 2007-10-04  Bruno Haible  <bruno@clisp.org>
31488
31489         * modules/truncf-tests: New file.
31490         * tests/test-truncf.c: New file.
31491
31492         * modules/truncf: New file.
31493         * lib/trunc.c: Make paramerizable through USE_* macros.
31494         * lib/truncf.c: New file.
31495         * m4/truncf.m4: New file.
31496         * lib/math.in.h (truncf): New declaration.
31497         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
31498         HAVE_DECL_TRUNCF.
31499         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
31500         HAVE_DECL_TRUNCF.
31501         * doc/functions/truncf.texi: Mention the 'truncf' module.
31502
31503 2007-10-03  Bruno Haible  <bruno@clisp.org>
31504
31505         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
31506         augmentation also for tests modules.
31507         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
31508         * modules/atexit-tests (Makefile.am): Likewise.
31509         * modules/binary-io-tests (Makefile.am): Likewise.
31510         * modules/c-strcase-tests (Makefile.am): Likewise.
31511         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
31512         * modules/canonicalize-tests (Makefile.am): Likewise.
31513         * modules/closein-tests (Makefile.am): Likewise.
31514         * modules/fprintf-posix-tests (Makefile.am): Likewise.
31515         * modules/freadahead-tests (Makefile.am): Likewise.
31516         * modules/fseek-tests (Makefile.am): Likewise.
31517         * modules/fseeko-tests (Makefile.am): Likewise.
31518         * modules/ftell-tests (Makefile.am): Likewise.
31519         * modules/ftello-tests (Makefile.am): Likewise.
31520         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
31521         * modules/isnanl-tests (Makefile.am): Likewise.
31522         * modules/lseek-tests (Makefile.am): Likewise.
31523         * modules/mbscasecmp-tests (Makefile.am): Likewise.
31524         * modules/mbscasestr-tests (Makefile.am): Likewise.
31525         * modules/mbschr-tests (Makefile.am): Likewise.
31526         * modules/mbscspn-tests (Makefile.am): Likewise.
31527         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
31528         * modules/mbspbrk-tests (Makefile.am): Likewise.
31529         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
31530         * modules/mbsrchr-tests (Makefile.am): Likewise.
31531         * modules/mbsspn-tests (Makefile.am): Likewise.
31532         * modules/mbsstr-tests (Makefile.am): Likewise.
31533         * modules/printf-posix-tests (Makefile.am): Likewise.
31534         * modules/snprintf-posix-tests (Makefile.am): Likewise.
31535         * modules/sprintf-posix-tests (Makefile.am): Likewise.
31536         * modules/tsearch-tests (Makefile.am): Likewise.
31537         * modules/uniname/uniname-tests (Makefile.am): Likewise.
31538         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
31539         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
31540         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
31541         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
31542         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
31543         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
31544         * modules/vprintf-posix-tests (Makefile.am): Likewise.
31545         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
31546         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
31547         * modules/xstrtoimax-tests (Makefile.am): Likewise.
31548         * modules/xstrtol-tests (Makefile.am): Likewise.
31549         * modules/xstrtoumax-tests (Makefile.am): Likewise.
31550         * modules/yesno-tests (Makefile.am): Likewise.
31551
31552 2007-10-03  Bruno Haible  <bruno@clisp.org>
31553
31554         * modules/trunc-tests: New file.
31555         * tests/test-trunc.c: New file.
31556
31557         * modules/trunc: New file.
31558         * lib/trunc.c: New file.
31559         * m4/trunc.m4: New file.
31560         * lib/math.in.h (trunc): New declaration.
31561         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
31562         HAVE_DECL_TRUNC.
31563         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
31564         HAVE_DECL_TRUNC.
31565         * doc/functions/trunc.texi: Mention the 'trunc' module.
31566
31567 2007-10-03  Bruno Haible  <bruno@clisp.org>
31568
31569         * tests/test-fpending.c: New file, mostly copied
31570         from coreutils/lib/t-fpending.c.
31571         * modules/fpending-tests: New file.
31572
31573 2007-10-03  Bruno Haible  <bruno@clisp.org>
31574
31575         Port the stdio extensions to QNX (untested).
31576         * lib/fseterr.c (fseterr): Add support for QNX.
31577         * lib/fbufmode.c (fbufmode): Likewise.
31578         * lib/freadable.c (freadable): Likewise.
31579         * lib/fwritable.c (fwritable): Likewise.
31580         * lib/freading.c (freading): Likewise.
31581         * lib/fwriting.c (fwriting): Likewise.
31582         * lib/freadahead.c (freadahed): Likewise.
31583         * lib/fpurge.c (fpurge): Likewise.
31584         * lib/fseeko.c (rpl_fseeko): Likewise.
31585
31586 2007-10-03  Bruno Haible  <bruno@clisp.org>
31587             Jim Meyering  <jim@meyering.net>
31588             Eric Blake  <ebb9@byu.net>
31589
31590         * doc/relocatable.texi: Use @command instead of @program.
31591
31592 2007-10-02  Jim Meyering  <jim@meyering.net>
31593
31594         Perform one more "_.h" -> ".in.h" substitution.
31595         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
31596         instead of unistd_.h here, too.
31597
31598 2007-10-01  Bruno Haible  <bruno@clisp.org>
31599
31600         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
31601         Needed for the alloca-opt module.
31602
31603 2007-09-30  Bruno Haible  <bruno@clisp.org>
31604
31605         * lib/alloca.in.h: Renamed from lib/alloca_.h.
31606         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
31607         alloca_.h.
31608         * lib/argz.in.h: Renamed from lib/argz_.h.
31609         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
31610         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
31611         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
31612         byteswap_.h.
31613         * lib/dirent.in.h: Renamed from lib/dirent_.h.
31614         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
31615         dirent_.h.
31616         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
31617         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
31618         fcntl_.h.
31619         * lib/float.in.h: Renamed from lib/float_.h.
31620         * modules/float (Files, Makefile.am): Use float.in.h instead of
31621         float_.h.
31622         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
31623         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
31624         fnmatch_.h.
31625         * lib/getopt.in.h: Renamed from lib/getopt_.h.
31626         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
31627         getopt_.h.
31628         * lib/glob.in.h: Renamed from lib/glob_.h.
31629         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
31630         * lib/iconv.in.h: Renamed from lib/iconv_.h.
31631         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
31632         iconv_.h.
31633         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
31634         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
31635         inttypes_.h.
31636         * lib/locale.in.h: Renamed from lib/locale_.h.
31637         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
31638         locale_.h.
31639         * lib/math.in.h: Renamed from lib/math_.h.
31640         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
31641         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
31642         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
31643         of netinet_in_.h. Add dependency.
31644         * lib/poll.in.h: Renamed from lib/poll_.h.
31645         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
31646         * lib/search.in.h: Renamed from lib/search_.h.
31647         * modules/search (Files, Makefile.am): Use search.in.h instead of
31648         search_.h.
31649         * lib/signal.in.h: Renamed from lib/signal_.h.
31650         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
31651         _signal.h.
31652         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
31653         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
31654         stdbool_.h.
31655         * lib/stdint.in.h: Renamed from lib/stdint_.h.
31656         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
31657         stdint_.h.
31658         * lib/stdio.in.h: Renamed from lib/stdio_.h.
31659         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
31660         stdio_.h.
31661         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
31662         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
31663         stdlib_.h.
31664         * lib/string.in.h: Renamed from lib/string_.h.
31665         * modules/string (Files, Makefile.am): Use string.in.h instead of
31666         string_.h.
31667         * doc/gnulib-tool.texi (Initial import): Update.
31668         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
31669         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
31670         of sys_select_.h. Add dependency.
31671         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
31672         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
31673         of sys_socket_.h.
31674         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
31675         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
31676         sys_stat_.h.
31677         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
31678         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
31679         sys_time_.h.
31680         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
31681         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
31682         sysexits_.h.
31683         * lib/time.in.h: Renamed from lib/time_.h.
31684         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
31685         * lib/unistd.in.h: Renamed from lib/unistd_.h.
31686         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
31687         unistd_.h.
31688         * lib/wchar.in.h: Renamed from lib/wchar_.h.
31689         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
31690         wchar_.h.
31691         * lib/wctype.in.h: Renamed from lib/wctype_.h.
31692         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
31693         wctype_.h.
31694         * build-aux/bootstrap (slurp): Update.
31695         * lib/.cppi-disable: Update.
31696
31697 2007-09-30  Bruno Haible  <bruno@clisp.org>
31698
31699         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
31700         Needed on BeOS.
31701
31702 2007-09-30  Bruno Haible  <bruno@clisp.org>
31703
31704         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
31705
31706 2007-09-29  Bruno Haible  <bruno@clisp.org>
31707
31708         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
31709
31710 2007-09-29  Bruno Haible  <bruno@clisp.org>
31711
31712         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
31713         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
31714         * build-aux/install-reloc: Compile also areadlink.c.
31715         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
31716
31717 2007-09-29  Bruno Haible  <bruno@clisp.org>
31718
31719         * gnulib-tool (func_emit_initmacro_done): Indentation.
31720
31721 2007-09-29  Bruno Haible  <bruno@clisp.org>
31722
31723         * README: Add CVS checkout update instructions.
31724         Info from Bob Proulx <bob@proulx.com>.
31725
31726 2007-09-28  Eric Blake  <ebb9@byu.net>
31727
31728         Provide move-if-change.
31729         * build-aux/move-if-change: New file, based on best practice
31730         rather than any canonical upstream location.
31731
31732 2007-09-28  Jim Meyering  <jim@meyering.net>
31733
31734         Fix canonicalize loop-detection corner case.
31735         Do not attempt to stat the symlink values stored via seen_triple.
31736         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
31737         on linux-2.6.18, (but not 2.6.22).
31738         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
31739         triple_compare.  The former compares dev,ino,filename, while the latter
31740         would actually stat dirname(filename) when dev and ino were equal.
31741         * lib/hash-triple.c: Install <string.h>.
31742         (STREQ): Define.
31743         (triple_compare_ino_str): New function.
31744         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
31745
31746 2007-09-28  Eric Blake  <ebb9@byu.net>
31747
31748         Enforce that AC_REPLACE_FUNCS files exist.
31749         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
31750         override check for typos.
31751
31752         Fix test-closein on Solaris 10.
31753         * tests/test-closein.c (main): Don't assume stdin can be inherited
31754         closed on all systems.
31755         * tests/test-closein.sh: Likewise.
31756         Reported by Piotr Tarnowski.
31757
31758 2007-09-28  Jim Meyering  <jim@meyering.net>
31759
31760         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
31761
31762 2007-09-27  Jim Meyering  <jim@meyering.net>
31763
31764         canonicalize: Avoid a false-positive cycle failure.
31765         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
31766         Sort.  Remove cycle-check.
31767         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
31768         not cycle-check.h.
31769         (seen_triple): New function.
31770         (canonicalize_filename_mode): Use it instead of cycle-check.
31771         * tests/test-canonicalize.c: Add a test for this bug.
31772         * tests/test-canonicalize.sh: Set up and run the test.
31773
31774         New module, file-set, from coreutils.
31775         * modules/file-set: Define it.
31776         * lib/file-set.c, lib/file-set.h: Implement.
31777
31778         New module, hash-triple, from coreutils.
31779         * modules/hash-triple: Define it.
31780         * lib/hash-triple.c, lib/hash-triple.h: Implement.
31781
31782 2007-09-25  Eric Blake  <ebb9@byu.net>
31783
31784         Fix strerror on Interix.
31785         * lib/string_.h (strerror): Declare replacement.
31786         * doc/functions/strerror.texi (strerror): Document the Interix
31787         shortcoming.
31788         * modules/string (Makefile.am): Support new hooks.
31789         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
31790         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
31791         gl_FUNC_STRERROR_SEPARATE.
31792         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
31793         * lib/strerror.c (rpl_strerror): Provide replacement.
31794         * modules/strerror (Depends-on): Add string.
31795         (configure.ac): Detect use of module.
31796         * tests/test-strerror.c: New file.
31797         * modules/strerror-tests: New test module.
31798         * modules/argp (Depends-on): Add strerror.
31799         * modules/error (Depends-on): Likewise.
31800         Reported by Martin Koeppe.
31801
31802 2007-09-24  Bruno Haible  <bruno@clisp.org>
31803
31804         * README: Update git instructions.
31805
31806 2007-09-24  Eric Blake  <ebb9@byu.net>
31807
31808         Revert fpending breakage from 2007-09-08.
31809         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
31810         __fpending.c.
31811
31812 2007-09-24  Jim Meyering  <jim@meyering.net>
31813
31814         filenamecat.c: Add a test.
31815         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
31816         showing how the function works when DIR is the empty string.
31817
31818 2007-09-21  Simon Josefsson  <simon@josefsson.org>
31819
31820         * tests/test-canonicalize.sh: Turn on executable bit.
31821
31822 2007-09-19  Eric Blake  <ebb9@byu.net>
31823
31824         * README: Update CVS instructions.
31825
31826 2007-09-18  Bruno Haible  <bruno@clisp.org>
31827
31828         * modules/areadlink: New file.
31829         * lib/areadlink.h (areadlink): New declaration.
31830         * lib/areadlink.c: New file, based on lib/xreadlink.c.
31831
31832 2007-09-17  Jim Meyering  <jim@meyering.net>
31833
31834         * lib/savewd.c (ESTALE) [!defined]: Define.
31835         Reported to be required on Interix by Martin Koeppe.
31836
31837 2007-09-17  Bruno Haible  <bruno@clisp.org>
31838
31839         * gnulib-tool (func_version): Use $version.
31840
31841 2007-09-16  Bruno Haible  <bruno@clisp.org>
31842
31843         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
31844         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
31845         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
31846         Reported by Greg Schafer <gschafer@zip.com.au>.
31847
31848 2007-09-15  Bruno Haible  <bruno@clisp.org>
31849
31850         * gnulib-tool (sed): Try a little harder to make bash understand the
31851         alias.
31852         Reported by Bruce Korb <bruce.korb@gmail.com>.
31853
31854 2007-09-13  Eric Blake  <ebb9@byu.net>
31855
31856         * ChangeLog: Remove conflict markers.
31857
31858 2007-09-13  Simon Josefsson  <simon@josefsson.org>
31859
31860         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
31861         Reported by Bruno Haible <bruno@clisp.org>.
31862
31863 2007-09-12  Bruno Haible  <bruno@clisp.org>
31864
31865         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
31866         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
31867         is not defined.
31868
31869 2007-09-12  Eric Blake  <ebb9@byu.net>
31870
31871         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
31872         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
31873         Autoconf definition.
31874         * modules/euidaccess (Depends-on): Add extensions, for
31875         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
31876         * modules/fnmatch (Depends-on): Likewise.
31877         * modules/getaddrinfo (Depends-on): Likewise.
31878         * modules/getdelim (Depends-on): Likewise.
31879         * modules/getline (Depends-on): Likewise.
31880         * modules/getsubopt (Depends-on): Likewise.
31881         * modules/gettext (Depends-on): Likewise.
31882         * modules/group-member (Depends-on): Likewise.
31883         * modules/mbchar (Depends-on): Likewise.
31884         * modules/memmem (Depends-on): Likewise.
31885         * modules/mempcpy (Depends-on): Likewise.
31886         * modules/memrchr (Depends-on): Likewise.
31887         * modules/pagealign_alloc (Depends-on): Likewise.
31888         * modules/readutmp (Depends-on): Likewise.
31889         * modules/stpcpy (Depends-on): Likewise.
31890         * modules/stpncpy (Depends-on): Likewise.
31891         * modules/strchrnul (Depends-on): Likewise.
31892         * modules/strndup (Depends-on): Likewise.
31893         * modules/strsep (Depends-on): Likewise.
31894         * modules/strverscmp (Depends-on): Likewise.
31895         * modules/vasprintf (Depends-on): Likewise.
31896         * modules/wcwidth (Depends-on): Likewise.
31897         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
31898         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
31899         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
31900         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
31901         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
31902         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
31903         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
31904         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
31905         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
31906         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
31907         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
31908         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
31909         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
31910         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
31911         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
31912         * m4/readutmp.m4 (gl_READUTMP): Likewise.
31913         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
31914         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
31915         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
31916         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
31917         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
31918         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
31919         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
31920         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
31921         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
31922         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
31923         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
31924         so that lock.m4 can be used in gettext without extensions module.
31925
31926 2007-09-11  Bruno Haible  <bruno@clisp.org>
31927
31928         * m4/isc-posix.m4: Remove file.
31929         Suggested by Eric Blake.
31930
31931 2007-09-11  Eric Blake  <ebb9@byu.net>
31932
31933         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
31934
31935 2007-09-10  Bruno Haible  <bruno@clisp.org>
31936
31937         * posix-modules: Fix typo in error message.
31938         Reported by Matt <mkraai@beckman.com>.
31939
31940 2007-09-09  Bruno Haible  <bruno@clisp.org>
31941
31942         * doc/functions/getdelim.texi: Update list of platforms lacking the
31943         function.
31944         * doc/functions/getline.texi: Likewise.
31945
31946 2007-09-09  Jim Meyering  <jim@meyering.net>
31947
31948         * lib/hash.c (hash_initialize): Detect calloc failure.
31949         Reported by Bruno Haible.
31950
31951 2007-09-09  Bruno Haible  <bruno@clisp.org>
31952
31953         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
31954         malloc or realloc fails.
31955
31956 2007-09-09  Bruno Haible  <bruno@clisp.org>
31957
31958         * modules/getcwd (Depends-on): Add malloc-posix.
31959         * modules/glob (Depends-on): Likewise.
31960         * modules/putenv (Depends-on): Likewise.
31961         * modules/strdup (Depends-on): Likewise.
31962         * modules/getdelim (Depends-on): Add realloc-posix.
31963         * modules/read-file (Depends-on): Likewise.
31964
31965 2007-09-09  Bruno Haible  <bruno@clisp.org>
31966
31967         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
31968         (gl_FUNC_MALLOC_POSIX): Require it.
31969         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
31970         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
31971         * modules/realloc (Files): Add m4/malloc.m4.
31972         * modules/calloc (Files): Likewise.
31973
31974 2007-09-09  Bruno Haible  <bruno@clisp.org>
31975
31976         * modules/malloc-posix: New file.
31977         * modules/malloc (Depends-on): Add malloc-posix.
31978         * lib/malloc.c: Include errno.h.
31979         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
31980         and a POSIX-compatible malloc into a single function. Set ENOMEM
31981         when returning NULL.
31982         * m4/malloc.m4: New file.
31983         * doc/functions/malloc.texi: Mention the malloc-posix module.
31984         * lib/stdlib_.h (malloc): New declaration.
31985         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
31986         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
31987         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
31988         and HAVE_MALLOC_POSIX.
31989
31990 2007-09-09  Bruno Haible  <bruno@clisp.org>
31991
31992         * modules/realloc-posix: New file.
31993         * modules/realloc (Depends-on): Add realloc-posix.
31994         * lib/realloc.c: Include errno.h.
31995         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
31996         and a POSIX-compatible realloc into a single function. Set ENOMEM
31997         when returning NULL.
31998         * m4/realloc.m4: New file.
31999         * doc/functions/realloc.texi: Mention the realloc-posix module.
32000         * lib/stdlib_.h (realloc): New declaration.
32001         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
32002         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
32003         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
32004         and HAVE_REALLOC_POSIX.
32005
32006 2007-09-09  Bruno Haible  <bruno@clisp.org>
32007
32008         * modules/calloc-posix: New file.
32009         * modules/calloc (Depends-on): Add calloc-posix.
32010         * lib/calloc.c: Include errno.h.
32011         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
32012         and a POSIX-compatible calloc into a single function. Set ENOMEM
32013         when returning NULL.
32014         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
32015         * doc/functions/calloc.texi: Mention the calloc-posix module.
32016         * lib/stdlib_.h (calloc): New declaration.
32017         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
32018         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
32019         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
32020         and HAVE_CALLOC_POSIX.
32021
32022 2007-09-09  Bruno Haible  <bruno@clisp.org>
32023
32024         Allow for modules to show an arbitrary notice.
32025         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
32026         * gnulib-tool: New option --extract-notice.
32027         (func_usage): Document it.
32028         (sed_extract_prog): Update.
32029         (func_get_notice): New function.
32030         (func_modules_notice): New function.
32031         (func_import, func_create_testdir): Invoke it.
32032         Suggested by Jim Meyering.
32033
32034 2007-09-09  Bruno Haible  <bruno@clisp.org>
32035
32036         * gnulib-tool: New options --verbose, --quiet.
32037         (func_usage): Document them.
32038         (verbose): New variable.
32039         (func_execute_command): New function.
32040         (func_import): Don't show the module list and the file list if
32041         $verbose < 0.
32042         (func_create_testdir): Likewise. Use func_execute_command.
32043         (func_create_megatestdir): Use func_execute_command.
32044
32045 2007-09-08  Bruno Haible  <bruno@clisp.org>
32046
32047         * gnulib-tool (func_import): Prefer rsync over wget when available,
32048         for fetching the PO files.
32049
32050 2007-09-08  Bruno Haible  <bruno@clisp.org>
32051
32052         * posix-modules: New file. Portions copied from gnulib-tool.
32053         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
32054
32055 2007-09-08  Jim Meyering  <jim@meyering.net>
32056
32057         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
32058         * lib/fpending.h: Rename from __fpending.h.
32059         * lib/fpending.c: Rename from __fpending.c.
32060         Include "fpending.h", not "__fpending.h".
32061         * lib/__fpending.h, lib/__fpending.c: Remove files.
32062         * modules/fpending (Files): Reflect new file names.
32063         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
32064
32065 2007-09-08  Bruno Haible  <bruno@clisp.org>
32066
32067         * m4/inttypes-h.m4: Remove stub file.
32068
32069 2007-09-07  Simon Josefsson  <simon@josefsson.org>
32070
32071         * doc/headers/stdint.texi: Discuss #include_next issue.
32072
32073 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
32074
32075         * build-aux/bootstrap: Remove obsolete comment about wget --help.
32076
32077 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32078
32079         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
32080         in variable name.
32081
32082 2007-09-03  Jim Meyering  <jim@meyering.net>
32083
32084         New module: git-version-gen.
32085         * modules/git-version-gen: New file.
32086
32087         Import changes from coreutils for bootstrap script.
32088
32089         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
32090
32091         bootstrap: uses rsync to download the .po files
32092         * build-aux/bootstrap (po_download_command_format): New global.
32093         (download_po_files): Use rsync.
32094         (update_po_files): Don't remove .po files after download,
32095         so future rsync runs can take advantage of the copies.
32096
32097         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
32098
32099         Solve the unnecessary-.po-file-regeneration problem once and for all.
32100         * build-aux/bootstrap (download_po_files): New function, renamed from
32101         get_translations.  Now, downloads, but doesn't update LINGUAS.
32102         (update_po_files): New function.
32103
32104         bootstrap: Ignore more.
32105         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
32106         uniwidth to e.g., lib/.gitignore.
32107         (slurp): Handle the sys_stat_.h -> sys mapping, too.
32108
32109         * build-aux/bootstrap: New setting: vc_ignore.
32110         (insert_sorted_if_absent): Create $file if absent.
32111         Adapt to new, possibly empty, list: $vc_ignore.
32112
32113         bootstrap: generate more ignorable names
32114         * build-aux/bootstrap (slurp): When generating ignorable names,
32115         also map .sin to .sed, .gperf to .c, and .y to .c.
32116
32117 2007-09-03  Jim Meyering  <jim@meyering.net>
32118
32119         * build-aux/git-version-gen: New file, from coreutils.  For details, see
32120         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
32121
32122 2007-09-02  Bruno Haible  <bruno@clisp.org>
32123
32124         Fix mis-recognition of 'mcs' on QNX 6.
32125         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
32126         output contains the string "Mono".
32127         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
32128         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
32129
32130 2007-09-01  Bruno Haible  <bruno@clisp.org>
32131
32132         Fix collision between uniwidth/* and linebreak modules.
32133         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
32134         u32_width): Remove declarations.
32135         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
32136         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
32137         streq3, streq2, streq1, streq0): Remove functions.
32138         (STREQ): Remove macro.
32139         (is_cjk_encoding): Remove function.
32140         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
32141         (uc_width, u8_width, u16_width, u32_width): Remove functions.
32142         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
32143         * NEWS: Document the change.
32144
32145 2007-09-01  Bruno Haible  <bruno@clisp.org>
32146
32147         * lib/streq.h: Add double-inclusion guard.
32148
32149 2007-09-01  Karl Berry  <karl@gnu.org>
32150
32151         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
32152
32153 2007-08-28  Jim Meyering  <jim@meyering.net>
32154
32155         Rename mreadlink_with_size to areadlink_with_size.
32156         * NEWS: Document the change.
32157         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
32158         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
32159         * lib/mreadlink.h: Rename this to...
32160         * lib/areadlink.h: ...this.
32161         * modules/mreadlink-with-size: Rename this to...
32162         * modules/areadlink-with-size: ...this.
32163         * lib/canonicalize.c: Reflect the renaming.
32164         * modules/canonicalize: Likewise.
32165
32166 2007-08-26  Bruno Haible  <bruno@clisp.org>
32167
32168         * gnulib-tool (func_import): When deciding which files to remove,
32169         consider also dangling symbolic links.
32170         Reported by Eric Blake.
32171
32172 2007-08-26  Bruno Haible  <bruno@clisp.org>
32173
32174         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
32175
32176 2007-08-23  Simon Josefsson  <simon@josefsson.org>
32177
32178         * lib/readline.c: Don't include getline.h, the prototype is now
32179         found in stdio.h.
32180
32181 2007-08-23  Jim Meyering  <jim@meyering.net>
32182
32183         Getdelim touchup.
32184         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
32185         around the funlockfile call, since funlockfile never sets errno.
32186         Don't set errno upon failed realloc.
32187
32188 2007-08-22  Eric Blake  <ebb9@byu.net>
32189
32190         Getline touchups.
32191         * lib/getdelim.c (getdelim): Revert regression that required *n to
32192         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
32193         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
32194         getdelim, rather than whether implementation is missing.
32195         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
32196         * lib/stdio_.h (getline): Also declare if replacement is
32197         required.
32198         * doc/functions/getdelim.texi: New file.
32199         * doc/functions/getline.texi: Likewise.
32200         * doc/gnulib.texi (Function Substitutes): Add new files.
32201         Reported by Bruno Haible.
32202
32203 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
32204
32205         * users.txt: Add Guile.
32206
32207 2007-08-22  Eric Blake  <ebb9@byu.net>
32208
32209         * tests/test-getdelim.c (main): Use remove, not unlink.
32210         * tests/test-getline.c (main): Likewise.
32211
32212         Move getline and getdelim into stdio.h, per POSIX 200x.
32213         * modules/getline (Files): Remove getline.h.
32214         (Depends-on): Add stdio.
32215         (configure.ac): Add module indicator.
32216         * modules/getdelim (Files): Remove getdelim.h.
32217         (Depends-on): Add stdio.
32218         (configure.ac): Add module indicator.
32219         * modules/stdio (Makefile.am): Work with new indicators.
32220         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
32221         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
32222         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
32223         * lib/getdelim.h: Delete.
32224         * lib/getline.h: Delete.
32225         * lib/stdio_.h (getdelim, getline): Declare.
32226         * modules/getdelim-tests: New module.
32227         * modules/getline-tests: Likewise.
32228         * tests/test-getdelim.c: New file.
32229         * tests/test-getline.c: Likewise.
32230         * NEWS: Document the change.
32231         * lib/getline.c: Update choice of header.
32232         * lib/csharpcomp.c: Likewise.
32233         * lib/getpass.c: Likewise.
32234         * lib/javacomp.c: Likewise.
32235         * lib/javaversion.c: Likewise.
32236         * lib/yesno.c: Likewise.
32237         * lib/getdelim.c: Likewise.
32238         (getdelim): Set errno on failure, and avoid memory leak.
32239
32240 2007-08-19  Bruno Haible  <bruno@clisp.org>
32241
32242         * modules/closein (Depends-on): Add freadahead.
32243         * lib/closein.c: Include freadahead.h.
32244         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
32245         is zero.
32246
32247 2007-08-19  Bruno Haible  <bruno@clisp.org>
32248
32249         * modules/freadahead-tests: New file.
32250         * tests/test-freadahead.sh: New file.
32251         * tests/test-freadahead.c: New file.
32252
32253         * modules/freadahead: New file.
32254         * lib/freadahead.h: New file.
32255         * lib/freadahead.c: New file.
32256         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
32257         fbufmode, fpurge, freadable, fwritable.
32258
32259 2007-08-19  Eric Blake  <ebb9@byu.net>
32260
32261         Test yesno in combination with closein.
32262         * lib/yesno.c (yesno): Document use of stdin.
32263         * modules/yesno-tests (Files): New module.
32264         * tests/test-yesno.c (main): New file.
32265         * tests/test-yesno.sh: Likewise.
32266
32267 2007-08-19  Bruno Haible  <bruno@clisp.org>
32268
32269         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
32270         * lib/fseeko.c (rpl_fseeko): Likewise.
32271         * lib/fseterr.c (fseterr): Likewise.
32272
32273 2007-08-19  Bruno Haible  <bruno@clisp.org>
32274
32275         * tests/test-lseek.c (main): Disable a test for BeOS.
32276         * doc/functions/lseek.texi: Document the BeOS bug.
32277
32278 2007-08-19  Bruno Haible  <bruno@clisp.org>
32279             Eric Blake  <ebb9@byu.net>
32280
32281         * lib/lseek.c: Include <sys/stat.h>.
32282         (rpl_lseek): Add workaround code also for Unix platforms.
32283         Needed for BeOS.
32284         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
32285         * doc/functions/lseek.texi: Document BeOS definiency.
32286
32287 2007-08-18  Bruno Haible  <bruno@clisp.org>
32288
32289         * modules/fstrcmp-tests: New file.
32290         * tests/test-fstrcmp.c: New file.
32291
32292 2007-08-18  Bruno Haible  <bruno@clisp.org>
32293
32294         * modules/fstrcmp: New file, from GNU gettext with modifications.
32295         * lib/fstrcmp.h: New file, from GNU gettext.
32296         * lib/fstrcmp.c: New file, from GNU gettext.
32297         * MODULES.html.sh (String handling): Add fstrcmp.
32298
32299 2007-08-18  Bruno Haible  <bruno@clisp.org>
32300
32301         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
32302         'bool'.
32303         (diag, compareseq): Remove const from the ctxt argument.
32304         (USE_HEURISTIC): Undefine at the end.
32305
32306 2007-08-18  Jim Meyering  <jim@meyering.net>
32307
32308         New file: lib/idcache.h
32309         * NEWS: Mention the addition.
32310         * modules/idcache (Files): Add lib/idcache.h
32311         * lib/idcache.c: Include "idcache.h".
32312         Don't include <sys/types.h>.
32313         Add a FIXME comment.
32314         Move file-scoped "static" declarations to the top.
32315         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
32316
32317 2007-08-17  Bruno Haible  <bruno@clisp.org>
32318         and Paul Eggert  <eggert@cs.ucla.edu>
32319
32320         * MODULES.html.sh: Add diffseq.
32321         * modules/diffseq: New file.
32322         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
32323         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
32324
32325 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32326
32327         Import changes from coreutils for bootstrap script.
32328
32329         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
32330
32331         * build-aux/bootstrap (slurp): Work even in environments where
32332         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
32333         current code does not slurp files whose names start with ".", and
32334         this looks like it might be a troublesome area.
32335
32336         2007-07-11  Jim Meyering  <jim@meyering.net>
32337
32338         If there's a GPL vN copyright comment, require that N == 3.
32339
32340         2007-07-08  Jim Meyering  <jim@meyering.net>
32341
32342         Run the coreutils-specific code only if tests/Makefile.am.in exists.
32343         * build-aux/bootstrap (mam_template): Move definition out of loop.
32344
32345         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
32346
32347         * build-aux/bootstrap (symlink_to_dir): Rename function from
32348         symlink_to_gnulib.  Add a directory parameter.  Update all
32349         callers.
32350         (cp_mark_as_generated): Also check for -- and link to -- files in
32351         gl/.
32352
32353         2007-07-08  Jim Meyering  <jim@meyering.net>
32354
32355         Adapt to deeper hierarchy in gnulib.
32356         * build-aux/bootstrap (symlink_to_dir): If the destination
32357         directory doesn't exist, create it. This is required at least for
32358         "lib/uniwidth/cjk.h".
32359
32360         2007-05-15  Jim Meyering  <jim@meyering.net>
32361
32362         * build-aux/bootstrap: Now that generated Makefile.am files
32363         are no longer under version control, they must be created at
32364         bootstrap time.
32365
32366 2007-08-14  Ben Pfaff  <blp@gnu.org>
32367
32368         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
32369
32370 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32371
32372         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
32373         given the changes below.
32374         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
32375         even on hosts that have padding bits beyond the supported 64.
32376
32377 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
32378
32379         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
32380         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
32381         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
32382         depends on it.
32383         (xstrtol_error): Remove.
32384         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
32385         but with a different signature.
32386         (ATTRIBUTE_NORETURN, __attribute__): New macros.
32387         * lib/xstrtol-error.c: Include exitfail.h.
32388         (xstrtol_fatal): New function, with a different signature from the
32389         old xstrtol_error, so that the caller need not worry about passing
32390         in an exit status, or about storage management of the option argument.
32391         (xstrtol_error): Now a static function.  Redo signature to
32392         implement xstrtol_fatal.  Output the correct number of hyphens in
32393         front of the option so that the caller need not worry about
32394         storage management.
32395         (N_): New macro.
32396         (_): Remove; not used now.
32397         * modules/xstrtol: Depend on getopt.
32398         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
32399         of old STRTOL_FATAL_ERROR macro.
32400         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
32401         of test program.
32402         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
32403         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
32404
32405 2007-08-08  Eric Blake  <ebb9@byu.net>
32406
32407         * lib/xstrtol-error.c: Add missing include.
32408
32409         Move xstrtol messages into gnulib domain, when --pobase is used.
32410         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
32411         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
32412         * modules/xstrtol (Files): Distribute new file.
32413         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
32414         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
32415         * tests/test-xstrtol.c: ...into new file.
32416         * tests/test-xstrtoul.c: Also test xstrtoul.
32417         * tests/test-xstrtoimax.c: Also test xstrtoimax.
32418         * tests/test-xstrtoumax.c: Also test xstrtoumax.
32419         * tests/test-xstrtol.sh: Drive the tests.
32420         * tests/test-xstrtoimax.sh: Likewise.
32421         * tests/test-xstrtoumax.sh: Likewise.
32422         * modules/xstrtol-tests: New module.
32423         * modules/xstrtoimax-tests: Likewise.
32424         * modules/xstrtoumax-tests: Likewise.
32425
32426 2007-08-08  Jim Meyering  <jim@meyering.net>
32427
32428         New function: mfile_name_concat.
32429         * lib/filenamecat.c (mfile_name_concat): New function, just like
32430         file_name_concat, but return NULL upon failure rather than exiting
32431         with a diagnostic.
32432         * lib/filenamecat.h: Declare it.
32433
32434 2007-08-07  Bruno Haible  <bruno@clisp.org>
32435
32436         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
32437         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
32438         warning from gcc.
32439         Reported by Eric Blake.
32440
32441 2007-08-07  Simon Josefsson  <simon@josefsson.org>
32442
32443         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
32444         * modules/crypto/arcfour (License): Likewise.
32445         * modules/crypto/des-tests (License): Likewise.
32446         * modules/crypto/gc-arctwo-tests (License): Likewise.
32447         * modules/crypto/gc-des-tests (License): Likewise.
32448         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
32449         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
32450         * modules/crypto/gc-md2-tests (License): Likewise.
32451         * modules/crypto/gc-md4-tests (License): Likewise.
32452         * modules/crypto/gc-md5-tests (License): Likewise.
32453         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
32454         * modules/crypto/gc-rijndael-tests (License): Likewise.
32455         * modules/crypto/gc-sha1-tests (License): Likewise.
32456         * modules/crypto/gc-tests (License): Likewise.
32457         * modules/crypto/hmac-md5 (License): Likewise.
32458         * modules/crypto/hmac-sha1 (License): Likewise.
32459         * modules/crypto/md2-tests (License): Likewise.
32460         * modules/crypto/md4-tests (License): Likewise.
32461         * modules/crypto/md5 (License): Likewise.
32462         * modules/crypto/rijndael (License): Likewise.
32463         * modules/crypto/sha1 (License): Likewise.
32464         * modules/memxor (License): Likewise.
32465
32466 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
32467         and Bruno Haible  <bruno@clisp.org>
32468
32469         * NEWS: Describe interface changes to human, xstrtol.
32470         * lib/human.h: Include <xstrtol.h>.
32471         (human_options): Return enum strtol_error, not int.  Remove
32472         bool arg; take int * instead.
32473         * lib/human.c: Don't include "gettext.h".
32474         (_): Remove; no longer used.
32475         Don't include <xstrtol.h>, since human.h does it.
32476         (human_options): Adjust to abovementioned interface changes.
32477         Do not report error to stderr; that's now the caller's
32478         responsibility.
32479         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
32480         interface change.
32481         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
32482         Str, Argument_type_string.  All uses changed.  Put " argument"
32483         in diagnostics to make them clearer.  Change wording of suffix
32484         message for clarity.
32485         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
32486         Argument_type_string.
32487         (STRTOL_FATAL_WARN): Remove; no longer used.
32488         * modules/human (Depends-on): Remove gettext-h.
32489
32490 2007-08-06  Simon Josefsson  <simon@josefsson.org>
32491
32492         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
32493
32494 2007-07-31  Bruno Haible  <bruno@clisp.org>
32495
32496         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
32497         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
32498         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
32499
32500 2007-07-31  Bruno Haible  <bruno@clisp.org>
32501
32502         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
32503         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
32504
32505 2007-07-30  Bruno Haible  <bruno@clisp.org>
32506
32507         * modules/base64 (License): Use the synonymous term "LGPLv2+".
32508         * modules/c-ctype (License): Likewise.
32509         * modules/c-strcase (License): Likewise.
32510         * modules/check-version (License): Likewise.
32511         * modules/iconv (License): Likewise.
32512         * modules/iconv_open (License): Likewise.
32513         * modules/read-file (License): Likewise.
32514         * modules/striconv (License): Likewise.
32515         * modules/strverscmp (License): Likewise.
32516         * modules/vasprintf (License): Likewise.
32517         * modules/crypto/des (License): Likewise.
32518         * modules/crypto/gc (License): Likewise.
32519         * modules/crypto/gc-arcfour (License): Likewise.
32520         * modules/crypto/gc-arctwo (License): Likewise.
32521         * modules/crypto/gc-des (License): Likewise.
32522         * modules/crypto/gc-hmac-md5 (License): Likewise.
32523         * modules/crypto/gc-hmac-sha1 (License): Likewise.
32524         * modules/crypto/gc-md2 (License): Likewise.
32525         * modules/crypto/gc-md4 (License): Likewise.
32526         * modules/crypto/gc-md5 (License): Likewise.
32527         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
32528         * modules/crypto/gc-random (License): Likewise.
32529         * modules/crypto/gc-rijndael (License): Likewise.
32530         * modules/crypto/gc-sha1 (License): Likewise.
32531         * modules/crypto/md2 (License): Likewise.
32532         * modules/crypto/md4 (License): Likewise.
32533
32534 2007-07-30  Jim Meyering  <jim@meyering.net>
32535
32536         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
32537         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
32538         it has valid stat data.  This bug would cause du not to count the
32539         sizes of inaccessible directories.
32540         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
32541         in <http://bugzilla.redhat.com/250077>.
32542
32543 2007-07-25  Peter O'Gorman  <peter@pogma.com>
32544             Bruno Haible  <bruno@clisp.org>
32545
32546         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
32547         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
32548         #include_next, gives a diagnostic about it, but reports no error in
32549         the exit code.
32550         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
32551
32552 2007-07-24  Ben Pfaff  <blp@gnu.org>
32553
32554         Improve name: "count-one-bits" is better than "popcount".
32555         * MODULES.html.sh: Update name.
32556         * lib/popcount.h: Renamed lib/count-one-bits.h.
32557         (popcount): Renamed count_one_bits.
32558         (popcountl): Renamed count_one_bits_l.
32559         (popcountll): Renamed count_one_bits_ll.
32560         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
32561         * modules/popcount: Renamed module/count-one-bits.
32562         * modules/popcount-tests: Renamed module/count-one-bits-tests.
32563         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
32564
32565 2007-07-23  Ben Pfaff  <blp@gnu.org>
32566
32567         * lib/popcount.h (popcount32): Reduce size of constants, to allow
32568         better code generation, and add U to large constants to avoid
32569         warnings, in non-GCC case.
32570         Suggested by Bruno Haible.
32571
32572 2007-07-23  Ben Pfaff  <blp@gnu.org>
32573
32574         * lib/popcount.h: Use verify_true instead of if...abort.
32575         * modules/popcount: Depend on verify module.
32576         Suggested by Jim Meyering.
32577
32578 2007-07-23  Bruno Haible  <bruno@clisp.org>
32579
32580         * gnulib-tool (func_import): Create a .cvsignore file also when the
32581         directory is not yet in CVS but the toplevel directory is. When
32582         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
32583         Reported by Karl Berry.
32584
32585 2007-07-22  Ben Pfaff  <blp@gnu.org>
32586
32587         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
32588         case.
32589         Suggested by Eric Blake.
32590
32591 2007-07-22  Ben Pfaff  <blp@gnu.org>
32592
32593         New module: popcount.
32594         * MODULES.html.sh: Add popcount.
32595         * modules/popcount: New file.
32596         * modules/popcount-tests: New file.
32597         * tests/test-popcount.c: New file.
32598         * lib/popcount.h: New file.
32599         * m4/popcount.m4: New file.
32600
32601 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32602
32603         * build-aux/announce-gen: Update to GPLv3.
32604
32605         * build-aux/config.guess: Update from config.
32606
32607 2007-07-21  Bruno Haible  <bruno@clisp.org>
32608
32609         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
32610         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
32611
32612 2007-07-20  Jim Meyering  <jim@meyering.net>
32613
32614         * check-module: Diagnose a self-dependency.
32615
32616 2007-07-19  Bruno Haible  <bruno@clisp.org>
32617
32618         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
32619         empty.
32620         Reported by Eric Blake.
32621
32622 2007-07-18  Bruno Haible  <bruno@clisp.org>
32623
32624         * gnulib-tool: New options --po-base, --po-domain.
32625         (func_usage): Document them.
32626         (pobase, po_domain): New variables.
32627         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
32628         DEFAULT_TEXT_DOMAIN.
32629         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
32630         (func_import): Consider pobase and po_domain. Create a po/ directory.
32631         (func_create_testdir): Set pobase and po_domain to empty.
32632         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
32633         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
32634
32635 2007-07-18  Bruno Haible  <bruno@clisp.org>
32636
32637         * gnulib-tool (func_get_automake_snippet): Synthesize also an
32638         EXTRA_DIST augmentation for files in build-aux/.
32639
32640 2007-07-16  Bruno Haible  <bruno@clisp.org>
32641
32642         * modules/lseek (License): Use the synonymous term "LGPLv2+".
32643         * modules/getdelim (License): Likewise.
32644
32645 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32646
32647         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
32648         * modules/d-type (License): Likewise.
32649         * modules/extensions (License): Likewise.
32650         * modules/fnmatch (License): Likewise.
32651         * modules/fseeko (License): Likewise.
32652         * modules/getaddrinfo (License): Likewise.
32653         * modules/getline (License): Likewise.
32654         * modules/getlogin_r (License): Likewise.
32655         * modules/getpass (License): Likewise.
32656         * modules/gettimeofday (License): Likewise.
32657         * modules/glob (License): Likewise.
32658         * modules/inet_ntop (License): Likewise.
32659         * modules/malloc (License): Likewise.
32660         * modules/malloca (License): Likewise.
32661         * modules/memmem (License): Likewise.
32662         * modules/mempcpy (License): Likewise.
32663         * modules/memset (License): Likewise.
32664         * modules/minmax (License): Likewise.
32665         * modules/mktime (License): Likewise.
32666         * modules/netinet_in (License): Likewise.
32667         * modules/pathmax (License): Likewise.
32668         * modules/poll (License): Likewise.
32669         * modules/regex (License): Likewise.
32670         * modules/snprintf (License): Likewise.
32671         * modules/stdbool (License): Likewise.
32672         * modules/stdint (License): Likewise.
32673         * modules/stdio (License): Likewise.
32674         * modules/strcase (License): Likewise.
32675         * modules/strcasestr (License): Likewise.
32676         * modules/strdup (License): Likewise.
32677         * modules/string (License): Likewise.
32678         * modules/strndup (License): Likewise.
32679         * modules/strnlen (License): Likewise.
32680         * modules/strpbrk (License): Likewise.
32681         * modules/strptime (License): Likewise.
32682         * modules/strsep (License): Likewise.
32683         * modules/sys_select (License): Likewise.
32684         * modules/sys_socket (License): Likewise.
32685         * modules/sys_stat (License): Likewise.
32686         * modules/sys_time (License): Likewise.
32687         * modules/time (License): Likewise.
32688         * modules/time_r (License): Likewise.
32689         * modules/timegm (License): Likewise.
32690         * modules/unistd (License): Likewise.
32691         * modules/vsnprintf (License): Likewise.
32692         * modules/wctype (License): Likewise.
32693
32694 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32695
32696         * modules/argz (License): LGPLv2+.
32697
32698 2007-07-15  Karl Berry  <karl@gnu.org>
32699
32700         * doc/gnulib.texi: revise node structure per new fdl.texi.
32701
32702 2007-07-14  Bruno Haible  <bruno@clisp.org>
32703
32704         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
32705         the output file.
32706         * lib/uniname/uninames.h: Regenerated.
32707
32708 2007-07-14  Karl Berry  <karl@gnu.org>
32709
32710         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
32711         omitting sectioning and index commands.
32712
32713 2007-07-13  Bruno Haible  <bruno@clisp.org>
32714
32715         New gnulib-tool option --more-symlinks.
32716         * gnulib-tool (func_usage): Document --more-symlinks.
32717         (do_copyrights): New variable.
32718         Recognize option --more-symlinks.
32719         (func_import): Don't add a copyright notice transform to
32720         sed_transform_lib_file if do_copyrights is empty.
32721
32722 2007-07-13  Bruno Haible  <bruno@clisp.org>
32723
32724         * lib/vasnprintf.c (decimal_point_char): Define also if
32725         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
32726         && !NEED_PRINTF_DIRECTIVE_A.
32727         Reported by Clemens Koller <clemens.koller@anagramm.de> via
32728         Gary V. Vaughan <gary@gnu.org>.
32729
32730 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
32731
32732         * lib/inttypes_.h: Undo previous change, since it was fixed
32733         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
32734
32735 2007-07-13  Bruno Haible  <bruno@clisp.org>
32736
32737         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
32738         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
32739
32740 2007-07-13  Jim Meyering  <jim@meyering.net>
32741
32742         df: Don't fail for Tru64's "file-on-file mount".
32743         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
32744         so we fall through and use statfs instead.  Details here:
32745         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
32746         Reported by Albert Chin.
32747
32748 2007-07-13  Bruno Haible  <bruno@clisp.org>
32749
32750         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
32751         * modules/configmake (License): Likewise.
32752         * modules/gettext (License): Likewise.
32753         * modules/gettext-h (License): Likewise.
32754         * modules/include_next (License): Likewise.
32755         * modules/link-warning (License): Likewise.
32756         * modules/localcharset (License): Likewise.
32757         * modules/localename (License): Likewise.
32758         * modules/lock (License): Likewise.
32759         * modules/relocatable-lib-lgpl (License): Likewise.
32760         * modules/size_max (License): Likewise.
32761         * modules/vasnprintf (License): Likewise.
32762         * modules/wchar (License): Likewise.
32763         * modules/xsize (License): Likewise.
32764
32765 2007-07-13  Bruno Haible  <bruno@clisp.org>
32766
32767         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
32768         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
32769
32770 2007-07-12  Bruno Haible  <bruno@clisp.org>
32771
32772         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
32773         in the modules files.
32774
32775 2007-07-11  Karl Berry  <karl@gnu.org>
32776
32777         * MODULES.html.sh (func_module): use
32778          sed -e '\|^'"${includefile}"'$|d'
32779          instead of /.../d, to avoid errors on $includefile's containing /.
32780
32781 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
32782
32783         * gnulib-tool (func_import): Avoid duplication of --avoid
32784         statements
32785         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
32786         names to `_' in variable names.
32787
32788 2007-07-10  Eric Blake  <ebb9@byu.net>
32789
32790         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
32791         * NEWS: Document this change.
32792
32793 2007-07-08  Bruno Haible  <bruno@clisp.org>
32794
32795         Update to Unicode 5.0.
32796         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
32797         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
32798         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
32799         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
32800         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
32801         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
32802         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
32803         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
32804         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
32805         U+10A3F, U+1D242..U+1D244.
32806         (nonspacing_table_ind): Update.
32807         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
32808         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
32809
32810 2007-07-08  Bruno Haible  <bruno@clisp.org>
32811
32812         Update to Unicode 5.0.
32813         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
32814         code transform. Extend the name index field of unicode_name_to_code and
32815         unicode_code_to_name from 16 to 24 bits.
32816         * lib/uniname/uniname.c (unicode_character_name,
32817         unicode_name_character): Add the range 0x12xxx to the code transform.
32818         * lib/uniname/uninames.h: Regenerated.
32819         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
32820
32821 2007-07-07  Bruno Haible  <bruno@clisp.org>
32822
32823         * modules/wcwidth-tests: New file.
32824         * tests/test-wcwidth.c: New file.
32825
32826         Work around MacOS X wcwidth() bug.
32827         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
32828         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
32829         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
32830         original wcwidth in non-UTF-8 locales.
32831         * modules/wcwidth (Depends-on): Add localcharset, streq,
32832         uniwidth/width.
32833         * doc/functions/wcwidth.texi: Update.
32834
32835 2007-07-07  Bruno Haible  <bruno@clisp.org>
32836
32837         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
32838         (wcwidth): New declaration.
32839         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
32840         macros.
32841         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
32842         here. Prepare for creating <wchar.h> unconditionally.
32843         * modules/wchar (Depends-on): Add link-warning.
32844         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
32845         REPLACE_WCWIDTH, and GL_LINK_WARNING.
32846         * lib/wcwidth.h: Remove file.
32847         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
32848         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
32849         * modules/wcwidth (Files): Remove lib/wcwidth.h.
32850         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
32851         (Include): Replace wcwidth.h with <wchar.h>.
32852         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
32853         * lib/mbchar.h: Don't include wcwidth.h.
32854         * lib/mbswidth.c: Likewise.
32855         * NEWS: Mention the change.
32856
32857 2007-07-07  Bruno Haible  <bruno@clisp.org>
32858
32859         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
32860         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
32861         definition with an external declaration.
32862         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
32863         defined as a function. Remove AC_C_INLINE requirement.
32864         * modules/wcwidth (Files): Add lib/wcwidth.c.
32865         (Makefile.am): Remove redundant statement.
32866
32867 2007-07-07  Bruno Haible  <bruno@clisp.org>
32868
32869         * MODULES.html.sh (Unicode string functions): Add the new modules.
32870
32871         * tests/uniwidth/test-u32-strwidth.c: New file.
32872         * modules/uniwidth/u32-strwidth-tests: New file.
32873
32874         * lib/uniwidth/u32-strwidth.c: New file.
32875         * modules/uniwidth/u32-strwidth: New file.
32876
32877         * tests/uniwidth/test-u16-strwidth.c: New file.
32878         * modules/uniwidth/u16-strwidth-tests: New file.
32879
32880         * lib/uniwidth/u16-strwidth.c: New file.
32881         * modules/uniwidth/u16-strwidth: New file.
32882
32883         * tests/uniwidth/test-u8-strwidth.c: New file.
32884         * modules/uniwidth/u8-strwidth-tests: New file.
32885
32886         * lib/uniwidth/u8-strwidth.c: New file.
32887         * modules/uniwidth/u8-strwidth: New file.
32888
32889         * tests/uniwidth/test-u32-width.c: New file.
32890         * modules/uniwidth/u32-width-tests: New file.
32891
32892         * lib/uniwidth/u32-width.c: New file.
32893         * modules/uniwidth/u32-width: New file.
32894
32895         * tests/uniwidth/test-u16-width.c: New file.
32896         * modules/uniwidth/u16-width-tests: New file.
32897
32898         * lib/uniwidth/u16-width.c: New file.
32899         * modules/uniwidth/u16-width: New file.
32900
32901         * tests/uniwidth/test-u8-width.c: New file.
32902         * modules/uniwidth/u8-width-tests: New file.
32903
32904         * lib/uniwidth/u8-width.c: New file.
32905         * modules/uniwidth/u8-width: New file.
32906
32907         * tests/uniwidth/test-uc_width.c: New file.
32908         * modules/uniwidth/width-tests: New file.
32909
32910         * lib/uniwidth/width.c: New file, from GNU libiconv.
32911         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
32912         * modules/uniwidth/width: New file.
32913
32914         * lib/uniwidth.h: New file, from GNU libiconv.
32915         * modules/uniwidth/base: New file.
32916
32917 2007-07-07  Bruno Haible  <bruno@clisp.org>
32918
32919         * lib/uniname.h: New file, from GNU gettext.
32920         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
32921         * lib/uniname/uninames.h: New file, from GNU gettext.
32922         * lib/uniname/uniname.c: New file, from GNU gettext.
32923         * tests/uniname/test-uninames.sh: New file.
32924         * tests/uniname/test-uninames.c: New file, from GNU gettext.
32925         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
32926         * modules/uniname/base: New file.
32927         * modules/uniname/uniname: New file.
32928         * modules/uniname/uniname-tests: New file.
32929         * MODULES.html.sh (Unicode string functions): Add the new modules.
32930
32931 2007-07-06  Bruno Haible  <bruno@clisp.org>
32932
32933         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
32934
32935 2007-07-06  Bruno Haible  <bruno@clisp.org>
32936
32937         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
32938         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
32939         includes <cygwin/sys_time.h> which includes <sys/select.h> which
32940         include <sys/time.h>.
32941         Reported by Eric Blake.
32942
32943 2007-07-06  Eric Blake  <ebb9@byu.net>
32944
32945         Fix testing canonicalize on cygwin.
32946         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
32947         Revert patch from 2007-06-19.
32948         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
32949         canonicalize module is also in use.
32950         * tests/test-canonicalize.c: New file.
32951         * tests/test-canonicalize.sh: Likewise.
32952         * modules/canonicalize-tests: Likewise.
32953
32954 2007-07-06  Jim Meyering  <jim@meyering.net>
32955
32956         * lib/getugroups.c (getugroups): Detect getgrent failure.
32957         Adjust comment to reflect reality: this function may return -1.
32958
32959 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
32960
32961         * build-aux/bootstrap (TP_URL,get_translations): Update to use
32962         the new TP address.
32963         (usage): Fix typo
32964         (gnulib_mk): New variable.
32965
32966 2007-07-05  Jim Meyering  <jim@meyering.net>
32967
32968         Don't let endgrent clobber errno, no matter how improbable.
32969         * lib/getugroups.c (getugroups): Save and restore errno around
32970         endgrent call.
32971
32972         Close the group DB even when failing with 2^31 or more members.
32973         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
32974
32975 2007-07-04  Jim Meyering  <jim@meyering.net>
32976
32977         * lib/getugroups.h: New file.
32978         * lib/getugroups.c: Include "getugroups.h".
32979         Remove uses of "register" keyword.
32980         Move local variable, "cp", down into scope where used.
32981         Give "username" parameter the "const" attribute.
32982         * modules/getugroups (Files): Add lib/getugroups.h
32983
32984 2007-07-04  Karl Berry  <karl@gnu.org>
32985
32986         * MODULES.html.sh (func_all_modules): Complete rename of
32987         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
32988
32989 2007-07-02  Bruno Haible  <bruno@clisp.org>
32990
32991         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
32992         mode, when inttypes.h comes from gnulib.
32993         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
32994
32995 2007-07-02  Simon Josefsson  <simon@josefsson.org>
32996
32997         * NEWS: Mention lgpl module name change.
32998
32999         * modules/lgpl-2.1: Renamed from lgpl.
33000
33001         * NEWS: Mention gpl module name change.
33002
33003         * modules/gpl-3.0: New file, based on gpl-2.0.
33004
33005         * modules/gpl-2.0: Renamed from gpl.
33006
33007         * modules/gpl: Fix filename, doc/gpl.texi is now found at
33008         doc/gpl-2.0.texi.
33009
33010 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
33011
33012         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
33013         #define __STDC_LIMIT_MACROS temporarily while including
33014         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
33015         Problem reported by Joel E. Denny in
33016         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
33017
33018 2007-07-01  Bruno Haible  <bruno@clisp.org>
33019
33020         * lib/unistdio.h: New file.
33021         * lib/unistdio/u-asnprintf.h: New file.
33022         * lib/unistdio/u-asprintf.h: New file.
33023         * lib/unistdio/u-printf-args.c: New file.
33024         * lib/unistdio/u-printf-args.h: New file.
33025         * lib/unistdio/u-printf-parse.h: New file.
33026         * lib/unistdio/u-snprintf.h: New file.
33027         * lib/unistdio/u-sprintf.h: New file.
33028         * lib/unistdio/u-vasprintf.h: New file.
33029         * lib/unistdio/u-vsnprintf.h: New file.
33030         * lib/unistdio/u-vsprintf.h: New file.
33031         * lib/unistdio/ulc-asnprintf.c: New file.
33032         * lib/unistdio/ulc-asprintf.c: New file.
33033         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
33034         * lib/unistdio/ulc-printf-parse.c: New file.
33035         * lib/unistdio/ulc-snprintf.c: New file.
33036         * lib/unistdio/ulc-sprintf.c: New file.
33037         * lib/unistdio/ulc-vasnprintf.c: New file.
33038         * lib/unistdio/ulc-vasprintf.c: New file.
33039         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
33040         * lib/unistdio/ulc-vsnprintf.c: New file.
33041         * lib/unistdio/ulc-vsprintf.c: New file.
33042         * lib/unistdio/u8-asnprintf.c: New file.
33043         * lib/unistdio/u8-asprintf.c: New file.
33044         * lib/unistdio/u8-printf-parse.c: New file.
33045         * lib/unistdio/u8-snprintf.c: New file.
33046         * lib/unistdio/u8-sprintf.c: New file.
33047         * lib/unistdio/u8-vasnprintf.c: New file.
33048         * lib/unistdio/u8-vasprintf.c: New file.
33049         * lib/unistdio/u8-vsnprintf.c: New file.
33050         * lib/unistdio/u8-vsprintf.c: New file.
33051         * lib/unistdio/u8-u8-asnprintf.c: New file.
33052         * lib/unistdio/u8-u8-asprintf.c: New file.
33053         * lib/unistdio/u8-u8-snprintf.c: New file.
33054         * lib/unistdio/u8-u8-sprintf.c: New file.
33055         * lib/unistdio/u8-u8-vasnprintf.c: New file.
33056         * lib/unistdio/u8-u8-vasprintf.c: New file.
33057         * lib/unistdio/u8-u8-vsnprintf.c: New file.
33058         * lib/unistdio/u8-u8-vsprintf.c: New file.
33059         * lib/unistdio/u16-asnprintf.c: New file.
33060         * lib/unistdio/u16-asprintf.c: New file.
33061         * lib/unistdio/u16-printf-parse.c: New file.
33062         * lib/unistdio/u16-snprintf.c: New file.
33063         * lib/unistdio/u16-sprintf.c: New file.
33064         * lib/unistdio/u16-vasnprintf.c: New file.
33065         * lib/unistdio/u16-vasprintf.c: New file.
33066         * lib/unistdio/u16-vsnprintf.c: New file.
33067         * lib/unistdio/u16-vsprintf.c: New file.
33068         * lib/unistdio/u16-u16-asnprintf.c: New file.
33069         * lib/unistdio/u16-u16-asprintf.c: New file.
33070         * lib/unistdio/u16-u16-snprintf.c: New file.
33071         * lib/unistdio/u16-u16-sprintf.c: New file.
33072         * lib/unistdio/u16-u16-vasnprintf.c: New file.
33073         * lib/unistdio/u16-u16-vasprintf.c: New file.
33074         * lib/unistdio/u16-u16-vsnprintf.c: New file.
33075         * lib/unistdio/u16-u16-vsprintf.c: New file.
33076         * lib/unistdio/u32-asnprintf.c: New file.
33077         * lib/unistdio/u32-asprintf.c: New file.
33078         * lib/unistdio/u32-printf-parse.c: New file.
33079         * lib/unistdio/u32-snprintf.c: New file.
33080         * lib/unistdio/u32-sprintf.c: New file.
33081         * lib/unistdio/u32-vasnprintf.c: New file.
33082         * lib/unistdio/u32-vasprintf.c: New file.
33083         * lib/unistdio/u32-vsnprintf.c: New file.
33084         * lib/unistdio/u32-vsprintf.c: New file.
33085         * lib/unistdio/u32-u32-asnprintf.c: New file.
33086         * lib/unistdio/u32-u32-asprintf.c: New file.
33087         * lib/unistdio/u32-u32-snprintf.c: New file.
33088         * lib/unistdio/u32-u32-sprintf.c: New file.
33089         * lib/unistdio/u32-u32-vasnprintf.c: New file.
33090         * lib/unistdio/u32-u32-vasprintf.c: New file.
33091         * lib/unistdio/u32-u32-vsnprintf.c: New file.
33092         * lib/unistdio/u32-u32-vsprintf.c: New file.
33093         * tests/unistdio/test-ulc-asnprintf1.c: New file.
33094         * tests/unistdio/test-ulc-asnprintf1.h: New file.
33095         * tests/unistdio/test-ulc-printf1.h: New file.
33096         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
33097         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
33098         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
33099         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
33100         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
33101         * tests/unistdio/test-ulc-vasprintf1.c: New file.
33102         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
33103         * tests/unistdio/test-ulc-vsprintf1.c: New file.
33104         * tests/unistdio/test-u8-asnprintf1.c: New file.
33105         * tests/unistdio/test-u8-asnprintf1.h: New file.
33106         * tests/unistdio/test-u8-printf1.h: New file.
33107         * tests/unistdio/test-u8-vasnprintf1.c: New file.
33108         * tests/unistdio/test-u8-vasnprintf2.c: New file.
33109         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
33110         * tests/unistdio/test-u8-vasnprintf3.c: New file.
33111         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
33112         * tests/unistdio/test-u8-vasprintf1.c: New file.
33113         * tests/unistdio/test-u8-vsnprintf1.c: New file.
33114         * tests/unistdio/test-u8-vsprintf1.c: New file.
33115         * tests/unistdio/test-u16-asnprintf1.c: New file.
33116         * tests/unistdio/test-u16-asnprintf1.h: New file.
33117         * tests/unistdio/test-u16-printf1.h: New file.
33118         * tests/unistdio/test-u16-vasnprintf1.c: New file.
33119         * tests/unistdio/test-u16-vasnprintf2.c: New file.
33120         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
33121         * tests/unistdio/test-u16-vasnprintf3.c: New file.
33122         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
33123         * tests/unistdio/test-u16-vasprintf1.c: New file.
33124         * tests/unistdio/test-u16-vsnprintf1.c: New file.
33125         * tests/unistdio/test-u16-vsprintf1.c: New file.
33126         * tests/unistdio/test-u32-asnprintf1.c: New file.
33127         * tests/unistdio/test-u32-asnprintf1.h: New file.
33128         * tests/unistdio/test-u32-printf1.h: New file.
33129         * tests/unistdio/test-u32-vasnprintf1.c: New file.
33130         * tests/unistdio/test-u32-vasnprintf2.c: New file.
33131         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
33132         * tests/unistdio/test-u32-vasnprintf3.c: New file.
33133         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
33134         * tests/unistdio/test-u32-vasprintf1.c: New file.
33135         * tests/unistdio/test-u32-vsnprintf1.c: New file.
33136         * tests/unistdio/test-u32-vsprintf1.c: New file.
33137         * modules/unistdio/base: New file.
33138         * modules/unistdio/u-printf-args: New file.
33139         * modules/unistdio/ulc-asnprintf: New file.
33140         * modules/unistdio/ulc-asprintf: New file.
33141         * modules/unistdio/ulc-fprintf: New file.
33142         * modules/unistdio/ulc-printf-parse: New file.
33143         * modules/unistdio/ulc-snprintf: New file.
33144         * modules/unistdio/ulc-sprintf: New file.
33145         * modules/unistdio/ulc-vasnprintf: New file.
33146         * modules/unistdio/ulc-vasprintf: New file.
33147         * modules/unistdio/ulc-vfprintf: New file.
33148         * modules/unistdio/ulc-vsnprintf: New file.
33149         * modules/unistdio/ulc-vsprintf: New file.
33150         * modules/unistdio/u8-asnprintf: New file.
33151         * modules/unistdio/u8-asprintf: New file.
33152         * modules/unistdio/u8-printf-parse: New file.
33153         * modules/unistdio/u8-snprintf: New file.
33154         * modules/unistdio/u8-sprintf: New file.
33155         * modules/unistdio/u8-vasnprintf: New file.
33156         * modules/unistdio/u8-vasprintf: New file.
33157         * modules/unistdio/u8-vsnprintf: New file.
33158         * modules/unistdio/u8-vsprintf: New file.
33159         * modules/unistdio/u8-u8-asnprintf: New file.
33160         * modules/unistdio/u8-u8-asprintf: New file.
33161         * modules/unistdio/u8-u8-snprintf: New file.
33162         * modules/unistdio/u8-u8-sprintf: New file.
33163         * modules/unistdio/u8-u8-vasnprintf: New file.
33164         * modules/unistdio/u8-u8-vasprintf: New file.
33165         * modules/unistdio/u8-u8-vsnprintf: New file.
33166         * modules/unistdio/u8-u8-vsprintf: New file.
33167         * modules/unistdio/u16-asnprintf: New file.
33168         * modules/unistdio/u16-asprintf: New file.
33169         * modules/unistdio/u16-printf-parse: New file.
33170         * modules/unistdio/u16-snprintf: New file.
33171         * modules/unistdio/u16-sprintf: New file.
33172         * modules/unistdio/u16-vasnprintf: New file.
33173         * modules/unistdio/u16-vasprintf: New file.
33174         * modules/unistdio/u16-vsnprintf: New file.
33175         * modules/unistdio/u16-vsprintf: New file.
33176         * modules/unistdio/u16-u16-asnprintf: New file.
33177         * modules/unistdio/u16-u16-asprintf: New file.
33178         * modules/unistdio/u16-u16-snprintf: New file.
33179         * modules/unistdio/u16-u16-sprintf: New file.
33180         * modules/unistdio/u16-u16-vasnprintf: New file.
33181         * modules/unistdio/u16-u16-vasprintf: New file.
33182         * modules/unistdio/u16-u16-vsnprintf: New file.
33183         * modules/unistdio/u16-u16-vsprintf: New file.
33184         * modules/unistdio/u32-asnprintf: New file.
33185         * modules/unistdio/u32-asprintf: New file.
33186         * modules/unistdio/u32-printf-parse: New file.
33187         * modules/unistdio/u32-snprintf: New file.
33188         * modules/unistdio/u32-sprintf: New file.
33189         * modules/unistdio/u32-vasnprintf: New file.
33190         * modules/unistdio/u32-vasprintf: New file.
33191         * modules/unistdio/u32-vsnprintf: New file.
33192         * modules/unistdio/u32-vsprintf: New file.
33193         * modules/unistdio/u32-u32-asnprintf: New file.
33194         * modules/unistdio/u32-u32-asprintf: New file.
33195         * modules/unistdio/u32-u32-snprintf: New file.
33196         * modules/unistdio/u32-u32-sprintf: New file.
33197         * modules/unistdio/u32-u32-vasnprintf: New file.
33198         * modules/unistdio/u32-u32-vasprintf: New file.
33199         * modules/unistdio/u32-u32-vsnprintf: New file.
33200         * modules/unistdio/u32-u32-vsprintf: New file.
33201         * modules/unistdio/ulc-asnprintf-tests: New file.
33202         * modules/unistdio/ulc-vasnprintf-tests: New file.
33203         * modules/unistdio/ulc-vasprintf-tests: New file.
33204         * modules/unistdio/ulc-vsnprintf-tests: New file.
33205         * modules/unistdio/ulc-vsprintf-tests: New file.
33206         * modules/unistdio/u8-asnprintf-tests: New file.
33207         * modules/unistdio/u8-vasnprintf-tests: New file.
33208         * modules/unistdio/u8-vasprintf-tests: New file.
33209         * modules/unistdio/u8-vsnprintf-tests: New file.
33210         * modules/unistdio/u8-vsprintf-tests: New file.
33211         * modules/unistdio/u16-asnprintf-tests: New file.
33212         * modules/unistdio/u16-vasnprintf-tests: New file.
33213         * modules/unistdio/u16-vasprintf-tests: New file.
33214         * modules/unistdio/u16-vsnprintf-tests: New file.
33215         * modules/unistdio/u16-vsprintf-tests: New file.
33216         * modules/unistdio/u32-asnprintf-tests: New file.
33217         * modules/unistdio/u32-vasnprintf-tests: New file.
33218         * modules/unistdio/u32-vasprintf-tests: New file.
33219         * modules/unistdio/u32-vsnprintf-tests: New file.
33220         * modules/unistdio/u32-vsprintf-tests: New file.
33221         * MODULES.html.sh (Unicode string functions): Add the new modules.
33222
33223 2007-07-01  Bruno Haible  <bruno@clisp.org>
33224
33225         * lib/sprintf.c (sprintf): Limit the available length estimation,
33226         to avoid address wraparound.
33227         * lib/vsprintf.c (vsprintf): Likewise.
33228         * modules/sprintf-posix (Dependencies): Add stdint.
33229         * modules/vsprintf-posix (Dependencies): Likewise.
33230
33231 2007-07-01  Bruno Haible  <bruno@clisp.org>
33232
33233         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
33234         Windows PATH as well. Conservative double-quoting. Comments.
33235
33236 2007-07-01  Bruno Haible  <bruno@clisp.org>
33237             Eric Blake  <ebb9@byu.net>
33238             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33239
33240         * gnulib-tool (self_abspathname): Fix algorithm to cope with
33241         empty components in $PATH, denoting '.'.
33242
33243 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33244
33245         * gnulib-tool: Fix indentation.
33246         (func_create_megatestdir): Likewise.
33247         Report by Bruno Haible.
33248
33249 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33250
33251         Sync from Automake.
33252         * build-aux/gnupload: Fix shell portability issues with for loops.
33253         Report by Karl Berry.
33254
33255 2007-06-29  Simon Josefsson  <simon@josefsson.org>
33256
33257         * build-aux/maint.mk (POURL): Use translationproject.org.
33258
33259 2007-06-27  Simon Josefsson  <simon@josefsson.org>
33260             Bruno Haible  <bruno@clisp.org>
33261
33262         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
33263         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
33264         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
33265         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
33266         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
33267
33268 2007-06-27  Bruno Haible  <bruno@clisp.org>
33269
33270         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
33271         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
33272
33273 2007-06-26  Karl Berry  <karl@gnu.org>
33274
33275         * MODULES.html.sh: remove xreadlink-with-size.
33276
33277 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33278
33279         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
33280         method that I hope also handles the double-include problem noted
33281         by Bruno Haible in
33282         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
33283
33284 2007-06-23  Bruno Haible  <bruno@clisp.org>
33285
33286         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
33287         Don't let the 'mostlyclean' target fail if the last subdirectory could
33288         not be removed.
33289         Reported by Karl Berry.
33290
33291 2007-06-23  Bruno Haible  <bruno@clisp.org>
33292
33293         * gnulib-tool (echo): Add a speedier workaround for ksh.
33294         * tests/test-echo.sh: Likewise.
33295
33296 2007-06-23  Bruno Haible  <bruno@clisp.org>
33297
33298         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
33299         * tests/test-echo.sh: Likewise.
33300
33301 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33302
33303         * gnulib-tool (IFS): Initialize early, so we don't set it to
33304         empty later.
33305         (self_abspathname): Rewrite algorithm to set it, reindent.
33306         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
33307         (func_create_megatestdir): Merge some sed scripts.
33308
33309 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33310
33311         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
33312         exposed by Sun Studio 11 cc on Solaris 8.
33313
33314 2007-06-22  Bruno Haible  <bruno@clisp.org>
33315
33316         * gnulib-tool (echo): Ensure the echo primitive does not interpret
33317         backslashes.
33318         * tests/test-echo.sh: New file.
33319
33320 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33321
33322         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
33323         simplify `sed_replace_build_aux' scripts, they are portable but
33324         echoing them with `echo' is not.
33325         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
33326
33327 2007-06-21  Karl Berry  <karl@gnu.org>
33328
33329         * config/srclist.txt: guess we can't handle the licenses via
33330         srclist at the moment.
33331
33332 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
33333
33334         * MODULES.html.sh: Add include_next.
33335         * modules/include_next: New file.
33336
33337 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
33338
33339         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
33340         INCLUDE_NEXT.
33341         (gl_CHECK_NEXT_HEADERS): New macro.
33342         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
33343         the obsolescent gl_ABSOLUTE_HEADER.
33344         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
33345         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
33346         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
33347         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
33348         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
33349         * m4/math_h.m4 (gl_MATH_H): Likewise.
33350         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
33351         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
33352         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
33353         * m4/stdint.m4 (gl_STDINT_H): Likewise.
33354         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
33355         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
33356         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
33357         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
33358         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
33359         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
33360         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
33361         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
33362         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
33363         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
33364         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
33365         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33366         * m4/inttypes.m4 (gl_INTTYPES_H): Define
33367         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
33368         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
33369         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
33370         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
33371         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
33372         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
33373         * lib/float_.h: Likewise.
33374         * lib/inttypes_.h: Likewise.
33375         * lib/math_.h: Likewise.
33376         * lib/search_.h: Likewise.
33377         * lib/signal_.h: Likewise.
33378         * lib/stdint_.h: Likewise.
33379         * lib/stdio_.h: Likewise.
33380         * lib/stdlib_.h: Likewise.
33381         * lib/string_.h: Likewise.
33382         * lib/sys_stat_.h: Likewise.
33383         * lib/sys_time_.h: Likewise.
33384         * lib/time_.h: Likewise.
33385         * lib/unistd_.h: Likewise.
33386         * lib/wchar_.h: Likewise.
33387         * lib/wctype_.h: Likewise.
33388         * lib/dirent_.h: Likewise.
33389         * lib/iconv_.h: Likewise.
33390         * lib/locale_.h: Likewise.
33391         * lib/netinet_in_.h: Likewise.
33392         * lib/sys_select_.h: Likewise.
33393         * lib/sys_socket_.h: Likewise.
33394         * lib/sysexits_.h: Likewise.
33395         * modules/fcntl (Depends-on): Depend on include_next, not
33396         absolute_header.
33397         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
33398         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
33399         * modules/fchdir: Likewise.
33400         * modules/float: Likewise.
33401         * modules/iconv_open: Likewise.
33402         * modules/inttypes: Likewise.
33403         * modules/locale: Likewise.
33404         * modules/math: Likewise.
33405         * modules/netinet_in: Likewise.
33406         * modules/search: Likewise.
33407         * modules/signal: Likewise.
33408         * modules/stdint: Likewise.
33409         * modules/stdio: Likewise.
33410         * modules/stdlib: Likewise.
33411         * modules/string: Likewise.
33412         * modules/sys_select: Likewise.
33413         * modules/sys_socket: Likewise.
33414         * modules/sys_stat: Likewise.
33415         * modules/sys_time: Likewise.
33416         * modules/sysexits: Likewise.
33417         * modules/time: Likewise.
33418         * modules/unistd: Likewise.
33419         * modules/wchar: Likewise.
33420         * modules/wctype: Likewise.
33421         * modules/sys_stat: Change maintainer to "all".
33422         * modules/unistd: Likewise.
33423
33424 2007-06-20  Karl Berry  <karl@gnu.org>
33425
33426         * config/srclist.txt: track www changes in license files.
33427
33428 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
33429
33430         * build-aux/bootstrap: Remove stray dot.
33431         Make sure build_aux settings are honored when linking
33432         gnulib_extra_files.
33433
33434 2007-06-19  Eric Blake  <ebb9@byu.net>
33435
33436         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
33437         Allow compilation on cygwin.
33438
33439 2007-06-19  Jim Meyering  <jim@meyering.net>
33440
33441         xreadlink-with-size: Remove module.  No longer used.
33442         Ex-callers now use xreadlink or mreadlink-with-size.
33443         * modules/xreadlink-with-size: Remove module.
33444         * lib/xreadlink-with-size.c: Remove file.
33445         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
33446         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
33447         just before the function definition *is* accurate.
33448
33449         Eliminate one way canonicalize_filename_mode could exit.
33450         * lib/canonicalize.c (canonicalize_filename_mode):
33451         Use mreadlink_with_size, not xreadlink_with_size.
33452
33453 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
33454
33455         Detect porting problems to FreeBSD/arm, which has time_t wider than
33456         long int.  Original problem reported for GNU diff by Xin Li in
33457         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
33458         * modules/getdate (Depends-on): Add intprops, verify.
33459         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
33460         is an integer type no wider than long int.
33461
33462 2007-06-18  Jim Meyering  <jim@meyering.net>
33463
33464         New module: mreadlink-with-size.
33465         * MODULES.html.sh: Add mreadlink-with-size.
33466         * modules/mreadlink-with-size: New module
33467         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
33468         not xreadlink-with-size.
33469         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
33470
33471 2007-06-16  Bruno Haible  <bruno@clisp.org>
33472
33473         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
33474         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
33475         Reported by Gary V. Vaughan <gary@gnu.org>.
33476
33477 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
33478
33479         Revamp lchown so that it lives in unistd.h where it belongs.
33480         * lib/lchown.h: Remove.
33481         * lib/dirchownmod.c: Don't include lib/lchown.h.
33482         * lib/fchownat.c: Likewise.
33483         * lib/openat.c: Likewise.
33484         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
33485         does not follow symlinks.
33486         (EOPNOTSUPP): Define if not defined.
33487         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
33488         is defined to 0.
33489         (lchown): New decl.
33490         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
33491         Do not check for lchown decl.
33492         Set REPLACE_LCHOWN.
33493         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
33494         REPLACE_LCHOWN.
33495         * modules/chown: Make it clear it follows symlinks.
33496         * modules/lchown: Make it clear it doesn't follow symlinks.
33497         (Files): Remove lib/lchown.h
33498         (Depends-on): Add unistd.
33499         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
33500         (Include): Include <unistd.h>, not "lchown.h".
33501         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
33502         REPLACE_LCHOWN.
33503
33504 2007-06-15  Jim Meyering  <jim@meyering.net>
33505
33506         Change license (GPL to LGPL) of fsusage and dependents.
33507         * modules/fsusage (License): Change to LGPL.
33508         * modules/full-read (License): Likewise.
33509         * modules/full-write (License): Likewise.
33510         * modules/safe-read (License): Likewise.
33511         * modules/safe-write (License): Likewise.
33512
33513 2007-06-14  Ben Pfaff  <blp@gnu.org>
33514
33515         Missing part of allocsa -> malloca transition.
33516         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
33517         gl_MALLOCA.
33518
33519 2007-06-12  Bruno Haible  <bruno@clisp.org>
33520
33521         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
33522         to ia64, x86_64, i386.
33523         Reported by Eric Blake.
33524
33525 2007-06-12  Bruno Haible  <bruno@clisp.org>
33526
33527         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
33528         cross-compiling to x86_64.
33529
33530 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
33531
33532         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
33533         glitch reported by Ralf Wildenhues in
33534         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
33535
33536         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
33537         Vin Shelton.
33538
33539 2007-06-11  Bruno Haible  <bruno@clisp.org>
33540
33541         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
33542         replacement string.
33543         Reported by Eric Blake.
33544
33545 2007-06-10  Bruno Haible  <bruno@clisp.org>
33546
33547         Prepare vasnprintf code for use with Unicode strings.
33548         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
33549         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
33550         TYPE_U32_STRING.
33551         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
33552         a_u32_string variants.
33553         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
33554         * lib/printf-args.c: Don't include config.h and the specification
33555         header if PRINTF_FETCHARGS is already defined.
33556         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
33557         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
33558         TYPE_U16_STRING, TYPE_U32_STRING.
33559         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
33560         u16_directive, u16_directives, u32_directive, u32_directives): New
33561         types.
33562         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
33563         New declarations.
33564         * lib/printf-parse.c: Don't include config.h and the specification
33565         header if PRINTF_PARSE is already defined. Eliminate the set of
33566         parameters for WIDE_CHAR_VERSION; the user of this file must provide
33567         them now. Include c-ctype.h.
33568         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
33569         directive and CHAR_T_ONLY_ASCII.
33570         * lib/vasnprintf.c: Don't include config.h and the specification header
33571         if VASNPRINTF is already defined.
33572         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
33573         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
33574         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
33575         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
33576         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
33577         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
33578         code accordingly.
33579         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
33580         pad_ourselves also in this case, with the 'c' and 's' directives, and
33581         with a different notion of "width".
33582         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
33583
33584 2007-06-10  Bruno Haible  <bruno@clisp.org>
33585
33586         * modules/unistr/u32-mbsnlen: New file.
33587         * lib/unistr/u32-mbsnlen.c: New file.
33588
33589         * modules/unistr/u16-mbsnlen: New file.
33590         * lib/unistr/u16-mbsnlen.c: New file.
33591
33592         * modules/unistr/u8-mbsnlen: New file.
33593         * lib/unistr/u8-mbsnlen.c: New file.
33594
33595         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
33596         declarations.
33597
33598 2007-06-10  Bruno Haible  <bruno@clisp.org>
33599
33600         * lib/string_.h (mbsnlen): New declaration.
33601         * lib/mbsnlen.c: New file.
33602         * m4/mbsnlen.m4: New file.
33603         * modules/mbsnlen: New file.
33604         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
33605         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
33606         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
33607
33608 2007-06-10  Bruno Haible  <bruno@clisp.org>
33609
33610         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
33611
33612 2007-06-10  Bruno Haible  <bruno@clisp.org>
33613
33614         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
33615         * lib/mbuiter.h: Likewise.
33616
33617 2007-06-10  Bruno Haible  <bruno@clisp.org>
33618
33619         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
33620         declaration.
33621
33622 2007-06-10  Karl Berry  <karl@gnu.org>
33623
33624         * config/srclist.txt: remove gettext entries, Bruno prefers
33625         to update individually.
33626
33627 2007-06-10  Bruno Haible  <bruno@clisp.org>
33628
33629         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
33630         'maxlen'. Ensure only length + width bytes are allocated, not
33631         length + 1 + width.
33632
33633 2007-06-09  Bruno Haible  <bruno@clisp.org>
33634
33635         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
33636         (CHAR_T): Remove macro.
33637         (VASNPRINTF): Update.
33638
33639 2007-06-09  Bruno Haible  <bruno@clisp.org>
33640
33641         * MODULES.html.sh (Unicode string functions): Add the new modules.
33642
33643         * modules/uniconv/u32-conv-to-enc: New file.
33644         * lib/uniconv/u32-conv-to-enc.c: New file.
33645         * modules/uniconv/u32-conv-to-enc-tests: New file.
33646         * tests/uniconv/test-u32-conv-to-enc.c: New file.
33647
33648         * modules/uniconv/u16-conv-to-enc: New file.
33649         * lib/uniconv/u16-conv-to-enc.c: New file.
33650         * lib/uniconv/u-conv-to-enc.h: New file.
33651         * modules/uniconv/u16-conv-to-enc-tests: New file.
33652         * tests/uniconv/test-u16-conv-to-enc.c: New file.
33653
33654         * modules/uniconv/u8-conv-to-enc: New file.
33655         * lib/uniconv/u8-conv-to-enc.c: New file.
33656         * modules/uniconv/u8-conv-to-enc-tests: New file.
33657         * tests/uniconv/test-u8-conv-to-enc.c: New file.
33658
33659         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
33660         u32_conv_to_encoding): New declarations.
33661
33662 2007-06-09  Bruno Haible  <bruno@clisp.org>
33663
33664         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
33665
33666 2007-06-09  Bruno Haible  <bruno@clisp.org>
33667
33668         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
33669         * modules/malloca: Renamed from modules/allocsa, updated.
33670         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
33671         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
33672         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
33673         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
33674         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
33675         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
33676         * modules/xmalloca: Renamed from modules/xallocsa, updated.
33677         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
33678         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
33679         * modules/c-strcasestr (Depends-on): Update.
33680         * lib/c-strcasestr.c: Update.
33681         * modules/c-strstr (Depends-on): Update.
33682         * lib/c-strstr.c: Update.
33683         * modules/canonicalize-lgpl (Depends-on): Update.
33684         * lib/canonicalize-lgpl.c: Update.
33685         * modules/clean-temp (Depends-on): Update.
33686         * lib/clean-temp.c: Update.
33687         * modules/csharpcomp (Depends-on): Update.
33688         * lib/csharpcomp.c: Update.
33689         * modules/csharpexec (Depends-on): Update.
33690         * lib/csharpexec.c: Update.
33691         * modules/javacomp (Depends-on): Update.
33692         * lib/javacomp.c: Update.
33693         * modules/javaexec (Depends-on): Update.
33694         * lib/javaexec.c: Update.
33695         * modules/mbscasestr (Depends-on): Update.
33696         * lib/mbscasestr.c: Update.
33697         * modules/mbsstr (Depends-on): Update.
33698         * lib/mbsstr.c: Update.
33699         * modules/setenv (Depends-on): Update.
33700         * lib/setenv.c: Update.
33701         * modules/strcasestr (Depends-on): Update.
33702         * lib/strcasestr.c: Update.
33703         * modules/striconveha (Depends-on): Update.
33704         * lib/striconveha.c: Update.
33705         * modules/relocatable-prog-wrapper (Files): Update.
33706         * lib/relocwrapper.c: Update.
33707         * build-aux/install-reloc: Update.
33708         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
33709
33710 2007-06-08  Bruno Haible  <bruno@clisp.org>
33711
33712         Port to uClibc.
33713         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
33714         * lib/fpurge.c (fpurge): Likewise.
33715         * lib/freading.c (freading): Likewise.
33716         * lib/fseeko.c (rpl_fseeko): Likewise.
33717         * lib/fseterr.c (fseterr): Likewise.
33718         * lib/fwriting.c (fwriting): Likewise.
33719         * tests/test-fflush.c (main): Avoid a failure on uClibc.
33720
33721 2007-06-08  Bruno Haible  <bruno@clisp.org>
33722
33723         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
33724         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
33725         * modules/gettext (Files): Add m4/intlmacosx.m4.
33726
33727 2007-06-07  Bruno Haible  <bruno@clisp.org>
33728
33729         * modules/localename-tests: New file.
33730         * tests/test-localename.c: New file.
33731
33732         New module 'localename'.
33733         * lib/localename.h: New file.
33734         * lib/localename.c: New file, from GNU gettext.
33735         * m4/localename.m4: New file.
33736         * modules/localename: New file.
33737
33738 2007-06-07  Bruno Haible  <bruno@clisp.org>
33739
33740         Work around the lack of <wchar.h> on some builds of uClibc.
33741         * doc/headers/wchar.texi: Update.
33742         * lib/wchar_.h: Include <wchar.h> only if it exists.
33743         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
33744         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
33745         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
33746         doesn't exist.
33747         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
33748         * modules/mbfile (Depends-on): Add wchar.
33749         * modules/mbiter (Depends-on): Likewise.
33750         * modules/mbuiter (Depends-on): Likewise.
33751         Reported by Simon Josefsson.
33752
33753 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
33754
33755         Work around problem reported by Steven M. Schweda in
33756         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
33757         Tru64 5.1B with the Compaq compiler environment installed declares
33758         an 'isblank' function but does not define it in the C library.
33759         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
33760         * lib/regex_internal.h (isblank): Likewise.
33761         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
33762         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
33763
33764 2007-06-05  Bruno Haible  <bruno@clisp.org>
33765
33766         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
33767         ia64.
33768         * modules/printf-safe: New file.
33769         * modules/fprintf-posix (Depends-on): Add printf-safe.
33770         * modules/printf-posix (Depends-on): Likewise.
33771         * modules/snprintf-posix (Depends-on): Likewise.
33772         * modules/sprintf-posix (Depends-on): Likewise.
33773         * modules/vasnprintf-posix (Depends-on): Likewise.
33774         * modules/vasprintf-posix (Depends-on): Likewise.
33775         * modules/vfprintf-posix (Depends-on): Likewise.
33776         * modules/vprintf-posix (Depends-on): Likewise.
33777         * modules/vsnprintf-posix (Depends-on): Likewise.
33778         * modules/vsprintf-posix (Depends-on): Likewise.
33779         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
33780         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
33781         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
33782         "no" on i386, x86_64, ia64.
33783         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
33784         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33785         on i386, x86_64, ia64.
33786         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
33787         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33788         on i386, x86_64, ia64.
33789         * tests/test-vasnprintf-posix.c: Include float.h.
33790         (LDBL80_WORDS): New macro.
33791         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33792         on i386, x86_64, ia64.
33793         * tests/test-vasprintf-posix.c: Include float.h.
33794         (LDBL80_WORDS): New macro.
33795         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
33796         on i386, x86_64, ia64.
33797         * tests/test-snprintf-posix.c: Include float.h.
33798         * tests/test-sprintf-posix.c: Likewise.
33799         * tests/test-vsnprintf-posix.c: Likewise.
33800         * tests/test-vsprintf-posix.c: Likewise.
33801
33802 2007-06-05  Bruno Haible  <bruno@clisp.org>
33803
33804         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
33805         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
33806         non-IEEE numbers on i386, x86_64, ia64.
33807         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
33808         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
33809         * tests/test-isnanl.h: Include float.h.
33810         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
33811
33812 2007-06-05  Bruno Haible  <bruno@clisp.org>
33813
33814         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
33815         also the %a / %A. Handle the %a / %A code before this extra handling.
33816
33817 2007-06-05  Bruno Haible  <bruno@clisp.org>
33818
33819         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
33820         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
33821
33822 2007-06-05  Bruno Haible  <bruno@clisp.org>
33823
33824         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
33825         typo in variable name.
33826
33827 2007-06-05  Eric Blake  <ebb9@byu.net>
33828
33829         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
33830         Reported by Simon Josefsson.
33831
33832 2007-06-04  Bruno Haible  <bruno@clisp.org>
33833
33834         Avoid test failures on some PowerPC platforms.
33835         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
33836         Define differently for PowerPC.
33837         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
33838         Reported by Gary V. Vaughan <gary@gnu.org>.
33839
33840 2007-06-02  Bruno Haible  <bruno@clisp.org>
33841
33842         Fix test-stdint failure on FreeBSD/ia64.
33843         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
33844         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
33845         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
33846         * doc/headers/stdint.texi: Update.
33847
33848 2007-06-01  Bruno Haible  <bruno@clisp.org>
33849
33850         * tests/test-binary-io.c (main): Pass a third argument to open().
33851         Reported by Gary V. Vaughan <gary@gnu.org>.
33852
33853 2007-06-01  Bruno Haible  <bruno@clisp.org>
33854
33855         * doc/functions/frexpl.texi: Update for mingw.
33856
33857 2007-06-01  Bruno Haible  <bruno@clisp.org>
33858
33859         * tests/test-lseek.c (main): Disable test of errno for invalid third
33860         argument.
33861         * doc/functions/lseek.texi: Update.
33862         Reported by Gary V. Vaughan <gary@gnu.org>.
33863
33864 2007-05-28  Bruno Haible  <bruno@clisp.org>
33865
33866         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
33867
33868 2007-05-31  Eric Blake  <ebb9@byu.net>
33869
33870         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
33871         cross compiling.
33872
33873 2007-05-30  Eric Blake  <ebb9@byu.net>
33874         and Bruno Haible  <bruno@clisp.org>
33875
33876         Work around mingw test failures exposed by m4-1.4.9b.
33877         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
33878         * tests/test-unistd.c: Disable uid_t and git_t tests for the
33879         moment.
33880
33881 2007-05-30  Bruno Haible  <bruno@clisp.org>
33882
33883         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
33884         assuming that they are closed. Needed on HP-UX 11.
33885
33886 2007-05-29  Bruno Haible  <bruno@clisp.org>
33887
33888         Fix a problem with #include_next.
33889         * lib/dirent_.h: Split the double-inclusion guard.
33890         * lib/fcntl_.h: Likewise.
33891         * lib/float_.h: Likewise.
33892         * lib/iconv_.h: Likewise.
33893         * lib/inttypes_.h: Likewise.
33894         * lib/locale_.h: Likewise.
33895         * lib/math_.h: Likewise.
33896         * lib/netinet_in_.h: Likewise.
33897         * lib/search_.h: Likewise.
33898         * lib/signal_.h: Likewise.
33899         * lib/stdint_.h: Likewise.
33900         * lib/stdio_.h: Likewise.
33901         * lib/stdlib_.h: Likewise.
33902         * lib/string_.h: Likewise.
33903         * lib/sys_select_.h: Likewise.
33904         * lib/sys_socket_.h: Likewise.
33905         * lib/sys_stat_.h: Likewise.
33906         * lib/sys_time_.h: Likewise.
33907         * lib/sysexits_.h: Likewise.
33908         * lib/time_.h: Likewise.
33909         * lib/unistd_.h: Likewise.
33910         * lib/wchar_.h: Likewise.
33911         * lib/wctype_.h: Likewise.
33912
33913 2007-05-29  Bruno Haible  <bruno@clisp.org>
33914
33915         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
33916         for the moment.
33917
33918 2007-05-29  Bruno Haible  <bruno@clisp.org>
33919
33920         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
33921         invocation.
33922         Reported by Eric Blake.
33923
33924 2007-05-29  Bruno Haible  <bruno@clisp.org>
33925
33926         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
33927         compiling case.
33928
33929 2007-05-29  Eric Blake  <ebb9@byu.net>
33930             Bruno Haible  <bruno@clisp.org>
33931
33932         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
33933         cross compiles.
33934
33935 2007-05-28  Eric Blake  <ebb9@byu.net>
33936
33937         * modules/closein-tests (test_closein_LDADD): Support test on
33938         cygwin with libtool.
33939
33940 2007-05-28  Bruno Haible  <bruno@clisp.org>
33941
33942         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
33943         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
33944         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
33945         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
33946         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
33947         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
33948         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
33949         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
33950         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
33951
33952 2007-05-28  Eric Blake  <ebb9@byu.net>
33953
33954         Unconditionally include <config.h> in unit tests.
33955         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
33956         * tests/test-allocsa.c, tests/test-arcfour.c,
33957         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
33958         tests/test-array_list.c, tests/test-array_oset.c,
33959         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
33960         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
33961         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
33962         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
33963         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
33964         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
33965         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
33966         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
33967         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
33968         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
33969         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
33970         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
33971         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
33972         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
33973         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
33974         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
33975         test-md5.c, test-memmem.c, test-printf-posix.c,
33976         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
33977         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
33978         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
33979         test-strcasestr.c, test-striconv.c, test-striconveh.c,
33980         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
33981         test-vasnprintf-posix2.c, test-vasnprintf.c,
33982         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
33983         test-vfprintf-posix.c, test-vprintf-posix.c,
33984         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
33985         test-xvasprintf.c: Likewise.
33986
33987 2007-05-28  Bruno Haible  <bruno@clisp.org>
33988
33989         * gnulib-tool (func_import): Remember the --with-tests command-line
33990         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
33991         Reported by Eric Blake.
33992
33993 2007-05-28  Bruno Haible  <bruno@clisp.org>
33994
33995         * modules/ftell-tests: New file.
33996         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
33997         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
33998
33999         * lib/ftell.c: New file.
34000         * modules/ftell: New file.
34001         * m4/ftell.m4: New file.
34002         * doc/functions/ftell.texi: Update.
34003         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
34004         REPLACE_FTELL.
34005         * lib/stdio_.h (rpl_ftell): New declaration.
34006         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
34007         REPLACE_FTELL.
34008
34009 2007-05-28  Eric Blake  <ebb9@byu.net>
34010
34011         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
34012
34013 2007-05-28  Bruno Haible  <bruno@clisp.org>
34014
34015         * modules/fseek-tests: New file.
34016         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
34017         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
34018
34019         * lib/fseek.c: New file.
34020         * modules/fseek: New file.
34021         * m4/fseek.m4: New file.
34022         * doc/functions/fseek.texi: Update.
34023         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
34024         REPLACE_FSEEK.
34025         * lib/stdio_.h (rpl_fseek): New declaration.
34026         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
34027         REPLACE_FSEEK.
34028
34029 2007-05-28  Bruno Haible  <bruno@clisp.org>
34030
34031         * lib/stdio_.h (fflush): More comments.
34032
34033 2007-05-28  Bruno Haible  <bruno@clisp.org>
34034
34035         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
34036         runtime test.
34037
34038 2007-05-28  Eric Blake  <ebb9@byu.net>
34039
34040         Improve lseek module.
34041         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
34042         * lib/unistd_.h (lseek): Scale back link warning message.
34043         * tests/test-lseek.c: Beef up test.
34044         * tests/test-lseek.sh: Exercise more facets of lseek.
34045         Reported by Bruno Haible.
34046
34047 2007-05-28  Bruno Haible  <bruno@clisp.org>
34048
34049         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
34050         to define.
34051
34052 2007-05-27  Bruno Haible  <bruno@clisp.org>
34053
34054         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
34055
34056 2007-05-27  Bruno Haible  <bruno@clisp.org>
34057
34058         * modules/openmp: New file.
34059         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
34060         Noah Misch.
34061
34062 2007-05-26  Bruno Haible  <bruno@clisp.org>
34063
34064         * modules/chdir-long (Depends-on): Add fchdir.
34065         * modules/chdir-safer (Depends-on): Likewise.
34066         * modules/fts (Depends-on): Likewise.
34067         * modules/fts-lgpl (Depends-on): Likewise.
34068         * modules/openat (Depends-on): Likewise.
34069         * modules/savewd (Depends-on): Likewise.
34070
34071 2007-05-24  Eric Blake  <ebb9@byu.net>
34072
34073         Fix lseek on mingw.
34074         * modules/lseek: New module.
34075         * m4/lseek.m4: New file.
34076         * lib/lseek.c: New file.
34077         * modules/lseek-tests: New file.
34078         * tests/test-lseek.c: New file.
34079         * tests/test-lseek.sh: New file.
34080         * MODULES.html.sh: Document lseek module.
34081         * modules/fflush (Depends-on): Add lseek, fseeko.
34082         * modules/fseeko (Depends-on): Likewise.
34083         * modules/ftello (Depends-on): Likewise.
34084         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
34085         broken.
34086         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
34087         broken.
34088         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
34089         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
34090         * lib/ftello.c (rpl_ftello): Likewise.
34091         * tests/test-fseeko.c (main): Test this.
34092         * tests/test-fseeko.sh: Likewise.
34093         * tests/test-ftello.c (main): Likewise.
34094         * tests/test-ftello.sh: Likewise.
34095         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
34096         implies replacing fseek.
34097         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
34098         HAVE_FTELLO.
34099         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
34100         * modules/unistd (Makefile.am): Likewise.
34101         * lib/unistd_.h (lseek): Declare a replacement.
34102         * doc/functions/lseek.texi (lseek): Document this fix.
34103         * doc/functions/fseek.texi (fseek): Likewise.
34104         * doc/functions/ftell.texi (ftell): Likewise.
34105
34106 2007-05-24  Bruno Haible  <bruno@clisp.org>
34107
34108         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
34109         in the printed representation of a NaN.
34110         * tests/test-vasprintf-posix.c (test_function): Likewise.
34111         * tests/test-snprintf-posix.h (test_function): Likewise.
34112         * tests/test-sprintf-posix.h (test_function): Likewise.
34113         Reported by Eric Blake.
34114
34115 2007-05-23  Eric Blake  <ebb9@byu.net>
34116
34117         Fix fseeko/ftello on cygwin 1.5.24.
34118         * doc/functions/fseeko.texi (fseeko): Document the fix.
34119         * doc/functions/ftello.texi (ftello): Document the fix.
34120         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
34121         * doc/functions/stdout.text (stdout): New file.
34122         * doc/functions/stderr.text (stderr): New file.
34123         * doc/gnulib.texi (Function Substitutes): Use new files.
34124         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
34125         prior to 1.7.0.
34126         * tests/test-ftello.c (main): Likewise for ftello.
34127         * tests/test-fseeko.sh: New file.
34128         * tests/test-ftello.sh: New file.
34129         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
34130         with seekable stdin.
34131         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
34132         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
34133         (gl_REPLACE_FSEEKO): New macro.
34134         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
34135         * modules/fseeko (Files): Distribute fseeko.c.
34136         * modules/ftello (Files): Distribute ftello.c.
34137         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
34138         mode.
34139         * lib/ftello.c (rpl_ftello): New file.
34140         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
34141         fseeko, ftello.
34142         (gl_STDIN_LARGE_OFFSET): New macro.
34143         * modules/stdio (Makefile.am): Perform the replacement.
34144         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
34145
34146 2007-05-23  Bruno Haible  <bruno@clisp.org>
34147
34148         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
34149         GNULIB_POSIXCHECK is defined.
34150
34151 2007-05-21  Bruno Haible  <bruno@clisp.org>
34152
34153         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
34154         Check also the output for NaN arguments. When cross-compiling, guess
34155         no on IRIX.
34156         * lib/vasnprintf.c: Update comments.
34157         * tests/test-vasnprintf-posix.c (strisnan): New function.
34158         (test_function): Use it.
34159         * tests/test-vasprintf-posix.c (strisnan): New function.
34160         (test_function): Use it.
34161         * tests/test-snprintf-posix.h (strisnan): New function.
34162         (test_function): Use it.
34163         * tests/test-sprintf-posix.h (strisnan): New function.
34164         (test_function): Use it.
34165         Reported by Eric Blake.
34166
34167 2007-05-20  Bruno Haible  <bruno@clisp.org>
34168
34169         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
34170         numbers that fails on BeOS.
34171         * doc/functions/frexpl.texi: Update.
34172
34173 2007-05-20  Jim Meyering  <jim@meyering.net>
34174
34175         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
34176         forced upon us by glibc-2.6.
34177
34178 2007-05-20  Bruno Haible  <bruno@clisp.org>
34179
34180         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
34181         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
34182         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
34183         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
34184         NEED_PRINTF_INFINITE.
34185         (is_infinitel): New function.
34186         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
34187         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
34188         gl_PREREQ_VASNPRINTF_INFINITE.
34189         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
34190         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34191         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
34192         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
34193         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
34194         gl_PREREQ_VASNPRINTF_INFINITE.
34195         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34196         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34197         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34198         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34199         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34200         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34201         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34202         * doc/functions/fprintf.texi: Update.
34203         * doc/functions/printf.texi: Update.
34204         * doc/functions/snprintf.texi: Update.
34205         * doc/functions/sprintf.texi: Update.
34206         * doc/functions/vfprintf.texi: Update.
34207         * doc/functions/vprintf.texi: Update.
34208         * doc/functions/vsnprintf.texi: Update.
34209         * doc/functions/vsprintf.texi: Update.
34210
34211 2007-05-20  Bruno Haible  <bruno@clisp.org>
34212
34213         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
34214         was not found in libc.
34215         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
34216
34217 2007-05-20  Bruno Haible  <bruno@clisp.org>
34218
34219         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34220         printed as "-nan" instead of "nan".
34221         * tests/test-vasprintf-posix.c (test_function): Likewise.
34222         * tests/test-snprintf-posix.h (test_function): Likewise.
34223         * tests/test-sprintf-posix.h (test_function): Likewise.
34224         Needed for HP-UX 11.
34225
34226 2007-05-20  Jim Meyering  <jim@meyering.net>
34227
34228         Fix buggy test for the fchownat-deref bug.
34229         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
34230         symlink required for the run-test.  Without it, this test would
34231         always declare that fchownat doesn't work, and client code would
34232         unnecessarily use the replacement function with fixed libc.
34233         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
34234         Reported by Greg Schafer.
34235
34236 2007-05-19  Bruno Haible  <bruno@clisp.org>
34237
34238         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
34239         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
34240         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
34241         Needed for IRIX 6.5 and Solaris 2.5.1.
34242
34243 2007-05-19  Bruno Haible  <bruno@clisp.org>
34244
34245         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
34246         (test_function): Skip tests involving -0.0 on platforms where
34247         -0.0 = 0.0.
34248         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
34249         (test_function): Skip tests involving -0.0 on platforms where
34250         -0.0 = 0.0.
34251         * tests/test-snprintf-posix.h (have_minus_zero): New function.
34252         (test_function): Skip tests involving -0.0 on platforms where
34253         -0.0 = 0.0.
34254         * tests/test-sprintf-posix.h (have_minus_zero): New function.
34255         (test_function): Skip tests involving -0.0 on platforms where
34256         -0.0 = 0.0.
34257         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
34258         tests.
34259         * tests/test-printf-posix.h (test_function): Likewise.
34260         * tests/test-printf-posix.output: Remove all -0.0 related results.
34261         Needed for IRIX 6.5.
34262
34263 2007-05-19  Bruno Haible  <bruno@clisp.org>
34264
34265         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34266         printed as "nan0x7fffffff" instead of "nan".
34267         * tests/test-vasprintf-posix.c (test_function): Likewise.
34268         * tests/test-snprintf-posix.h (test_function): Likewise.
34269         * tests/test-sprintf-posix.h (test_function): Likewise.
34270         * tests/test-fprintf-posix.h (NaN): Remove macro.
34271         (test_function): Remove all NaN related tests.
34272         * tests/test-printf-posix.h (NaN): Remove macro.
34273         (test_function): Remove all NaN related tests.
34274         * tests/test-printf-posix.output: Remove all NaN related results.
34275         Needed for IRIX 6.5.
34276
34277 2007-05-19  Bruno Haible  <bruno@clisp.org>
34278
34279         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
34280         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
34281
34282 2007-05-19  Bruno Haible  <bruno@clisp.org>
34283
34284         * lib/float_.h: New file.
34285         * m4/float_h.m4: New file.
34286         * modules/float: New file.
34287         * modules/isnanl (Dependencies): Add float.
34288         * modules/isnanl-nolibm (Dependencies): Likewise.
34289         * modules/mathl (Dependencies): Likewise.
34290         * modules/printf-frexpl (Dependencies): Likewise.
34291         * modules/signbit (Dependencies): Likewise.
34292         * modules/vasnprintf (Dependencies): Likewise.
34293         * doc/headers/float.texi: Update.
34294
34295 2007-05-19  Jim Meyering  <jim@meyering.net>
34296
34297         * lib/utimens.c (gl_futimens): Rename from futimens,
34298         now that glibc-2.6 declares futimens.
34299         * lib/utimens.h: Likewise.
34300
34301 2007-05-19  Bruno Haible  <bruno@clisp.org>
34302
34303         Avoid test failures on mingw.
34304         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
34305         * tests/test-printf-posix.sh: Likewise.
34306         * tests/test-vfprintf-posix.sh: Likewise.
34307         * tests/test-vprintf-posix.sh: Likewise.
34308
34309 2007-05-19  Bruno Haible  <bruno@clisp.org>
34310
34311         Fix *printf result for NaN, Inf, -0.0 on mingw.
34312         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
34313         * lib/vasnprintf.c: Include math.h and isnan.h.
34314         (is_infinite_or_zero): New function.
34315         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
34316         values in the %f, %F, %e, %E, %g, %G directives.
34317         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
34318         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34319         gl_PRINTF_INFINITE and test its result. Invoke
34320         gl_PREREQ_VASNPRINTF_INFINITE.
34321         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34322         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34323         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34324         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34325         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34326         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34327         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34328         * doc/functions/fprintf.texi: Update.
34329         * doc/functions/printf.texi: Update.
34330         * doc/functions/snprintf.texi: Update.
34331         * doc/functions/sprintf.texi: Update.
34332         * doc/functions/vfprintf.texi: Update.
34333         * doc/functions/vprintf.texi: Update.
34334         * doc/functions/vsnprintf.texi: Update.
34335         * doc/functions/vsprintf.texi: Update.
34336
34337 2007-05-19  Bruno Haible  <bruno@clisp.org>
34338
34339         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
34340         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
34341         Instead of multiplying with 10^k, set extra_zeroes to k.
34342         (scale10_round_long_double): Remove function.
34343
34344 2007-05-18  Bruno Haible  <bruno@clisp.org>
34345
34346         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
34347         introduced on 2007-05-06.
34348
34349 2007-05-18  Bruno Haible  <bruno@clisp.org>
34350
34351         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
34352         %g directives.
34353         * tests/test-vasprintf-posix.c (test_function): Likewise.
34354         * tests/test-snprintf-posix.h (test_function): Likewise.
34355         * tests/test-sprintf-posix.h (test_function): Likewise.
34356
34357 2007-05-18  Bruno Haible  <bruno@clisp.org>
34358
34359         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
34360         (strmatch): New function.
34361         (test_function): Test the %f directive on numbers of various exponents.
34362         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
34363         (strmatch): New function.
34364         (test_function): Test the %f directive on numbers of various exponents.
34365         * tests/test-snprintf-posix.h (strmatch): New function.
34366         (test_function): Test the %f directive on numbers of various exponents.
34367         * tests/test-sprintf-posix.h (strmatch): New function.
34368         (test_function): Test the %f directive on numbers of various exponents.
34369         * tests/test-snprintf-posix.c (SIZEOF): New macro.
34370         * tests/test-sprintf-posix.c (SIZEOF): New macro.
34371         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
34372         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
34373
34374 2007-05-18  Bruno Haible  <bruno@clisp.org>
34375
34376         Add support for 'long double' number output.
34377         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
34378         * lib/vasnprintf.c: Include math.h and float+.h.
34379         (mp_limb_t): New type.
34380         (GMP_LIMB_BITS): New macro.
34381         (mp_twolimb_t): New type.
34382         (GMP_TWOLIMB_BITS): New macro.
34383         (mpn_t): New type.
34384         (multiply, divide, convert_to_decimal, decode_long_double,
34385         scale10_round_long_double, scale10_round_decimal_long_double,
34386         floorlog10l): New functions.
34387         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
34388         for the %f, %F, %e, %E, %g, %G directives.
34389         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
34390         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34391         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
34392         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
34393         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34394         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34395         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34396         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34397         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34398         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34399         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34400         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
34401         * modules/snprintf-posix (Depends-on): Likewise.
34402         * modules/sprintf-posix (Depends-on): Likewise.
34403         * modules/vasnprintf-posix (Depends-on): Likewise.
34404         * modules/vasprintf-posix (Depends-on): Likewise.
34405         * modules/vfprintf-posix (Depends-on): Likewise.
34406         * modules/vsnprintf-posix (Depends-on): Likewise.
34407         * modules/vsprintf-posix (Depends-on): Likewise.
34408         * modules/vasnprintf (Files): Add lib/float+.h.
34409         * doc/functions/fprintf.texi: Update.
34410         * doc/functions/printf.texi: Update.
34411         * doc/functions/snprintf.texi: Update.
34412         * doc/functions/sprintf.texi: Update.
34413         * doc/functions/vfprintf.texi: Update.
34414         * doc/functions/vprintf.texi: Update.
34415         * doc/functions/vsnprintf.texi: Update.
34416         * doc/functions/vsprintf.texi: Update.
34417
34418 2007-05-18  Bruno Haible  <bruno@clisp.org>
34419
34420         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
34421
34422 2007-05-18  Bruno Haible  <bruno@clisp.org>
34423
34424         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
34425         for printing 64-bit integers. Needed for mingw.
34426
34427 2007-05-18  Bruno Haible  <bruno@clisp.org>
34428
34429         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
34430         gl_FUNC_FREXPL_WORKS.
34431         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
34432
34433 2007-05-18  Bruno Haible  <bruno@clisp.org>
34434
34435         * modules/frexpl-nolibm-tests: New file.
34436
34437         * modules/frexpl-nolibm: New file.
34438         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
34439
34440 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
34441
34442         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
34443         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
34444         GCC 4.2, which otherwise issues a lot of warnings.
34445         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
34446         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
34447         Likewise.
34448         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
34449         * modules/iconv_open (iconv.h): Likewise.
34450         * modules/locale (locale.h): Likewise.
34451         * modules/netinet_in (netinet/in.h): Likewise.
34452         * modules/sys_select (sys_select.h): Likewise.
34453         * modules/sys_socket (sys/socket.h): Likewise.
34454         * modules/sys_stat (sys/stat.h): Likewise.
34455         * modules/sysexits (sysexits.h): Likewise.
34456         * modules/unistd (unistd.h): Likewise.
34457
34458 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34459
34460         * modules/closein-tests (Makefile.am): Distribute
34461         `test-closein.sh'.
34462
34463 2007-05-17  Bruno Haible  <bruno@clisp.org>
34464
34465         * tests/test-printf-posix.output: Renamed from
34466         tests/test-fprintf-posix.out.
34467         * modules/fprintf-posix-tests: Update.
34468         * modules/printf-posix-tests: Update.
34469         * modules/vfprintf-posix-tests: Update.
34470         * modules/vprintf-posix-tests: Update.
34471         * tests/test-fprintf-posix.sh: Update.
34472         * tests/test-printf-posix.sh: Update.
34473         * tests/test-vfprintf-posix.sh: Update.
34474         * tests/test-vprintf-posix.sh: Update.
34475         Reported by Ralf Wildenhues.
34476
34477 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
34478
34479         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
34480         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
34481         GCC 4.2, which otherwise issues a lot of warnings.
34482         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
34483         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
34484         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
34485         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
34486         it should no longer be needed.
34487         * lib/string_.h: Likewise.
34488         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
34489         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
34490         * modules/inttypes (inttypes.h): Likewise.
34491         * modules/math (math.h): Likewise.
34492         * modules/search (search.h): Likewise.
34493         * modules/signal (signal.h): Likewise.
34494         * modules/stdint (stdint.h): Likewise.
34495         * modules/stdio (stdio.h): Likewise.
34496         * modules/stdlib (stdlib.h): Likewise.
34497         * modules/string (string.h): Likewise.
34498         * modules/sys_time (sys/time.h): Likewise.
34499         * modules/time (time.h): Likewise.
34500         * modules/wchar (wchar.h): Likewise.
34501         * modules/wctype (wtype.h): Likewise.
34502
34503 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
34504
34505         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
34506
34507 2007-05-13  Bruno Haible  <bruno@clisp.org>
34508
34509         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
34510         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
34511         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
34512         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
34513         (gl_PREREQ_STRTOK_R): Don't require it here.
34514
34515 2007-05-13  Bruno Haible  <bruno@clisp.org>
34516
34517         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
34518         when used in C++ mode.
34519
34520 2007-05-12  Bruno Haible  <bruno@clisp.org>
34521
34522         * lib/linebuffer.h: Tweak doc.
34523         * lib/linebuffer.c: Likewise.
34524
34525 2007-05-12  James Youngman  <jay@gnu.org>
34526
34527         * lib/linebuffer.c (readlinebuffer_delim): New function,
34528         like readlinebuffer, but use a caller-specified delimiter.
34529         (readlinebuffer): Just call readlinebuffer_delim with '\n'
34530         as the delimiter.
34531         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
34532
34533 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
34534
34535         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
34536         * modules/openat (Files): Remove openat-die.c.
34537         (Depends-on): Add openat-die.
34538         * modules/openat-die: New module.
34539
34540 2007-05-06  Bruno Haible  <bruno@clisp.org>
34541
34542         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
34543         Update with info about Cygwin.
34544         * doc/functions/fprintf.texi: Update.
34545         * doc/functions/printf.texi: Update.
34546         * doc/functions/snprintf.texi: Update.
34547         * doc/functions/sprintf.texi: Update.
34548         * doc/functions/vfprintf.texi: Update.
34549         * doc/functions/vprintf.texi: Update.
34550         * doc/functions/vsnprintf.texi: Update.
34551         * doc/functions/vsprintf.texi: Update.
34552         Reported by Eric Blake.
34553
34554 2007-05-06  Bruno Haible  <bruno@clisp.org>
34555
34556         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
34557         padding ourselves for the floating-point directives.
34558         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
34559         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
34560         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34561         gl_PRINTF_FLAG_ZERO and test its result. Invoke
34562         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
34563         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34564         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
34565         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34566         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34567         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34568         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34569         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34570         * tests/test-snprintf-posix.h (test_function): Also check the width
34571         and some flags in the %f directive.
34572         * tests/test-sprintf-posix.h (test_function): Likewise.
34573         * tests/test-vasnprintf-posix.c (test_function): Likewise.
34574         * tests/test-vasprintf-posix.c (test_function): Likewise.
34575         * doc/functions/fprintf.texi: Update.
34576         * doc/functions/printf.texi: Update.
34577         * doc/functions/snprintf.texi: Update.
34578         * doc/functions/sprintf.texi: Update.
34579         * doc/functions/vfprintf.texi: Update.
34580         * doc/functions/vprintf.texi: Update.
34581         * doc/functions/vsnprintf.texi: Update.
34582         * doc/functions/vsprintf.texi: Update.
34583
34584 2007-05-06  Bruno Haible  <bruno@clisp.org>
34585
34586         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
34587         pass the ' flag character to sprintf or snprintf.
34588         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
34589         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
34590         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34591         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
34592         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
34593         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34594         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
34595         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34596         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34597         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34598         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34599         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34600         * tests/test-snprintf-posix.h (test_function): Also check the grouping
34601         flag.
34602         * tests/test-sprintf-posix.h (test_function): Likewise.
34603         * tests/test-vasnprintf-posix.c (test_function): Likewise.
34604         * tests/test-vasprintf-posix.c (test_function): Likewise.
34605         * doc/functions/fprintf.texi: Update.
34606         * doc/functions/printf.texi: Update.
34607         * doc/functions/snprintf.texi: Update.
34608         * doc/functions/sprintf.texi: Update.
34609         * doc/functions/vfprintf.texi: Update.
34610         * doc/functions/vprintf.texi: Update.
34611         * doc/functions/vsnprintf.texi: Update.
34612         * doc/functions/vsprintf.texi: Update.
34613
34614 2007-05-01  Bruno Haible  <bruno@clisp.org>
34615
34616         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
34617
34618 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
34619
34620         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
34621         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
34622
34623 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34624
34625         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
34626         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
34627         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
34628
34629 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
34630
34631         * lib/argp-help.c (struct hol_entry): New member `ord'.
34632         (HOL_ENTRY_PTRCMP): Use ord for comparison
34633         (hol_sort): Initialize ord.
34634
34635 2007-05-01  Bruno Haible  <bruno@clisp.org>
34636
34637         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
34638         Reported by Eric Blake.
34639         * doc/gnulib.texi (Function Substitutes): Update.
34640
34641 2007-05-01  Bruno Haible  <bruno@clisp.org>
34642
34643         * doc/functions.texi: Remove file, now redundant through
34644         doc/functions/*.texi.
34645
34646 2007-05-01  Bruno Haible  <bruno@clisp.org>
34647
34648         * modules/argp (Depends-on): Add sleep.
34649
34650 2007-05-01  Bruno Haible  <bruno@clisp.org>
34651
34652         * modules/sleep-tests: New file.
34653         * tests/test-sleep.c: New file.
34654
34655         * modules/sleep: New file.
34656         * lib/sleep.c: New file.
34657         * m4/sleep.m4: New file.
34658         * lib/unistd_.h (sleep): New declaration.
34659         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
34660         HAVE_SLEEP.
34661         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
34662         * doc/functions/sleep.texi: Document the sleep module.
34663
34664 2007-05-01  Bruno Haible  <bruno@clisp.org>
34665
34666         * lib/sigprocmask.h: Remove file.
34667         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
34668         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
34669         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
34670         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
34671         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
34672         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
34673         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
34674         HAVE_SIGSET_T as a shell variable.
34675         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
34676         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
34677         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
34678         (Depends-on): Add signal. Remove verify.
34679         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
34680         (Include): Mention <signal.h> instead of sigprocmask.h.
34681         * NEWS: Mention the change.
34682         * lib/fatal-signal.c: Don't include sigprocmask.h.
34683
34684 2007-05-01  Bruno Haible  <bruno@clisp.org>
34685
34686         * modules/signal: New file.
34687         * lib/signal_.h: New file.
34688         * m4/signal_h.m4: New file.
34689
34690 2007-05-01  Bruno Haible  <bruno@clisp.org>
34691
34692         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
34693         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
34694         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
34695         HAVE_WCTYPE_CTMP_BUG into wctype.h.
34696
34697 2007-05-01  Bruno Haible  <bruno@clisp.org>
34698
34699         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
34700         configure time.
34701         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
34702         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
34703         * modules/sys_stat (Makefile.am): Substitute their values into
34704         sys/stat.h.
34705
34706 2007-05-01  Bruno Haible  <bruno@clisp.org>
34707
34708         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
34709         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
34710         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
34711
34712 2007-05-01  Bruno Haible  <bruno@clisp.org>
34713
34714         * doc/header/assert.texi: Undo last change: don't mention the gnulib
34715         'assert' module here.
34716
34717 2007-05-01  Bruno Haible  <bruno@clisp.org>
34718
34719         * doc/functions/*.texi: New files.
34720         * doc/functions/google-ranking.txt: New file.
34721         * doc/gnulib.texi (Function Substitutes): New chapter.
34722         (ctime, inet_ntoa): Remove sections.
34723         * doc/ctime.texi: Remove file.
34724         * doc/inet_ntoa.texi: Remove file.
34725         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
34726         dependencies.
34727         (%.info): New rule, specifying a --reference-limit.
34728
34729 2007-05-01  Bruno Haible  <bruno@clisp.org>
34730
34731         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
34732
34733 2007-05-01  Bruno Haible  <bruno@clisp.org>
34734
34735         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
34736         the portability of 'mkdir' to mingw systems.
34737
34738 2007-05-01  Bruno Haible  <bruno@clisp.org>
34739
34740         * doc/headers/google-ranking.txt: New file.
34741
34742 2007-04-30  Eric Blake  <ebb9@byu.net>
34743
34744         Prefer fseeko to fseek.
34745         * modules/getpass (Depends-on): Add fseeko.
34746         * lib/getpass.c (getpass): Use fseeko, not fseek.
34747
34748 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
34749
34750         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
34751         assumes the sorting is stable, while most qsort implementations
34752         are not.  Use argument addresses to ensure they never compare as
34753         equal.
34754
34755         * tests/test-argp-2.sh (usage-indent test): Fix output
34756         (func_compare): Restore diff options
34757         * tests/test-argp.c: Restore #include "progname.h"
34758
34759 2007-04-29  Bruno Haible  <bruno@clisp.org>
34760
34761         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
34762         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
34763         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
34764         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34765         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
34766         (configure.ac): Define CHECK_SNPRINTF_POSIX.
34767         (TESTS, check_PROGRAMS): Add test-snprintf.
34768         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
34769         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
34770         (TESTS, check_PROGRAMS): Add test-vsnprintf.
34771         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
34772         assertions that fail on HP-UX, OSF/1, or IRIX.
34773         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
34774
34775 2007-04-29  Bruno Haible  <bruno@clisp.org>
34776
34777         * MODULES.html.sh (posix_functions): Remove 'contents'.
34778
34779 2007-04-29  Karl Berry  <karl@gnu.org>
34780
34781         * config/srclist.txt (gendocs_template_min): new entry.
34782
34783 2007-04-29  Bruno Haible  <bruno@clisp.org>
34784
34785         Work around fpurge bug on BSD systems.
34786         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
34787         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
34788         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
34789         fpurge to rpl_fpurge if the system already has this function.
34790         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
34791         the case where the system already has this function. Correct invariants
34792         on BSD systems.
34793         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
34794         BSD systems.
34795
34796 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
34797
34798         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
34799         proposed by Sven Verdoolaege.
34800
34801         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
34802         options.
34803         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
34804         (usage and help tests): Update
34805
34806 2007-04-29  Bruno Haible  <bruno@clisp.org>
34807
34808         * tests/test-fflush.c (main): Use a file of size 17, not 10.
34809         Print more information in case of failure. Disable a test on BeOS.
34810
34811 2007-04-29  Bruno Haible  <bruno@clisp.org>
34812
34813         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
34814         This helps debugging on systems on which no gdb is available.
34815
34816 2007-04-29  Bruno Haible  <bruno@clisp.org>
34817
34818         * lib/freading.h: Improve comments.
34819         * lib/fwriting.h: Likewise.
34820         * tests/test-freading.c (main): Don't check freading immediately after
34821         repositioning. Needed for glibc.
34822
34823 2007-04-29  Bruno Haible  <bruno@clisp.org>
34824
34825         * lib/freading.c (freading): Trivial simplification.
34826
34827 2007-04-28  Bruno Haible  <bruno@clisp.org>
34828
34829         * tests/test-fwriting.c (main): Also test the interaction between
34830         fflush and fwriting.
34831         * modules/fwriting-tests (Depends-on): Add fflush.
34832
34833         * tests/test-freading.c (main): Also test the interaction between
34834         fflush and freading.
34835         * modules/freading-tests (Depends-on): Add fflush.
34836
34837 2007-04-28  Bruno Haible  <bruno@clisp.org>
34838
34839         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
34840         fseeko and ftello.
34841         Suggested by Eric Blake.
34842
34843 2007-04-28  Jim Meyering  <jim@meyering.net>
34844
34845         Avoid false-negative in gl_STDINT_H's C99 conformance test.
34846         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
34847         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
34848
34849 2007-04-27  Eric Blake  <ebb9@byu.net>
34850
34851         * doc/headers/assert.texi (assert.h): Document assert module use.
34852
34853 2007-04-27  Bruno Haible  <bruno@clisp.org>
34854
34855         * doc/headers/*.texi: New files.
34856         * doc/gnulib.texi (Header File Substitutes): New chapter.
34857         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
34858         dependencies.
34859         (standards.info ,standards.html, standards.dvi): Update dependencies.
34860         (mostlyclean, clean): New targets.
34861
34862 2007-04-27  Bruno Haible  <bruno@clisp.org>
34863
34864         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
34865         * modules/sysexits (Files, Makefile.am): Update.
34866
34867         * lib/sys_socket_.h: Renamed from lib/socket_.h.
34868         * modules/sys_socket (Files, Makefile.am): Update.
34869
34870         * lib/sys_stat_.h: Renamed from lib/stat_.h.
34871         * modules/sys_stat (Files, Makefile.am): Update.
34872
34873 2007-04-27  Eric Blake  <ebb9@byu.net>
34874
34875         * lib/freading.h: Improve comments.
34876         * lib/fwriting.h: Likewise.
34877         * lib/fflush.c: Likewise.
34878
34879         Fix closein for mingw.
34880         * modules/closein-tests: Add tests for closein.
34881         * tests/test-closein.c: New file.
34882         * tests/test-closein.sh: Likewise.
34883         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
34884         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
34885
34886 2007-04-27  Bruno Haible  <bruno@clisp.org>
34887
34888         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
34889         version is < 6.
34890         * lib/math_.h [__DECC]: Likewise.
34891         * lib/stdio_.h [__DECC]: Likewise.
34892         * lib/stdlib_.h [__DECC]: Likewise.
34893         * lib/string_.h [__DECC]: Likewise.
34894         * lib/time_.h [__DECC]: Likewise.
34895         * lib/wchar_.h [__DECC]: Likewise.
34896         * lib/wctype_.h [__DECC]: Likewise.
34897
34898 2007-04-27  Bruno Haible  <bruno@clisp.org>
34899
34900         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
34901
34902 2007-04-27  Bruno Haible  <bruno@clisp.org>
34903
34904         * lib/fflush.c: Add comments.
34905         * modules/fpurge-tests (Depends-on): Add fflush.
34906         * modules/freadable-tests (Depends-on): Likewise.
34907         * modules/fwritable-tests (Depends-on): Likewise.
34908
34909 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
34910
34911         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
34912         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
34913         Report by Bruno Haible <bruno@clisp.org>.
34914
34915 2007-04-26  Eric Blake  <ebb9@byu.net>
34916
34917         Fix fflush on mingw.
34918         * modules/fflush (Depends-on): Add freading.
34919         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
34920         but unread data.
34921
34922 2007-04-26  Eric Blake  <ebb9@byu.net>
34923         and Bruno Haible  <bruno@clisp.org>
34924
34925         Implement freading and fwriting.
34926         * lib/freading.c: New file.
34927         * lib/freading.h: Likewise.
34928         * m4/freading.m4: Likewise.
34929         * modules/freading: Likewise.
34930         * modules/freading-tests: Likewise.
34931         * tests/test-freading.c: Likewise.
34932         * lib/fwriting.c: New file.
34933         * lib/fwriting.h: Likewise.
34934         * m4/fwriting.m4: Likewise.
34935         * modules/fwriting: Likewise.
34936         * modules/fwriting-tests: Likewise.
34937         * tests/test-fwriting.c: Likewise.
34938         * MODULES.html.sh (File stream based Input/Output): Mention them.
34939
34940 2007-04-26  Bruno Haible  <bruno@clisp.org>
34941
34942         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
34943         'long' when we assume it.
34944         Suggested by Eric Blake.
34945
34946 2007-04-26  Bruno Haible  <bruno@clisp.org>
34947
34948         Ensure fseeko, ftello are declared on glibc systems.
34949         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
34950         * modules/fseeko (configure.ac-early): Likewise.
34951         * modules/ftello (configure.ac-early): Likewise.
34952         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
34953         AC_FUNC_FSEEKO for this.
34954         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
34955         (gl_CHECK_FSEEKO): Remove macro.
34956
34957 2007-04-26  Bruno Haible  <bruno@clisp.org>
34958
34959         * tests/test-fflush.c (main): Also check the ftell result after
34960         fflush and fseek/fseeko.
34961         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
34962         file descriptor position cache in the stream.
34963         * lib/fseeko.c (rpl_fseeko): Likewise.
34964
34965 2007-04-26  Bruno Haible  <bruno@clisp.org>
34966
34967         * modules/fflush-tests (Depends-on): Add fseeko.
34968
34969 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
34970             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34971
34972         * lib/argz_.h: ensure error_t definition is obtained in same
34973         mechanism system argz.h would have.
34974         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
34975         argz facilities are known bad.  Err on the side of caution if
34976         cross-compiling.
34977
34978 2007-04-25  Eric Blake  <ebb9@byu.net>
34979
34980         * lib/fpurge.c (includes): Use stdlib.h for free.
34981         * tests/test-fflush.c (main): Also test fflush-fseeko.
34982
34983 2007-04-25  Bruno Haible  <bruno@clisp.org>
34984
34985         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
34986         * lib/fseeko.c: New file.
34987         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
34988         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
34989         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
34990         gl_FUNC_FSEEKO.
34991         (gl_FUNC_FSEEKO): Invoke it.
34992         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
34993         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
34994         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
34995
34996 2007-04-25  Bruno Haible  <bruno@clisp.org>
34997
34998         * modules/fflush (Depends-on): Add ftello.
34999
35000 2007-04-25  Bruno Haible  <bruno@clisp.org>
35001
35002         * modules/ftello-tests: New file.
35003         * tests/test-ftello.c: New file.
35004
35005         * modules/ftello: New file.
35006         * m4/ftello.m4: New file.
35007         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
35008         HAVE_FTELLO.
35009         * lib/stdio_.h (ftello): New declaration.
35010         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
35011         HAVE_FTELLO.
35012
35013 2007-04-25  Bruno Haible  <bruno@clisp.org>
35014
35015         * modules/fseeko-tests: New file.
35016         * tests/test-fseeko.c: New file.
35017
35018         * modules/fseeko: New file.
35019         * m4/fseeko.m4: New file.
35020         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
35021         HAVE_FSEEKO.
35022         * lib/stdio_.h (fseeko): New declaration.
35023         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
35024         HAVE_FSEEKO.
35025
35026 2007-04-25  Bruno Haible  <bruno@clisp.org>
35027
35028         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
35029
35030 2007-04-25  Bruno Haible  <bruno@clisp.org>
35031
35032         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
35033         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
35034         * tests/test-unistd.c: Likewise.
35035         * tests/test-fcntl.c: Likewise.
35036
35037 2007-04-23  Eric Blake  <ebb9@byu.net>
35038
35039         * lib/fflush.c: Fix missing include.
35040         Reported by Bruno Haible.
35041
35042 2007-04-23  Bruno Haible  <bruno@clisp.org>
35043
35044         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
35045         Reported by Eric Blake.
35046
35047 2007-04-23  Bruno Haible  <bruno@clisp.org>
35048
35049         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
35050
35051 2007-04-23  Bruno Haible  <bruno@clisp.org>
35052
35053         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
35054
35055 2007-04-23  Bruno Haible  <bruno@clisp.org>
35056
35057         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
35058         Needed on HP-UX 11.
35059
35060 2007-04-16  Eric Blake  <ebb9@byu.net>
35061
35062         Make fflush rely on fpurge.
35063         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
35064         open coding all variants.
35065         * modules/fflush (Depends-on): Add fpurge and unistd.
35066         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
35067         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
35068
35069         Fix --with-tests compilation on cygwin.
35070         * modules/argmatch-tests (Makefile.am): List gnulib library first
35071         in LDADD.
35072         * modules/argp-tests (Makefile.am): Likewise.
35073         * modules/array-list-tests (Makefile.am): Likewise.
35074         * modules/array-oset-tests (Makefile.am): Likewise.
35075         * modules/avltree-list-tests (Makefile.am): Likewise.
35076         * modules/avltree-oset-tests (Makefile.am): Likewise.
35077         * modules/avltreehash-list-tests (Makefile.am): Likewise.
35078         * modules/carray-list-tests (Makefile.am): Likewise.
35079         * modules/dirname-tests (Makefile.am): Likewise.
35080         * modules/frexp-tests (Makefile.am): Likewise.
35081         * modules/isnanl-tests (Makefile.am): Likewise.
35082         * modules/linked-list-tests (Makefile.am): Likewise.
35083         * modules/linkedhash-list-tests (Makefile.am): Likewise.
35084         * modules/lock-tests (Makefile.am): Likewise.
35085         * modules/rbtree-list-tests (Makefile.am): Likewise.
35086         * modules/rbtree-oset-tests (Makefile.am): Likewise.
35087         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
35088         * modules/tls-tests (Makefile.am): Likewise.
35089         * modules/tsearch-tests (Makefile.am): Likewise.
35090         * modules/xvasprintf-tests (Makefile.am): Likewise.
35091
35092         Fix fpurge for cygwin.
35093         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
35094         value.
35095         * modules/fpurge-tests (Depends-on): Clean up trash.
35096
35097 2007-04-16  Simon Josefsson  <simon@josefsson.org>
35098
35099         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
35100
35101         * m4/autobuild.m4: Re-indent.
35102
35103 2007-04-13  Bruno Haible  <bruno@clisp.org>
35104
35105         * modules/fpurge-tests: New file.
35106         * tests/test-fpurge.c: New file.
35107
35108         * modules/fpurge: New file.
35109         * lib/fpurge.h: New file.
35110         * lib/fpurge.c: New file.
35111         * m4/fpurge.m4: New file.
35112
35113 2007-04-13  Bruno Haible  <bruno@clisp.org>
35114
35115         * modules/fbufmode-tests: New file.
35116         * tests/test-fbufmode.c: New file.
35117
35118         * modules/fbufmode: New file.
35119         * lib/fbufmode.h: New file.
35120         * lib/fbufmode.c: New file.
35121         * m4/fbufmode.m4: New file.
35122
35123 2007-04-13  Bruno Haible  <bruno@clisp.org>
35124
35125         * modules/fwritable-tests: New file.
35126         * tests/test-fwritable.c: New file.
35127
35128         * modules/fwritable: New file.
35129         * lib/fwritable.h: New file.
35130         * lib/fwritable.c: New file.
35131         * m4/fwritable.m4: New file.
35132
35133 2007-04-13  Bruno Haible  <bruno@clisp.org>
35134
35135         * modules/freadable-tests: New file.
35136         * tests/test-freadable.c: New file.
35137
35138         * modules/freadable: New file.
35139         * lib/freadable.h: New file.
35140         * lib/freadable.c: New file.
35141         * m4/freadable.m4: New file.
35142
35143 2007-04-13  Bruno Haible  <bruno@clisp.org>
35144
35145         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
35146         MOSTLYCLEANFILES.
35147
35148 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
35149
35150         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
35151         gzip bootstrap.conf to avoid dragging in i18n machinery.
35152         (gnulib_tool_option): Use it.
35153
35154 2007-04-13  Bruno Haible  <bruno@clisp.org>
35155
35156         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
35157         %F directives.
35158         * tests/test-vasprintf-posix.c (test_function): Likewise.
35159         * tests/test-snprintf-posix.h (test_function): Likewise.
35160         * tests/test-sprintf-posix.h (test_function): Likewise.
35161         * tests/test-fprintf-posix.h (test_function): Likewise.
35162         * tests/test-printf-posix.h (test_function): Likewise.
35163         * tests/test-fprintf-posix.out: Likewise.
35164
35165 2007-04-13  Bruno Haible  <bruno@clisp.org>
35166
35167         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
35168         * modules/tls-tests (configure.ac): Likewise.
35169         Reported by Arto C. Nirkko <anirkko@insel.ch>.
35170
35171 2007-04-13  Bruno Haible  <bruno@clisp.org>
35172
35173         * lib/tls.c (glthread_tls_get): Fix return type.
35174         Patch by Arto C. Nirkko <anirkko@insel.ch>.
35175
35176 2007-04-12  Eric Blake  <ebb9@byu.net>
35177
35178         * modules/gettime (Depends-on): Remove gettime.
35179         Reported by Dmitry V. Levin.
35180
35181 2007-04-12  Bruno Haible  <bruno@clisp.org>
35182
35183         * modules/fflush (Include): Mention <stdio.h>.
35184         * modules/strtoimax (Include): Mention <inttypes.h>.
35185         * modules/strtoumax (Include): Likewise.
35186
35187 2007-04-12  Eric Blake  <ebb9@byu.net>
35188
35189         * .cvsignore: New file.
35190         * .gitignore: Likewise.
35191
35192 2007-04-12  Bruno Haible  <bruno@clisp.org>
35193
35194         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
35195         not before, since $(LDADD) often contains libgnu.a.
35196         * modules/striconv-tests (test_striconv_LDADD): Likewise.
35197         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
35198         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
35199         Needed on Cygwin.
35200
35201 2007-04-12  Eric Blake  <ebb9@byu.net>
35202
35203         Work around glibc's failure to flush stdin on fclose.
35204         * lib/closein.c (close_stdin): Flush stdin before closing.
35205
35206         Work around glibc's failure to reset seekable stdin on exit.
35207         * modules/closein: New module.
35208         * lib/closein.c: New file.
35209         * lib/closein.h: Likewise.
35210         * m4/closein.m4: Likewise.
35211         * MODULES.html.sh (File stream based Input/Output): Document it.
35212
35213 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35214
35215         * gnulib-tool: Rename generated 'autobuild' script to
35216         'do-autobuild' in --create-megatestdir output.
35217
35218         * doc/gnulib.texi (Build robot for gnulib): Fix.
35219
35220 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35221
35222         * modules/sysexits (Depends-on): Add absolute-header.
35223
35224 2007-04-12  Eric Blake  <ebb9@byu.net>
35225
35226         No need to preserve errno on success.
35227         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
35228         Reported by Bruno Haible.
35229
35230 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35231
35232         * MODULES.html.sh (Support for maintaining and releasing
35233         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
35234
35235 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35236
35237         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
35238
35239 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35240
35241         * modules/autobuild: New module.
35242
35243         * m4/autobuild.m4: New file.
35244
35245 2007-04-11  Bruno Haible  <bruno@clisp.org>
35246
35247         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
35248         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
35249         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
35250         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
35251         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35252         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35253         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35254         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35255         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35256         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35257         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
35258         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35259         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35260         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
35261         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35262         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35263         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
35264         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35265         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35266         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
35267         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35268         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35269         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
35270         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35271         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35272         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
35273         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35274         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35275         Reported by Eric Blake.
35276
35277 2007-04-11  Bruno Haible  <bruno@clisp.org>
35278
35279         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
35280
35281 2007-04-10  Bruno Haible  <bruno@clisp.org>
35282
35283         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
35284         for NaN and Infinity. Needed on FreeBSD 6.1.
35285         * tests/test-vasnprintf-posix.c (test_function): Undo last change
35286         regarding results for "%010a" of Infinity and NaN.
35287         * tests/test-vasprintf-posix.c (test_function): Likewise.
35288         * tests/test-snprintf-posix.h (test_function): Likewise.
35289         * tests/test-sprintf-posix.h (test_function): Likewise.
35290         * tests/test-fprintf-posix.h (test_function): Likewise.
35291         * tests/test-printf-posix.h (test_function): Likewise.
35292         * tests/test-fprintf-posix.out: Likewise.
35293
35294 2007-04-10  Bruno Haible  <bruno@clisp.org>
35295
35296         * modules/locale-tests: New file.
35297         * tests/test-locale.c: New file.
35298
35299         * modules/locale: New file.
35300         * lib/locale_.h: New file.
35301         * m4/locale_h.m4: New file.
35302
35303 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
35304             Bruno Haible  <bruno@clisp.org>
35305
35306         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
35307         be determined, test for availability of the copysignf, copysign,
35308         copysignl functions.
35309         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
35310         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
35311         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
35312
35313 2007-04-09  Eric Blake  <ebb9@byu.net>
35314
35315         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
35316         * modules/stdio (Makefile.am): Support fflush.
35317         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
35318         * modules/fflush: New file.
35319         * lib/fflush.c: Likewise.
35320         * m4/fflush.m4: Likewise.
35321         * modules/fflush-tests: New test.
35322         * tests/test-fflush.c: Likewise.
35323         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
35324
35325 2007-04-06  Bruno Haible  <bruno@clisp.org>
35326
35327         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
35328         (VASNPRINTF): Use signbit for faster determination whether to print a
35329         minus sign.
35330         * modules/vasnprintf (Files): Remove lib/float+.h.
35331         * modules/fprintf-posix (Depends-on): Add signbit.
35332         * modules/snprintf-posix (Depends-on): Likewise.
35333         * modules/sprintf-posix (Depends-on): Likewise.
35334         * modules/vasnprintf-posix (Depends-on): Likewise.
35335         * modules/vasprintf-posix (Depends-on): Likewise.
35336         * modules/vfprintf-posix (Depends-on): Likewise.
35337         * modules/vsnprintf-posix (Depends-on): Likewise.
35338         * modules/vsprintf-posix (Depends-on): Likewise.
35339
35340 2007-04-06  Bruno Haible  <bruno@clisp.org>
35341
35342         * tests/test-frexp.c (main): Test also the sign bit of zero results.
35343         * tests/test-frexpl.c (main): Likewise.
35344         * tests/test-ldexpl.c (main): Likewise.
35345         * modules/frexp-tests (Depends-on): Add signbit.
35346         * modules/frexpl-tests (Depdends-on): Likewise.
35347         * modules/ldexpl-tests (Depdends-on): Likewise.
35348
35349 2007-04-06  Bruno Haible  <bruno@clisp.org>
35350
35351         * modules/signbit-tests: New file.
35352         * tests/test-signbit.c: New file.
35353
35354         * modules/signbit: New file.
35355         * lib/signbitf.c: New file.
35356         * lib/signbitd.c: New file.
35357         * lib/signbitl.c: New file.
35358         * m4/signbit.m4: New file.
35359         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
35360         (signbit): New macro.
35361         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
35362         REPLACE_SIGNBIT.
35363         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
35364         REPLACE_FREXPL into math.h.
35365
35366 2007-04-06  Bruno Haible  <bruno@clisp.org>
35367
35368         * modules/isnanf-nolibm-tests: New file.
35369         * tests/test-isnanf.c: New file.
35370
35371         * modules/isnanf-nolibm: New file.
35372         * lib/isnanf.h: New file.
35373         * lib/isnanf.c: New file.
35374         * lib/isnan.c: Consider the USE_FLOAT macro.
35375         * m4/isnanf.m4: New file.
35376
35377 2007-04-06  Bruno Haible  <bruno@clisp.org>
35378
35379         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
35380         (Link): New section.
35381
35382         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
35383
35384 2007-04-06  Bruno Haible  <bruno@clisp.org>
35385
35386         Assume the 'long double' type.
35387         * m4/longdouble.m4: Remove file.
35388         * config/srclist.txt: Don't mention longdouble.m4.
35389         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
35390         * lib/float+.h: Likewise.
35391         * lib/frexp.c: Likewise.
35392         * lib/printf-args.h: Likewise.
35393         * lib/printf-args.c: Likewise.
35394         * lib/printf-frexp.c: Likewise.
35395         * lib/printf-parse.c: Likewise.
35396         * lib/vasnprintf.c: Likewise.
35397         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
35398         * m4/intl.m4: Likewise.
35399         * m4/isnanl.m4: Likewise.
35400         * m4/printf.m4: Likewise.
35401         * m4/printf-frexpl.m4: Likewise.
35402         * m4/vasnprintf.m4: Likewise.
35403         * modules/allocsa (Files): Remove m4/longdouble.m4.
35404         * modules/gettext (Files): Likewise.
35405         * modules/relocatable-prog-wrapper (Files): Likewise.
35406         * modules/vasnprintf (Files): Likewise.
35407         * modules/isnanl (Files): Likewise.
35408         (Include): Simplify.
35409         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
35410         (Include): Simplify.
35411         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
35412         (Include): Simplify.
35413         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
35414         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35415         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
35416         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35417         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
35418         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35419         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
35420         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35421         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
35422         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35423         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
35424         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35425         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
35426         * tests/test-isnanl.c: Likewise.
35427         * tests/test-snprintf-posix.h: Likewise.
35428         * tests/test-sprintf-posix.h: Likewise.
35429         * tests/test-vasnprintf-posix.c: Likewise.
35430         * tests/test-vasnprintf-posix2.c: Likewise.
35431         * tests/test-vasprintf-posix.c: Likewise.
35432
35433 2007-04-06  Bruno Haible  <bruno@clisp.org>
35434
35435         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
35436         * lib/math_.h [__DECC]: Include the overridden include file through
35437         #include_next, outside the double-inclusion guard.
35438         * lib/stdio_.h [__DECC]: Likewise.
35439         * lib/stdlib_.h [__DECC]: Likewise.
35440         * lib/string_.h [__DECC]: Likewise.
35441         * lib/time_.h [__DECC]: Likewise.
35442         * lib/wchar_.h [__DECC]: Likewise.
35443         * lib/wctype_.h [__DECC]: Likewise.
35444         * lib/inttypes_.h [__DECC]: Likewise.
35445         Reported by Albert Chin <china@thewrittenword.com> in
35446         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
35447
35448 2007-04-04  Eric Blake  <ebb9@byu.net>
35449
35450         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
35451         1.5.x.
35452
35453 2007-04-04  Bruno Haible  <bruno@clisp.org>
35454
35455         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
35456         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
35457
35458 2007-04-04  Bruno Haible  <bruno@clisp.org>
35459
35460         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
35461         results for "%010a" of Infinity and NaN.
35462         * tests/test-vasprintf-posix.c (test_function): Likewise.
35463         * tests/test-snprintf-posix.h (test_function): Likewise.
35464         * tests/test-sprintf-posix.h (test_function): Likewise.
35465         * tests/test-fprintf-posix.h (test_function): Remove these tests.
35466         * tests/test-printf-posix.h (test_function): Likewise.
35467         * tests/test-fprintf-posix.out: Update.
35468         Needed for FreeBSD 6.1.
35469
35470 2007-04-04  Bruno Haible  <bruno@clisp.org>
35471
35472         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
35473         directly used by the gnulib modules nor by gnulib-tool.
35474
35475 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
35476
35477         * DEPENDENCIES: Give overall description of version dependency
35478         desirability.  Use more-typical names for apps.
35479         Add shell, coreutils, diffutils, grep, tar, gzip.
35480
35481 2007-04-04  Simon Josefsson  <simon@josefsson.org>
35482
35483         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
35484
35485 2007-04-04  Karl Berry  <karl@gnu.org>
35486
35487         * MODULES.html.sh (func_module): missing '.
35488
35489 2007-04-03  Bruno Haible  <bruno@clisp.org>
35490
35491         * modules/argmatch-tests (Makefile.am): New variable
35492         test_argmatch_LDADD.
35493         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
35494         * modules/array-list-tests (Makefile.am): New variable
35495         test_array_list_LDADD.
35496         * modules/array-oset-tests (Makefile.am): New variable
35497         test_array_oset_LDADD.
35498         * modules/avltree-list-tests (Makefile.am): New variable
35499         test_avltree_list_LDADD.
35500         * modules/avltree-oset-tests (Makefile.am): New variable
35501         test_avltree_oset_LDADD.
35502         * modules/avltreehash-list-tests (Makefile.am): New variable
35503         test_avltreehash_list_LDADD.
35504         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
35505         test_canonicalize_lgpl_LDADD.
35506         * modules/carray-list-tests (Makefile.am): New variable
35507         test_carray_list_LDADD.
35508         * modules/dirname-tests (Makefile.am): New variable
35509         test_dirname_LDADD.
35510         * modules/linked-list-tests (Makefile.am): New variable
35511         test_linked_list_LDADD.
35512         * modules/linkedhash-list-tests (Makefile.am): New variable
35513         test_linkedhash_list_LDADD.
35514         * modules/rbtree-list-tests (Makefile.am): New variable
35515         test_rbtree_list_LDADD.
35516         * modules/rbtree-oset-tests (Makefile.am): New variable
35517         test_rbtree_oset_LDADD.
35518         * modules/rbtreehash-list-tests (Makefile.am): New variable
35519         test_rbtreehash_list_LDADD.
35520         * modules/xvasprintf-tests (Makefile.am): New variable
35521         test_xvasprintf_LDADD.
35522         Reported by Eric Blake.
35523
35524 2007-04-03  Eric Blake  <ebb9@byu.net>
35525
35526         * DEPENDENCIES: Weaken m4 requirements.
35527
35528 2007-04-03  Bruno Haible  <bruno@clisp.org>
35529
35530         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
35531         * modules/isnanl-tests (configure.ac): Likewise.
35532
35533 2007-04-03  Ben Pfaff  <blp@gnu.org>
35534
35535         * modules/iconv_open: Add $(srcdir)/ to source directory
35536         references in Makefile fragments that call gperf, to fix VPATH
35537         builds.
35538
35539 2007-04-03  Bruno Haible  <bruno@clisp.org>
35540
35541         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
35542         * lib/ldexpl.c: Undo last change.
35543
35544 2007-04-03  Bruno Haible  <bruno@clisp.org>
35545
35546         * modules/printf-frexpl (Depends-on): Undo last change.
35547         (Files): Add m4/ldexpl.m4.
35548
35549 2007-04-03  Bruno Haible  <bruno@clisp.org>
35550
35551         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
35552         * modules/isnanl (Link): New section.
35553
35554         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
35555         * modules/frexp (Link): New section.
35556
35557         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
35558         * modules/frexpl (Link): New section.
35559
35560         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
35561         * modules/ldexpl (Link): New section.
35562
35563 2007-04-03  Bruno Haible  <bruno@clisp.org>
35564
35565         * modules/TEMPLATE-EXTENDED: New file.
35566         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
35567
35568 2007-04-03  Bruno Haible  <bruno@clisp.org>
35569
35570         * DEPENDENCIES: New file.
35571         Suggested by Simon Josefsson.
35572
35573 2007-04-03  Bruno Haible  <bruno@clisp.org>
35574
35575         * doc/gnulib.texi: Escape @.
35576
35577 2007-04-03  James Youngman  <jay@gnu.org>
35578         and Paul Eggert  <eggert@cs.ucla.edu>
35579
35580         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
35581         birthtime on all systems that have birthtime, not just those which
35582         use st_birthtimensec rather than st_birthtim.  Putting zero in
35583         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
35584         that the birth time is not available for files on an NFS mount.
35585
35586 2007-04-03  Simon Josefsson  <simon@josefsson.org>
35587
35588         * modules/memxor: Move back from crypto/, suggested by Bruno.
35589         * modules/crypto/hmac-sha1: Fix memxor dependency.
35590
35591         * modules/crypto/gc: Moved from ../.
35592
35593 2007-04-02  Eric Blake  <ebb9@byu.net>
35594
35595         * lib/ldexpl.c (includes): Avoid libm.
35596
35597         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
35598
35599 2007-04-02  Bruno Haible  <bruno@clisp.org>
35600
35601         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
35602         on IRIX.
35603
35604 2007-04-02  Bruno Haible  <bruno@clisp.org>
35605
35606         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
35607         x86 or x86_64 platforms running MacOS X.
35608         Reported by Ryan Schmidt <@ryandesign.com>.
35609
35610 2007-04-02  Bruno Haible  <bruno@clisp.org>
35611
35612         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
35613         i386.
35614
35615 2007-04-01  Simon Josefsson  <simon@josefsson.org>
35616
35617         * modules/crypto/arcfour: Moved from ../.
35618         * modules/crypto/arcfour-tests: Moved from ../.
35619         * modules/crypto/arctwo: Moved from ../.
35620         * modules/crypto/arctwo-tests: Moved from ../.
35621         * modules/crypto/des: Moved from ../.
35622         * modules/crypto/des-tests: Moved from ../.
35623         * modules/crypto/gc-arcfour: Moved from ../.
35624         * modules/crypto/gc-arcfour-tests: Moved from ../.
35625         * modules/crypto/gc-arctwo: Moved from ../.
35626         * modules/crypto/gc-arctwo-tests: Moved from ../.
35627         * modules/crypto/gc-des: Moved from ../.
35628         * modules/crypto/gc-des-tests: Moved from ../.
35629         * modules/crypto/gc-hmac-md5: Moved from ../.
35630         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
35631         * modules/crypto/gc-hmac-sha1: Moved from ../.
35632         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
35633         * modules/crypto/gc-md2: Moved from ../.
35634         * modules/crypto/gc-md2-tests: Moved from ../.
35635         * modules/crypto/gc-md4: Moved from ../.
35636         * modules/crypto/gc-md4-tests: Moved from ../.
35637         * modules/crypto/gc-md5: Moved from ../.
35638         * modules/crypto/gc-md5-tests: Moved from ../.
35639         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
35640         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
35641         * modules/crypto/gc-random: Moved from ../.
35642         * modules/crypto/gc-rijndael: Moved from ../.
35643         * modules/crypto/gc-rijndael-tests: Moved from ../.
35644         * modules/crypto/gc-sha1: Moved from ../.
35645         * modules/crypto/gc-sha1-tests: Moved from ../.
35646         * modules/crypto/gc-tests: Moved from ../.
35647         * modules/crypto/hmac-md5: Moved from ../.
35648         * modules/crypto/hmac-md5-tests: Moved from ../.
35649         * modules/crypto/hmac-sha1: Moved from ../.
35650         * modules/crypto/hmac-sha1-tests: Moved from ../.
35651         * modules/crypto/md2: Moved from ../.
35652         * modules/crypto/md2-tests: Moved from ../.
35653         * modules/crypto/md4: Moved from ../.
35654         * modules/crypto/md4-tests: Moved from ../.
35655         * modules/crypto/md5: Moved from ../.
35656         * modules/crypto/md5-tests: Moved from ../.
35657         * modules/crypto/memxor: Moved from ../.
35658         * modules/crypto/rijndael: Moved from ../.
35659         * modules/crypto/rijndael-tests: Moved from ../.
35660         * modules/crypto/sha1: Moved from ../.
35661
35662 2007-03-30  James Youngman  <jay@gnu.org>
35663
35664         * tests/test-stat-time.c (prepare_test): use chmod() rather than
35665         rename() to change the ctime of a file (because ctime is unaffected
35666         by rename on jfs2 on AIX 5.1).
35667         (main): Start by doing cleanup, in case a previous run failed leaving
35668         test files behind.
35669
35670 2007-03-31  Bruno Haible  <bruno@clisp.org>
35671
35672         Support old proprietary implementations of iconv.
35673         * modules/iconv_open: New file.
35674         * lib/iconv_.h: New file.
35675         * m4/iconv_h.m4: New file.
35676         * lib/iconv_open.c: New file.
35677         * lib/iconv_open-aix.gperf: New file.
35678         * lib/iconv_open-hpux.gperf: New file.
35679         * lib/iconv_open-irix.gperf: New file.
35680         * lib/iconv_open-osf.gperf: New file.
35681         * m4/iconv_open.m4: New file.
35682         * modules/linebreak (Depends-on): Add iconv_open.
35683         * modules/striconv (Depends-on): Likewise.
35684         * modules/striconveh (Depends-on): Likewise.
35685         * modules/unicodeio (Depends-on): Likewise.
35686         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
35687         (iconv_t)(-1).
35688         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
35689         conversion if cd is (iconv_t)(-1).
35690         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
35691         is not possible.
35692
35693 2007-03-31  Bruno Haible  <bruno@clisp.org>
35694
35695         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
35696         work on Solaris either. Protect also second use of "autodetect_jp".
35697
35698 2007-03-31  Bruno Haible  <bruno@clisp.org>
35699
35700         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
35701         the function is not present.
35702
35703 2007-03-31  Bruno Haible  <bruno@clisp.org>
35704
35705         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
35706         the function is not present.
35707
35708 2007-03-31  Bruno Haible  <bruno@clisp.org>
35709
35710         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
35711         a bug in HP-UX iconv_open().
35712
35713 2007-03-31  Bruno Haible  <bruno@clisp.org>
35714
35715         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
35716         (Mathematics <math.h>): New section, add fpieee.
35717         (Input/output <stdio.h>): Add fseterr.
35718         (Mathematics <math.h>): New section, add printf-frexp.
35719         (Container data structures): Add sublist.
35720         (Core language properties): Add fpucw, inline.
35721         (Functions for greatest-width integer types <inttypes.h>): Add
35722         imaxabs, imaxdiv, inttypes.
35723         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
35724         isnanl-nolibm, ldexp.
35725         (Mathematics <math.h>): New section, add printf-frexpl.
35726         (Support for systems lacking POSIX:2001): Add fprintf-posix,
35727         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
35728         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
35729         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
35730         (Unicode string functions): Add unistr/u*-mbtoucr.
35731         (Java): Add javacomp-script, javaexec-script.
35732         (C#): Add csharpcomp-script, csharpexec-script.
35733         (Support for building libraries and executables): Add havelib,
35734         relocatable-*.
35735         (Support for maintaining and releasing projects): Renamed from
35736         'Support for maintaining and release projects'. Add announce-gen.
35737
35738 2007-03-31  Bruno Haible  <bruno@clisp.org>
35739
35740         * README: Talk primarily about git.
35741         (git and CVS): Renamed from CVS.
35742         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
35743         gnulib is available through git.
35744         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
35745
35746 2007-03-30  Bruno Haible  <bruno@clisp.org>
35747
35748         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
35749         * lib/poll_.h: Likewise.
35750         * lib/stat_.h: Likewise.
35751         * lib/sys_time_.h: Likewise.
35752         * lib/sysexit_.h: Likewise.
35753         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
35754         * lib/stdbool_.h: Likewise.
35755         * lib/byteswap_.h: Add double-inclusion guard.
35756
35757 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
35758
35759         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
35760
35761 2007-03-30  Karl Berry  <karl@gnu.org>
35762
35763         * config/srclist-update: double space after USA in the license
35764         substitution, since that's how it's usually (?) written.
35765
35766 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
35767
35768         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
35769         reported by Bruno Haible.
35770
35771 2007-03-29  Bruno Haible  <bruno@clisp.org>
35772
35773         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
35774         a bug in AIX iconv().
35775
35776 2007-03-29  Bruno Haible  <bruno@clisp.org>
35777
35778         * modules/ldexpl-tests: New file.
35779         * tests/test-ldexpl.c: New file.
35780
35781 2007-03-29  Bruno Haible  <bruno@clisp.org>
35782
35783         * lib/ldexpl.c: Include fpucw.h.
35784         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
35785         multiplication.
35786         * modules/ldexpl (Depends-on): Add fpucw.
35787
35788 2007-03-29  Bruno Haible  <bruno@clisp.org>
35789
35790         * modules/ldexpl: New file.
35791         * m4/ldexpl.m4: New file.
35792         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
35793         set.
35794         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
35795         REPLACE_LDEXPL.
35796         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
35797         REPLACE_LDEXPL.
35798         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
35799         gl_FUNC_LDEXPL_WORKS.
35800         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
35801         * modules/mathl (Files): Remove lib/ldexpl.c.
35802         (Depends-on): Add ldexpl.
35803
35804 2007-03-29  Bruno Haible  <bruno@clisp.org>
35805
35806         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
35807
35808 2007-03-29  Bruno Haible  <bruno@clisp.org>
35809
35810         * tests/test-striconveh.c (main): Don't assume that a direct conversion
35811         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
35812         and possibly also HP-UX.
35813         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
35814         work on AIX, IRIX, HP-UX, OSF/1.
35815         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
35816         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
35817         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
35818         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
35819         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
35820         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
35821
35822 2007-03-29  Bruno Haible  <bruno@clisp.org>
35823
35824         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
35825
35826 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
35827
35828         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
35829         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
35830
35831 2007-03-29  Eric Blake  <ebb9@byu.net>
35832
35833         * lib/acl-internal.h: Remove redundant include.
35834         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
35835         Cygwin when a file is locked.
35836
35837 2007-03-29  Bruno Haible  <bruno@clisp.org>
35838
35839         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
35840         file.
35841         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
35842
35843 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
35844
35845         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
35846         try to remove a parent directory if the child couldn't be removed
35847         (except for the first rmdir, which could fail because the child
35848         doesn't exist).  Problem reported by Jeff Blaine in
35849         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
35850
35851 2007-03-28  Bruno Haible  <bruno@clisp.org>
35852
35853         * lib/striconveh.c (utf8conv_carefully): New function.
35854         (mem_cd_iconveh_internal): Invoke it.
35855
35856 2007-03-28  Bruno Haible  <bruno@clisp.org>
35857
35858         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
35859         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
35860         input.
35861         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
35862         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
35863         unistr/u8-uctomb.
35864
35865 2007-03-28  Bruno Haible  <bruno@clisp.org>
35866
35867         * modules/unistr/u8-mbtoucr: New file.
35868         * lib/unistr/u8-mbtoucr.c: New file.
35869         * modules/unistr/u16-mbtoucr: New file.
35870         * lib/unistr/u16-mbtoucr.c: New file.
35871         * modules/unistr/u16-mbtoucr: New file.
35872         * lib/unistr/u16-mbtoucr.c: New file.
35873         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
35874
35875 2007-03-27  Simon Josefsson  <simon@josefsson.org>
35876             Bruno Haible  <bruno@clisp.org>
35877
35878         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
35879         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
35880         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
35881
35882         * m4/stdio_h.m4: Add stubs for vasprintf too.
35883
35884         * modules/stdio: Support vasprintf in sed command.
35885
35886         * modules/vasprintf: Depend on stdio for prototypes.  Remove
35887         vasprintf.h.  Add stdio module indicator.
35888
35889         * lib/stdio_.h: Declare asprintf and vasprintf, based on
35890         vasprintf.h.
35891
35892         * lib/vasprintf.h: File removed.
35893
35894         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
35895         * lib/vasprintf.c: Ditto.
35896         * lib/xvasprintf.c: Ditto.
35897         * tests/test-vasprintf-posix.c: Ditto.
35898         * tests/test-vasprintf.c: Ditto.
35899
35900 2007-03-27  Bruno Haible  <bruno@clisp.org>
35901
35902         Make vasnprintf multithread-safe.
35903         * lib/vasnprintf.c (decimal_point_char): New function.
35904         (VASNPRINTF): Use it.
35905         Suggested by Simon Josefsson.
35906
35907 2007-03-27  Eric Blake  <ebb9@byu.net>
35908
35909         Support sub-second birthtime on cygwin.
35910         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
35911         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
35912         (get_stat_birthtime): Also work with st_birthtim.
35913
35914 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
35915
35916         * lib/stat-time.h (USE_BIRTHTIME): Remove.
35917         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
35918         (get_stat_birthtime_ns): Do not try to use "spare" fields.
35919         (get_stat_birthtime_ns): Simplify compile-time tests.
35920         (get_stat_birthtime): Change the API to look like
35921         get_stat_mtime etc., except return a negative tv_nsec on error.
35922         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
35923         Don't check for "spare" fields.
35924         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
35925         or for struct stat.st_birthtime, as these tests aren't used.
35926         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
35927
35928 2007-03-27  Bruno Haible  <bruno@clisp.org>
35929
35930         * lib/stat-time.h: Include <sys/stat.h>.
35931
35932 2007-03-27  James Youngman  <jay@gnu.org>
35933
35934         * lib/stat-time.h (get_stat_birthtime): New function for
35935           retrieving st_birthtime as provided by UFS2 (hence *BSD).
35936         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
35937           and its variants.
35938         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
35939         * modules/stat-time-test: New file.
35940         * tests/test-stat-time.c: New test, devised by Bruno Haible.
35941
35942 2007-03-26  Bruno Haible  <bruno@clisp.org>
35943
35944         Better support of signalling NaNs.
35945         * lib/atanl.c: Include isnanl.h.
35946         (atanl): Perform test for NaN at the beginning of the function and
35947         through a call to isnanl.
35948         * lib/cosl.c: Include isnanl.h.
35949         (cosl): Perform test for NaN at the beginning of the function and
35950         through a call to isnanl.
35951         * lib/ldexpl.c: Include isnanl.h.
35952         (ldexpl): Perform test for NaN through a call to isnanl.
35953         * lib/logl.c: Include isnanl.h.
35954         (logl): Perform test for NaN at the beginning of the function and
35955         through a call to isnanl.
35956         * lib/sinl.c: Include isnanl.h.
35957         (sinl): Perform test for NaN at the beginning of the function and
35958         through a call to isnanl.
35959         * lib/sqrtl.c: Include isnanl.h.
35960         (sqrtl): Perform test for NaN at the beginning of the function and
35961         through a call to isnanl.
35962         * lib/tanl.c: Include isnanl.h.
35963         (tanl): Perform test for NaN at the beginning of the function and
35964         through a call to isnanl.
35965         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
35966         * modules/mathl (Depends-on): Add isnanl.
35967
35968 2007-03-26  Eric Blake  <ebb9@byu.net>
35969
35970         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
35971         regression in logic sense of previous patch.
35972
35973 2007-03-26  Bruno Haible  <bruno@clisp.org>
35974
35975         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
35976         unportable shell command "if ! ...".
35977         Reported by Ralf Wildenhues.
35978
35979 2007-03-25  Bruno Haible  <bruno@clisp.org>
35980
35981         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
35982         <sysexits.h> file, and only add EX_CONFIG.
35983         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
35984         absolute file name and whether it is sufficient. Substitute also
35985         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
35986         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
35987         ABSOLUTE_SYSEXITS_H into sysexits.h.
35988
35989 2007-03-25  Bruno Haible  <bruno@clisp.org>
35990
35991         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
35992         hints is NULL.
35993
35994 2007-03-25  Bruno Haible  <bruno@clisp.org>
35995
35996         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
35997         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
35998
35999 2007-03-25  Bruno Haible  <bruno@clisp.org>
36000
36001         * lib/vasnprintf.c: Include langinfo.h.
36002         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
36003         multithread-safe.
36004         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
36005         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
36006         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
36007         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
36008         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
36009         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
36010         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
36011         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
36012         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
36013         Reported by Simon Josefsson.
36014
36015 2007-03-25  Bruno Haible  <bruno@clisp.org>
36016
36017         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
36018         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
36019         * modules/vasnprintf (Depends-on): Add stdint.
36020
36021 2007-03-25  Bruno Haible  <bruno@clisp.org>
36022
36023         * modules/fpieee: New file.
36024         * m4/fpieee.m4: New file.
36025         * modules/isnan-nolibm (Depends-on): Add fpieee.
36026         * modules/isnanl-nolibm (Depends-on): Add fpieee.
36027         * modules/isnanl (Depends-on): Add fpieee.
36028
36029 2007-03-25  Bruno Haible  <bruno@clisp.org>
36030
36031         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
36032
36033 2007-03-25  Bruno Haible  <bruno@clisp.org>
36034
36035         Avoid test failures on IRIX 6.5.
36036         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
36037         (main): Use it.
36038         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
36039         macros.
36040         (main): Use them.
36041
36042 2007-03-25  Bruno Haible  <bruno@clisp.org>
36043
36044         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
36045         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
36046         exists but doesn't work.
36047         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
36048         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
36049         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
36050         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
36051
36052 2007-03-25  Bruno Haible  <bruno@clisp.org>
36053
36054         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
36055         returns inf. Needed on IRIX 6.5.
36056
36057 2007-03-25  Bruno Haible  <bruno@clisp.org>
36058
36059         * tests/test-frexpl.c: Include isnanl-nolibm.h.
36060         (main): Use isnanl instead of x != x idiom.
36061         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
36062
36063         * tests/test-frexp.c: Include isnan.h.
36064         (main): Use isnan instead of x != x idiom.
36065         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
36066
36067 2007-03-25  Bruno Haible  <bruno@clisp.org>
36068
36069         * tests/test-frexp.c (NaN): New function/macro.
36070         (main): Use it instead of 0.0 / 0.0.
36071         * tests/test-isnan.c (NaN): New function/macro.
36072         (main): Use it instead of 0.0 / 0.0.
36073         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
36074         (test_function): Use it instead of 0.0 / 0.0.
36075         * tests/test-vasprintf-posix.c (NaN): New function/macro.
36076         (test_function): Use it instead of 0.0 / 0.0.
36077         * tests/test-snprintf-posix.h (NaN): New function/macro.
36078         (test_function): Use it instead of 0.0 / 0.0.
36079         * tests/test-sprintf-posix.h (NaN): New function/macro.
36080         (test_function): Use it instead of 0.0 / 0.0.
36081         * tests/test-fprintf-posix.h (NaN): New function/macro.
36082         (test_function): Use it instead of 0.0 / 0.0.
36083         * tests/test-printf-posix.h (NaN): New function/macro.
36084         (test_function): Use it instead of 0.0 / 0.0.
36085
36086         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
36087
36088 2007-03-25  Bruno Haible  <bruno@clisp.org>
36089
36090         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
36091
36092 2007-03-25  Bruno Haible  <bruno@clisp.org>
36093
36094         * lib/regexec.c (merge_state_with_log): Make static.
36095
36096 2007-03-25  Bruno Haible  <bruno@clisp.org>
36097
36098         * lib/trigl.c (kernel_rem_pio2): Make static.
36099
36100 2007-03-25  Bruno Haible  <bruno@clisp.org>
36101
36102         * lib/sincosl.c (sincosl_table): Make static.
36103
36104 2007-03-25  Bruno Haible  <bruno@clisp.org>
36105
36106         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
36107         if the compiler does not support C99.
36108
36109 2007-03-25  Bruno Haible  <bruno@clisp.org>
36110
36111         * modules/time (Makefile.am): Ensure all rule action lines start with a
36112         tab.
36113
36114 2007-03-24  Bruno Haible  <bruno@clisp.org>
36115
36116         * modules/tsearch-tests: New file.
36117         * tests/test-tsearch.sh: New file.
36118         * tests/test-tsearch.c: New file, mostly copied from glibc.
36119
36120         * modules/search-tests: New file.
36121         * tests/test-search.c: New file.
36122
36123         * modules/search: New file.
36124         * lib/search_.h: New file, incorporating lib/tsearch.h.
36125         * m4/search_h.m4: New file.
36126         * lib/tsearch.h: Remove file.
36127         * lib/tsearch.c: Include search.h instead of tsearch.h.
36128         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
36129         HAVE_TSEARCH.
36130         * modules/tsearch (Files): Remove lib/tsearch.h.
36131         (Depends-on): Add search.
36132         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
36133         (Include): Change tsearch.h into search.h.
36134
36135 2007-03-24  Bruno Haible  <bruno@clisp.org>
36136
36137         * modules/fpucw: New file.
36138         * lib/fpucw.h: New file.
36139         * lib/frexp.c: Include fpucw.h.
36140         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36141         (FUNC): Use them.
36142         * lib/printf-frexp.c: Include fpucw.h.
36143         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36144         (FUNC): Use them.
36145         * lib/vasnprintf.c: Include fpucw.h.
36146         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
36147         'long double' calculations.
36148         * tests/test-frexpl.c: Include fpucw.h.
36149         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36150         * tests/test-printf-frexpl.c: Include fpucw.h.
36151         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36152         * modules/frexpl (Depends-on): Add fpucw.
36153         * modules/printf-frexpl (Depends-on): Likewise.
36154         * modules/fprintf-posix (Depends-on): Likewise.
36155         * modules/snprintf-posix (Depends-on): Likewise.
36156         * modules/sprintf-posix (Depends-on): Likewise.
36157         * modules/vasnprintf-posix (Depends-on): Likewise.
36158         * modules/vasprintf-posix (Depends-on): Likewise.
36159         * modules/vfprintf-posix (Depends-on): Likewise.
36160         * modules/vsnprintf-posix (Depends-on): Likewise.
36161         * modules/vsprintf-posix (Depends-on): Likewise.
36162         * modules/frexpl-tests (Depends-on): Likewise.
36163         * modules/printf-frexpl-tests (Depends-on): Likewise.
36164
36165 2007-03-24  Bruno Haible  <bruno@clisp.org>
36166
36167         * lib/float+.h: New file.
36168         * lib/isnan.c: Include float+.h.
36169         (SIZE): New macro.
36170         (FUNC): Compare only SIZE bytes of the value.
36171         * lib/vasnprintf.c: Include float+.h.
36172         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
36173         SIZEOF_LDBL or SIZEOF_DBL bytes.
36174         * modules/isnan-nolibm (Files): Add lib/float+.h.
36175         * modules/isnanl-nolibm (Files): Add lib/float+.h.
36176         * modules/isnanl (Files): Add lib/float+.h.
36177         * modules/vasnprintf (Files): Add lib/float+.h.
36178
36179 2007-03-24  Bruno Haible  <bruno@clisp.org>
36180
36181         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
36182         include isnanl-nolibm.h.
36183
36184 2007-03-24  Bruno Haible  <bruno@clisp.org>
36185
36186         * tests/test-read-file.c (main): Don't produce spurious output for
36187         expected situations. Make the test fail if it encountered unexpected
36188         results.
36189
36190 2007-03-24  Bruno Haible  <bruno@clisp.org>
36191
36192         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
36193         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
36194
36195 2007-03-24  Bruno Haible  <bruno@clisp.org>
36196
36197         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
36198
36199 2007-03-24  Bruno Haible  <bruno@clisp.org>
36200
36201         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
36202         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
36203
36204         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
36205         * modules/utf8-ucs4: Turn into a symbolic link to module
36206         unistr/u8-mbtouc.
36207
36208         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
36209         utf8-ucs4-unsafe.
36210         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
36211         unistr/u8-mbtouc-unsafe.
36212
36213         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
36214         * modules/utf16-ucs4: Turn into a symbolic link to module
36215         unistr/u16-mbtouc.
36216
36217         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
36218         utf16-ucs4-unsafe.
36219         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
36220         unistr/u16-mbtouc-unsafe.
36221
36222         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
36223         * modules/ucs4-utf8: Turn into a symbolic link to module
36224         unistr/u8-ubtomb.
36225
36226         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
36227         * modules/ucs4-utf16: Turn into a symbolic link to module
36228         unistr/u16-ubtomb.
36229
36230 2007-03-24  Bruno Haible  <bruno@clisp.org>
36231
36232         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
36233         Enable the function only if HAVE_INLINE.
36234         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
36235         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36236         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
36237         Enable the function only if HAVE_INLINE.
36238         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
36239         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36240         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
36241         Enable the function only if HAVE_INLINE.
36242         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
36243         Enable the function only if HAVE_INLINE.
36244         * modules/utf8-ucs4: Update.
36245         * modules/utf8-ucs4-unsafe: Update.
36246         * modules/utf16-ucs4: Update.
36247         * modules/utf16-ucs4-unsafe: Update.
36248         * modules/ucs4-utf8: Update.
36249         * modules/ucs4-utf16: Update.
36250
36251 2007-03-24  Bruno Haible  <bruno@clisp.org>
36252
36253         * lib/utf8-ucs4.h: Remove file.
36254         * lib/utf8-ucs4-unsafe.h: Remove file.
36255         * lib/utf16-ucs4.h: Remove file.
36256         * lib/utf16-ucs4-unsafe.h: Remove file.
36257         * lib/ucs4-utf8.h: Remove file.
36258         * lib/ucs4-utf16.h: Remove file.
36259         * lib/unistr.h: Include their previous contents.
36260         * m4/utf-ucs4.m4: Remove file.
36261         * m4/ucs4-utf.m4: Remove file.
36262         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
36263         (Depends-on): Add unistr/base.
36264         (configure.ac): Remove gl_UTF_UCS4.
36265         (Makefile.am): Update.
36266         (Include): Change to unistr.h.
36267         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
36268         (Depends-on): Add unistr/base.
36269         (configure.ac): Remove gl_UTF_UCS4.
36270         (Makefile.am): Update.
36271         (Include): Change to unistr.h.
36272         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
36273         (Depends-on): Add unistr/base.
36274         (configure.ac): Remove gl_UTF_UCS4.
36275         (Makefile.am): Update.
36276         (Include): Change to unistr.h.
36277         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
36278         (Depends-on): Add unistr/base.
36279         (configure.ac): Remove gl_UTF_UCS4.
36280         (Makefile.am): Update.
36281         (Include): Change to unistr.h.
36282         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
36283         (Depends-on): Add unistr/base.
36284         (configure.ac): Remove gl_UCS4_UTF.
36285         (Makefile.am): Update.
36286         (Include): Change to unistr.h.
36287         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
36288         (Depends-on): Add unistr/base.
36289         (configure.ac): Remove gl_UCS4_UTF.
36290         (Makefile.am): Update.
36291         (Include): Change to unistr.h.
36292         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
36293         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
36294         utf8-ucs4-unsafe.h.
36295         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
36296         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
36297         utf16-ucs4-unsafe.h.
36298         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
36299         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
36300         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
36301         * lib/unistr/u8-strchr.c: Likewise.
36302         * lib/unistr/u8-strrchr.c: Likewise.
36303         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
36304         * lib/unistr/u16-strchr.c: Likewise.
36305         * lib/unistr/u16-strrchr.c: Likewise.
36306         * lib/striconveh.c: Update.
36307         * lib/linebreak.c: Update.
36308
36309 2007-03-24  Bruno Haible  <bruno@clisp.org>
36310
36311         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
36312         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
36313
36314 2007-03-22  Bruno Haible  <bruno@clisp.org>
36315
36316         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
36317
36318 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
36319
36320         * MODULES.html.sh (File system functions): New module write-any-file.
36321         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
36322         * m4/write-any-file.m4: New files.
36323
36324 2007-03-23  Eric Blake  <ebb9@byu.net>
36325
36326         * gnulib-tool: Rearrange space-tab sequences, since some editors
36327         like to eat them.
36328
36329 2007-03-23  Eric Blake  <ebb9@byu.net>
36330
36331         * lib/version-etc.c (version_etc_va): Update license wording to
36332         be more concise.  Recommended by Richard Stallman.
36333
36334 2007-03-22  Bruno Haible  <bruno@clisp.org>
36335
36336         * lib/poll.c (MSG_PEEK): New fallback definition.
36337
36338 2007-03-22  Bruno Haible  <bruno@clisp.org>
36339
36340         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
36341         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
36342         (main): Update.
36343         Fixes a compilation error on BeOS.
36344
36345 2007-03-22  Bruno Haible  <bruno@clisp.org>
36346
36347         * modules/frexpl-tests: New file.
36348         * tests/test-frexpl.c: New file.
36349
36350         * modules/frexpl: New file.
36351         * m4/frexpl.m4: New file.
36352         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
36353         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
36354         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
36355         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
36356         (Depends-on): Add frexpl. Remove isnanl-nolibm.
36357         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
36358
36359 2007-03-22  Bruno Haible  <bruno@clisp.org>
36360
36361         * lib/frexpl.c: Share code with lib/frexp.c.
36362         * modules/mathl (Files): Add lib/frexp.c.
36363         (Depends-on): Add isnanl-nolibm.
36364
36365 2007-03-22  Bruno Haible  <bruno@clisp.org>
36366
36367         * modules/printf-frexp (Files): Add m4/frexp.m4.
36368         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
36369         only if the found frexp function actually works.
36370
36371 2007-03-22  Bruno Haible  <bruno@clisp.org>
36372
36373         * lib/frexp.c: Remove older implementation that uses divisions.
36374
36375 2007-03-21  Bruno Haible  <bruno@clisp.org>
36376
36377         * modules/frexp-tests: New file.
36378         * tests/test-frexp.c: New file.
36379
36380         * modules/frexp: New file.
36381         * lib/frexp.c: New file.
36382         * m4/frexp.m4: New file.
36383         * lib/math_.h (frexp): New declaration.
36384         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
36385         REPLACE_FREXP.
36386         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
36387
36388 2007-03-21  Bruno Haible  <bruno@clisp.org>
36389
36390         * modules/isnanl-tests: New file.
36391         * tests/test-isnanl.c: New file.
36392
36393         * modules/isnanl: New file.
36394         * lib/isnanl.h: New file.
36395         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
36396         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
36397         gl_FUNC_ISNANL_WORKS.
36398         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
36399         New macros.
36400
36401 2007-03-21  Bruno Haible  <bruno@clisp.org>
36402
36403         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
36404         lib/isnanl.h.
36405         (Include): Update.
36406         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
36407         * lib/vasnprintf.c: Update.
36408         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
36409         tests/test-isnanl.h, remove tests/test-isnanl.c.
36410         (Makefile.am): Update.
36411         * tests/test-isnanl-nolibm.c: New file.
36412         * tests/test-isnanl.h: New file.
36413         * tests/test-isnanl.c: Remove file.
36414
36415 2007-03-21  Jim Meyering  <jim@meyering.net>
36416
36417         When trying to open ".", treat ESTALE like EACCES.
36418         * lib/savewd.c (savewd_save): Resort to forking not just upon
36419         failure with EACCES, but also when errno is ESTALE.
36420
36421 2007-03-20  Bruno Haible  <bruno@clisp.org>
36422
36423         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
36424         Needed on AIX 5.1. Reported by Matthew Woehlke.
36425
36426 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36427
36428         Suggestions by Bruno Haible:
36429         * lib/acl-internal.h: Include "gettext.h" rather than rolling
36430         our own.
36431         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
36432         * modules/acl (Depends-on): Add gettext.
36433
36434 2007-03-19  Bruno Haible  <bruno@clisp.org>
36435
36436         * modules/iconvme: Remove file.
36437         * lib/iconvme.h: Remove file.
36438         * lib/iconvme.c: Remove file.
36439         * m4/iconvme.m4: Remove file.
36440
36441 2007-03-19  Bruno Haible  <bruno@clisp.org>
36442
36443         * doc/relocatable-maint.texi: Break long shell script line.
36444         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
36445
36446 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36447
36448         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
36449         handle file_has_acl.
36450         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
36451         * lib/acl.c: Move header inclusions and related macro defns into
36452         lib/acl-internal.h.
36453         (S_ISLNK): Remove defn, since that's now done for us.
36454         (file_has_acl): Move to lib/file-has-acl.c.
36455         Call acl_trivial if available.  This is the crucial part of the fix.
36456         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
36457         shared within the library.  Rewrite a bit, partly to make it compatible
36458         with the GNU coding style.
36459         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
36460         Remove unnecessary double-quotes.
36461         Don't test for acl_to_text; the build will catch that.
36462         Replace acl_entries if it doesn't exist and it is needed.
36463         Check for -lsec and acl_trivial (as used on Solaris 10).
36464         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
36465         lib/file-has-acl.c.
36466         (Depends-on): Add sys_stat, for S_ISLNK.
36467
36468 2007-03-19  Ben Pfaff  <blp@gnu.org>
36469
36470         * doc/gnulib.texi: Fix typos.
36471         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
36472
36473 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36474
36475         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
36476         If size is zero here, buf must be zero.
36477
36478 2007-03-19  Simon Josefsson  <simon@josefsson.org>
36479
36480         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
36481         <bruno@clisp.org>.
36482
36483 2007-03-18  Bruno Haible  <bruno@clisp.org>
36484
36485         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
36486         Suggested by Eric Blake.
36487
36488 2007-03-18  Ben Pfaff  <blp@gnu.org>
36489
36490         * doc/relocatable.texi: Recommend using as prefix a directory
36491         that does not exist and will never be created.  Based on
36492         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
36493         and others.
36494
36495 2007-03-17  Bruno Haible  <bruno@clisp.org>
36496
36497         * lib/fchownat.c: Include lchown.h.
36498
36499 2007-03-17  Bruno Haible  <bruno@clisp.org>
36500
36501         Fix endless loop when the given allocated size was > INT_MAX.
36502         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
36503         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
36504         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
36505         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
36506         * lib/sprintf.c (sprintf): Likewise.
36507
36508 2007-03-17  Bruno Haible  <bruno@clisp.org>
36509
36510         * tests/test-argp-2.sh (func_compare): Output a context diff.
36511
36512 2007-03-17  Bruno Haible  <bruno@clisp.org>
36513
36514         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
36515         locale's decimal-point character.
36516
36517 2007-03-17  Bruno Haible  <bruno@clisp.org>
36518
36519         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
36520         before comparing it. Needed because on some platforms (e.g. x86) a
36521         'long double' occupies less bytes than sizeof (long double).
36522
36523 2007-03-17  Bruno Haible  <bruno@clisp.org>
36524
36525         * tests/test-crc.c (main): Make printf statements 64-bit clean.
36526         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
36527         * tests/test-getaddrinfo.c (simple): Likewise.
36528         * tests/test-read-file.c (main): Likewise.
36529
36530 2007-03-17  Bruno Haible  <bruno@clisp.org>
36531
36532         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
36533
36534 2007-03-17  Bruno Haible  <bruno@clisp.org>
36535
36536         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
36537         unused variable.
36538
36539 2007-03-17  Bruno Haible  <bruno@clisp.org>
36540
36541         * tests/test-c-strcasecmp.c: Include c-strcase.h.
36542         * tests/test-c-strncasecmp.c: Likewise.
36543
36544 2007-03-17  Bruno Haible  <bruno@clisp.org>
36545
36546         * modules/stdlib (Depends-on): Add unistd.
36547         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
36548         Needed for MacOS X 10.3.
36549
36550 2007-03-17  Bruno Haible  <bruno@clisp.org>
36551
36552         * lib/unistr/u-strdup.h: Include <stdlib.h>.
36553
36554 2007-03-17  Bruno Haible  <bruno@clisp.org>
36555
36556         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
36557
36558 2007-03-17  Bruno Haible  <bruno@clisp.org>
36559
36560         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
36561         to reflect files copied from gnulib (with or without modifications).
36562         Suggested by Jim Meyering.
36563
36564 2007-03-17  Eric Blake  <ebb9@byu.net>
36565
36566         * NEWS: Document stdlib change from 2007-02-18.
36567
36568 2007-03-17  Jim Meyering  <jim@meyering.net>
36569
36570         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
36571         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
36572         someone uses a name containing shell meta-characters.
36573         Reported by Alfred M. Szmidt.
36574
36575         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
36576
36577 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
36578
36579         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
36580         and copy gettext configuration files only if configure.ac contains
36581         a use of AM_GNU_GETTEXT_VERSION.
36582
36583 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
36584
36585         * build-aux/bootstrap (gnulib_name): New variable.
36586         (gnulib_tool_options): Use it.
36587
36588 2007-03-13  Simon Josefsson  <simon@josefsson.org>
36589
36590         * tests/test-des.c: Use new namespace.
36591
36592 2007-03-15  Bruno Haible  <bruno@clisp.org>
36593
36594         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
36595         Reported by James Youngman <jay@gnu.org>.
36596
36597 2007-03-15  Bruno Haible  <bruno@clisp.org>
36598
36599         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
36600         declared prototype. Needed with cc on OSF/1 5.1.
36601
36602 2007-03-15  Bruno Haible  <bruno@clisp.org>
36603
36604         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
36605         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
36606         (struct gl_list_implementation): Add dispose_fn argument to the
36607         'create_empty', 'create' methods.
36608         (struct gl_list_impl_base): Add field 'dispose_fn'.
36609         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
36610         argument.
36611         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
36612         dispose_fn argument.
36613         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
36614         dispose_fn on the dropped values.
36615         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
36616         dispose_fn argument.
36617         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
36618         dropped values.
36619         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
36620         (gl_tree_remove_node): Call dispose_fn on the dropped value.
36621         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
36622         (gl_tree_remove_node): Call dispose_fn on the dropped value.
36623         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
36624         argument.
36625         (gl_tree_list_free): Call dispose_fn on the dropped values.
36626         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
36627         the dropped values.
36628         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
36629         Add dispose_fn argument.
36630         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
36631         Call dispose_fn on the dropped values.
36632         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
36633         Add dispose_fn argument.
36634         (gl_sublist_create): Initialize the 'dispose_fn' field.
36635         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
36636         * tests/test-array_list.c (main): Update.
36637         * tests/test-carray_list.c (main): Update.
36638         * tests/test-avltree_list.c (main): Update.
36639         * tests/test-rbtree_list.c (main): Update.
36640         * tests/test-avltreehash_list.c (main): Update.
36641         * tests/test-rbtreehash_list.c (main): Update.
36642         * tests/test-linked_list.c (main): Update.
36643         * tests/test-linkedhash_list.c (main): Update.
36644         * tests/test-array_oset.c (main): Update.
36645
36646 2007-03-15  Bruno Haible  <bruno@clisp.org>
36647
36648         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
36649         (gl_oset_create_empty): Add dispose_fn argument.
36650         (struct gl_oset_implementation): Add dispose_fn argument to
36651         'create_empty' method.
36652         (struct gl_oset_impl_base): Add dispose_fn field.
36653         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
36654         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
36655         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
36656         values.
36657         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
36658         (gl_tree_oset_free): Call dispose_fn on the dropped values.
36659         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
36660         dropped value.
36661         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
36662         dropped value.
36663         * tests/test-array_oset.c (main): Update.
36664         * tests/test-avltree_oset.c (main): Update.
36665         * tests/test-rbtree_oset.c (main): Update.
36666         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
36667
36668 2007-03-13  Bruno Haible  <bruno@clisp.org>
36669
36670         * tests/test-stdbool.c (i): Update after last patch.
36671
36672 2007-03-12  Bruno Haible  <bruno@clisp.org>
36673
36674         * lib/quotearg.c: Include <wctype.h> early, before the definition of
36675         the iswprint macro. Needed on Solaris 2.5.1.
36676
36677 2007-03-12  Bruno Haible  <bruno@clisp.org>
36678
36679         * tests/test-printf-frexp.c (main): Declare x as volatile.
36680
36681 2007-03-12  Simon Josefsson  <simon@josefsson.org>
36682
36683         * doc/gnulib.texi (Build robot for gnulib): New section.
36684
36685 2007-03-12  Jim Meyering  <jim@meyering.net>
36686
36687         * build-aux/bootstrap: New file.
36688         * build-aux/bootstrap.conf: New file, from coreutils.
36689
36690 2007-03-11  Bruno Haible  <bruno@clisp.org>
36691
36692         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
36693
36694 2007-03-12  Simon Josefsson  <simon@josefsson.org>
36695
36696         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
36697         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
36698         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
36699
36700 2007-03-11  Bruno Haible  <bruno@clisp.org>
36701
36702         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
36703         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
36704
36705 2007-03-11  Bruno Haible  <bruno@clisp.org>
36706
36707         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
36708         formula. Needed for SunPRO C 5.0.
36709
36710 2007-03-11  Bruno Haible  <bruno@clisp.org>
36711
36712         * modules/long-options (Depends-on): Add getopt.
36713
36714 2007-03-11  Bruno Haible  <bruno@clisp.org>
36715
36716         * modules/modechange (Depends-on): Add stdbool.
36717
36718 2007-03-11  Bruno Haible  <bruno@clisp.org>
36719
36720         * modules/i-ring (Depends-on): Add stdbool.
36721
36722 2007-03-11  Bruno Haible  <bruno@clisp.org>
36723
36724         * modules/gc-des (Depends-on): Add stdbool.
36725
36726 2007-03-11  Bruno Haible  <bruno@clisp.org>
36727
36728         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
36729
36730 2007-03-11  Bruno Haible  <bruno@clisp.org>
36731
36732         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
36733
36734 2007-03-11  Bruno Haible  <bruno@clisp.org>
36735
36736         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
36737
36738 2007-03-11  Bruno Haible  <bruno@clisp.org>
36739
36740         * lib/vasnprintf.c (sprintf): Undefine.
36741
36742 2007-03-11  Bruno Haible  <bruno@clisp.org>
36743
36744         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
36745         initializers in SunPRO C and Compaq C compilers.
36746
36747 2007-03-11  Bruno Haible  <bruno@clisp.org>
36748
36749         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
36750         decrementing code ANSI C compliant.
36751
36752 2007-03-11  Bruno Haible  <bruno@clisp.org>
36753
36754         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
36755         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
36756
36757 2007-03-11  Bruno Haible  <bruno@clisp.org>
36758
36759         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
36760         <stdbool.h> substitute doesn't pass.
36761
36762 2007-03-11  Bruno Haible  <bruno@clisp.org>
36763
36764         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
36765
36766 2007-03-11  Bruno Haible  <bruno@clisp.org>
36767
36768         * gnulib-tool (func_create_megatestdir): Create also an autobuild
36769         script, for submission to autobuild.josefsson.org.
36770
36771 2007-03-10  Bruno Haible  <bruno@clisp.org>
36772
36773         * modules/canonicalize-lgpl-tests: New file.
36774         * tests/test-canonicalize-lgpl.sh: New file.
36775         * tests/test-canonicalize-lgpl.c: New file.
36776
36777         * modules/c-strcase-tests: New file.
36778         * tests/test-c-strcase.sh: New file.
36779         * tests/test-c-strcasecmp.c: New file.
36780         * tests/test-c-strncasecmp.c: New file.
36781
36782         * modules/atexit-tests: New file.
36783         * tests/test-atexit.sh: New file.
36784         * tests/test-atexit.c: New file.
36785
36786 2007-03-10  Bruno Haible  <bruno@clisp.org>
36787
36788         * tests/test-binary-io.sh: Use temporary filenames that are not so
36789         likely to clash with those of other tests (in a parallel make).
36790         * tests/test-binary-io.c: Likewise.
36791
36792 2007-03-10  Bruno Haible  <bruno@clisp.org>
36793
36794         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
36795         fallback; use #error instead.
36796         Suggested by Simon Josefsson.
36797
36798 2007-03-10  Bruno Haible  <bruno@clisp.org>
36799
36800         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
36801         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
36802         first and the last.
36803
36804 2007-03-10  Bruno Haible  <bruno@clisp.org>
36805
36806         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
36807
36808 2007-03-10  Bruno Haible  <bruno@clisp.org>
36809
36810         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
36811         "make distcheck".
36812         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
36813         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
36814         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
36815
36816 2007-03-10  Bruno Haible  <bruno@clisp.org>
36817
36818         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
36819         variable.
36820         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
36821         variable.
36822
36823 2007-03-09  Eric Blake  <ebb9@byu.net>
36824         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
36825
36826         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
36827         types are not being provided by gnulib.
36828         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
36829         types are supported.
36830
36831 2007-03-10  Bruno Haible  <bruno@clisp.org>
36832
36833         * lib/stdio_.h (__attribute__): New macro.
36834         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
36835         vsprintf): Specify __attribute__ __format__ for GCC.
36836         Suggested by Eric Blake.
36837
36838 2007-03-09  Bruno Haible  <bruno@clisp.org>
36839
36840         * modules/printf-posix-tests: New file.
36841         * tests/test-printf-posix.sh: New file.
36842         * tests/test-printf-posix.c: New file.
36843
36844         * modules/printf-posix: New file.
36845         * lib/printf.c: New file.
36846         * m4/printf-posix-rpl.m4: New file.
36847         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
36848         REPLACE_PRINTF.
36849         * lib/stdio_.h (printf): New declaration.
36850         (format, __format__, ____printf____, ____scanf____, ____strftime____,
36851         ____strfmon____): New macros.
36852         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
36853         REPLACE_PRINTF.
36854
36855 2007-03-09  Bruno Haible  <bruno@clisp.org>
36856
36857         * tests/test-vasnprintf-posix2.sh: New file.
36858         * tests/test-vasnprintf-posix2.c: New file.
36859         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
36860         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
36861         (Makefile.am): Activate test-vasnprintf-posix2.sh.
36862
36863         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
36864         a locale dependent decimal point, rather than always '.'.
36865
36866 2007-03-09  Eric Blake  <ebb9@byu.net>
36867
36868         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
36869         spite of platforms like Tandem/NSK that define it to -1.
36870
36871 2007-03-08  Bruno Haible  <bruno@clisp.org>
36872
36873         * modules/vprintf-posix-tests: New file.
36874         * tests/test-vprintf-posix.sh: New file.
36875         * tests/test-vprintf-posix.c: New file.
36876         * tests/test-printf-posix.h: New file.
36877
36878         * modules/vprintf-posix: New file.
36879         * lib/vprintf.c: New file.
36880         * m4/vprintf-posix.m4: New file.
36881         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
36882         REPLACE_VPRINTF.
36883         * lib/stdio_.h (vprintf): New declaration.
36884         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
36885         REPLACE_VPRINTF.
36886
36887 2007-03-08  Bruno Haible  <bruno@clisp.org>
36888
36889         * modules/fprintf-posix-tests: New file.
36890         * tests/test-fprintf-posix.sh: New file.
36891         * tests/test-fprintf-posix.c: New file.
36892
36893         * modules/fprintf-posix: New file.
36894         * lib/fprintf.c: New file.
36895         * m4/fprintf-posix.m4: New file.
36896         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
36897         REPLACE_FPRINTF.
36898         * lib/stdio_.h (fprintf): New declaration.
36899         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
36900         REPLACE_FPRINTF.
36901
36902 2007-03-08  Bruno Haible  <bruno@clisp.org>
36903
36904         * modules/vfprintf-posix-tests: New file.
36905         * tests/test-vfprintf-posix.sh: New file.
36906         * tests/test-vfprintf-posix.c: New file.
36907         * tests/test-fprintf-posix.h: New file.
36908         * tests/test-fprintf-posix.out: New file.
36909
36910         * modules/vfprintf-posix: New file.
36911         * lib/vfprintf.c: New file.
36912         * m4/vfprintf-posix.m4: New file.
36913         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
36914         REPLACE_VFPRINTF.
36915         * lib/stdio_.h (vfprintf): New declaration.
36916         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
36917         REPLACE_VFPRINTF.
36918
36919 2007-03-08  Bruno Haible  <bruno@clisp.org>
36920
36921         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
36922
36923 2007-03-08  Bruno Haible  <bruno@clisp.org>
36924
36925         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
36926         instead of 'expr' invocations.
36927         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
36928         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
36929         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
36930         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
36931         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
36932         Suggested by Paul Eggert.
36933
36934 2007-03-08  Bruno Haible  <bruno@clisp.org>
36935
36936         * modules/fseterr-tests: New file.
36937         * tests/test-fseterr.c: New file.
36938
36939         * modules/fseterr: New file.
36940         * lib/fseterr.h: New file.
36941         * lib/fseterr.c: New file.
36942
36943 2007-03-08  Bruno Haible  <bruno@clisp.org>
36944
36945         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
36946         * lib/getopt_.h: Likewise.
36947         * lib/mbswidth.h: Likewise.
36948         * lib/setenv.h: Likewise.
36949         * lib/vasnprintf.h: Likewise.
36950         * lib/vasprintf.h: Likewise.
36951         * lib/verror.h: Likewise.
36952         * lib/xsetenv.h: Likewise.
36953         * lib/xvasprintf.h: Likewise.
36954
36955 2007-03-08  Jim Meyering  <jim@meyering.net>
36956
36957         * users.txt: Add parted.
36958
36959         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
36960
36961 2007-03-07  Bruno Haible  <bruno@clisp.org>
36962
36963         * m4/printf.m4: Make the shell script snippets copy&pastable.
36964
36965 2007-03-02  Bruno Haible  <bruno@clisp.org>
36966
36967         * lib/netinet_in_.h: New file.
36968         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
36969         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
36970         * modules/netinet_in (Files): Add lib/netinet_in_.h.
36971         (Depends-on): Add absolute-header.
36972         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
36973         into netinet/in.h.
36974
36975 2007-03-03  Bruno Haible  <bruno@clisp.org>
36976
36977         * lib/sys_select_.h: New file.
36978         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
36979         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
36980         * modules/sys_select (Files): Add lib/sys_select_.h.
36981         (Depends-on): Add absolute-header.
36982         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
36983         into sys/select.h.
36984
36985 2007-03-02  Bruno Haible  <bruno@clisp.org>
36986
36987         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
36988         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
36989         values.
36990         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
36991         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
36992         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
36993         * modules/sys_socket (Depends-on): Add absolute-header.
36994         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
36995         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
36996         (Include): Remove requirement of inclusion of <sys/types.h>.
36997
36998 2007-03-02  Bruno Haible  <bruno@clisp.org>
36999
37000         * lib/byteswap_.h (bswap_32): Fix formula.
37001
37002 2007-03-06  Bruno Haible  <bruno@clisp.org>
37003
37004         * modules/sprintf-posix-tests: New file.
37005         * tests/test-sprintf-posix.c: New file.
37006
37007         * modules/sprintf-posix: New file.
37008         * lib/sprintf.c: New file.
37009         * m4/sprintf-posix.m4: New file.
37010         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
37011         REPLACE_SPRINTF.
37012         * lib/stdio_.h (sprintf): New declaration.
37013         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
37014         REPLACE_SPRINTF.
37015
37016 2007-03-06  Bruno Haible  <bruno@clisp.org>
37017
37018         * modules/vsprintf-posix-tests: New file.
37019         * tests/test-vsprintf-posix.c: New file.
37020         * tests/test-sprintf-posix.h: New file.
37021
37022         * modules/vsprintf-posix: New file.
37023         * lib/vsprintf.c: New file.
37024         * m4/vsprintf-posix.m4: New file.
37025         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
37026         REPLACE_VSPRINTF.
37027         * lib/stdio_.h (vsprintf): New declaration.
37028         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
37029         REPLACE_VSPRINTF.
37030
37031 2007-03-06  Bruno Haible  <bruno@clisp.org>
37032
37033         * modules/vsnprintf (Depend-on): Remove minmax.
37034
37035 2007-03-06  Bruno Haible  <bruno@clisp.org>
37036
37037         * modules/snprintf-posix-tests: New file.
37038         * tests/test-snprintf-posix.c: New file.
37039
37040         * modules/snprintf-posix: New file.
37041         * m4/snprintf-posix.m4: New file.
37042         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
37043         gl_FUNC_SNPRINTF.
37044         (gl_FUNC_SNPRINTF): Invoke it.
37045         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
37046         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
37047         is set.
37048         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
37049
37050 2007-03-06  Bruno Haible  <bruno@clisp.org>
37051
37052         * modules/vsnprintf-posix-tests: New file.
37053         * tests/test-vsnprintf-posix.c: New file.
37054         * tests/test-snprintf-posix.h: New file.
37055
37056         * modules/vsnprintf-posix: New file.
37057         * m4/vsnprintf-posix.m4: New file.
37058         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
37059         gl_FUNC_VSNPRINTF.
37060         (gl_FUNC_VSNPRINTF): Invoke it.
37061         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
37062         * lib/stdio_.h (vsnprintf): Define as a replacement if
37063         REPLACE_VSNPRINTF is set.
37064         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
37065
37066 2007-03-06  Bruno Haible  <bruno@clisp.org>
37067
37068         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
37069         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
37070
37071 2007-03-06  Bruno Haible  <bruno@clisp.org>
37072
37073         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
37074         (asinl): Declare also if HAVE_DECL_ASINL is set.
37075         (atanl): Declare also if HAVE_DECL_ATANL is set.
37076         (ceill): Declare also if HAVE_DECL_CEILL is set.
37077         (cosl): Declare also if HAVE_DECL_COSL is set.
37078         (expl): Declare also if HAVE_DECL_EXPL is set.
37079         (floorl): Declare also if HAVE_DECL_FLOORL is set.
37080         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
37081         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
37082         (logl): Declare also if HAVE_DECL_LOGL is set.
37083         (sinl): Declare also if HAVE_DECL_SINL is set.
37084         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
37085         (tanl): Declare also if HAVE_DECL_TANL is set.
37086         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
37087         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
37088         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
37089         declaration of frexpl, ldexpl.
37090         * modules/printf-frexpl (Depends-on): Add math.
37091         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
37092
37093 2007-03-05  Bruno Haible  <bruno@clisp.org>
37094
37095         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
37096         frexpl and ldexpl are declared.
37097         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
37098
37099 2007-03-05  Bruno Haible  <bruno@clisp.org>
37100
37101         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
37102         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
37103
37104 2007-03-05  Bruno Haible  <bruno@clisp.org>
37105
37106         * lib/stdio_.h: Include <stddef.h>.
37107
37108 2007-03-05  Bruno Haible  <bruno@clisp.org>
37109
37110         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
37111
37112 2007-03-05  Bruno Haible  <bruno@clisp.org>
37113
37114         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
37115         NetBSD 4, from Ralf Wildenhues.
37116
37117 2007-03-04  Bruno Haible  <bruno@clisp.org>
37118
37119         * lib/vasprintf.h: Update #if logic for the case when the functions
37120         exist but are overridden.
37121
37122 2007-03-04  Bruno Haible  <bruno@clisp.org>
37123
37124         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
37125         implementations: glibc-2.4 and MacOS X 10.3.
37126         * tests/test-vasnprintf-posix.c (test_function): Test also the case
37127         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
37128         * tests/test-vasprintf-posix.c (test_function): Likewise.
37129
37130 2007-03-04  Bruno Haible  <bruno@clisp.org>
37131
37132         * modules/vasprintf-posix-tests: New file.
37133         * tests/test-vasprintf-posix.c: New file.
37134
37135         * modules/vasprintf-posix: New file.
37136         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
37137         defined.
37138         * m4/vasprintf-posix.m4: New file.
37139         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
37140         gl_FUNC_VASPRINTF.
37141         (gl_FUNC_VASPRINTF): Invoke it.
37142         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
37143         here.
37144         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
37145
37146 2007-03-04  Bruno Haible  <bruno@clisp.org>
37147
37148         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
37149         REPLACE_GETTIMEOFDAY.
37150         * modules/sys_time (Makefile.am): Likewise.
37151         * m4/sys_time_h.m4: Likewise.
37152         * m4/gettimeofday.m4: Likewise.
37153
37154 2007-03-04  Bruno Haible  <bruno@clisp.org>
37155
37156         * modules/vasnprintf-posix-tests: New file.
37157         * tests/test-vasnprintf-posix.c: New file.
37158
37159         * modules/vasnprintf-posix: New file.
37160         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
37161         printf-frexpl.h.
37162         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
37163         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
37164         REPLACE_VASNPRINTF is defined.
37165         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
37166         gl_FUNC_VASNPRINTF.
37167         (gl_FUNC_VASNPRINTF): Invoke it.
37168         * m4/vasnprintf-posix.m4: New file.
37169         * m4/printf.m4: New file.
37170
37171 2007-03-04  Bruno Haible  <bruno@clisp.org>
37172
37173         Compile progreloc.c only if --enable-relocatable is specified.
37174         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
37175         if --enable-relocatable was specified.
37176         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
37177         lib_SOURCES.
37178
37179 2007-03-04  Jim Meyering  <jim@meyering.net>
37180
37181         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
37182         Use it consistently, rather than enumerating errno constants.
37183
37184 2007-03-04  Bruno Haible  <bruno@clisp.org>
37185
37186         * modules/xvasprintf-tests: New file.
37187         * tests/test-xvasprintf.c: New file.
37188
37189         * modules/vasprintf-tests: New file.
37190         * tests/test-vasprintf.c: New file.
37191
37192         * modules/vasnprintf-tests: New file.
37193         * tests/test-vasnprintf.c: New file.
37194
37195         * modules/vsnprintf-tests: New file.
37196         * tests/test-vsnprintf.c: New file.
37197
37198         * modules/snprintf-tests: New file.
37199         * tests/test-snprintf.c: New file.
37200
37201 2007-03-04  Bruno Haible  <bruno@clisp.org>
37202
37203         Compile relocatable.c only if --enable-relocatable is specified.
37204         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
37205         gl_RELOCATABLE_LIBRARY.
37206         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
37207         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
37208         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
37209         gl_RELOCATABLE_LIBRARY.
37210         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
37211         (Makefile.am): Remove lib_SOURCES.
37212         * modules/relocatable-lib-lgpl (configure.ac): Invoke
37213         gl_RELOCATABLE_LIBRARY.
37214         (Makefile.am): Remove lib_SOURCES.
37215         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
37216         always.
37217         * modules/relocatable-prog-wrapper (configure.ac): Invoke
37218         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
37219
37220 2007-03-04  Bruno Haible  <bruno@clisp.org>
37221
37222         * modules/argmatch-tests: New file.
37223         * tests/test-argmatch.c: New file.
37224
37225         * tests/test-allocsa.c (main): Halve the number of loop runs.
37226
37227         * modules/alloca-opt-tests: New file.
37228         * tests/test-alloca-opt.c: New file.
37229
37230 2007-03-04  Jim Meyering  <jim@meyering.net>
37231
37232         Work around difference between Linux ACLs and Solaris 10 ZFS.
37233         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
37234         for EINVAL.
37235
37236 2007-03-03  Bruno Haible  <bruno@clisp.org>
37237
37238         * modules/relocatable-prog (Depends-on): Add back progreloc's
37239         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
37240
37241 2007-03-03  Bruno Haible  <bruno@clisp.org>
37242
37243         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
37244         * modules/relocatable-lib: New file.
37245
37246 2007-03-03  Bruno Haible  <bruno@clisp.org>
37247
37248         * modules/relocatable-prog: Renamed from modules/relocatable.
37249         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
37250
37251 2007-03-03  Bruno Haible  <bruno@clisp.org>
37252
37253         * modules/relocatable-script (Files): Add doc/relocatable.texi,
37254         m4/relocatable-lib.m4.
37255         (Depends-on): Remove 'relocatable'.
37256         (configure.ac): Add gl_RELOCATABLE_NOP.
37257
37258 2007-03-03  Bruno Haible  <bruno@clisp.org>
37259
37260         * modules/relocatable-prog-wrapper: New file.
37261         * modules/relocatable (Depends-on): Add it. Remove all other
37262         dependencies except progname.
37263         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
37264
37265         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
37266         (gl_FUNC_STRERROR): Nop.
37267         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
37268
37269         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
37270         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
37271
37272         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
37273         (gl_FUNC_READLINK): Update.
37274
37275         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
37276
37277 2007-03-03  Bruno Haible  <bruno@clisp.org>
37278
37279         * lib/xreadlink.c: Include <unistd.h> unconditionally.
37280         * modules/xreadlink (Depends-on): Add unistd.
37281         * modules/xreadlink-with-size (Depends-on): Likewise.
37282
37283 2007-03-03  Bruno Haible  <bruno@clisp.org>
37284
37285         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
37286         extracted from gt_FUNC_SETENV.
37287         (gt_FUNC_SETENV): Remove macro.
37288         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
37289         remove gt_FUNC_SETENV.
37290
37291 2007-03-03  Bruno Haible  <bruno@clisp.org>
37292
37293         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
37294         ENABLE_RELOCATABLE here.
37295         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
37296
37297 2007-03-03  Bruno Haible  <bruno@clisp.org>
37298
37299         * modules/rbtreehash-list-tests (Depends-on): Add progname.
37300         * tests/test-rbtreehash_list.c: Include progname.h.
37301         (main): Call set_program_name.
37302
37303         * modules/rbtree-oset-tests (Depends-on): Add progname.
37304         * tests/test-rbtree_oset.c: Include progname.h.
37305         (main): Call set_program_name.
37306
37307         * modules/rbtree-list-tests (Depends-on): Add progname.
37308         * tests/test-rbtree_list.c: Include progname.h.
37309         (main): Call set_program_name.
37310
37311         * modules/linked-list-tests (Depends-on): Add progname.
37312         * tests/test-linked_list.c: Include progname.h.
37313         (main): Call set_program_name.
37314
37315 2007-03-03  Bruno Haible  <bruno@clisp.org>
37316
37317         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
37318         All uses of __restrict changed to _Restrict_.
37319         * lib/glob_.h (__restrict): Remove macro.
37320
37321 2007-03-02  Bruno Haible  <bruno@clisp.org>
37322
37323         * modules/gettext (configure.ac): Require gettext infrastructure
37324         from version 0.16.1.
37325
37326 2007-03-02  Bruno Haible  <bruno@clisp.org>
37327
37328         * modules/linkedhash-list-tests (Depends-on): Add progname.
37329         * tests/test-linkedhash_list.c: Include progname.h.
37330         (main): Call set_program_name.
37331
37332         * modules/carray-list-tests (Depends-on): Add progname.
37333         * tests/test-carray_list.c: Include progname.h.
37334         (main): Call set_program_name.
37335
37336         * modules/avltreehash-list-tests (Depends-on): Add progname.
37337         * tests/test-avltreehash_list.c: Include progname.h.
37338         (main): Call set_program_name.
37339
37340         * modules/avltree-oset-tests (Depends-on): Add progname.
37341         * tests/test-avltree_oset.c: Include progname.h.
37342         (main): Call set_program_name.
37343
37344         * modules/avltree-list-tests (Depends-on): Add progname.
37345         * tests/test-avltree_list.c: Include progname.h.
37346         (main): Call set_program_name.
37347
37348         * modules/array-oset-tests (Depends-on): Add progname.
37349         * tests/test-array_oset.c: Include progname.h.
37350         (main): Call set_program_name.
37351
37352         * modules/array-list-tests (Depends-on): Add progname.
37353         * tests/test-array_list.c: Include progname.h.
37354         (main): Call set_program_name.
37355
37356         * modules/argp-tests (Depends-on): Add progname.
37357         * tests/test-argp.c: Include argp.h first. Include progname.h.
37358         (main): Call set_program_name.
37359
37360 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
37361
37362         * doc/gnulib-tool.texi (Initial import): Reword description of
37363         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
37364         limited effect even if defined after the first system include.
37365
37366 2007-03-01  Bruno Haible  <bruno@clisp.org>
37367
37368         * build-aux/config.libpath: Update to libtool-1.5.22.
37369         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
37370
37371 2007-03-01  Bruno Haible  <bruno@clisp.org>
37372
37373         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
37374         foo_CFLAGS.
37375         Reported by Ralf Wildenhues.
37376
37377 2007-03-01  Bruno Haible  <bruno@clisp.org>
37378
37379         * build-aux/install-reloc: Remove object files left over by some
37380         compilers.
37381         Reported by Ralf Wildenhues.
37382
37383 2007-03-01  Bruno Haible  <bruno@clisp.org>
37384
37385         * build-aux/install-reloc: Break long lines.
37386
37387 2007-03-01  Bruno Haible  <bruno@clisp.org>
37388
37389         * doc/relocatable.texi: Document that it may not work on OpenBSD.
37390         Reported by Ralf Wildenhues.
37391
37392 2007-03-01  Bruno Haible  <bruno@clisp.org>
37393
37394         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
37395         include ordering constraints.
37396
37397 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
37398
37399         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
37400         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
37401         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
37402         as another example.
37403         * lib/time_.h: Fix misspelling.
37404         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37405         Require gl_HEADER_TIME_H_DEFAULTS.
37406         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
37407         * m4/time_r.m4 (gl_TIME_R): Likewise.
37408         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
37409
37410 2007-03-01  Bruno Haible  <bruno@clisp.org>
37411
37412         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
37413         * m4/utimens.m4 (gl_UTIMENS): Likewise.
37414
37415 2007-03-01  Jim Meyering  <jim@meyering.net>
37416
37417         * modules/xreadlink (Maintainer): Add my name.
37418         * modules/xreadlink-with-size (Depends-on): Alphabetize.
37419
37420 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
37421             Bruno Haible  <bruno@clisp.org>
37422
37423         * build-aux/install-reloc: Compile also c-ctype.c.
37424         * build-aux/relocatable.sh.in: New file.
37425         * doc/relocatable.texi: New file.
37426         * doc/relocatable-maint.texi: New file.
37427         * doc/gnulib.texi: Include relocatable-maint.texi.
37428         * lib/progreloc.c: Include unistd.h unconditionally.
37429         * lib/relocwrapper.c: Include unistd.h unconditionally.
37430         Include c-ctype.h.
37431         (add_dotbin): Use c_tolower.
37432         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
37433         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
37434         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
37435         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
37436         to m4/relocatable-lib.m4.
37437         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
37438         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
37439         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
37440         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
37441         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
37442         * modules/relocatable: New file.
37443         * modules/relocatable-lib: New file.
37444         * modules/relocatable-script: New file.
37445
37446 2007-02-28  Bruno Haible  <bruno@clisp.org>
37447
37448         Import --enable-relocatable infrastructure.
37449         * build-aux/config.libpath: New file, from GNU gettext.
37450         * build-aux/install-reloc: New file, from GNU gettext.
37451         * build-aux/reloc-ldflags: New file, from GNU gettext.
37452         * lib/relocatable.h: New file, from GNU gettext.
37453         * lib/relocatable.c: New file, from GNU gettext.
37454         * lib/relocwrapper.c: New file, from GNU gettext.
37455         * m4/relocatable.m4: New file, from GNU gettext.
37456
37457 2007-02-28  Bruno Haible  <bruno@clisp.org>
37458
37459         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
37460
37461         * modules/xreadlink: New file, from GNU gettext with modifications.
37462         * lib/xreadlink.c: New file, from GNU gettext.
37463         * lib/xreadlink.h: Add comments.
37464         (xreadlink): New declaration.
37465
37466         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
37467         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
37468         lib/xreadlink-with-size.c.
37469         (configure.ac): Remove gl_XREADLINK invocation.
37470         (Makefile.am): Augment lib_SOURCES.
37471         * m4/xreadlink.m4: Remove file.
37472         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
37473         (xreadlink_with_size): Renamed from xreadink.
37474         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
37475         * modules/canonicalize (Depends-on): Replace xreadlink with
37476         xreadlink-with-size.
37477         * lib/canonicalize.c (canonicalize_filename_mode): Update.
37478
37479 2007-02-25  Jim Meyering  <jim@meyering.net>
37480
37481         * build-aux/announce-gen: When complaining about excess arguments,
37482         list them.
37483
37484 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
37485
37486         * README: Document signed integer overflow situation more
37487         accurately.
37488
37489 2007-02-25  Bruno Haible  <bruno@clisp.org>
37490
37491         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
37492         'a' or 'A' conversion.
37493
37494 2007-02-25  Bruno Haible  <bruno@clisp.org>
37495
37496         * modules/filename: Renamed from modules/pathname.
37497         (Files): Replace lib/pathname.h with lib/filename.h. Replace
37498         lib/concatpath.c with lib/concat-filename.c.
37499         (Makefile.am): Update.
37500         (Include): Replace pathname.h with filename.h.
37501         * lib/filename.h: Renamed from lib/pathname.h.
37502         (concatenated_filename): Renamed from concatenated_pathname.
37503         * lib/concat-filename.c: Renamed from lib/concatpath.c.
37504         (concatenated_filename): Renamed from concatenated_pathname.
37505         * lib/findprog.c: Include filename.h instead of pathname.h.
37506         (find_in_path): Update.
37507         * lib/javacomp.c: Include filename.h instead of pathname.h.
37508         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
37509         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
37510         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
37511         is_oldgcj_14_13_usable, is_javac_usable): Update.
37512         * lib/javaexec.c: Include filename.h instead of pathname.h.
37513         (execute_java_class): Update.
37514         * modules/findprog: Update.
37515         * modules/javacomp: Update.
37516         * modules/javaexec: Update.
37517         * MODULES.html.sh (File system functions): Add 'filename', remove
37518         'pathname'.
37519
37520 2007-02-25  Bruno Haible  <bruno@clisp.org>
37521
37522         * modules/printf-frexpl-tests: New file.
37523         * tests/test-printf-frexpl.c: New file.
37524
37525         * modules/printf-frexpl: New file.
37526         * lib/printf-frexpl.h: New file.
37527         * lib/printf-frexpl.c: New file.
37528         * m4/printf-frexpl.m4: New file.
37529
37530 2007-02-25  Bruno Haible  <bruno@clisp.org>
37531
37532         * modules/printf-frexp-tests: New file.
37533         * tests/test-printf-frexp.c: New file.
37534
37535         * modules/printf-frexp: New file.
37536         * lib/printf-frexp.h: New file.
37537         * lib/printf-frexp.c: New file.
37538         * m4/printf-frexp.m4: New file.
37539
37540 2007-02-25  Bruno Haible  <bruno@clisp.org>
37541
37542         Assume automake >= 1.10 for the tests.
37543         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
37544         * modules/arctwo-tests: Likewise.
37545         * modules/argp-tests: Likewise.
37546         * modules/avltree-list-tests: Likewise.
37547         * modules/avltree-oset-tests: Likewise.
37548         * modules/avltreehash-list-tests: Likewise.
37549         * modules/carray-list-tests: Likewise.
37550         * modules/crc-tests: Likewise.
37551         * modules/des-tests: Likewise.
37552         * modules/gc-arcfour-tests: Likewise.
37553         * modules/gc-arctwo-tests: Likewise.
37554         * modules/gc-des-tests: Likewise.
37555         * modules/gc-hmac-md5-tests: Likewise.
37556         * modules/gc-hmac-sha1-tests: Likewise.
37557         * modules/gc-md2-tests: Likewise.
37558         * modules/gc-md4-tests: Likewise.
37559         * modules/gc-md5-tests: Likewise.
37560         * modules/gc-pbkdf2-sha1-tests: Likewise.
37561         * modules/gc-rijndael-tests: Likewise.
37562         * modules/gc-sha1-tests: Likewise.
37563         * modules/gc-tests: Likewise.
37564         * modules/getaddrinfo-tests: Likewise.
37565         * modules/hmac-md5-tests: Likewise.
37566         * modules/hmac-sha1-tests: Likewise.
37567         * modules/linked-list-tests: Likewise.
37568         * modules/linkedhash-list-tests: Likewise.
37569         * modules/lock-tests: Likewise.
37570         * modules/md2-tests: Likewise.
37571         * modules/md4-tests: Likewise.
37572         * modules/md5-tests: Likewise.
37573         * modules/rbtree-list-tests: Likewise.
37574         * modules/rbtree-oset-tests: Likewise.
37575         * modules/rbtreehash-list-tests: Likewise.
37576         * modules/read-file-tests: Likewise.
37577         * modules/rijndael-tests: Likewise.
37578         * modules/stdint-tests: Likewise.
37579         * modules/tls-tests: Likewise.
37580
37581 2007-02-24  Bruno Haible  <bruno@clisp.org>
37582
37583         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
37584         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
37585         function; instead check whether isnan with a double argument links.
37586         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
37587         function; instead check whether isnan with a 'long double' argument
37588         links.
37589         Reported by Eric Blake <ebb9@byu.net>.
37590
37591 2007-02-24  Bruno Haible  <bruno@clisp.org>
37592
37593         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
37594         defined.
37595         * lib/isnanl.c: Remove all code. Just include isnan.c.
37596         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
37597
37598 2007-02-25  Jim Meyering  <jim@meyering.net>
37599
37600         Avoid conflicting types for 'unsetenv' on FreeBSD.
37601         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
37602         conflicting with FreeBSD's (5.0 and 6.1) function declaration
37603         in stdlib.h.
37604
37605 2007-02-24  Bruno Haible  <bruno@clisp.org>
37606
37607         * modules/isnanl-nolibm-tests: New file.
37608         * tests/test-isnanl.c: New file.
37609
37610         * modules/isnanl-nolibm: New file.
37611         * lib/isnanl.h: New file.
37612         * lib/isnanl.c: New file.
37613         * m4/isnanl.m4: New file.
37614
37615 2007-02-24  Bruno Haible  <bruno@clisp.org>
37616
37617         * modules/isnan-nolibm-tests: New file.
37618         * tests/test-isnan.c: New file.
37619
37620         * modules/isnan-nolibm: New file.
37621         * lib/isnan.h: New file.
37622         * lib/isnan.c: New file.
37623         * m4/isnan.m4: New file.
37624
37625 2007-02-24  Bruno Haible  <bruno@clisp.org>
37626
37627         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
37628         assume that an exponent fits in 20 bits.
37629
37630 2007-02-24  Jim Meyering  <jim@meyering.net>
37631
37632         * m4/regex.m4: Update the description of the configure-time option,
37633         --without-included-regex, to state accurately what the defaults are,
37634         and perhaps to give people an idea why using this option is risky.
37635
37636 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
37637
37638         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
37639         loops on small arguments.  This attempts to avoid the problem
37640         Bruno Haible reported for AIX 4.3.2 in
37641         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
37642
37643 2007-02-23  Bruno Haible  <bruno@clisp.org>
37644
37645         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
37646         Needed for help2man.
37647
37648 2007-02-23  Karl Berry  <karl@gnu.org>
37649
37650         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
37651         exists, foo.h should be cvs-ignored, not committed.
37652
37653 2007-02-23  Eric Blake  <ebb9@byu.net>
37654
37655         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
37656         * lib/stat-time.h (includes): Likewise.
37657         * lib/utimecmp.c (includes): Likewise.
37658         * lib/utimens.h (includes): Likewise.
37659         * lib/getdate.y (includes): Also include "timespec.h" for use
37660         internal to the module.
37661         * modules/utimens (Depends-on): Revert yesterday's patch.
37662         * modules/nanosleep (Depends-on): Add missing dependency.
37663
37664 2007-02-22  Bruno Haible  <bruno@clisp.org>
37665
37666         * lib/glob.c: Don't include getlogin_r.h.
37667
37668 2007-02-22  Jim Meyering  <jim@meyering.net>
37669
37670         * modules/utimens (Depends-on): Add timespec, required for
37671         utimens.h's inclusion of timespec.h.
37672
37673 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
37674
37675         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
37676         long unreadable paths in GNU/Linux.  Problem reported by Andreas
37677         Schwab in
37678         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
37679         I'll try to think of a better way to fix the Solaris problem.
37680
37681         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
37682         like glibc; on Solaris 10, it fails with errno == EINVAL.
37683         POSIX says the behavior is unspecified if the first argument is NULL,
37684         so play it safe and never pass NULL to the system getcwd.
37685
37686 2007-02-21  Jim Meyering  <jim@meyering.net>
37687
37688         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
37689         of gettimeofday.  It would conflict with the one now always
37690         provided via sys_time_.h.  Reported by Matthew Woehlke, as
37691         an IRIX 6.5 build failure.
37692
37693 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
37694
37695         Minor fixups to port to Solaris 10 with Sun C 5.8.
37696         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
37697         * modules/getcwd (Depends-on): Add dirfd.
37698         * lib/putenv.c (putenv): #undef it.
37699         (rpl_putenv): New decl.
37700         (malloc, free): Include <stdlib.h> rather than prototyping separately.
37701
37702 2007-02-20  Bruno Haible  <bruno@clisp.org>
37703
37704         * modules/stdio-tests: New file.
37705         * tests/test-stdio.c: New file.
37706
37707         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
37708         (Depends-on): Add stdio.
37709         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
37710         (Include): Use <stdio.h> instead of vsnprintf.h.
37711         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
37712         HAVE_DECL_VSNPRINTF.
37713         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
37714
37715         * modules/snprintf (Files): Remove lib/snprintf.h.
37716         (Depends-on): Add stdio.
37717         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
37718         (Include): Use <stdio.h> instead of snprintf.h.
37719         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
37720         HAVE_DECL_SNPRINTF.
37721         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
37722         * lib/getaddrinfo.c: Likewise.
37723
37724         * modules/stdio: New file.
37725         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
37726         * lib/snprintf.h: Remove file.
37727         * lib/vsnprintf.h: Remove file.
37728         * lib/.cppi-disable: Remove snprintf.h.
37729         * m4/stdio_h.m4: New file.
37730         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
37731
37732 2007-02-20  Jim Meyering  <jim@meyering.net>
37733
37734         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
37735         used by e.g., mingw.  From Bruno Haible.
37736
37737 2007-02-19  Bruno Haible  <bruno@clisp.org>
37738
37739         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
37740         warnings.
37741         Reported by Ben Pfaff <blp@cs.stanford.edu>.
37742
37743 2007-02-19  Bruno Haible  <bruno@clisp.org>
37744
37745         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
37746         from mingw users.
37747
37748 2007-02-19  Bruno Haible  <bruno@clisp.org>
37749
37750         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
37751         warnings.
37752         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
37753
37754 2007-02-19  Jim Meyering  <jim@meyering.net>
37755
37756         Don't use FD after a successful "fdopendir (fd)".
37757         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
37758         Reset it by calling dirfd on the just-obtained DIR*.
37759
37760         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
37761         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
37762
37763 2007-02-18  Bruno Haible  <bruno@clisp.org>
37764
37765         * lib/readlink.c: Include <unistd.h>.
37766         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
37767         HAVE_READLINK.
37768         * modules/readlink (Depends-on): Add unistd.
37769         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37770         (Include): Add <unistd.h>.
37771
37772         * lib/getlogin_r.h: Remove file.
37773         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
37774         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
37775         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
37776         HAVE_DECL_GETLOGIN_R.
37777         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
37778         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37779         (Include): Use <unistd.h> instead of getlogin_r.h.
37780
37781         * lib/getcwd.h: Remove file.
37782         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
37783         * lib/xgetcwd.c: Likewise.
37784         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
37785         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
37786         * modules/getcwd (Files): Remove lib/getcwd.h.
37787         (Depends-on): Add unistd.
37788         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37789         (Include): Use <unistd.h> instad of getcwd.h.
37790
37791         * lib/ftruncate.c: Include <unistd.h> first.
37792         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
37793         Set HAVE_FTRUNCATE.
37794         * modules/ftruncate (Depends-on): Add unistd.
37795         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37796
37797         * lib/fchdir.c: Include <unistd.h> first.
37798         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
37799         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
37800         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
37801         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37802         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
37803
37804         * lib/dup2.c: Include <unistd.h> first.
37805         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
37806         HAVE_DUP2.
37807         * modules/dup2 (Depends-on): Add unistd.
37808         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37809
37810         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
37811         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
37812         REPLACE_CHOWN. Don't define chown as a macro here.
37813         * modules/chown (Depends-on): Add unistd.
37814         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
37815
37816         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
37817         Add definition for GL_LINK_WARNING.
37818         (chown, dup2): New declarations.
37819         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
37820         link warning.
37821         (ftruncate): New declaration.
37822         (getcwd): New declaration, taken from old getcwd.h.
37823         (getlogin_r): New declaration, taken from old getlogin_r.h.
37824         (readlink): New declaration.
37825         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
37826         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
37827         (gl_PREREQ_UNISTD): Remove macro.
37828         (gl_UNISTD_MODULE_INDICATOR): New macro.
37829         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
37830         many new variables. Don't set UNISTD_H.
37831         * modules/unistd (Description): Change.
37832         (Depends-on): Add link-warning.
37833         (configure.ac): Update.
37834         (Makefile.am): Create unistd.h always. Substitute many new variables
37835         into it.
37836
37837 2007-02-18  Bruno Haible  <bruno@clisp.org>
37838
37839         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
37840         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
37841         HAVE_GETSUBOPT.
37842         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
37843         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
37844         * lib/getsubopt.h: Remove file.
37845         * modules/getsubopt (Files): Remove lib/getsubopt.h.
37846         (Depends-on): Add stdlib.
37847         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37848         (Includes): Use <stdlib.h> instead of getsubopt.h.
37849         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
37850         Set HAVE_GETSUBOPT.
37851         * lib/getsubopt.c: Don't include getsubopt.h.
37852
37853 2007-02-18  Bruno Haible  <bruno@clisp.org>
37854
37855         * modules/fchdir (Depends-on): Add dup2.
37856
37857 2007-02-18  Bruno Haible  <bruno@clisp.org>
37858
37859         * lib/stdlib_.h: Handle glibc's special invocation convention
37860         specially.
37861
37862 2007-02-18  Bruno Haible  <bruno@clisp.org>
37863
37864         * modules/stdlib-tests: New file.
37865         * tests/test-stdlib.c: New file.
37866
37867         * modules/mkstemp (Files): Remove lib/mkstemp.h.
37868         (Depends-on): Add stdlib.
37869         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37870         (Includes): Use <stdlib.h> instead of mkstemp.h.
37871         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
37872         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
37873         * lib/mkstemp.c: Don't include mkstemp.h.
37874         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
37875         * lib/stdlib--.h: Don't include mkstemp.h.
37876
37877         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
37878         (Depends-on): Add stdlib.
37879         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
37880         (Includes): Use <stdlib.h> instead of mkdtemp.h.
37881         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
37882         HAVE_MKDTEMP.
37883         * lib/mkdtemp.c: Don't include mkdtemp.h.
37884         * lib/clean-temp.c: Don't include mkdtemp.h.
37885
37886         * modules/exit (Files): Remove lib/exit.h.
37887         (Depends-on): Add stdlib.
37888         (Makefile.am): Remove lib_SOURCES.
37889         (Include): Use <stdlib.h> instead of exit.h.
37890         * lib/argmatch.c: Don't include exit.h.
37891         * lib/execute.c: Likewise.
37892         * lib/pagealign_alloc.c: Likewise.
37893         * lib/pipe.c: Likewise.
37894         * lib/wait-process.c: Likewise.
37895         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
37896         * lib/exitfail.c: Likewise.
37897         * lib/savewd.c: Likewise.
37898         * lib/xsetenv.c: Likewise.
37899
37900         * modules/stdlib: New file.
37901         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
37902         and extra comments about mkstemp().
37903         * lib/exit.h: Remove file.
37904         * lib/mkdtemp.h: Remove file.
37905         * lib/mkstemp.h: Remove file.
37906         * m4/stdlib_h.m4: New file.
37907         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
37908
37909 2007-02-18  Bruno Haible  <bruno@clisp.org>
37910
37911         * modules/math-tests: New file.
37912         * tests/test-math.c: New file.
37913
37914         * modules/math: New file.
37915         * modules/mathl (Files): Remove lib/mathl.h.
37916         (Depends-on): Add math.
37917         (Makefile.am): Don't mention mathl.h.
37918         (Include): Use <math.h> instead of mathl.h.
37919         * lib/math_.h: New file.
37920         * lib/mathl.h: Remove file.
37921         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
37922         mathl.h.
37923         * lib/asinl.c: Likewise.
37924         * lib/atanl.c: Likewise.
37925         * lib/ceill.c: Likewise.
37926         * lib/cosl.c: Likewise.
37927         * lib/expl.c: Likewise.
37928         * lib/floorl.c: Likewise.
37929         * lib/frexpl.c: Likewise.
37930         * lib/ldexpl.c: Likewise.
37931         * lib/logl.c: Likewise.
37932         * lib/sincosl.c: Likewise.
37933         * lib/sinl.c: Likewise.
37934         * lib/sqrtl.c: Likewise.
37935         * lib/tanl.c: Likewise.
37936         * lib/trigl.c: Likewise.
37937         * m4/math_h.m4: New file.
37938         * MODULES.html.sh (Mathematics): Add math.
37939
37940 2007-02-17  Bruno Haible  <bruno@clisp.org>
37941
37942         * modules/wctype-tests: New file.
37943         * tests/test-wctype.c: New file.
37944
37945         * modules/wchar-tests: New file.
37946         * tests/test-wchar.c: New file.
37947
37948         * modules/unistd-tests: New file.
37949         * tests/test-unistd.c: New file.
37950
37951         * modules/time-tests: New file.
37952         * tests/test-time.c: New file.
37953
37954         * modules/sysexits-tests: New file.
37955         * tests/test-sysexits.c: New file.
37956
37957         * modules/sys_time-tests: New file.
37958         * tests/test-sys_time.c: New file.
37959
37960         * modules/sys_stat-tests: New file.
37961         * tests/test-sys_stat.c: New file.
37962
37963         * modules/sys_socket-tests: New file.
37964         * tests/test-sys_socket.c: New file.
37965
37966         * modules/sys_select-tests: New file.
37967         * tests/test-sys_select.c: New file.
37968
37969         * modules/string-tests: New file.
37970         * tests/test-string.c: New file.
37971
37972         * modules/stdbool-tests: New file.
37973         * tests/test-stdbool.c: New file.
37974
37975         * modules/netinet_in-tests: New file.
37976         * tests/test-netinet_in.c: New file.
37977
37978         * modules/inttypes-tests: New file.
37979         * tests/test-inttypes.c: New file.
37980
37981         * modules/fcntl-tests: New file.
37982         * tests/test-fcntl.c: New file.
37983
37984         * modules/byteswap-tests: New file.
37985         * tests/test-byteswap.c: New file.
37986
37987         * modules/arpa_inet-tests: New file.
37988         * tests/test-arpa_inet.c: New file.
37989
37990 2007-02-17  Bruno Haible  <bruno@clisp.org>
37991
37992         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
37993         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
37994         if the corresponding module is not enabled. Emit link warnings if
37995         the function is used nevertheless.
37996         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
37997         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
37998         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
37999         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
38000         * modules/inttypes (Depends-on): Add link-warning.
38001         (Makefile.am): Copy the contents of build-aux/link-warning.h into
38002         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
38003         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
38004         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
38005         * modules/imaxdiv (configure.ac): Likewise.
38006         * modules/strtoimax (configure.ac): Likewise.
38007         * modules/strtoumax (configure.ac): Likewise.
38008
38009 2007-02-17  Bruno Haible  <bruno@clisp.org>
38010
38011         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
38012         gl_STRING_MODULE_INDICATOR_DEFAULTS.
38013         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
38014         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
38015
38016 2007-02-17  Bruno Haible  <bruno@clisp.org>
38017
38018         * modules/link-warning: New file.
38019         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
38020         * lib/string_.h (GL_LINK_WARNING): Remove definition.
38021         * modules/string (Depends-on): Add link-warning.
38022         (Makefile.am): Copy the contents of build-aux/link-warning.h into
38023         string.h.
38024         * MODULES.html.sh (Support for building libraries and executables): Add
38025         link-warning.
38026
38027 2007-02-17  Bruno Haible  <bruno@clisp.org>
38028
38029         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
38030         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
38031         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
38032         long lines.
38033
38034 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
38035             Bruno Haible  <bruno@clisp.org>
38036
38037         * modules/tmpfile: New file.
38038         * lib/tmpfile.c: New file.
38039         * m4/tmpfile.m4: New file.
38040         * MODULES.html.sh (func_all_modules): New section "Input/output".
38041
38042 2007-02-15  Bruno Haible  <bruno@clisp.org>
38043
38044         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
38045         (supports_delete_on_close): New function.
38046         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
38047
38048 2007-02-14  Bruno Haible  <bruno@clisp.org>
38049
38050         * modules/mbspcasecmp-tests: New file.
38051         * tests/test-mbspcasecmp.sh: New file.
38052         * tests/test-mbspcasecmp.c: New file.
38053
38054         New module mbspcasecmp.
38055         * modules/mbspcasecmp: New file.
38056         * lib/mbspcasecmp.c: New file.
38057         * lib/string_.h (strncasecmp): Change warning message.
38058         (mbspcasecmp): New declaration.
38059         * m4/mbspcasecmp.m4: New file.
38060         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38061         GNULIB_MBSPCASECMP.
38062         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
38063         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
38064
38065 2007-02-14  Bruno Haible  <bruno@clisp.org>
38066
38067         * modules/mbsncasecmp-tests: New file.
38068         * tests/test-mbsncasecmp.sh: New file.
38069         * tests/test-mbsncasecmp.c: New file.
38070
38071         New module mbsncasecmp.
38072         * modules/mbsncasecmp: New file.
38073         * lib/mbsncasecmp.c: New file.
38074         * lib/string_.h (mbsncasecmp): New declaration.
38075         * m4/mbsncasecmp.m4: New file.
38076         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38077         GNULIB_MBSNCASECMP.
38078         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
38079         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
38080
38081 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
38082
38083         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
38084         Verify that it doesn't overlap with our flags.
38085         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
38086         do not have the desired effect in multibyte locales; instead, use
38087         mbscasecmp.
38088         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
38089         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
38090         we don't require GNU fnmatch ourselves (if our users require it, they
38091         should do so explicitly).
38092
38093         Fix regex code so it doesn't rely on strcasecmp.
38094         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
38095         Otherwise, include gnulib's langinfo.h.
38096         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
38097         undesirable behavior in non-C locales.  Instead, rely on localecharset.
38098         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
38099         * modules/regex (FILES): Remove m4/codeset.m4.
38100         (Depends-on): Add localcharset.  Remove strcase.
38101
38102 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38103
38104         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
38105         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
38106
38107 2007-02-13  Bruno Haible  <bruno@clisp.org>
38108
38109         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
38110         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38111
38112 2007-02-12  Bruno Haible  <bruno@clisp.org>
38113
38114         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
38115         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
38116         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
38117         time warning rather than a link error.
38118
38119 2007-02-12  Bruno Haible  <bruno@clisp.org>
38120
38121         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
38122         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
38123         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38124
38125 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38126
38127         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
38128         args, not 2.
38129
38130 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38131
38132         New module 'time', so that apps can include <time.h> as per
38133         POSIX and GNU instead of separate include files like time_r.h
38134         and timegm.h.  This implementation tries out a simpler approach
38135         for replacing decls in standard include files (as compared to
38136         the string module), somewhat as an experiment.
38137
38138         * config/srclist.txt: Comment out mktime.c for now.
38139         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
38140         since it doesn't apply any more.  Use generic wording instead.
38141         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
38142         'time'.
38143         * lib/time_.h, m4/time_h.m4, modules/time: New files.
38144         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
38145         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
38146         Don't include <sys/types.h>; no longer needed since we assume C89.
38147         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
38148         * lib/strftime.c: Likewise.
38149         * lib/time_r.c: Likewise.
38150         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
38151         * lib/nanosleep.c: Include <time.h> first, to check interface.
38152         * lib/strptime.c: Likewise.
38153         * lib/time_r.c: Likewise.
38154         * lib/timegm.c: Likewise.
38155         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
38156         needed.
38157         * lib/timegm.c: Don't include timegm.h; no longer needed.
38158         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
38159         time.h now handles any problems in that area.
38160         (struct timespec, nanosleep): Remove; time.h now arranges for these.
38161         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
38162         that time.h defines struct timespec.
38163         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
38164         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
38165         handles that.
38166         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
38167         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
38168         needed.  Set REPLACE_LOCALTIME.
38169         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
38170         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
38171         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
38172         nanosleep; time_h.m4 now does that.  Don't require
38173         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
38174         module handles this now.
38175         * modules/getdate (Depends-on): Remove timespec.  Add time.
38176         * modules/nanosleep (Depends-on): Likewise.
38177         * modules/stat-time (Depends-on): Likewise.
38178         * modules/nanosleep (Include): Include time.h, not timespec.h.
38179         * modules/strptime (Files): Remove lib/strptime.h.
38180         (Depends-on): Add extensions, time.
38181         (Include): Include time.h, not strptime.h.
38182         * modules/time_r (Files): Remove lib/time_r.h.
38183         (Depends-on): Add time.
38184         (Include): Include time.h, not time_r.h.
38185         * modules/timegm: Likewise.
38186         * modules/timespec (Description): Now does timespec-related decls
38187         of our own, instead of struct timespec itself.
38188         (Depends-on): Add time; remove extensions.
38189         (Maintainer): Add self.
38190         * modules/utimecmp (Depends-on): Add time; remove timespec.
38191         * modules/utimens (Depends-on): Likewise.
38192         * modules/xnanosleep (Depends-on): Likewise.
38193
38194 2007-02-11  Bruno Haible  <bruno@clisp.org>
38195
38196         * lib/c-strstr.c: Include allocsa.h.
38197         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38198         * lib/c-strcasestr.c: Include allocsa.h.
38199         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38200         * lib/strcasestr.c: Include allocsa.h.
38201         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38202         * lib/mbsstr.c: Include allocsa.h.
38203         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38204         allocsa/freesa instead of malloc/free.
38205         * lib/mbscasestr.c: Include allocsa.h.
38206         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38207         allocsa/freesa instead of malloc/free.
38208         * modules/c-strstr (Depends-on): Add allocsa.
38209         * modules/c-strcasestr (Depends-on): Likewise.
38210         * modules/strcasestr (Depends-on): Likewise.
38211         * modules/mbsstr (Depends-on): Likewise.
38212         * modules/mbscasestr (Depends-on): Likewise.
38213
38214 2007-02-11  Bruno Haible  <bruno@clisp.org>
38215
38216         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
38217
38218         * modules/mbsspn-tests: New file.
38219         * tests/test-mbsspn.sh: New file.
38220         * tests/test-mbsspn.c: New file.
38221
38222 2007-02-11  Bruno Haible  <bruno@clisp.org>
38223
38224         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
38225
38226         * modules/mbspbrk-tests: New file.
38227         * tests/test-mbspbrk.sh: New file.
38228         * tests/test-mbspbrk.c: New file.
38229
38230 2007-02-11  Bruno Haible  <bruno@clisp.org>
38231
38232         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
38233         unneeded cast.
38234
38235         * modules/mbscspn-tests: New file.
38236         * tests/test-mbscspn.sh: New file.
38237         * tests/test-mbscspn.c: New file.
38238
38239 2007-02-11  Bruno Haible  <bruno@clisp.org>
38240
38241         * modules/mbscasecmp-tests: New file.
38242         * tests/test-mbscasecmp.sh: New file.
38243         * tests/test-mbscasecmp.c: New file.
38244
38245 2007-02-11  Bruno Haible  <bruno@clisp.org>
38246
38247         Ensure O(n) worst-case complexity of mbscasestr.
38248         * lib/mbscasestr.c: Include stdbool.h.
38249         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38250         functions.
38251         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
38252         the bookkeeping indicates that it's worth it.
38253         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
38254
38255         * modules/mbscasestr-tests: New file.
38256         * tests/test-mbscasestr1.c: New file.
38257         * tests/test-mbscasestr2.sh: New file.
38258         * tests/test-mbscasestr2.c: New file.
38259         * tests/test-mbscasestr3.sh: New file.
38260         * tests/test-mbscasestr3.c: New file.
38261         * tests/test-mbscasestr4.sh: New file.
38262         * tests/test-mbscasestr4.c: New file.
38263         * m4/locale-tr.m4: New file.
38264
38265 2007-02-11  Bruno Haible  <bruno@clisp.org>
38266
38267         Ensure O(n) worst-case complexity of mbsstr.
38268         * lib/mbsstr.c: Include stdbool.h.
38269         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38270         functions.
38271         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
38272         bookkeeping indicates that it's worth it.
38273         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
38274
38275         * modules/mbsstr-tests: New file.
38276         * tests/test-mbsstr1.c: New file.
38277         * tests/test-mbsstr2.sh: New file.
38278         * tests/test-mbsstr2.c: New file.
38279         * tests/test-mbsstr3.sh: New file.
38280         * tests/test-mbsstr3.c: New file.
38281         * m4/locale-fr.m4: New file.
38282
38283 2007-02-11  Bruno Haible  <bruno@clisp.org>
38284
38285         * lib/mbsrchr.c (mbsrchr): Fix bug.
38286
38287         * modules/mbsrchr-tests: New file.
38288         * tests/test-mbsrchr.sh: New file.
38289         * tests/test-mbsrchr.c: New file.
38290
38291 2007-02-11  Bruno Haible  <bruno@clisp.org>
38292
38293         * lib/mbschr.c (mbschr): Fix bug.
38294
38295         * modules/mbschr-tests: New file.
38296         * tests/test-mbschr.sh: New file.
38297         * tests/test-mbschr.c: New file.
38298         * m4/locale-zh.m4: New file.
38299
38300 2007-02-11  Bruno Haible  <bruno@clisp.org>
38301
38302         Support for copying multibyte string iterators.
38303         * lib/mbiter.h: Include <string.h>.
38304         (mbiter_multi_copy): New function.
38305         (mbi_copy): New macro.
38306         * lib/mbuiter.h: Include <string.h>.
38307         (mbuiter_multi_copy): New function.
38308         (mbui_copy): New macro.
38309
38310 2007-02-11  Bruno Haible  <bruno@clisp.org>
38311
38312         New module mbslen.
38313         * modules/mbslen: New file.
38314         * lib/mbslen.c: New file.
38315         * lib/string_.h (mbslen): New declaration.
38316         * m4/mbslen.m4: New file.
38317         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38318         GNULIB_MBSLEN.
38319         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
38320         * MODULES.html.sh (Internationalization functions): Add mbslen.
38321
38322 2007-02-11  Bruno Haible  <bruno@clisp.org>
38323
38324         Ensure O(n) worst-case complexity of strcasestr substitute.
38325         * lib/strcasestr.c: Include stdbool.h.
38326         (knuth_morris_pratt): New function.
38327         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38328         bookkeeping indicates that it's worth it.
38329         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
38330
38331         * modules/strcasestr-tests: New file.
38332         * tests/test-strcasestr.c: New file.
38333
38334 2007-02-11  Bruno Haible  <bruno@clisp.org>
38335
38336         Ensure O(n) worst-case complexity of c_strcasestr.
38337         * lib/c-strcasestr.c: Include stdbool.h, string.h.
38338         (knuth_morris_pratt): New function.
38339         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
38340         the bookkeeping indicates that it's worth it.
38341         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
38342
38343         * modules/c-strcasestr-tests: New file.
38344         * tests/test-c-strcasestr.c: New file.
38345
38346 2007-02-11  Bruno Haible  <bruno@clisp.org>
38347
38348         Ensure O(n) worst-case complexity of c_strstr.
38349         * lib/c-strstr.c: Include stdbool.h, string.h.
38350         (knuth_morris_pratt): New function.
38351         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38352         bookkeeping indicates that it's worth it.
38353         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
38354
38355         * lib/c-strstr.c: Complete rewrite for maintainability.
38356
38357         * modules/c-strstr-tests: New file.
38358         * tests/test-c-strstr.c: New file.
38359
38360 2007-02-11  Bruno Haible  <bruno@clisp.org>
38361
38362         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
38363         5.2.1 and earlier, whereby \055 was treated just like the range
38364         delimiter '-'.
38365         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
38366
38367 2007-02-08  Bruno Haible  <bruno@clisp.org>
38368
38369         * modules/regex (Depends-on): Add stdbool.
38370         Reported by Dalibor Topic <robilad@kaffe.org>.
38371
38372 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
38373
38374         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
38375         Prefer returning from main to exiting from it.
38376         Remove unnecessary parens after sizeof.
38377
38378 2007-02-05  Bruno Haible  <bruno@clisp.org>
38379
38380         New module mbssep.
38381         * modules/mbssep: New file.
38382         * lib/mbssep.c: New file.
38383         * lib/string_.h (strsep): Add a conditional link warning.
38384         (mbssep): New declaration.
38385         * m4/mbssep.m4: New file.
38386         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38387         GNULIB_MBSSEP.
38388         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
38389         * MODULES.html.sh (Internationalization functions): Add mbssep.
38390
38391 2007-02-05  Bruno Haible  <bruno@clisp.org>
38392
38393         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
38394         Optimize search in case of 1 delimiter.
38395
38396 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
38397
38398         * lib/acl.h: Include sys/types.h before sys/acl.h.
38399
38400 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
38401
38402         Merge upstream fix for glibc bugzilla #3957:
38403
38404         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
38405
38406         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
38407         bit for RE_HAT_LISTS_NOT_NEWLINE.
38408         (build_charclass_op): Remove bogus comment.
38409
38410 2007-02-05  Simon Josefsson  <simon@josefsson.org>
38411
38412         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
38413
38414 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
38415
38416         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
38417         * lib/memmem.c [!defined _LIBC]: Include config.h.
38418
38419 2007-02-04  Bruno Haible  <bruno@clisp.org>
38420
38421         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
38422         warning message.
38423
38424 2007-02-04  Bruno Haible  <bruno@clisp.org>
38425
38426         New module mbstok_r.
38427         * modules/mbstok_r: New file.
38428         * lib/mbstok_r.c: New file.
38429         * lib/string_.h (strtok_r): Change argument names to match the
38430         comments. Add a conditional link warning.
38431         (mbstok_r): New declaration.
38432         * m4/mbstok_r.m4: New file.
38433         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38434         GNULIB_MBSTOK_R.
38435         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
38436         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
38437
38438 2007-02-04  Bruno Haible  <bruno@clisp.org>
38439
38440         New module mbsspn.
38441         * modules/mbsspn: New file.
38442         * lib/mbsspn.c: New file.
38443         * lib/string_.h (strspn): Add a conditional link warning.
38444         (mbsspn): New declaration.
38445         * m4/mbsspn.m4: New file.
38446         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38447         GNULIB_MBSSPN.
38448         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
38449         * MODULES.html.sh (Internationalization functions): Add mbsspn.
38450
38451 2007-02-04  Bruno Haible  <bruno@clisp.org>
38452
38453         New module mbspbrk.
38454         * modules/mbspbrk: New file.
38455         * lib/mbspbrk.c: New file.
38456         * lib/string_.h (strpbrk): Add a conditional link warning.
38457         (mbspbrk): New declaration.
38458         * m4/mbspbrk.m4: New file.
38459         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38460         GNULIB_MBSPBRK.
38461         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
38462         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
38463
38464 2007-02-04  Bruno Haible  <bruno@clisp.org>
38465
38466         New module mbscspn.
38467         * modules/mbscspn: New file.
38468         * lib/mbscspn.c: New file.
38469         * lib/string_.h (strcspn): Add a conditional link warning.
38470         (mbscspn): New declaration.
38471         * m4/mbscspn.m4: New file.
38472         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38473         GNULIB_MBSCSPN.
38474         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
38475         * MODULES.html.sh (Internationalization functions): Add mbscspn.
38476
38477 2007-02-04  Bruno Haible  <bruno@clisp.org>
38478
38479         New module mbscasestr, reduced goal of strcasestr.
38480         * modules/mbscasestr: New file.
38481         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
38482         (mbscasestr): Renamed from strcasestr.
38483         * lib/strcasestr.c: Don't include mbuiter.h.
38484         (strcasestr): Remove support for multibyte locales.
38485         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
38486         Change the conditional link warning.
38487         (mbscasestr): New declaration.
38488         * m4/mbscasestr.m4: New file.
38489         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
38490         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
38491         REPLACE_STRCASESTR.
38492         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
38493         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
38494         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
38495         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
38496         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
38497         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
38498         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
38499         (Depends-on): Remove mbuiter.
38500         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
38501
38502 2007-02-04  Bruno Haible  <bruno@clisp.org>
38503
38504         Simplify handling of strncasecmp.
38505         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
38506         the conditional link warning.
38507         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
38508         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
38509         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
38510         * modules/strcase (configure.ac): Don't invoke
38511         gl_STRING_MODULE_INDICATOR.
38512         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
38513
38514 2007-02-04  Bruno Haible  <bruno@clisp.org>
38515
38516         New module mbscasecmp, reduced goal of strcasecmp.
38517         * modules/mbscasecmp: New file.
38518         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
38519         (mbscasecmp): Renamed from strcasecmp.
38520         * lib/strcasecmp.c: Don't include mbuiter.h.
38521         (strcasecmp): Remove support for multibyte locales.
38522         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
38523         Change the conditional link warning.
38524         (mbscasecmp): New declaration.
38525         * m4/mbscasecmp.m4: New file.
38526         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
38527         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
38528         REPLACE_STRCASECMP.
38529         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
38530         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38531         GNULIB_MBSCASECMP.
38532         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
38533         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
38534         * modules/strcase (Files): Remove m4/mbrtowc.m4.
38535         (Depends-on): Remove mbuiter.
38536         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
38537
38538 2007-02-04  Bruno Haible  <bruno@clisp.org>
38539
38540         New module mbsstr. Remove module strstr.
38541         * modules/mbsstr: New file.
38542         * modules/strstr: Remove file.
38543         * lib/mbsstr.c: Renamed from lib/strstr.c.
38544         (mbsstr): Renamed from strstr.
38545         * lib/string_.h (strstr): Remove declaration. Change the conditional
38546         link warning.
38547         (mbsstr): New declaration.
38548         * m4/mbsstr.m4: New file.
38549         * m4/strstr.m4: Remove file.
38550         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
38551         REPLACE_STRSTR.
38552         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
38553         Don't initialize GNULIB_STRSTR.
38554         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
38555         substitute GNULIB_STRSTR and REPLACE_STRSTR.
38556         * MODULES.html.sh (Internationalization functions): Add mbsstr.
38557         (Support for systems lacking ANSI C 89): Remove strstr.
38558
38559 2007-02-04  Bruno Haible  <bruno@clisp.org>
38560
38561         New module mbsrchr.
38562         * modules/mbsrchr: New file.
38563         * lib/mbsrchr.c: New file.
38564         * lib/string_.h (strrchr): Add a conditional link warning.
38565         (mbsrchr): New declaration.
38566         * m4/mbsrchr.m4: New file.
38567         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38568         GNULIB_MBSRCHR.
38569         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
38570         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
38571
38572 2007-02-04  Bruno Haible  <bruno@clisp.org>
38573
38574         New module mbschr.
38575         * modules/mbschr: New file.
38576         * lib/mbschr.c: New file.
38577         * lib/string_.h (strchr): Add a conditional link warning.
38578         (mbschr): New declaration.
38579         * m4/mbschr.m4: New file.
38580         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38581         GNULIB_MBSCHR.
38582         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
38583         * MODULES.html.sh (Internationalization functions): Add mbschr.
38584
38585 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
38586
38587         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
38588
38589         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
38590
38591 2007-02-04  Bruno Haible  <bruno@clisp.org>
38592
38593         New module description section 'configure.ac-early'.
38594         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
38595         (func_get_autoconf_early_snippet): New function.
38596         (func_import, func_create_testdir): Use it. Remove special cases for
38597         modules 'extensions' and 'lock'.
38598         * modules/extensions (configure.ac-early): Require
38599         gl_USE_SYSTEM_EXTENSIONS.
38600         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
38601
38602 2007-02-04  Bruno Haible  <bruno@clisp.org>
38603
38604         Make use of gcj-4.3's -fsource and -ftarget option.
38605         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
38606         and if so try the options -fsource and -ftarget.
38607         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
38608         source_version, ftarget_option, target_version arguments.
38609         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
38610         (is_envjavac_oldgcj_14_14_usable): Renamed from
38611         is_envjavac_gcj_14_14_usable.
38612         (is_envjavac_oldgcj_14_13_usable): Renamed from
38613         is_envjavac_gcj_14_13_usable.
38614         (is_gcj_present): Update.
38615         (is_gcj_43, is_gcj43_usable): New functions.
38616         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
38617         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
38618         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
38619         try the options -fsource and -ftarget.
38620
38621 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
38622
38623         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
38624         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
38625         larger value.
38626
38627 2007-02-03  Jim Meyering  <jim@meyering.net>
38628
38629         Give tools a better chance to allocate space for very large buffers.
38630         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
38631
38632         Make pwd and readlink work also when run with an unreadable parent dir
38633         on systems with openat support.
38634         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
38635         provided getcwd function, even when we have openat support.
38636         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
38637
38638 2007-02-02  Bruno Haible  <bruno@clisp.org>
38639
38640         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
38641         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
38642         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
38643         portability problems if one of these functions is only used on specific
38644         platforms.
38645         Reported by Paul Eggert.
38646
38647 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
38648
38649         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
38650         is causing more trouble than it's curing.
38651         * lib/regex_internal.h (__mempcpy): Remove.
38652         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
38653         (and make the code a tad smaller to boot).
38654         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
38655
38656 2007-02-02  Jim Meyering  <jim@meyering.net>
38657
38658         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
38659         section, not in the Makefile.am: one.
38660
38661 2007-02-02  Eric Blake  <ebb9@byu.net>
38662
38663         * lib/strchrnul.c: Always include config.h first.
38664
38665         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
38666         gnulib strstr is not necessary here.
38667
38668 2007-02-02  Simon Josefsson  <simon@josefsson.org>
38669
38670         * m4/socklen.m4: Fix typo.
38671
38672 2007-02-02  Eric Blake  <ebb9@byu.net>
38673
38674         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
38675         * modules/netinet_in (Makefile.am): Likewise.
38676
38677 2007-02-01  Bruno Haible  <bruno@clisp.org>
38678
38679         * lib/string_.h (GL_LINK_WARNING): New macro.
38680         (strcasecmp, strstr, strcasestr): If provided by the system,
38681         conditionally define as a macro that leads to a warning instead of to
38682         an error.
38683         (strncasecmp): Conditionally define as a macro that leads to a warning.
38684
38685 2007-02-01  Karl Berry  <karl@gnu.org>
38686
38687         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
38688
38689 2007-02-01  Bruno Haible  <bruno@clisp.org>
38690
38691         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
38692         renamings.
38693
38694 2007-02-01  Eric Blake  <ebb9@byu.net>
38695
38696         * modules/regex (Depends-on): Revert dependence on mempcpy.
38697         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
38698         module's definition of mempcpy.
38699         Reported by Paul Eggert.
38700
38701 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
38702
38703         * lib/string_.h: If the gnulib module XYZ is not present, undefine
38704         the symbol XYZ before redefining it.  This fixes a problem with
38705         programs that don't use XYZ, when compiled on systems that define
38706         XYZ to something else.
38707
38708 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
38709
38710         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
38711         occurs when "mkdir -m foo" creates a setgid directory that is (1)
38712         writeable to group or other and (2) is intended to have a special
38713         mode bit that is set or cleared.  In such a case, the directory
38714         should be neither group- nor other-writeable until the special
38715         mode bits are right.
38716
38717 2007-01-31  Eric Blake  <ebb9@byu.net>
38718
38719         * modules/mountlist (Depends-on): Add strstr.
38720
38721         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
38722         bug.
38723         * modules/string (Makefile.am): Remove redundant replacement.
38724         * modules/regex (Depends-on): Add mempcpy.
38725
38726 2007-01-31  Bruno Haible  <bruno@clisp.org>
38727
38728         New module description field 'Link'.
38729         * gnulib-tool (func_usage): Document --extract-link-directive.
38730         (sed_extract_prog): Recognize 'Link' directive.
38731         (func_get_link_directive): New function.
38732         (func_import): Show summary of link directives.
38733         Handle --extract-link-directive option.
38734         * modules/acl (Link): New section.
38735         * modules/clock-time (Link): New section.
38736         * modules/euidaccess (Link): New section.
38737         * modules/gettext (Link): New section.
38738         * modules/iconv (Link): New section.
38739         * modules/lock (Link): New section.
38740         * modules/nanosleep (Link): New section.
38741         * modules/readline (Link): New section.
38742
38743 2007-01-27  Bruno Haible  <bruno@clisp.org>
38744
38745         Enforce the use of gnulib modules for unportable <string.h> functions.
38746         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
38747         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
38748         (gl_HEADER_STRING_H_BODY): Require it.
38749         * lib/string_.h: If the gnulib module XYZ is not present, redefine
38750         the symbol XYZ to one that gives a link error.
38751         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
38752         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
38753         * modules/mempcpy (configure.ac): Likewise.
38754         * modules/memrchr (configure.ac): Likewise.
38755         * modules/stpcpy (configure.ac): Likewise.
38756         * modules/stpncpy (configure.ac): Likewise.
38757         * modules/strcase (configure.ac): Likewise.
38758         * modules/strcasestr (configure.ac): Likewise.
38759         * modules/strchrnul (configure.ac): Likewise.
38760         * modules/strdup (configure.ac): Likewise.
38761         * modules/strndup (configure.ac): Likewise.
38762         * modules/strnlen (configure.ac): Likewise.
38763         * modules/strpbrk (configure.ac): Likewise.
38764         * modules/strsep (configure.ac): Likewise.
38765         * modules/strstr (configure.ac): Likewise.
38766         * modules/strtok_r (configure.ac): Likewise.
38767
38768 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
38769
38770         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
38771
38772 2007-01-30  Jim Meyering  <jim@meyering.net>
38773
38774         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
38775
38776 2007-01-29  Bruno Haible  <bruno@clisp.org>
38777
38778         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
38779         * lib/execute.c: Likewise.
38780         * lib/pipe.c: Likewise.
38781         * lib/printf-args.h: Likewise.
38782         * lib/printf-args.c: Likewise.
38783         * lib/printf-parse.c: Likewise.
38784         * lib/vasnprintf.c: Likewise.
38785
38786 2007-01-29  Eric Blake  <ebb9@byu.net>
38787
38788         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
38789         declaration.
38790
38791 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
38792
38793         * lib/strptime.h (strptime): Use 'restrict' for args where
38794         POSIX requires this.
38795         * lib/strptime.c (strptime): Likewise.
38796         Change license notice from LGPL to GPL, since gnulib-tool will
38797         change this as needed.
38798         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
38799         defined.
38800         Include "strptime.h" first, to check interface.
38801         Do not #undef _LIBC and _NL_CURRENT.
38802         Do not include <stdlib.h>; no longer needed.
38803         Include "time_r.h" and declare ptime_locale_status
38804         only if _LIBC is not defined.
38805         (__P): Remove unused macro.
38806         (match_string): Bring back glibc version, but use it only if _LIBC
38807         is defined.
38808         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
38809         Remove unnecessary assertion and abort() call.
38810         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
38811         * m4/strptime.m4: Fix serial number comment.
38812         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
38813         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
38814         (Depends-on): Add time_r.
38815
38816 2007-01-29  Bruno Haible  <bruno@clisp.org>
38817
38818         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
38819         strptime.
38820         * modules/strptime (Depends-on): Add stdbool.
38821         * lib/strptime.h: Include <time.h> always. Add comments.
38822
38823 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
38824
38825         * modules/strptime: New file.
38826         * lib/strptime.h: New file.
38827         * lib/strptime.c: New file.
38828         * m4/strptime.m4: New file.
38829
38830 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
38831
38832         * MODULES.html.sh: New module mpsort.
38833         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
38834
38835         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
38836         a circularity problem with HP-UX ia64 reported by Bob Proulx in
38837         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
38838         All uses changed.
38839         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
38840         All uses changed.
38841         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
38842         to _Restrict_.
38843         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
38844         the parameter matches the prototype.
38845
38846 2007-01-28  Jim Meyering  <jim@meyering.net>
38847
38848         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
38849         sys/time.h here, reverting that part of the previous patch:
38850         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
38851
38852 2007-01-28  Bruno Haible  <bruno@clisp.org>
38853
38854         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
38855         value of $(SYS_TIME_H).
38856         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
38857         remove it conditionally, too. [added by Jim Meyering]
38858         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
38859         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
38860         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
38861         GETTIMEOFDAY_REPLACEMENT to 1.
38862
38863 2007-01-28  Bruno Haible  <bruno@clisp.org>
38864
38865         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
38866         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
38867         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
38868         Set UNISTD_H instead of UNISTD_H2.
38869         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
38870
38871 2007-01-28  Bruno Haible  <bruno@clisp.org>
38872
38873         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
38874         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
38875
38876 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38877
38878         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
38879         (func_create_testdir): Ensure C locale for `grep' and `tr'
38880         character ranges.
38881         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
38882         ACLOCAL_AMFLAGS parsing state machine.
38883
38884 2007-01-27  Bruno Haible  <bruno@clisp.org>
38885
38886         * modules/unistr/base: Update.
38887
38888 2007-01-27  Bruno Haible  <bruno@clisp.org>
38889
38890         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
38891         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
38892         * modules/unistr/u32-mbtouc-unsafe: Renamed from
38893         modules/unistr/u32-mbtouc.
38894         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
38895         * lib/unistr.h: Update.
38896         * lib/linebreak.c: Update.
38897         * modules/unistr/u32-mbtouc: Renamed from
38898         modules/unistr/u32-mbtouc-safe.
38899         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
38900         * lib/unistr.h: Update.
38901         * lib/unistr/u32-to-u8.c: Update.
38902         * lib/unistr/u32-to-u16.c: Update.
38903
38904 2007-01-27  Bruno Haible  <bruno@clisp.org>
38905
38906         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
38907         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
38908         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
38909         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
38910         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
38911         * modules/unistr/u16-mbtouc-unsafe: Renamed from
38912         modules/unistr/u16-mbtouc.
38913         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
38914         * lib/unistr.h: Update.
38915         * lib/linebreak.c: Update.
38916         * modules/linebreak: Update.
38917         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
38918         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
38919         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
38920         * modules/unistr/u16-mbtouc: Renamed from
38921         modules/unistr/u16-mbtouc-safe.
38922         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
38923         * lib/unistr.h: Update.
38924         * lib/unistr/u16-to-u8.c: Update.
38925         * modules/unistr/u16-to-u8: Update.
38926         * lib/unistr/u16-to-u32.c: Update.
38927         * modules/unistr/u16-to-u32: Update.
38928
38929 2007-01-27  Bruno Haible  <bruno@clisp.org>
38930
38931         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
38932         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
38933         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
38934         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
38935         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
38936         * modules/unistr/u8-mbtouc-unsafe: Renamed from
38937         modules/unistr/u8-mbtouc.
38938         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
38939         * lib/unistr.h: Update.
38940         * lib/striconveh.c: Update.
38941         * modules/striconveh: Update.
38942         * lib/linebreak.c: Update.
38943         * modules/linebreak: Update.
38944         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
38945         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
38946         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
38947         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
38948         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
38949         * lib/unistr.h: Update.
38950         * lib/striconveh.c: Update.
38951         * modules/striconveh: Update.
38952         * lib/unistr/u8-to-u16.c: Update.
38953         * modules/unistr/u8-to-u16: Update.
38954         * lib/unistr/u8-to-u32.c: Update.
38955         * modules/unistr/u8-to-u32: Update.
38956
38957 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38958
38959         Sync from Libtool.
38960         * lib/argz.c: Do not include strings.h nor memory.h, include
38961         string.h unconditionally.  Patch by Simon Josefsson.
38962
38963 2007-01-27  Bruno Haible  <bruno@clisp.org>
38964
38965         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
38966         from gl_HEADER_STRING_H_BODY.
38967         (gl_HEADER_STRING_H_BODY): Require it.
38968         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
38969         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
38970         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
38971         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
38972         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
38973         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
38974         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
38975         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
38976         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
38977         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
38978         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
38979         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
38980         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
38981         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
38982         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38983
38984 2007-01-27  Bruno Haible  <bruno@clisp.org>
38985
38986         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
38987         check_PROGRAMS into noinst_PROGRAMS.
38988         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
38989         check_PROGRAMS in this case.
38990         (func_import): Set for_test to false.
38991         (func_create_testdir): Set for_test to true.
38992
38993 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
38994             Bruno Haible  <bruno@clisp.org>
38995
38996         * modules/strcasestr (Files): Remove lib/strcasestr.h.
38997         (Depends-on): Add string.
38998         (Includes): Use <string.h> instead of strcasestr.h.
38999         * modules/string (Makefile.am): Also substitute the value of
39000         REPLACE_STRCASESTR.
39001         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
39002         assume strcasestr is declared in <string.h> not <strings.h>. Also
39003         set REPLACE_STRCASESTR.
39004         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
39005         REPLACE_STRCASESTR.
39006         * lib/strcasestr.h: Remove file.
39007         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
39008         * lib/string_.h (strcasestr): New declaration.
39009
39010 2007-01-27  Bruno Haible  <bruno@clisp.org>
39011
39012         * lib/string_.h: Use 'extern'.
39013
39014 2007-01-27  Jim Meyering  <jim@meyering.net>
39015
39016         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
39017         of set-but-not-used local, "q".
39018
39019         * lib/mempcpy.c: Include <config.h> before <string.h>.
39020         This fixes a compilation error on HP-UX, due to the system's
39021         "restrict"-using mempcpy prototype.
39022
39023 2007-01-26  Bruno Haible  <bruno@clisp.org>
39024
39025         Small optimization.
39026         * lib/javacomp.c: Include c-strstr.h.
39027          (is_envjavac_gcj): Use c_strstr instead of strstr.
39028         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
39029
39030 2007-01-26  Bruno Haible  <bruno@clisp.org>
39031
39032         * MODULES.html.sh (Unicode string functions): Add the new modules.
39033
39034         * modules/uniconv/u32-strconv-to-locale: New file.
39035         * lib/uniconv/u32-strconv-to-locale.c: New file.
39036
39037         * modules/uniconv/u16-strconv-to-locale: New file.
39038         * lib/uniconv/u16-strconv-to-locale.c: New file.
39039
39040         * modules/uniconv/u8-strconv-to-locale: New file.
39041         * lib/uniconv/u8-strconv-to-locale.c: New file.
39042
39043         * modules/uniconv/u32-strconv-from-locale: New file.
39044         * lib/uniconv/u32-strconv-from-locale.c: New file.
39045
39046         * modules/uniconv/u16-strconv-from-locale: New file.
39047         * lib/uniconv/u16-strconv-from-locale.c: New file.
39048
39049         * modules/uniconv/u8-strconv-from-locale: New file.
39050         * lib/uniconv/u8-strconv-from-locale.c: New file.
39051
39052         * modules/uniconv/u32-strconv-to-enc: New file.
39053         * lib/uniconv/u32-strconv-to-enc.c: New file.
39054         * modules/uniconv/u32-strconv-to-enc-tests: New file.
39055         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
39056
39057         * modules/uniconv/u16-strconv-to-enc: New file.
39058         * lib/uniconv/u16-strconv-to-enc.c: New file.
39059         * lib/uniconv/u-strconv-to-enc.h: New file.
39060         * modules/uniconv/u16-strconv-to-enc-tests: New file.
39061         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
39062
39063         * modules/uniconv/u8-strconv-to-enc: New file.
39064         * lib/uniconv/u8-strconv-to-enc.c: New file.
39065         * modules/uniconv/u8-strconv-to-enc-tests: New file.
39066         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
39067
39068         * modules/uniconv/u32-strconv-from-enc: New file.
39069         * lib/uniconv/u32-strconv-from-enc.c: New file.
39070         * modules/uniconv/u32-strconv-from-enc-tests: New file.
39071         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
39072
39073         * modules/uniconv/u16-strconv-from-enc: New file.
39074         * lib/uniconv/u16-strconv-from-enc.c: New file.
39075         * modules/uniconv/u16-strconv-from-enc-tests: New file.
39076         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
39077
39078         * modules/uniconv/u8-strconv-from-enc: New file.
39079         * lib/uniconv/u8-strconv-from-enc.c: New file.
39080         * lib/uniconv/u-strconv-from-enc.h: New file.
39081         * modules/uniconv/u8-strconv-from-enc-tests: New file.
39082         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
39083
39084         * modules/uniconv/u32-conv-from-enc: New file.
39085         * lib/uniconv/u32-conv-from-enc.c: New file.
39086         * modules/uniconv/u32-conv-from-enc-tests: New file.
39087         * tests/uniconv/test-u32-conv-from-enc.c: New file.
39088
39089         * modules/uniconv/u16-conv-from-enc: New file.
39090         * lib/uniconv/u16-conv-from-enc.c: New file.
39091         * lib/uniconv/u-conv-from-enc.h: New file.
39092         * modules/uniconv/u16-conv-from-enc-tests: New file.
39093         * tests/uniconv/test-u16-conv-from-enc.c: New file.
39094
39095         * modules/uniconv/u8-conv-from-enc: New file.
39096         * lib/uniconv/u8-conv-from-enc.c: New file.
39097         * modules/uniconv/u8-conv-from-enc-tests: New file.
39098         * tests/uniconv/test-u8-conv-from-enc.c: New file.
39099
39100         * modules/uniconv/base: New file.
39101         * lib/uniconv.h: New file.
39102
39103 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
39104
39105         * doc/gnulib-tool.texi (Initial import): Update to match current
39106         behavior with strdup module.
39107         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
39108         * lib/memmem.h: Remove; all uses removed.  This is now done
39109         by <string.h>.
39110         * lib/mempcpy.h: Likewise.
39111         * lib/memrchr.h: Likewise.
39112         * lib/stpcpy.h: Likewise.
39113         * lib/stpncpy.h: Likewise.
39114         * lib/strcase.h: Likewise.
39115         * lib/strchrnul.h: Likewise.
39116         * lib/strdup.h: Likewise.
39117         * lib/strndup.h: Likewise.
39118         * lib/strnlen.h: Likewise.
39119         * lib/strpbrk.h: Likewise.
39120         * lib/strsep.h: Likewise.
39121         * lib/strstr.h: Likewise.
39122         * lib/strtok_r.h: Likewise.
39123         * lib/string_.h: New file.
39124         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
39125         Rely on <string.h> instead.
39126         * lib/canon-host.c: Likewise.
39127         * lib/chdir-long.c: Likewise.
39128         * lib/concatpath.c: Likewise.
39129         * lib/exclude.c: Likewise.
39130         * lib/fchdir.c: Likewise.
39131         * lib/getaddrinfo.c: Likewise.
39132         * lib/getcwd.c: Likewise.
39133         * lib/getsubopt.c: Likewise.
39134         * lib/glob.c: Likewise.
39135         * lib/hard-locale.c: Likewise.
39136         * lib/iconvme.c: Likewise.
39137         * lib/javacomp.c: Likewise.
39138         * lib/mempcpy.c: Likewise.
39139         * lib/memrchr.c: Likewise.
39140         * lib/regex_internal.h: Likewise.
39141         * lib/stpncpy.c: Likewise.
39142         * lib/strcasecmp.c: Likewise.
39143         * lib/strchrnul.c: Likewise.
39144         * lib/strdup.c: Likewise.
39145         * lib/striconv.c: Likewise.
39146         * lib/striconveh.c: Likewise.
39147         * lib/striconveha.c: Likewise.
39148         * lib/strncasecmp.c: Likewise.
39149         * lib/strndup.c: Likewise.
39150         * lib/strnlen.c: Likewise.
39151         * lib/strsep.c: Likewise.
39152         * lib/strstr.c: Likewise.
39153         * lib/strtok_r.c: Likewise.
39154         * lib/userspec.c: Likewise.
39155         * lib/w32spawn.h: Likewise.
39156         * lib/xstrndup.c: Likewise.
39157         * lib/mountlist.c (strstr): Remove decl.
39158         * m4/string_h.m4: New file.
39159         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
39160         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
39161         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
39162         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
39163         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
39164         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
39165         Set REPLACE_STRCASECMP if necessary.
39166         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
39167         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
39168         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
39169         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
39170         HAVE_DECL_STRDUP if necessary.
39171         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
39172         since gl_FUNC_STRNDUP does that now.
39173         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
39174         Check for decl here...
39175         (gl_PREREQ_STRNLEN): ... not here.
39176         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
39177         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
39178         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
39179         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
39180         necessary.
39181         * modules/string: New file.
39182         * modules/memmem (Files): Remove special-purpose include file.
39183         (Depends-on): Add string.
39184         (Include): Include <string.h>, not the removed file.
39185         * modules/mempcpy: Likewise.
39186         * modules/memrchr: Likewise.
39187         * modules/stpcpy: Likewise.
39188         * modules/stpncpy: Likewise.
39189         * modules/strcase: Likewise.
39190         * modules/strchrnul: Likewise.
39191         * modules/strdup: Likewise.
39192         * modules/strndup: Likewise.
39193         * modules/strnlen: Likewise.
39194         * modules/strpbrk: Likewise.
39195         * modules/strsep: Likewise.
39196         * modules/strstr: Likewise.
39197         * modules/strtok_r: Likewise.
39198         * tests/test-dirname.c: Don't include "strdup.h", since
39199         <string.h> now suffices.
39200         * tests/test-memmem.c: Don't include "memmem.h", since
39201         <string.h> now suffices.
39202
39203 2007-01-25  Bruno Haible  <bruno@clisp.org>
39204
39205         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
39206         *resultp is 0.
39207
39208         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
39209         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
39210         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
39211         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
39212
39213         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
39214         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
39215         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
39216         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
39217         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
39218         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
39219
39220 2007-01-24  Bruno Haible  <bruno@clisp.org>
39221
39222         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
39223         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
39224         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
39225         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
39226         gl_FUNC_FTS_CORE.
39227         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
39228         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
39229         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39230         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
39231         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
39232         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
39233         gl_FUNC_FCHOWNAT.
39234         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
39235         gl_FUNC_STRFTIME.
39236         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
39237         Reported by Ralf Wildenhues.
39238
39239 2007-01-24  Bruno Haible  <bruno@clisp.org>
39240
39241         Drop AC_REQUIRE calls that are redundant with the module dependencies.
39242         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
39243         gl_GETADDRINFO.
39244         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
39245         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
39246         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
39247
39248 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
39249
39250         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
39251         Don't use 'exit'; just return from 'main'.
39252         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
39253
39254         * lib/fnmatch_.h: Readjust white space and comments to match
39255         glibc, to avoid spurious diffs.
39256
39257 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39258
39259         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
39260         2004-12-01 change by Jakub Jelinek, since this code won't compile
39261         if !LIBC.  Problem reported by Bob Proulx.
39262
39263 2007-01-23  Bruno Haible  <bruno@clisp.org>
39264
39265         * lib/striconveh.c: Include c-strcaseeq.h.
39266         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
39267         * modules/striconveh (Depends-on): Add c-strcaseeq.
39268
39269 2007-01-23  Bruno Haible  <bruno@clisp.org>
39270
39271         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
39272
39273         * modules/c-strcaseeq: New file.
39274         * lib/c-strcaseeq.h: New file.
39275
39276         * modules/streq: New file.
39277         * lib/streq.h: New file.
39278
39279 2007-01-23  Bruno Haible  <bruno@clisp.org>
39280
39281         * modules/striconveha-tests: New file.
39282         * tests/test-striconveha.c: New file.
39283
39284         * lib/striconveha.h: Include <stdbool.h>.
39285         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
39286         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
39287         (mem_iconveha_notranslit): Renamed from mem_iconveha.
39288         (mem_iconveha): New function.
39289         (str_iconveha_notranslit): Renamed from str_iconveha.
39290         (str_iconveha): New function.
39291         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
39292         c-strcase.
39293
39294 2007-01-23  Bruno Haible  <bruno@clisp.org>
39295
39296         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
39297         encodings without forgiving before trying any encoding with handler.
39298         (str_iconveha): Try all encodings without forgiving before trying any
39299         encoding with handler.
39300
39301 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39302
39303         Import the following changes from libc.
39304
39305         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
39306
39307         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
39308
39309         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
39310
39311         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
39312         normal_bracket label.
39313
39314         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
39315
39316         [BZ #361]
39317         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
39318         to normal_bracket after fetching the next character.
39319
39320 2007-01-22  Bruno Haible  <bruno@clisp.org>
39321
39322         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
39323         argument.
39324         * lib/striconveh.c (iconv_carefully_1): New function.
39325         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
39326         argument.
39327         (str_cd_iconveh): Update.
39328         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
39329         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
39330         * tests/test-striconveh.c (MAGIC): New macro.
39331         (new_offsets): New function.
39332         (main): Test call with and without offsets.
39333
39334 2007-01-22  Bruno Haible  <bruno@clisp.org>
39335
39336         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
39337         * modules/sys_select (Makefile.am): Likewise.
39338         * modules/sys_socket (Makefile.am): Likewise.
39339         * modules/sys_time (Makefile.am): Likewise.
39340
39341 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
39342
39343         * modules/gettimeofday (License): Change from GPL to LGPL, since
39344         gettimeofday is a library function.
39345
39346 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39347
39348         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
39349
39350 2007-01-21  Bruno Haible  <bruno@clisp.org>
39351
39352         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
39353
39354 2007-01-21  Bruno Haible  <bruno@clisp.org>
39355
39356         * modules/striconveha: New file.
39357         * lib/striconveha.h: New file.
39358         * lib/striconveha.c: New file.
39359         * MODULES.html.sh (Internationalization functions): Add striconveha.
39360         * lib/striconv.c (str_iconv): Optimize the case of an empty input
39361         string.
39362         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
39363
39364 2007-01-21  Bruno Haible  <bruno@clisp.org>
39365
39366         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
39367         * lib/striconveh.c (str_iconveh): Likewise.
39368
39369 2007-01-21  Bruno Haible  <bruno@clisp.org>
39370
39371         * lib/striconveh.h (mem_iconveh): New declaration.
39372         * lib/striconveh.c (mem_iconveh): New function.
39373         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
39374
39375 2007-01-21  Bruno Haible  <bruno@clisp.org>
39376
39377         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
39378
39379         * lib/striconveh.h (mem_cd_iconveh): Change specification.
39380         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
39381         original result buffer.
39382         (str_cd_iconveh): Update.
39383         * tests/test-striconveh.c (main): Update.
39384
39385         * lib/striconv.h (mem_cd_iconv): Change specification.
39386         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
39387         result buffer.
39388         (str_cd_iconv): Update.
39389         * tests/test-striconv.c (main): Update.
39390
39391 2007-01-21  Bruno Haible  <bruno@clisp.org>
39392
39393         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
39394
39395 2007-01-20  Jim Meyering  <jim@meyering.net>
39396
39397         * lib/userspec.c (parse_with_separator): If a user or group string
39398         starts with "+", skip the corresponding name-to-ID look-up, since
39399         such a look-up must fail: user and group names may not include "+".
39400
39401 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
39402
39403         * lib/poll.c: Include sys/time.h and time.h unconditionally,
39404         since we now assume the sys_time module.
39405         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
39406         check for sys/time.h; no longer needed.
39407         * modules/poll (Depends-on): Depend on sys_time.
39408
39409 2007-01-18  Bruno Haible  <bruno@clisp.org>
39410
39411         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
39412         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
39413
39414         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
39415         gettimeofday.
39416
39417         * tests/test-gettimeofday.c: Include <time.h>.
39418         (dummy): Remove variable.
39419
39420         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
39421         gl_HEADER_SYS_TIME_H.
39422         (gl_HEADER_SYS_TIME_H): New macro.
39423
39424         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
39425         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39426         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
39427         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
39428         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39429         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
39430         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
39431         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39432         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
39433         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
39434         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39435
39436         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
39437         last change; it caused a compilation error when cross-compiling to
39438         Cygwin.
39439
39440 2007-01-18  Jim Meyering  <jim@meyering.net>
39441
39442         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
39443         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
39444         than the race-prone "test -d sys || mkdir sys".
39445         (configure.ac): Use AC_PROG_MKDIR_P.
39446         * modules/sys_select: Likewise.
39447         * modules/sys_socket: Likewise.
39448         * modules/sys_time: Likewise.
39449
39450 2007-01-18  Eric Blake  <ebb9@byu.net>
39451
39452         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
39453         replace gettimeofday.
39454         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
39455         name, to avoid infinite recursion.
39456
39457 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
39458
39459         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
39460         module sys_time.
39461         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
39462         assume timespec.h defines struct timeval.
39463         * lib/settime.c: Likewise.
39464         * lib/utimens.c: Likewise.
39465         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
39466         since we now assume the gettimeofday module.
39467         * lib/tempname.c (__gen_tempname): Likewise.
39468         * lib/gettimeofday.h: Remove.
39469         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
39470         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
39471         Include <time.h>, for 'time()'.
39472         (localtime_buffer_addr): Also use this workaround if
39473         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
39474         to simplify the uses.  All uses changed.
39475         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
39476         that #undef is inside {}, and 'const' follows type name consistently.
39477         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
39478         (gettimeofday): Do not use the maximum possible value for
39479         tv->tv_usec, since that might break usages other than ls.c.
39480         Instead, we'll leave ls.c alone.  This undoes today's patch
39481         by Bruno.  Add a compile-time warning for 1s-clock resolution;
39482         we've never observed the problem but might as well keep the
39483         canary.
39484         * lib/nanosleep.c: Include timespec.h first, for interface check.
39485         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
39486         now assume the sys_time module.
39487         * lib/tempname.c: Likewise.
39488         * lib/timespec.h: Likewise.
39489         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
39490         needed.
39491         * lib/strftime.c: Likewise.
39492         * lib/timespec.h: Likewise.
39493         * lib/posixtm.c: Include posixtm.h first, for interface check.
39494         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
39495         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
39496         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
39497         * lib/sys_time_.h: New file.
39498         * lib/timespec.h (struct timespec): Use long int, not long.
39499         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
39500         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
39501         Remove obsolescent call to AC_HEADER_TIME.
39502         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
39503         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
39504         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
39505         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
39506         Likewise.
39507         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
39508         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
39509         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
39510         into the sys_time module.  Check for gettimeofday just once.
39511         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
39512         for gettimeofday signature to just check the signature.  Merely
39513         compile it, since linking doesn't test signature.  Improve test for
39514         whether gettimeofday.o is actually needed.
39515         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
39516         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
39517         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
39518         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39519         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
39520         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
39521         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
39522         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
39523         than worrying about sys/time.h.
39524         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
39525         Don't bother worrying about TIME_WITH_SYS_TIME.
39526         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
39527         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
39528         * m4/sys_time_h.m4: New file.
39529         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
39530         Don't include sys/time.h.  Return from main rather than exiting.
39531         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
39532         all uses changed.
39533         * modules/gethrxtime (Depends-on): Add sys_time.
39534         * modules/gettime (Depends-on): Likewise.
39535         * modules/gettimeofday (Depends-on): Likewise.
39536         * modules/nanosleep (Depends-on): Likewise.
39537         * modules/settime (Depends-on): Likewise.
39538         * modules/tempname (Depends-on): Likewise.
39539         * modules/utimens (Depends-on): Likewise.
39540         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
39541         (Include:) Change back to <sys/time.h>.
39542         (Maintainer:) Add self.
39543         * modules/sys_time: New file.
39544         * modules/tempname (Depends-on): Add gettimeofday.
39545         * tests/test-gettimeofday.c: Include <sys/time.h>
39546         rather than gettimeofday.h.
39547
39548 2007-01-17  Bruno Haible  <bruno@clisp.org>
39549
39550         * gnulib-tool (func_get_license): Revert last patch. Instead, let
39551         the license default to GPL.
39552         (func_create_testdir): Don't complain if a module is LGPL and its
39553         tests module depends on GPLed modules.
39554
39555 2007-01-17  Bruno Haible  <bruno@clisp.org>
39556
39557         * lib/gettimeofday.c (gettimeofday): Add code for the case
39558         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
39559         maximum possible value for tv->tv_usec, rather than the minimum one.
39560
39561 2005-10-08  Martin Lambers  <marlam@marlam.de>
39562 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
39563 2007-01-16  Bruno Haible  <bruno@clisp.org>
39564
39565         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
39566         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
39567         gl_FUNC_GETTIMEOFDAY.
39568         (Include): Add gettimeofday.h.
39569         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
39570         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
39571         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
39572         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
39573         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
39574         * lib/gettimeofday.h: New file.
39575         * lib/gettimeofday.c: Include <sys/timeb.h>.
39576         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
39577         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39578         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
39579         fall back on time().
39580
39581         * tests/test-gettimeofday.c: New file.
39582         * modules/gettimeofday-tests: New file.
39583
39584 2007-01-16  Eric Blake  <ebb9@byu.net>
39585
39586         * modules/fnmatch (Depends-on): Depend on wchar.
39587         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
39588         * m4/fnmatch.m4: Likewise.
39589         * modules/mbchar (Makefile.am): Assume <wchar.h>.
39590         * m4/mbchar.m4: Likewise.
39591         * modules/mbswidth (Depends-on): Depend on wchar.
39592         * lib/mbswidth.c: Assume <wchar.h>.
39593         * m4/mbswidth.m4: Likewise.
39594         * modules/quotearg (Depends-on): Depend on wchar.
39595         * lib/quotearg.c: Assume <wchar.h>.
39596         * m4/quotearg.m4: Likewise.
39597         * modules/regex (Depends-on): Depend on wchar.
39598         * lib/regex_internal.h: Assume <wchar.h>.
39599         * m4/regex.m4: Likewise.
39600         * modules/stdint (Depends-on): Depend on wchar.
39601         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
39602         * m4/stdint.m4: Likewise.
39603         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
39604         * modules/strftime (Depends-on): Depend on wchar.
39605         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
39606         * modules/strtol (Depends-on): Depend on wchar.
39607         * lib/strtol.c: Assume <wchar.h>.
39608         * modules/wcwidth (Depends-on): Depend on wchar.
39609         * lib/wcwidth.h: Assume <wchar.h>.
39610         * m4/wcwidth.m4: Likewise.
39611
39612 2007-01-16  Bruno Haible  <bruno@clisp.org>
39613
39614         * modules/csharpexec-script: New, created from...
39615         * modules/csharpexec: ... this.
39616
39617 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
39618
39619         * modules/javaexec-script: New, created from...
39620         * modules/javaexec: ... this.
39621
39622 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39623
39624         * modules/poll (Dependencies): Add sys_select.
39625
39626 2007-01-15  Jim Meyering  <jim@meyering.net>
39627
39628         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
39629         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
39630         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
39631         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
39632
39633 2007-01-15  Bruno Haible  <bruno@clisp.org>
39634
39635         * modules/striconveh: New file.
39636         * lib/striconveh.h: New file.
39637         * lib/striconveh.c: New file.
39638         * MODULES.html.sh (Internationalization functions): Add striconveh.
39639
39640         * modules/striconveh-tests: New file.
39641         * tests/test-striconveh.c: New file.
39642
39643 2007-01-15  Bruno Haible  <bruno@clisp.org>
39644
39645         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
39646         not from GNU libiconv or GNU libc.
39647
39648 2007-01-15  Bruno Haible  <bruno@clisp.org>
39649
39650         * doc/gnulib-intro.texi (Copyright): Explain the different license
39651         terms for module descriptions, autoconf macros, tests, documentation.
39652
39653 2007-01-14  Bruno Haible  <bruno@clisp.org>
39654
39655         * modules/striconv-tests: New file.
39656         * tests/test-striconv.c: New file.
39657
39658 2007-01-14  Bruno Haible  <bruno@clisp.org>
39659
39660         * modules/iconv-tests: New file.
39661         * tests/test-iconv.c: New file.
39662
39663 2007-01-14  Bruno Haible  <bruno@clisp.org>
39664
39665         * gnulib-tool (func_get_license): For test modules, use the license of
39666         the main module.
39667
39668 2007-01-14  Bruno Haible  <bruno@clisp.org>
39669
39670         * modules/iconv (Include): Clarify that <iconv.h> can only be included
39671         if iconv is found to exist.
39672
39673 2007-01-14  Bruno Haible  <bruno@clisp.org>
39674
39675         * modules/c-ctype-tests: New file.
39676         * tests/test-c-ctype.c: New file.
39677
39678 2007-01-14  Bruno Haible  <bruno@clisp.org>
39679
39680         * modules/binary-io-tests: New file.
39681         * tests/test-binary-io.sh: New file.
39682         * tests/test-binary-io.c: New file.
39683
39684 2007-01-14  Bruno Haible  <bruno@clisp.org>
39685
39686         * modules/array-oset-tests: New file.
39687         * tests/test-array_oset.c: New file.
39688
39689 2007-01-14  Bruno Haible  <bruno@clisp.org>
39690
39691         * modules/array-list-tests: New file.
39692         * tests/test-array_list.c: New file.
39693
39694 2007-01-14  Bruno Haible  <bruno@clisp.org>
39695
39696         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
39697         and make.
39698         Reported by Simon Josefsson in
39699         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
39700
39701 2007-01-14  Bruno Haible  <bruno@clisp.org>
39702
39703         * modules/allocsa-tests: New file.
39704         * tests/test-allocsa.c: New file.
39705
39706 2007-01-14  Bruno Haible  <bruno@clisp.org>
39707
39708         * modules/fchdir (Depends-on): Add absolute-header.
39709         * modules/unistd (Depends-on): Likewise.
39710
39711 2006-12-30  Bruno Haible  <bruno@clisp.org>
39712
39713         * modules/fchdir: New file.
39714         * modules/unistd (Files): Add lib/unistd_.h.
39715         (Makefile.am): Generate unistd.h from unistd_.h.
39716         * lib/fchdir.c: New file.
39717         * lib/dirent_.h: New file.
39718         * lib/unistd_.h: New file.
39719         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
39720         * m4/fchdir.m4: New file.
39721         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
39722         (gl_HEADER_UNISTD): Invoke it.
39723         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
39724         function.
39725         * lib/backupfile.c (opendir, closedir): Undefine.
39726         * lib/chown.c (open, close): Undefine.
39727         * lib/clean-temp.c (open, close): Undefine.
39728         * lib/copy-file.c (open, close): Undefine.
39729         * lib/execute.c (open, close): Undefine.
39730         * lib/fsusage.c (open, close): Undefine.
39731         * lib/gc-gnulib.c (open, close): Undefine.
39732         * lib/getcwd.c (opendir, closedir): Undefine.
39733         * lib/glob.c (opendir, closedir): Undefine.
39734         * lib/javacomp.c (open, close): Undefine.
39735         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
39736         * lib/openat-proc.c (open, close): Undefine.
39737         * lib/pagealign_alloc.c (open, close): Undefine.
39738         * lib/pipe.c (open, close): Undefine.
39739         * lib/progreloc.c (open, close): Undefine.
39740         * lib/savedir.c (opendir, closedir): Undefine.
39741         * lib/utime.c (open, close): Undefine.
39742         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
39743
39744 2007-01-10  Bruno Haible  <bruno@clisp.org>
39745
39746         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
39747
39748 2007-01-12  Eric Blake  <ebb9@byu.net>
39749
39750         Provide a robust <wchar.h>.  Further simplifications are now
39751         possible in other modules, but not included here.
39752         * modules/wchar: New module.
39753         * m4/wchar.m4: New file.
39754         * lib/wchar_.h: Likewise.
39755         * modules/mbchar (Depends-on): Depend on wchar, as the first use
39756         of the new module.
39757         * MODULES.html.sh (Extended multibyte and wide character utilities):
39758         New section.
39759
39760 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
39761
39762         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
39763         to a reasonable default for memory allocation.
39764         (xreadlink): Don't allocate a huge buffer, to work around a buggy
39765         file system that reports garbage st_size values for symlinks.
39766         Problem reported by Liyang Hu.
39767
39768 2007-01-11  Simon Josefsson  <simon@josefsson.org>
39769
39770         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
39771         Emacs .#* auto-save files).
39772
39773 2007-01-11  Bruno Haible  <bruno@clisp.org>
39774
39775         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
39776         directory.
39777
39778 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
39779
39780         Use @...@ consistently in lib/wctype_.h.
39781         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
39782         on it being set to 1 or 0.
39783         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
39784         go back to AC_SUBSTing it.
39785         * modules/wctype (Makefile.am): Undo previous change.
39786
39787 2007-01-10  Eric Blake  <ebb9@byu.net>
39788
39789         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
39790         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
39791         * modules/wctype (Makefile.am): Likewise.
39792         Reported by Chris McGuire.
39793
39794 2007-01-10  Jim Meyering  <jim@meyering.net>
39795
39796         fts.c: a small readability/maintainability improvement
39797         * lib/fts.c (fts_read): Make this code slightly more readable and
39798         maintainable by hoisting the "sp->fts_cur = p" assignments to
39799         immediately follow the statements that set P.  Derived from
39800         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
39801
39802 2007-01-10  Eric Blake  <ebb9@byu.net>
39803
39804         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
39805         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
39806         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
39807         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
39808         Reported by Chris McGuire.
39809
39810 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39811
39812         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
39813         in sed script.
39814
39815 2007-01-09  Bruno Haible  <bruno@clisp.org>
39816
39817         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
39818         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
39819         variables.
39820         (func_module): Use them.
39821
39822 2007-01-09  Bruno Haible  <bruno@clisp.org>
39823
39824         * modules/unistr/base: New file.
39825         * lib/unistr.h: New file.
39826
39827         * modules/unistr/u8-to-u16: New file.
39828         * lib/unistr/u8-to-u16.c: New file.
39829
39830         * modules/unistr/u8-to-u32: New file.
39831         * lib/unistr/u8-to-u32.c: New file.
39832
39833         * modules/unistr/u16-to-u8: New file.
39834         * lib/unistr/u16-to-u8.c: New file.
39835
39836         * modules/unistr/u16-to-u32: New file.
39837         * lib/unistr/u16-to-u32.c: New file.
39838
39839         * modules/unistr/u32-to-u8: New file.
39840         * lib/unistr/u32-to-u8.c: New file.
39841
39842         * modules/unistr/u32-to-u16: New file.
39843         * lib/unistr/u32-to-u16.c: New file.
39844
39845         * modules/unistr/u8-check: New file.
39846         * modules/unistr/u16-check: New file.
39847         * modules/unistr/u32-check: New file.
39848         * lib/unistr/u8-check.c: New file.
39849         * lib/unistr/u16-check.c: New file.
39850         * lib/unistr/u32-check.c: New file.
39851
39852         * modules/unistr/u8-chr: New file.
39853         * modules/unistr/u16-chr: New file.
39854         * modules/unistr/u32-chr: New file.
39855         * lib/unistr/u8-chr.c: New file.
39856         * lib/unistr/u16-chr.c: New file.
39857         * lib/unistr/u32-chr.c: New file.
39858
39859         * modules/unistr/u8-cmp: New file.
39860         * modules/unistr/u16-cmp: New file.
39861         * modules/unistr/u32-cmp: New file.
39862         * lib/unistr/u8-cmp.c: New file.
39863         * lib/unistr/u16-cmp.c: New file.
39864         * lib/unistr/u32-cmp.c: New file.
39865
39866         * modules/unistr/u8-cpy: New file.
39867         * modules/unistr/u16-cpy: New file.
39868         * modules/unistr/u32-cpy: New file.
39869         * lib/unistr/u8-cpy.c: New file.
39870         * lib/unistr/u16-cpy.c: New file.
39871         * lib/unistr/u32-cpy.c: New file.
39872         * lib/unistr/u-cpy.h: New file.
39873
39874         * modules/unistr/u8-cpy-alloc: New file.
39875         * modules/unistr/u16-cpy-alloc: New file.
39876         * modules/unistr/u32-cpy-alloc: New file.
39877         * lib/unistr/u8-cpy-alloc.c: New file.
39878         * lib/unistr/u16-cpy-alloc.c: New file.
39879         * lib/unistr/u32-cpy-alloc.c: New file.
39880         * lib/unistr/u-cpy-alloc.h: New file.
39881
39882         * modules/unistr/u8-endswith: New file.
39883         * modules/unistr/u16-endswith: New file.
39884         * modules/unistr/u32-endswith: New file.
39885         * lib/unistr/u8-endswith.c: New file.
39886         * lib/unistr/u16-endswith.c: New file.
39887         * lib/unistr/u32-endswith.c: New file.
39888         * lib/unistr/u-endswith.h: New file.
39889
39890         * modules/unistr/u8-mblen: New file.
39891         * modules/unistr/u16-mblen: New file.
39892         * modules/unistr/u32-mblen: New file.
39893         * lib/unistr/u8-mblen.c: New file.
39894         * lib/unistr/u16-mblen.c: New file.
39895         * lib/unistr/u32-mblen.c: New file.
39896
39897         * modules/unistr/u8-mbtouc: New file.
39898         * modules/unistr/u16-mbtouc: New file.
39899         * modules/unistr/u32-mbtouc: New file.
39900         * lib/unistr/u8-mbtouc.c: New file.
39901         * lib/unistr/u16-mbtouc.c: New file.
39902         * lib/unistr/u32-mbtouc.c: New file.
39903
39904         * modules/unistr/u8-mbtouc-safe: New file.
39905         * modules/unistr/u16-mbtouc-safe: New file.
39906         * modules/unistr/u32-mbtouc-safe: New file.
39907         * lib/unistr/u8-mbtouc-safe.c: New file.
39908         * lib/unistr/u16-mbtouc-safe.c: New file.
39909         * lib/unistr/u32-mbtouc-safe.c: New file.
39910
39911         * modules/unistr/u8-move: New file.
39912         * modules/unistr/u16-move: New file.
39913         * modules/unistr/u32-move: New file.
39914         * lib/unistr/u8-move.c: New file.
39915         * lib/unistr/u16-move.c: New file.
39916         * lib/unistr/u32-move.c: New file.
39917         * lib/unistr/u-move.h: New file.
39918
39919         * modules/unistr/u8-next: New file.
39920         * modules/unistr/u16-next: New file.
39921         * modules/unistr/u32-next: New file.
39922         * lib/unistr/u8-next.c: New file.
39923         * lib/unistr/u16-next.c: New file.
39924         * lib/unistr/u32-next.c: New file.
39925
39926         * modules/unistr/u8-prev: New file.
39927         * modules/unistr/u16-prev: New file.
39928         * modules/unistr/u32-prev: New file.
39929         * lib/unistr/u8-prev.c: New file.
39930         * lib/unistr/u16-prev.c: New file.
39931         * lib/unistr/u32-prev.c: New file.
39932
39933         * modules/unistr/u8-set: New file.
39934         * modules/unistr/u16-set: New file.
39935         * modules/unistr/u32-set: New file.
39936         * lib/unistr/u8-set.c: New file.
39937         * lib/unistr/u16-set.c: New file.
39938         * lib/unistr/u32-set.c: New file.
39939         * lib/unistr/u-set.h: New file.
39940
39941         * modules/unistr/u8-startswith: New file.
39942         * modules/unistr/u16-startswith: New file.
39943         * modules/unistr/u32-startswith: New file.
39944         * lib/unistr/u8-startswith.c: New file.
39945         * lib/unistr/u16-startswith.c: New file.
39946         * lib/unistr/u32-startswith.c: New file.
39947         * lib/unistr/u-startswith.h: New file.
39948
39949         * modules/unistr/u8-stpcpy: New file.
39950         * modules/unistr/u16-stpcpy: New file.
39951         * modules/unistr/u32-stpcpy: New file.
39952         * lib/unistr/u8-stpcpy.c: New file.
39953         * lib/unistr/u16-stpcpy.c: New file.
39954         * lib/unistr/u32-stpcpy.c: New file.
39955         * lib/unistr/u-stpcpy.h: New file.
39956
39957         * modules/unistr/u8-stpncpy: New file.
39958         * modules/unistr/u16-stpncpy: New file.
39959         * modules/unistr/u32-stpncpy: New file.
39960         * lib/unistr/u8-stpncpy.c: New file.
39961         * lib/unistr/u16-stpncpy.c: New file.
39962         * lib/unistr/u32-stpncpy.c: New file.
39963         * lib/unistr/u-stpncpy.h: New file.
39964
39965         * modules/unistr/u8-strcat: New file.
39966         * modules/unistr/u16-strcat: New file.
39967         * modules/unistr/u32-strcat: New file.
39968         * lib/unistr/u8-strcat.c: New file.
39969         * lib/unistr/u16-strcat.c: New file.
39970         * lib/unistr/u32-strcat.c: New file.
39971         * lib/unistr/u-strcat.h: New file.
39972
39973         * modules/unistr/u8-strchr: New file.
39974         * modules/unistr/u16-strchr: New file.
39975         * modules/unistr/u32-strchr: New file.
39976         * lib/unistr/u8-strchr.c: New file.
39977         * lib/unistr/u16-strchr.c: New file.
39978         * lib/unistr/u32-strchr.c: New file.
39979
39980         * modules/unistr/u8-strcmp: New file.
39981         * modules/unistr/u16-strcmp: New file.
39982         * modules/unistr/u32-strcmp: New file.
39983         * lib/unistr/u8-strcmp.c: New file.
39984         * lib/unistr/u16-strcmp.c: New file.
39985         * lib/unistr/u32-strcmp.c: New file.
39986
39987         * modules/unistr/u8-strcpy: New file.
39988         * modules/unistr/u16-strcpy: New file.
39989         * modules/unistr/u32-strcpy: New file.
39990         * lib/unistr/u8-strcpy.c: New file.
39991         * lib/unistr/u16-strcpy.c: New file.
39992         * lib/unistr/u32-strcpy.c: New file.
39993         * lib/unistr/u-strcpy.h: New file.
39994
39995         * modules/unistr/u8-strcspn: New file.
39996         * modules/unistr/u16-strcspn: New file.
39997         * modules/unistr/u32-strcspn: New file.
39998         * lib/unistr/u8-strcspn.c: New file.
39999         * lib/unistr/u16-strcspn.c: New file.
40000         * lib/unistr/u32-strcspn.c: New file.
40001         * lib/unistr/u-strcspn.h: New file.
40002
40003         * modules/unistr/u8-strdup: New file.
40004         * modules/unistr/u16-strdup: New file.
40005         * modules/unistr/u32-strdup: New file.
40006         * lib/unistr/u8-strdup.c: New file.
40007         * lib/unistr/u16-strdup.c: New file.
40008         * lib/unistr/u32-strdup.c: New file.
40009         * lib/unistr/u-strdup.h: New file.
40010
40011         * modules/unistr/u8-strlen: New file.
40012         * modules/unistr/u16-strlen: New file.
40013         * modules/unistr/u32-strlen: New file.
40014         * lib/unistr/u8-strlen.c: New file.
40015         * lib/unistr/u16-strlen.c: New file.
40016         * lib/unistr/u32-strlen.c: New file.
40017         * lib/unistr/u-strlen.h: New file.
40018
40019         * modules/unistr/u8-strmblen: New file.
40020         * modules/unistr/u16-strmblen: New file.
40021         * modules/unistr/u32-strmblen: New file.
40022         * lib/unistr/u8-strmblen.c: New file.
40023         * lib/unistr/u16-strmblen.c: New file.
40024         * lib/unistr/u32-strmblen.c: New file.
40025
40026         * modules/unistr/u8-strmbtouc: New file.
40027         * modules/unistr/u16-strmbtouc: New file.
40028         * modules/unistr/u32-strmbtouc: New file.
40029         * lib/unistr/u8-strmbtouc.c: New file.
40030         * lib/unistr/u16-strmbtouc.c: New file.
40031         * lib/unistr/u32-strmbtouc.c: New file.
40032
40033         * modules/unistr/u8-strncat: New file.
40034         * modules/unistr/u16-strncat: New file.
40035         * modules/unistr/u32-strncat: New file.
40036         * lib/unistr/u8-strncat.c: New file.
40037         * lib/unistr/u16-strncat.c: New file.
40038         * lib/unistr/u32-strncat.c: New file.
40039         * lib/unistr/u-strncat.h: New file.
40040
40041         * modules/unistr/u8-strncmp: New file.
40042         * modules/unistr/u16-strncmp: New file.
40043         * modules/unistr/u32-strncmp: New file.
40044         * lib/unistr/u8-strncmp.c: New file.
40045         * lib/unistr/u16-strncmp.c: New file.
40046         * lib/unistr/u32-strncmp.c: New file.
40047
40048         * modules/unistr/u8-strncpy: New file.
40049         * modules/unistr/u16-strncpy: New file.
40050         * modules/unistr/u32-strncpy: New file.
40051         * lib/unistr/u8-strncpy.c: New file.
40052         * lib/unistr/u16-strncpy.c: New file.
40053         * lib/unistr/u32-strncpy.c: New file.
40054         * lib/unistr/u-strncpy.h: New file.
40055
40056         * modules/unistr/u8-strnlen: New file.
40057         * modules/unistr/u16-strnlen: New file.
40058         * modules/unistr/u32-strnlen: New file.
40059         * lib/unistr/u8-strnlen.c: New file.
40060         * lib/unistr/u16-strnlen.c: New file.
40061         * lib/unistr/u32-strnlen.c: New file.
40062         * lib/unistr/u-strnlen.h: New file.
40063
40064         * modules/unistr/u8-strpbrk: New file.
40065         * modules/unistr/u16-strpbrk: New file.
40066         * modules/unistr/u32-strpbrk: New file.
40067         * lib/unistr/u8-strpbrk.c: New file.
40068         * lib/unistr/u16-strpbrk.c: New file.
40069         * lib/unistr/u32-strpbrk.c: New file.
40070         * lib/unistr/u-strpbrk.h: New file.
40071
40072         * modules/unistr/u8-strrchr: New file.
40073         * modules/unistr/u16-strrchr: New file.
40074         * modules/unistr/u32-strrchr: New file.
40075         * lib/unistr/u8-strrchr.c: New file.
40076         * lib/unistr/u16-strrchr.c: New file.
40077         * lib/unistr/u32-strrchr.c: New file.
40078
40079         * modules/unistr/u8-strspn: New file.
40080         * modules/unistr/u16-strspn: New file.
40081         * modules/unistr/u32-strspn: New file.
40082         * lib/unistr/u8-strspn.c: New file.
40083         * lib/unistr/u16-strspn.c: New file.
40084         * lib/unistr/u32-strspn.c: New file.
40085         * lib/unistr/u-strspn.h: New file.
40086
40087         * modules/unistr/u8-strstr: New file.
40088         * modules/unistr/u16-strstr: New file.
40089         * modules/unistr/u32-strstr: New file.
40090         * lib/unistr/u8-strstr.c: New file.
40091         * lib/unistr/u16-strstr.c: New file.
40092         * lib/unistr/u32-strstr.c: New file.
40093         * lib/unistr/u-strstr.h: New file.
40094
40095         * modules/unistr/u8-strtok: New file.
40096         * modules/unistr/u16-strtok: New file.
40097         * modules/unistr/u32-strtok: New file.
40098         * lib/unistr/u8-strtok.c: New file.
40099         * lib/unistr/u16-strtok.c: New file.
40100         * lib/unistr/u32-strtok.c: New file.
40101         * lib/unistr/u-strtok.h: New file.
40102
40103         * modules/unistr/u8-uctomb: New file.
40104         * modules/unistr/u16-uctomb: New file.
40105         * modules/unistr/u32-uctomb: New file.
40106         * lib/unistr/u8-uctomb.c: New file.
40107         * lib/unistr/u16-uctomb.c: New file.
40108         * lib/unistr/u32-uctomb.c: New file.
40109
40110         * MODULES.html.sh (Unicode string functions): Add the new modules.
40111
40112 2007-01-08  Bruno Haible  <bruno@clisp.org>
40113
40114         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
40115         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
40116         subdirectories.
40117
40118 2007-01-08  Karl Berry  <karl@gnu.org>
40119
40120         * doc/error.texi: mention that main() fns must set program_name
40121         when progname is used.
40122
40123 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
40124
40125         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
40126         WCTYPE_H is empty, for the benefit of builds from non-distclean
40127         directories.  Problem reported by Eric Blake in
40128         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
40129
40130 2007-01-08  Bruno Haible  <bruno@clisp.org>
40131
40132         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
40133         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
40134         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
40135         PROVIDE_CANONICALIZE_FILENAME_MODE.
40136         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
40137
40138 2007-01-08  Bruno Haible  <bruno@clisp.org>
40139
40140         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
40141         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
40142         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
40143         * lib/fts.c: Likewise.
40144         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
40145
40146 2006-12-25  Bruno Haible  <bruno@clisp.org>
40147
40148         * modules/utf8-ucs4-safe: New file.
40149         * lib/utf8-ucs4-safe.h: New file.
40150         * lib/unistr/utf8-ucs4-safe.c: New file.
40151
40152         * modules/utf16-ucs4-safe: New file.
40153         * lib/utf16-ucs4-safe.h: New file.
40154         * lib/unistr/utf16-ucs4-safe.c: New file.
40155
40156         * MODULES.html.sh (Unicode string functions): Add the new modules.
40157
40158 2007-01-08  Bruno Haible  <bruno@clisp.org>
40159
40160         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
40161         (Depends-on): Add unitypes.
40162         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40163         (u8_mbtouc_aux): Move out to separate file.
40164         (u8_mbtouc): Use ucs4_t, uint8_t types.
40165         * lib/unistr/utf8-ucs4.c: New file.
40166
40167         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
40168         (Depends-on): Add unitypes.
40169         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40170         (u16_mbtouc_aux): Move out to separate file.
40171         (u16_mbtouc): Use ucs4_t, uint16_t types.
40172         * lib/unistr/utf16-ucs4.c: New file.
40173
40174         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
40175         (Depends-on): Add unitypes.
40176         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
40177         (u8_uctomb_aux): Move out to separate file.
40178         (u8_uctomb): Use ucs4_t, uint8_t types.
40179         * lib/unistr/ucs4-utf8.c: New file.
40180
40181         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
40182         (Depends-on): Add unitypes.
40183         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
40184         (u16_uctomb_aux): Move out to separate file.
40185         (u16_uctomb): Use ucs4_t, uint16_t types.
40186         * lib/unistr/ucs4-utf16.c: New file.
40187
40188 2006-12-25  Bruno Haible  <bruno@clisp.org>
40189
40190         * modules/unitypes: New file.
40191         * lib/unitypes.h: New file.
40192         * MODULES.html.sh (func_all_modules): New section "Unicode string
40193         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
40194         this section. Add unitypes.
40195
40196 2007-01-08  Bruno Haible  <bruno@clisp.org>
40197
40198         Avoid variable names that conflict with those from libtool.
40199         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
40200         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
40201         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
40202         library_names_spec to acl_library_names_spec, hardcode_* to
40203         acl_hardcode_*.
40204         Reported by Ralf Wildenhues.
40205
40206 2007-01-08  Bruno Haible  <bruno@clisp.org>
40207
40208         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
40209         definition.
40210         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
40211         definition.
40212         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
40213         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
40214         definition.
40215         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
40216         definition.
40217         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
40218         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
40219         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
40220         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
40221         definition.
40222         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
40223         definition.
40224         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
40225         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
40226         GC_USE_<algorithm>.
40227         * lib/gc-libgcrypt.c: Likewise.
40228         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
40229         * modules/gc-arctwo (configure.ac): Likewise.
40230         * modules/gc-des (configure.ac): Likewise.
40231         * modules/gc-hmac-md5 (configure.ac): Likewise.
40232         * modules/gc-hmac-sha1 (configure.ac): Likewise.
40233         * modules/gc-md2 (configure.ac): Likewise.
40234         * modules/gc-md4 (configure.ac): Likewise.
40235         * modules/gc-md5 (configure.ac): Likewise.
40236         * modules/gc-random (configure.ac): Likewise.
40237         * modules/gc-rijndael (configure.ac): Likewise.
40238         * modules/gc-sha1 (configure.ac): Likewise.
40239
40240 2007-01-08  Bruno Haible  <bruno@clisp.org>
40241
40242         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
40243         macro definition.
40244         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
40245         definition.
40246         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
40247         definition.
40248         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
40249         * modules/fcntl-safer (configure.ac): Likewise.
40250         * modules/fopen-safer (configure.ac): Likewise.
40251         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
40252         GNULIB_FWRITEERROR macro definition.
40253
40254 2007-01-08  Bruno Haible  <bruno@clisp.org>
40255
40256         * m4/gnulib-common.m4: New file.
40257         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
40258         (func_get_filelist): Add m4/gnulib-common.m4.
40259
40260 2007-01-08  Bruno Haible  <bruno@clisp.org>
40261
40262         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
40263         command.
40264
40265 2007-01-08  Jim Meyering  <jim@meyering.net>
40266
40267         Use a more robust test for a "can't happen" condition.
40268         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
40269         narrowed the st_size value.  Presuming the "can't happen" condition
40270         is true, that narrowing could conceivably convert an invalid st_size
40271         value into a valid one.  Instead, use a change based on Matthew
40272         Woehlke's original patch.
40273
40274         Slight readability improvement: use an assert-like macro
40275         in place of literal "abort ()" uses.
40276         * lib/fts.c (fts_assert): Define.
40277         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
40278         Use this macro instead of a bare 'abort'.
40279
40280 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
40281
40282         Don't worry about using IRIX 5.3's wctype.h broken definitions;
40283         simply work around them.
40284         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
40285         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
40286         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
40287         declaring.
40288         Don't bother to define as macros, since the standard doesn't require it.
40289         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
40290         longer worry about IRIX 5.3.
40291         (HAVE_WCTYPE_CTMP_BUG): Remove.
40292
40293 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
40294
40295         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
40296         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
40297         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
40298         Problems reported by Georg Schwarz for IRIX 5.3.
40299
40300         * gnulib-tool (autoconf_minversion): Take the maximum version number
40301         found, not the minimum.  Problem reported by James Youngman.
40302
40303 2007-01-03  Karl Berry  <karl@gnu.org>
40304
40305         * doc/error.texi: new file, explaining interaction with progname.
40306         * doc/gnulib.texi: include it.  Update copyright.
40307
40308 2007-01-03  Simon Josefsson  <simon@josefsson.org>
40309
40310         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
40311         AC_CANONICAL_HOST, to improve autobuild outputs.
40312
40313 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
40314             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
40315
40316         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
40317         sockets, server sockets, and other file descriptors.  Count errors
40318         to compute the return value.  Reorder the code a bit to be easier
40319         to follow.  Don't set event bits that were not requested (except
40320         POLLERR and POLLHUP).
40321
40322 2007-01-01  Bruno Haible  <bruno@clisp.org>
40323
40324         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
40325
40326 2007-01-03  Jim Meyering  <jim@meyering.net>
40327
40328         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
40329
40330 2007-01-02  Bruno Haible  <bruno@clisp.org>
40331
40332         * modules/settime (Include): Require timespec.h.
40333         * modules/nanosleep (Include): Likewise.
40334
40335 2007-01-01  Bruno Haible  <bruno@clisp.org>
40336
40337         * gnulib-tool (func_emit_copyright_notice): Bump year.
40338         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
40339
40340 2007-01-01  Bruno Haible  <bruno@clisp.org>
40341
40342         Improve support for OpenBSD.
40343         * build-aux/config.rpath (libname_spec): Export.
40344         (library_names_spec): New variable. Export.
40345         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
40346         library_names_spec from the config.rpath output. Locate shared library
40347         through the name pattern in library_names_spec.
40348
40349 2007-01-01  Eric Blake  <ebb9@byu.net>
40350
40351         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
40352
40353 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
40354
40355         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
40356         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
40357         assume the C locale, and avoid an "eval" that could cause trouble.
40358         Problem with SORT reported by Bob Proulx.
40359
40360         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
40361         Define.  Trivial patch from Henning Nielsen Lund, originally
40362         sent to bug-grep@gnu.org today.
40363
40364 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
40365
40366         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
40367         struct stat.  Problem reported by Henning Nielsen Lund.
40368         * lib/acl.c: Include acl.h first, to check interface.  Don't
40369         bother to include sys/types.h and sys/stat.h again.
40370
40371 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
40372
40373         Import the following change from libc; problem reported by
40374         Sven Verdoolaege.
40375
40376         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
40377
40378         [BZ #1373]
40379         * lib/argp.h: Remove __NTH for __argp_usage inline function.
40380
40381 2006-12-28  Jim Meyering  <jim@meyering.net>
40382
40383         * build-aux/announce-gen: Do not assume that the package
40384         builds any of tar.gz, tar.bz2, and .xdelta files.
40385         Suggestion from Simon Josefsson.
40386
40387 2006-12-28  Simon Josefsson  <simon@josefsson.org>
40388
40389         * modules/announce-gen: New file.
40390
40391 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
40392
40393         * lib/mbchar.h: Just include <wctype.h>; the wctype module
40394         handles its gotchas now.
40395         * lib/mbswidth.c: Likewise.
40396         * lib/wcwidth.h: Likewise.
40397         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
40398         and iswcntrl; the wctype module does this stuff now.
40399         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
40400         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
40401         * modules/mbchar (Depends-on): Add wctype.
40402         * modules/mbswidth (Depends-on): Likewise.
40403         * modules/wcwidth (Depends-on): Likewise.
40404
40405 2006-12-27  Eric Blake  <ebb9@byu.net>
40406
40407         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
40408         module uses more than what <wctype.h> is required to provide.
40409
40410 2006-12-26  Eric Blake  <ebb9@byu.net>
40411
40412         * gnulib-tool (sed_extract_prog): Avoid space-tab.
40413
40414 2006-12-26  Eric Blake  <ebb9@byu.net>
40415
40416         * modules/absolute-header: New module.
40417         * modules/fcntl (Depends-on): Depend on it.
40418         * modules/inttypes (Depends-on): Likewise.
40419         * modules/stdint (Depends-on): Likewise.
40420         * modules/sys_stat (Depends-on): Likewise.
40421         * modules/wctype (Depends-on): Likewise.
40422         * MODULES.html.sh (Support for building libraries and
40423         executables): Document it.
40424
40425 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
40426
40427         * gnulib-tool (SED): Remove, undoing previous change.
40428         The problem was that it broke coreutils on Solaris, because
40429         "sed --posix" leaked into a makefile.
40430         (sed): New alias, if 'alias' and GNU sed.
40431
40432 2006-12-24  Jim Meyering  <jim@meyering.net>
40433
40434         Work around an fchownat bug in glibc-2.4:
40435         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
40436         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
40437         in spite of the -P option.
40438         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
40439         New macros.
40440         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
40441         * modules/openat (Files): Add lib/fchownat.c.
40442         * lib/openat.c (fchownat): Don't define here.  Move to...
40443         * lib/fchownat.c: ...this new file.
40444
40445 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
40446
40447         Fix bug reported by Bruno Haible in
40448         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
40449         where quotearg.c didn't compile on Mac OS X 10.2 because it
40450         lacks <wchar.h> and wint_t.
40451         * lib/wctype_.h (__wctype_wint_t): New type.
40452         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
40453         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
40454         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
40455         Arg is now of type __wctype_wint_t, not wint_t.
40456         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
40457         substitute HAVE_WINT_T.
40458         * modules/wctype (Files): Add m4/wint_t.m4.
40459         (wctype.h): Substitute HAVE_WINT_T.
40460
40461 2006-12-23  Bruno Haible  <bruno@clisp.org>
40462
40463         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
40464
40465 2006-12-23  Bruno Haible  <bruno@clisp.org>
40466
40467         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
40468         S_ISLNK.
40469         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
40470         mingw.
40471
40472 2006-12-22  Bruno Haible  <bruno@clisp.org>
40473
40474         * lib/copy-file.c: Include acl.h.
40475         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
40476         Close the file descriptors only after being done with copy_acl.
40477         * modules/copy-file (Depends-on): Add acl.
40478
40479 2006-12-22  Bruno Haible  <bruno@clisp.org>
40480
40481         * gnulib-tool (SED): New variable.
40482         Use $SED instead of sed everywhere.
40483
40484 2006-12-22  Bruno Haible  <bruno@clisp.org>
40485
40486         * modules/no-c++: New file.
40487         * m4/no-c++.m4: New file.
40488         * MODULES.html.sh (Support for building libraries and executables):
40489         Add no-c++.
40490
40491 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
40492
40493         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
40494         Include <limits.h>, and use its INT_MAX to rewrite the
40495         j loop so that it does not overflow 'int'.  Problem reported by
40496         Ralf Wildenhues in
40497         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
40498         Play it safe by shifting left by 1 rather than multiplying by 2,
40499         as GCC is less likely to optimize this away when the value
40500         is signed (when it assumes overflow leads to undefined behavior).
40501         Also, don't assume time_t uses two's complement.
40502
40503 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
40504
40505         * MODULES.html.sh: New module wctype.
40506         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
40507         * lib/fnmatch.c: Don't bother to include <wchar.h> before
40508         <wctype.h>, since the new wctype module should fix this.
40509         * lib/quotearg.c: Include <wctype.h> unconditionally, since
40510         the wctype module should arrange for it.
40511         * lib/regex_internal.h: Likewise.
40512         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
40513         since the wctype module should handle this now.
40514         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
40515         * modules/fnmatch (Depends-on): Add wctype.
40516         * modules/quotearg (Depends-on): Likewise.
40517         * modules/regex (Depends-on): Likewise.
40518
40519 2006-12-19  Bruno Haible  <bruno@clisp.org>
40520
40521         * lib/strdup.h [C++]: Wrap definitions in extern "C".
40522         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
40523
40524 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40525
40526         * modules/savewd (Depends-on): Fix dependency on fcntl.
40527
40528 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
40529
40530         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
40531         conforms to C99, rather than relying on the user's environment
40532         setting of STDINT_H.
40533
40534 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
40535         and Eric Blake  <ebb9@byu.net>
40536
40537         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
40538         This is more consistent with the other defines here.
40539         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
40540         Port to z/OS.  Problem reported by Paul Gilmartin.
40541         Change local vars to use gl_ prefix rather than ac_.
40542         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
40543         with other defines.
40544         * modules/double-slash-root: New module.
40545         * modules/dirname (Files): Remove m4/double-slash-root.m4.
40546         (Depends-on): Add double-slash-root.
40547         * MODULES.html.sh (File system functions): Mention new module.
40548
40549 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
40550
40551         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
40552         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
40553         This is for the benefit of gzip, which doesn't do i18n.
40554
40555 2006-12-12  Jim Meyering  <jim@meyering.net>
40556
40557         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
40558         Reported by Andreas Schwab <schwab@suse.de>.
40559
40560 2006-12-12  Bruno Haible  <bruno@clisp.org>
40561
40562         Merge these changes.
40563         2006-09-05  Bruno Haible  <bruno@clisp.org>
40564         * lib/iconvme.c (iconv_string): No need to save and restore errno when
40565         iconv_alloc succeeded.
40566         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
40567         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
40568         test for " && dest " at the end - dest is always != NULL there. Call
40569         iconv with 4xNULL arguments initially, to reset the state. Call iconv
40570         with 2xNULL arguments, also to flush the state storage. Handle the
40571         IRIX iconv behaviour. Realloc the final result, to throw away unused
40572         memory.
40573
40574 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
40575
40576         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
40577         and fchmodat unconditionally, since glibc 2.4 has them.
40578         Problem reported by Arkadiusz Miskiewicz.
40579
40580 2006-12-10  Bruno Haible  <bruno@clisp.org>
40581
40582         * gnulib-tool (func_import): Show the include files only for those
40583         modules that are copied and specified.
40584         Reported by Karl Berry.
40585
40586 2006-12-08  Jim Meyering  <jim@meyering.net>
40587
40588         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
40589         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
40590
40591         * build-aux/announce-gen: Add two new options, both optional:
40592         --bootstrap-tools=TOOL_LIST
40593               a comma-separated list of tools, e.g.,
40594               autoconf,automake,bison,gnulib
40595         --gnulib-snapshot-date=DATE
40596               if gnulib is in the bootstrap tool list,
40597               then report this as the snapshot date.
40598               If not specified, use the current date/time.
40599               If you specify a date here, be sure it's UTC.
40600
40601 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40602
40603         * tests/test-argp-2.sh: Fix test to match actual output.
40604         (func_compare): Fix sed script to be portable.
40605
40606 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
40607
40608         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
40609         workaround for this case.  It is not autoconfigured now; offhand
40610         it's hard to see how to autoconfigure it.
40611
40612 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
40613
40614         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
40615         a directory that is about to be chowned.  Such a directory's
40616         initial file permissions should permit the owner only and this
40617         should not be changed until after the chown, since the group and
40618         other bits would be incorrect if they granted permission before
40619         the chown.
40620
40621         Fix porting problem for iswctype reported by Georg Schwarz in:
40622         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
40623         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
40624         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
40625         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
40626         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
40627
40628 2006-12-03  Jim Meyering  <jim@meyering.net>
40629
40630         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
40631         p->fts_statp may not yet be defined.
40632         (fts_read): Instead, set it in the caller, once p->fts_statp is
40633         sure to be defined, and corresponds to a top-level directory.
40634         This bug made du -x fail.  Here's the coreutils test case:
40635         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
40636         Reported by Mike Frysinger.
40637
40638 2006-12-01  Jim Meyering  <jim@meyering.net>
40639
40640         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
40641         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
40642         Reported by Simon Josefsson.
40643
40644 2006-11-30  Jim Meyering  <jim@meyering.net>
40645
40646         * m4/warning.m4: Use the all-permissive copyright notice
40647         recommended by RMS (rather than LGPL).
40648         * m4/vararrays.m4: Likewise.
40649         * m4/flexmember.m4: Likewise.
40650
40651 2006-11-29  Bruno Haible  <bruno@clisp.org>
40652
40653         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
40654         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
40655         using +=.
40656         Reported by Simon Josefsson <simon@josefsson.org>.
40657
40658 2006-11-28  James Youngman <jay@gnu.org>
40659
40660         * README: Advise users that they might find the bug-gnulib@gnu.org
40661         and autotools-announce@gnu.org mailing lists useful.
40662
40663 2006-11-28  Bruno Haible  <bruno@clisp.org>
40664
40665         * m4/ptrdiff_max.m4: Remove file.
40666
40667 2006-11-21  Bruno Haible  <bruno@clisp.org>
40668
40669         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
40670         _AC_COMPUTE_INT.
40671         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40672         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
40673         _AC_COMPUTE_INT.
40674         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40675         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
40676         _AC_COMPUTE_INT.
40677         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40678
40679 2006-11-28  Jim Meyering  <jim@meyering.net>
40680
40681         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
40682         warning from "gcc -Wshadow" about shadowing the builtin.
40683
40684 2006-11-27  Bruno Haible  <bruno@clisp.org>
40685
40686         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
40687         _AC_COMPUTE_INT.
40688         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
40689
40690 2006-11-27  Bruno Haible  <bruno@clisp.org>
40691             Paul Eggert  <eggert@cs.ucla.edu>
40692
40693         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
40694
40695 2006-11-26  Bruno Haible  <bruno@clisp.org>
40696
40697         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
40698         noinst_LTLIBRARIES.
40699
40700 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
40701             Bruno Haible  <bruno@clisp.org>
40702
40703         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
40704         if compiling with "gcc -ansi".
40705
40706 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
40707
40708         Fix some incompatibilities with gcc -ansi -pedantic.
40709         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
40710         if compiling pedantically with GCC, unless it's C99 or later.
40711         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
40712         it mishandles gcc -ansi -pedantic as well.
40713         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
40714         if gcc -pedantic.
40715         * lib/regexec.c (check_node_accept_bytes): Don't use auto
40716         initializers for struct if -pedantic, unless it's C99 or later.
40717
40718 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
40719
40720         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
40721         Don't close an fd more than once. Identical atimes indicate
40722         success, not failure.
40723
40724 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
40725
40726         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
40727
40728 2006-11-23  Jim Meyering  <jim@meyering.net>
40729
40730         * build-aux/announce-gen: New file.  From coreutils.
40731
40732 2006-11-22  Jim Meyering  <jim@meyering.net>
40733
40734         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
40735         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
40736         (fts_read): Use a temporary to narrow the overused st_size member
40737         before using it in a switch statement.  Reported by Matthew Woehlke.
40738
40739         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
40740         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
40741
40742 2006-11-20  Bruno Haible  <bruno@clisp.org>
40743
40744         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
40745         changequote instead of pairs of brackets.
40746         Reported by Andreas Schwab <schwab@suse.de>.
40747
40748 2006-11-21  Jim Meyering  <jim@meyering.net>
40749
40750         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
40751         so as to remain compatible with older compilers.
40752         Patch from Michael Deutschmann.
40753
40754 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
40755
40756         * MODULES.html.sh (File system functions): Add openat.
40757
40758         * lib/openat.h (rpl_fstatat): New macro, if
40759         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
40760         (fstatat): Define to rpl_fstatat under the same conditions,
40761         unless COMPILING_FSTATAT.
40762         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
40763         seems to have the bug.
40764         * lib/fstatat.c: New file.
40765         * modules/openat (Files): Add it.
40766
40767 2006-11-20  Bruno Haible  <bruno@clisp.org>
40768
40769         * Makefile: New file.
40770
40771 2006-11-20  Jim Meyering  <jim@meyering.net>
40772
40773         The beginnings of syntax-related checks for gnulib.
40774         * lib/Makefile: New file.
40775         * lib/t-idcache: New script.  Ensure that the two halves of
40776         idcache.c stay in sync.
40777
40778         * lib/idcache.c: Adjust comments in user- and group- portions to
40779         be more accurate, and to be consistent with one another.
40780
40781 2006-11-20  Jim Meyering  <jim@meyering.net>
40782
40783         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
40784         continue using the flexible array member (thus, this module performs
40785         half as many malloc calls), with the addition that...
40786         (getgroup, getuser): Consistently record a non-match via an empty
40787         "name" string, and map an empty string match to a NULL return value.
40788         * modules/idcache (Depends-on): Re-add flexmember.
40789
40790         * lib/idcache.c (getuser): Remove all uses of the register keyword.
40791         (getuidbyname, getgroup, getgidbyname): Likewise.
40792
40793         Use cleaner syntax: NULL rather than 0.
40794         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
40795
40796 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
40797
40798         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
40799         It mishandled the case where the group was missing.
40800         Problem reported by Greg Schafer.
40801         * modules/idcache: Likewise.
40802
40803 2006-11-18  Jim Meyering  <jim@meyering.net>
40804
40805         * check-module (%exempt_header): Add exception for some
40806         conditionally-included headers.
40807
40808         * modules/i-ring (Depends-on): Add verify.
40809         (License): Change to LGPL.
40810
40811 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
40812
40813         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
40814         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
40815         and inttostr.h.  Use snprintf rather than uinttostr, so that
40816         LGPLed code doesn't depend on GPLed.
40817
40818 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
40819
40820         * modules/inline (License): Change from GPL to LGPL.
40821
40822 2006-11-17  Jim Meyering  <jim@meyering.net>
40823
40824         * modules/d-type (License): Switch to LGPL.
40825
40826 2006-11-15  Bruno Haible  <bruno@clisp.org>
40827
40828         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
40829
40830 2006-11-15  Eric Blake  <ebb9@byu.net>
40831
40832         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
40833         the module dependency.
40834
40835 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40836             Bruno Haible  <bruno@clisp.org>
40837
40838         * gnulib-tool (func_create_testdir): Add license consistency check.
40839
40840 2006-11-15  Eric Blake  <ebb9@byu.net>
40841
40842         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
40843         random "(cached)" in configure output.
40844
40845 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40846
40847         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
40848         test for conforming inttypes.h is both announced and cached.
40849
40850         * MODULES.html.sh (seen_modules, seen_files): New variables.
40851         (func_module): Rewrite to use a few less gnulib-tool and sed
40852         invocations.  Avoid a couple of quadratic algorithms for ...
40853         (missed_modules, missed_files): ... these, with ...
40854         (func_append, func_tmpdir): ... these new functions, from
40855         gnulib-tool.  Analogously, install traps for cleanup.
40856
40857         * tests/test-gc.c (main): Remove unused variables.
40858         * tests/test-read-file.c: Include stdlib.h, for 'free'.
40859
40860 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
40861
40862         * modules/inttostr (License): Change to LGPL.
40863
40864 2006-11-14  Eric Blake  <ebb9@byu.net>
40865
40866         * modules/tempname (License): Change to LGPL.
40867
40868 2006-11-14  Eric Blake  <ebb9@byu.net>
40869
40870         * doc/functions.texi (Function Portability): *printf functions on
40871         Cygwin now understand all POSIX size specifiers.
40872
40873 2006-11-14  Bruno Haible  <bruno@clisp.org>
40874
40875         * modules/c-ctype (License): Change to LGPL.
40876
40877 2006-11-12  Bruno Haible  <bruno@clisp.org>
40878
40879         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
40880         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
40881         for GNOME libraries, for which the include files are installed in
40882         subdirectories of $prefix/include.
40883
40884 2006-11-12  Bruno Haible  <bruno@clisp.org>
40885
40886         * m4/lib-link.m4: Require at least autoconf-2.54.
40887         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
40888         name to underscores for the --with option.
40889
40890 2006-11-13  Bruno Haible  <bruno@clisp.org>
40891
40892         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
40893         the tests directory.
40894         Reported by Ralf Wildenhues.
40895
40896 2006-11-13  Bruno Haible  <bruno@clisp.org>
40897
40898         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
40899         (func_emit_initmacro_end): Undo the override here.
40900         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
40901         Works around the famous automake error in coreutils.
40902
40903 2006-11-13  Eric Blake  <ebb9@byu.net>
40904
40905         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
40906         element, not its node.
40907
40908 2006-11-12  Bruno Haible  <bruno@clisp.org>
40909
40910         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
40911         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
40912
40913 2006-11-12  Bruno Haible  <bruno@clisp.org>
40914
40915         * gnulib-tool: New option --local-symlink.
40916         (func_usage): Document it.
40917         (lsymbolic): New variable.
40918         (func_import, func_create_testdir): If --symlink was not specified,
40919         test whether --local-symlink was specified and the file comes from
40920         the local_gnulib_dir.
40921
40922 2006-11-12  Bruno Haible  <bruno@clisp.org>
40923
40924         * gnulib-tool (func_ln): New function.
40925         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
40926
40927 2006-11-12  Bruno Haible  <bruno@clisp.org>
40928
40929         Finish support for source files in subdirectories.
40930         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
40931         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
40932         AUTOMAKE_OPTIONS.
40933         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
40934
40935 2006-11-12  Bruno Haible  <bruno@clisp.org>
40936
40937         * gnulib-tool (func_get_automake_snippet): Synthesize also an
40938         EXTRA_lib_SOURCES augmentation.
40939         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
40940
40941 2006-11-12  Jim Meyering  <jim@meyering.net>
40942
40943         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
40944         file descriptors.  This also averts a failure on systems with
40945         native openat support when a traversed directory lacks "x" access.
40946         * lib/fts_.h: Include "i-ring.h"
40947         (struct FTS) [fts_fd_ring]: New member.
40948         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
40949         (FCHDIR): Add parentheses.
40950         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
40951         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
40952         When descending, rather than simply closing the previous
40953         fts_cwd_fd value, push that file descriptor onto the ring.
40954         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
40955         (fts_open): Initialize the new fd_ring member.
40956         (fts_close): Clear the ring.
40957         (fts_safe_changedir): When possible, use our new fd_ring to skip
40958         the diropen and fstat and dev/ino comparison that would normally
40959         accompany a virtual `chdir ("..")'.
40960
40961         * modules/fts (Depends-on): Add i-ring.
40962         * modules/i-ring: New module.
40963         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
40964         * m4/i-ring.m4: New file.
40965
40966 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40967
40968         * gnulib-tool (func_create_testdir): Fix replacement of
40969         `build-aux' in configure.ac.  Run autotools in gltests
40970         subdirectory.
40971         (func_create_testdir, func_create_megatestdir, test): There is
40972         no need for '--force' in most autotool invocations in a new
40973         tree.  Actually fail the whole test if any of the tools, or the
40974         configure or make stages fail.
40975
40976         Sync from Automake.
40977         * build-aux/gnupload: Revert last change.  Add pointer to upload
40978         instructions of the GNU Maintenance Instructions.
40979         Suggestion by Karl Berry.
40980
40981 2006-11-10  Jim Meyering  <jim@meyering.net>
40982
40983         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
40984
40985 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
40986
40987         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
40988         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
40989         (bind_textdomain_codeset) [! ENABLE_NLS]:
40990         Evaluate all the arguments.  That way, callers get compatible behavior
40991         if the arguments have side effects.  Also, it avoids some GCC
40992         diagnostics in some cases; Joel E. Denny reported problems when Bison
40993         was configured with --enable-gcc-warnigs.
40994
40995 2006-11-10  Jim Meyering  <jim@meyering.net>
40996
40997         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
40998         relevant options in CFLAGS (like -O, -fno-inline) are taken into
40999         account.
41000
41001 2006-11-10  Jim Meyering  <jim@meyering.net>
41002
41003         * modules/inline: New file/module.
41004         * modules/xalloc (Files): Remove m4/inline.m4.
41005         (Depends-on): Add inline, instead.
41006         * modules/oset: Likewise.
41007         * modules/list: Likewise.
41008
41009 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41010
41011         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
41012         Problem reported by Matthew Woehlke.
41013
41014 2006-11-09  Bruno Haible  <bruno@clisp.org>
41015
41016         * lib/tempname.c (gen_tempname): Remove variant that invokes
41017         __gen_tempname.
41018         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
41019         __gen_tempname.
41020
41021 2006-11-08  Bruno Haible  <bruno@clisp.org>
41022
41023         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
41024         to 'yes' instead of 'cross-compiling'.
41025
41026 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
41027
41028         * lib/quotearg.h (quotearg_free): New decl.
41029         * lib/quotearg.c (quotearg_free): New function.
41030         (slot0, nslots, slotvec0, slotvec):
41031         Now file-scope so that quotearg_free can get at them.
41032
41033 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41034
41035         Sync from Automake.
41036         * build-aux/gnupload: Add missing 'gnu' to example URL.
41037         Report by Karl Berry.
41038
41039 2006-11-08  Bruno Haible  <bruno@clisp.org>
41040
41041         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
41042         Suggested by Paul Eggert.
41043
41044 2006-11-08  Jim Meyering  <jim@meyering.net>
41045
41046         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
41047         It's already included if !_LIBC.
41048         (fts_safe_changedir): Add a comment.
41049
41050 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
41051
41052         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
41053         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
41054         Matthew Woehlke.
41055
41056         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
41057         definitions up, to avoid colliding with change below.
41058         (static_inline) [HAVE_INLINE]: New macro.
41059         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
41060         Provide extern decls when !HAVE_INLINE.  Do not define unless
41061         static_inline is defined, either by us or by xmalloc.c.  Use
41062         static_inline rather than static inline.
41063         (XCALLOC): Optimize sizeof(T) = 1 case.
41064         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
41065
41066 2006-11-07  Bruno Haible  <bruno@clisp.org>
41067
41068         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
41069         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
41070         AC_C_INLINE.
41071         * modules/xalloc (Files): Add m4/inline.m4.
41072
41073 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41074
41075         * README: Fix typo.
41076         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
41077         (Miscellanous Notes): ...from this.
41078
41079 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
41080
41081         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
41082         Mention that offsetof should be used instead of sizeof.
41083         From Bruno Haible.
41084
41085 2006-11-07  Bruno Haible  <bruno@clisp.org>
41086
41087         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
41088
41089 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41090
41091         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41092         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
41093         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41094         (gl_tree_add_before, gl_tree_add_after):
41095         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
41096         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
41097         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
41098         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
41099         (gl_linked_add_after, gl_linked_add_at): Likewise.
41100         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
41101         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41102         (gl_tree_add_before, gl_tree_add_after): Likewise.
41103         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
41104         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
41105         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
41106
41107 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41108
41109         * lib/gl_oset.h: Use C comment style, not C++ comment style.
41110
41111 2006-11-06  Bruno Haible  <bruno@clisp.org>
41112
41113         * m4/inline.m4: New file.
41114         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
41115         * modules/list (Files): Add m4/inline.m4.
41116         * modules/oset (Files): Likewise.
41117
41118 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41119
41120         * lib/idcache.c: Include <stddef.h>, for offsetof.
41121         (struct userid.name): Change from char * to a flexible array member.
41122         All uses changed.
41123         * modules/idcache (Depends-on): Add flexmember.
41124
41125         * MODULES.html.sh (Core language properties): New module flexmember.
41126         * modules/flexmember, m4/flexmember.m4: New files.
41127
41128         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
41129         inline functions that are identical with the old xnmalloc_inline,
41130         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
41131         that we can avoid some unnecessary integer multiplications and
41132         divisions in the common case where the element size is known at
41133         compile time.
41134         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
41135         needed.
41136         (xnboundedmalloc): Remove.
41137         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
41138         arguments, for consistency with rest of this header.
41139         (xcharalloc): Rewrite using XNMALLOC.
41140         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
41141         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
41142         versions have been moved to lib/xalloc.h and renamed to be the
41143         non-*_inline versions.
41144         (xmalloc, xrealloc): Implement without reference to the xnmalloc
41145         and xnrealloc functions, since those functions are now inline and
41146         now call us.
41147         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
41148         renaming described above.
41149         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
41150         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
41151         captures the dependency in AC_C_INLINE.
41152
41153         New module canonicalize-lgpl, proposed by Charles Wilson in
41154         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
41155         with a few small changes afterwards.
41156         * MODULES.html.sh (File system functions): New module
41157         canonicalize-lgpl.
41158         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
41159         and canonicalize_file_name.
41160         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
41161         * modules/canonicalize-lgpl: New files.
41162
41163 2006-11-05  Bruno Haible  <bruno@clisp.org>
41164
41165         * gnulib-tool (func_import, func_create_testdir): Create directories
41166         also for files in subdirectories of lib/.
41167
41168 2006-11-05  Bruno Haible  <bruno@clisp.org>
41169
41170         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
41171         ANSI C compliant.
41172
41173 2006-11-03  Bruno Haible  <bruno@clisp.org>
41174
41175         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41176         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
41177         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
41178         (xnboundedmalloc): New inline function.
41179         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
41180         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
41181         xmalloc.
41182         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
41183         xmalloc.
41184         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
41185         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
41186         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
41187         xmalloc.
41188         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41189         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
41190         xmalloc.
41191         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
41192         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41193         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
41194         xmalloc.
41195         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41196         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
41197         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41198         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
41199         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
41200         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
41201         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
41202
41203 2006-11-03  Bruno Haible  <bruno@clisp.org>
41204
41205         * lib/c-ctype.h [C++]: Define functions without name mangling.
41206         * lib/fwriteerror.h [C++]: Likewise.
41207         * lib/gcd.h [C++]: Likewise.
41208         * lib/linebreak.h [C++]: Likewise.
41209
41210 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
41211
41212         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
41213         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
41214         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
41215         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
41216         Check for functions and headers just once.
41217         Check for declaration of canonicalize_file_name.
41218         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
41219
41220 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41221
41222         * gnulib-tool (func_import): Fix typo in actioncmd.
41223
41224 2006-11-02  Bruno Haible  <bruno@clisp.org>
41225
41226         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
41227         newline sequence in the Makefile.am snippet as a space, like "make"
41228         does.
41229         Reported by Roger Persson <perrog@gmail.com>.
41230
41231 2006-11-01  Bruno Haible  <bruno@clisp.org>
41232
41233         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
41234         already declared in <string.h>.
41235         * lib/strcase.h (strncasecmp): Don't declare it if yes.
41236
41237 2006-11-01  Bruno Haible  <bruno@clisp.org>
41238
41239         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
41240         * lib/strcase.h: Include <string.h>.
41241         (strcasecmp): Define to rpl_strcasecmp here.
41242
41243 2006-11-01  Bruno Haible  <bruno@clisp.org>
41244
41245         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
41246
41247 2006-11-01  Eric Blake  <ebb9@byu.net>
41248
41249         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
41250
41251         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
41252
41253 2006-10-29  Bruno Haible  <bruno@clisp.org>
41254
41255         Make it compile in C++ mode.
41256         * lib/full-write.c (full_rw): Add a cast.
41257
41258 2006-11-01  Bruno Haible  <bruno@clisp.org>
41259
41260         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
41261         be POSIX compliant.
41262         Reported by Roger Persson <perrog@gmail.com>.
41263
41264 2006-11-01  Eric Blake  <ebb9@byu.net>
41265
41266         * lib/getopt_.h: Fix comments.
41267
41268 2006-10-31  Eric Blake  <ebb9@byu.net>
41269
41270         * modules/tmpdir (Depends-on): Add sys_stat.
41271         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
41272         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
41273         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
41274         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
41275         tempname.
41276
41277 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
41278
41279         Avoid some C++ diagnostics reported by Bruno Haible.
41280         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
41281         xmalloc.
41282         (quotearg_alloc): Use xcharalloc rather than xmalloc.
41283         (struct slotvec): Move to top level.
41284         (quotearg_n_options): Rewrite to avoid xmalloc.
41285         * lib/xalloc.h (xcharalloc): New function.
41286         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
41287         [defined __cplusplus]: Add function template that provides result
41288         type propagation.  This part of the change is from Bruno Haible.
41289
41290 2006-10-29  Bruno Haible  <bruno@clisp.org>
41291
41292         Make it compile in C++ mode.
41293         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
41294         * lib/strnlen1.c (strnlen1): Cast memchr result.
41295         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
41296         * lib/clean-temp.c (string_equals, string_hash): Add casts.
41297         (create_temp_dir): Rename local variable 'template'.
41298         (compile_csharp_using_sscli): Add cast.
41299         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
41300         * lib/findprog.c (find_in_path): Likewise.
41301         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
41302         * lib/wait-process.c (register_slave_subprocess): Likewise.
41303
41304 2006-10-22  Bruno Haible  <bruno@clisp.org>
41305
41306         * modules/tsearch: New file.
41307         * lib/tsearch.h: New file.
41308         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
41309         * m4/tsearch.m4: New file.
41310         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
41311
41312 2006-10-29  Eric Blake  <ebb9@byu.net>
41313
41314         * lib/arcfour.c: Assume config.h.
41315         * lib/arctwo.c: Likewise.
41316         * lib/base64.c: Likewise.
41317         * lib/check-version.c: Likewise.
41318         * lib/crc.c: Likewise.
41319         * lib/des.c: Likewise.
41320         * lib/gc-gnulib.c: Likewise.
41321         * lib/gc-libgcrypt.c: Likewise.
41322         * lib/gc-pbkdf2-sha1.c: Likewise.
41323         * lib/getaddrinfo.c: Likewise.
41324         * lib/getdelim.c: Likewise.
41325         * lib/getline.c: Likewise.
41326         * lib/hmac-md5.c: Likewise.
41327         * lib/hmac-sha1.c: Likewise.
41328         * lib/iconvme.c: Likewise.
41329         * lib/md2.c: Likewise.
41330         * lib/md4.c: Likewise.
41331         * lib/memxor.c: Likewise.
41332         * lib/read-file.c: Likewise.
41333         * lib/readline.c: Likewise.
41334         * lib/rijndael-alg-fst.c: Likewise.
41335         * lib/rijndael-api-fst.c: Likewise.
41336         * lib/xgetdomainname.c: Likewise.
41337
41338 2006-10-28  Eric Blake  <ebb9@byu.net>
41339
41340         * lib/xstrndup.c: Assume config.h.
41341
41342 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
41343
41344         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
41345         stat-macros.h is now for our own macros, whereas stat_h is for
41346         macros in the <sys/stat.h> name space.
41347         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
41348         (STAT_MACROS_H): Remove.
41349         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
41350         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
41351         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
41352         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
41353         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
41354         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
41355         Move these macros to ...
41356         * lib/stat_.h: here.  Don't include stat-macros.h.
41357         * lib/canonicalize.c: Don't include stat-macros.h.
41358         * lib/chown.c: Likewise.
41359         * lib/euidaccess.c: Likewise.
41360         * lib/file-type.c: Likewise.
41361         * lib/filemode.c: Likewise.
41362         * lib/glob.c: Likewise.
41363         * lib/isapipe.c: Likewise.
41364         * lib/lchown.c: Likewise.
41365         * lib/lstat.c: Likewise.
41366         * lib/mkdir-p.c: Likewise.
41367         * lib/rmdir.c: Likewise.
41368         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
41369         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
41370         unless mkdir isn't declared, to speed up 'configure'.
41371         Always create sys/stat.h, since it's unlikely any real sys/stat.h
41372         would define all the S_* symbols.
41373         * modules/canonicalize (Depends-on):
41374         Depend on sys_stat, not stat-macros.
41375         * modules/chown: Likewise.
41376         * modules/euidaccess: Likewise.
41377         * modules/filemode: Likewise.
41378         * modules/file-type: Likewise.
41379         * modules/glob: Likewise.
41380         * modules/isapipe: Likewise.
41381         * modules/lchown: Likewise.
41382         * modules/lstat: Likewise.
41383         * modules/mkancesdirs: Likewise.
41384         * modules/rmdir: Likewise.
41385         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
41386         * modules/modechange: Likewise.
41387         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
41388         (configure.ac): Remove gl_STAT_MACROS.
41389         * modules/sys_stat (Depends-on): Remove stat-macros.
41390
41391 2006-10-27  Bruno Haible  <bruno@clisp.org>
41392
41393         * m4/signed.m4: Remove file.
41394         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
41395         invocation.
41396         * modules/vasnprintf (Files): Remove m4/signed.m4.
41397
41398 2006-10-27  Bruno Haible  <bruno@clisp.org>
41399
41400         Update to GNU gettext 0.16.
41401         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
41402         m4/inttypes-h.m4, m4/signed.m4.
41403         * m4/gettext.m4: Update to GNU gettext 0.16.
41404         * m4/intl.m4: New file, from GNU gettext.
41405         * m4/intldir.m4: New file, from GNU gettext.
41406         * config/srclist.txt: Update
41407
41408 2006-10-27  Eric Blake  <ebb9@byu.net>
41409
41410         * MODULES.html.sh: Document tempname.
41411         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
41412         dependencies.
41413         (Files): Move lib/tempname.c...
41414         * modules/tempname: ...to this new module.
41415         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
41416         (gl_PREREQ_TEMPNAME): Move...
41417         * m4/tempname.m4: ...to this new file.
41418         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
41419         * modules/sys_stat (Depends-on): Add stat-macros.
41420         * lib/stat_.h (includes): Pick up stat macros.
41421         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
41422         if stat macros are broken.
41423         * lib/tempname.c (includes): No need to include "stat-macros.h".
41424         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
41425         (direxists, __path_search) [!_LIBC]: Don't compile these in
41426         gnulib; the tmpdir module covers that.
41427         * lib/tempname.h: New file.
41428
41429 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
41430
41431         * COPYING: Explain how gnulib-tool converts licence headers.
41432         Almost all wording by Eric Blake.
41433
41434 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
41435
41436         * lib/mbchar.h (is_basic_table): Make read-only.
41437         * lib/mbchar.c (is_basic_table): Likewise.
41438         Reported by John Darrington.
41439
41440 2006-10-25  Bruno Haible  <bruno@clisp.org>
41441
41442         * lib/progname.h (set_program_name): Undefine before defining.
41443
41444 2006-10-25  Bruno Haible  <bruno@clisp.org>
41445
41446         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
41447         false for non-gcc C++ compilers.
41448         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
41449
41450 2006-10-24  Bruno Haible  <bruno@clisp.org>
41451
41452         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
41453         iconv implementations like Irix iconv.
41454
41455 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41456
41457         * modules/vararrays: New file.
41458         * m4/vararrays.m4: New file, taken from diffutils.
41459         * MODULES.html.sh: New module vararrays.
41460
41461 2006-10-24  Karl Berry  <karl@gnu.org>
41462
41463         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
41464         Don't call GNU Unix.
41465
41466 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41467
41468         * users.txt: Add Libtool.
41469
41470         Sync from Libtool:
41471
41472         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41473
41474         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
41475         to gnulib's policy of including config.h unconditionally.
41476
41477 2006-10-24  Bruno Haible  <bruno@clisp.org>
41478
41479         * modules/wcwidth (Files): Add m4/wint_t.m4.
41480         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
41481         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
41482
41483 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41484
41485         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
41486         to pacify GCC with some -W flags enabled.  Problem reported by
41487         Bruno Haible.
41488
41489 2006-10-24  Jim Meyering  <jim@meyering.net>
41490
41491         * MODULES.html.sh: Remove uinttostr.  It's not a module.
41492         Reported by Karl Berry.
41493
41494 2006-10-23  Bruno Haible  <bruno@clisp.org>
41495
41496         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
41497
41498 2006-10-24  Bruno Haible  <bruno@clisp.org>
41499
41500         * lib/gl_list.h: Use C comment style, not C++ comment style.
41501
41502 2006-10-23  Eric Blake  <ebb9@byu.net>
41503
41504         * lib/getaddrinfo.c (includes): Add missing include.
41505
41506 2006-10-23  Bruno Haible  <bruno@clisp.org>
41507             Paul Eggert  <eggert@cs.ucla.edu>
41508
41509         Ability to rename obstack_free.
41510         * lib/obstack.h (__obstack_free): New macro. Declare instead of
41511         obstack_free.
41512         (obstack_free): Invoke the __obstack_free macro.
41513         * lib/obstack.c (obstack_free): Use __obstack_free macro.
41514
41515 2006-10-23  Bruno Haible  <bruno@clisp.org>
41516             Paul Eggert  <eggert@cs.ucla.edu>
41517
41518         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
41519         __argc, __argv from the declaration. (They are defined as macros on
41520         mingw.)
41521
41522 2006-10-22  Bruno Haible  <bruno@clisp.org>
41523
41524         * doc/gnulib-intro.texi: New file.
41525         * doc/gnulib.texi: Include it.
41526
41527 2006-10-21  Bruno Haible  <bruno@clisp.org>
41528
41529         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
41530         "Introduction", "Miscellanous Notes", "Particular Modules".
41531
41532 2006-10-21  Bruno Haible  <bruno@clisp.org>
41533
41534         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41535         Change mostlyclean-local rule to avoid sh syntax error from bash
41536         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
41537
41538 2006-10-23  Jim Meyering  <jim@meyering.net>
41539
41540         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
41541         in place of snprintf.
41542
41543         * modules/inttostr (Files): Add lib/uinttostr.c.
41544         * lib/uinttostr.c (inttostr): New file/function.
41545         * lib/inttostr.h (uinttostr): Declare.
41546         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
41547         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
41548         Add uinttostr.
41549         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
41550
41551 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
41552
41553         * lib/canonicalize.c (ELOOP): Define if not already defined.
41554         Problem reported by Bruno Haible in
41555         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
41556
41557 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
41558
41559         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
41560         Problem reported by Perry Smith and Ville Laurikari.
41561
41562         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
41563         uses.
41564
41565 2006-10-19  Bruno Haible  <bruno@clisp.org>
41566
41567         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
41568         for mingw.
41569
41570 2006-10-19  Bruno Haible  <bruno@clisp.org>
41571
41572         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
41573         Needed for mingw.
41574
41575 2006-10-19  Bruno Haible  <bruno@clisp.org>
41576
41577         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
41578
41579 2006-10-19  Bruno Haible  <bruno@clisp.org>
41580
41581         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
41582         it.
41583
41584 2006-10-19  Bruno Haible  <bruno@clisp.org>
41585
41586         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
41587         invocation.
41588
41589 2006-10-19  Bruno Haible  <bruno@clisp.org>
41590
41591         * gnulib-tool (func_create_testdir): Don't include ftruncate and
41592         mountlist by default.
41593
41594 2006-10-16  Bruno Haible  <bruno@clisp.org>
41595
41596         * lib/c-strstr.c: Include c-strstr.h.
41597
41598 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41599
41600         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
41601         in a slash.
41602
41603 2006-10-18  Bruno Haible  <bruno@clisp.org>
41604
41605         * lib/lock.h [C++]: Wrap definitions in extern "C".
41606
41607 2006-10-18  Bruno Haible  <bruno@clisp.org>
41608
41609         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
41610         gl_LIBOBJS list.
41611
41612 2006-10-18  Bruno Haible  <bruno@clisp.org>
41613
41614         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
41615
41616 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
41617
41618         * lib/xstrtol.h: Include gettext.h.
41619         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
41620         Problem reported by Eric Blake.
41621         * modules/xstrtol (Depends-on): Add gettext-h.
41622
41623 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
41624
41625         * lib/strftime.c (advance): New macro.
41626         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
41627         incomplete type, so you can't add 0 to it.  Problem and patch
41628         reported by Eelco Dolstra for dietlibc.
41629
41630 2006-10-18  Jim Meyering  <jim@meyering.net>
41631
41632         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
41633         type for a local, and rename it: s/up/user_proc/.
41634
41635 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
41636
41637         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
41638         READ_UTMP_USER_PROCESS.
41639         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
41640
41641 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
41642
41643         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
41644         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
41645
41646 2006-10-17  Eric Blake  <ebb9@byu.net>
41647
41648         * lib/sigprocmask.c (sigprocmask): Fix typo.
41649
41650         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
41651
41652         * modules/clean-temp (Makefile.am): Don't add to make output...
41653         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
41654         config.h.
41655
41656 2006-10-17  Bruno Haible  <bruno@clisp.org>
41657
41658         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
41659         differently if DEFAULT_TEXT_DOMAIN is set.
41660
41661 2006-10-16  Bruno Haible  <bruno@clisp.org>
41662
41663         * lib/clean-temp.c: Include fwriteerror.h.
41664
41665 2006-10-16  Bruno Haible  <bruno@clisp.org>
41666
41667         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
41668
41669 2006-10-16  Bruno Haible  <bruno@clisp.org>
41670
41671         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
41672         * lib/sigprocmask.h: Include <sys/types.h>.
41673         (sigset_t): Use the system's definition if present.
41674
41675 2006-10-17  Eric Blake  <ebb9@byu.net>
41676
41677         * lib/xvasprintf.c (includes): Assume config.h.
41678         * lib/xasprintf.c (includes): Likewise.
41679
41680 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
41681
41682         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
41683         at least as wide as intmax_t.
41684
41685 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
41686
41687         (Imported from Automake.)
41688         * build-aux/gnupload: Update to version 1.1 of directive file.
41689
41690 2006-10-16  Eric Blake  <ebb9@byu.net>
41691
41692         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
41693         match Automake 1.10a.
41694
41695 2006-10-14  Bruno Haible  <bruno@clisp.org>
41696
41697         * modules/sigprocmask: New file.
41698         * lib/sigprocmask.h: New file.
41699         * lib/sigprocmask.c: New file.
41700         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
41701         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
41702         request sigprocmask.o.
41703         (gl_PREREQ_SIGPROCMASK): New macro.
41704         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
41705         (Depends-on): Add sigprocmask.
41706         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
41707         gt_SIGNALBLOCKING. Test for 'raise' only once.
41708         * lib/fatal-signal.c: Include sigprocmask.h.
41709         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
41710         unblock_fatal_signals): Define always.
41711         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
41712         sigprocmask.
41713
41714 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
41715
41716         Sync from Automake.
41717         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
41718         which incorrectly sets the mode of an existing destination
41719         directory.  In some cases the unpatched install-sh could do the
41720         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
41721         system.  We hope this is rare in practice, but it's clearly worth
41722         fixing.  Problem reported by Alex Unleashed in
41723         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
41724         Also, don't bother to check for -m bugs unless we're using -m;
41725         suggested by Stepan Kasal.
41726
41727 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41728
41729         Sync from Automake.
41730         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
41731         `-c' flag, so they appear at the same position as in %FASTDEP%
41732         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
41733         which ignores unknown options only after the first non-option.
41734         Bug report against M4 by Nelson H. F. Beebe.
41735
41736 2006-10-13  Jim Meyering  <jim@meyering.net>
41737
41738         Fix a bug in yesterday's change.
41739         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
41740         p->fts_statp->st_dev would be used uninitialized.
41741         Ensures that we always call fts_stat on the very first entry.
41742         Miklos Szeredi reported that find -xdev stopped working.
41743
41744 2006-10-12  Bruno Haible  <bruno@clisp.org>
41745
41746         * gnulib-tool (func_get_automake_snippet): Append an automatically
41747         computed EXTRA_DIST augmentation.
41748         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
41749         * modules/alloca-opt (Makefile.am): Likewise.
41750         * modules/allocsa (Makefile.am): Likewise.
41751         * modules/arcfour (Makefile.am): Likewise.
41752         * modules/arctwo (Makefile.am): Likewise.
41753         * modules/argmatch (Makefile.am): Likewise.
41754         * modules/argz (Makefile.am): Likewise.
41755         * modules/atexit (Makefile.am): Likewise.
41756         * modules/backupfile (Makefile.am): Likewise.
41757         * modules/byteswap (Makefile.am): Likewise.
41758         * modules/c-strtod (Makefile.am): Likewise.
41759         * modules/c-strtold (Makefile.am): Likewise.
41760         * modules/calloc (Makefile.am): Likewise.
41761         * modules/canon-host (Makefile.am): Likewise.
41762         * modules/canonicalize (Makefile.am): Likewise.
41763         * modules/chdir-long (Makefile.am): Likewise.
41764         * modules/chdir-safer (Makefile.am): Likewise.
41765         * modules/check-version (Makefile.am): Likewise.
41766         * modules/chown (Makefile.am): Likewise.
41767         * modules/cloexec (Makefile.am): Likewise.
41768         * modules/close-stream (Makefile.am): Likewise.
41769         * modules/closeout (Makefile.am): Likewise.
41770         * modules/crc (Makefile.am): Likewise.
41771         * modules/csharpexec (Makefile.am): Likewise.
41772         * modules/cycle-check (Makefile.am): Likewise.
41773         * modules/des (Makefile.am): Likewise.
41774         * modules/dev-ino (Makefile.am): Likewise.
41775         * modules/dirfd (Makefile.am): Likewise.
41776         * modules/dirname (Makefile.am): Likewise.
41777         * modules/dup2 (Makefile.am): Likewise.
41778         * modules/eealloc (Makefile.am): Likewise.
41779         * modules/error (Makefile.am): Likewise.
41780         * modules/euidaccess (Makefile.am): Likewise.
41781         * modules/exclude (Makefile.am): Likewise.
41782         * modules/exitfail (Makefile.am): Likewise.
41783         * modules/fcntl-safer (Makefile.am): Likewise.
41784         * modules/fcntl (Makefile.am): Likewise.
41785         * modules/file-type (Makefile.am): Likewise.
41786         * modules/fileblocks (Makefile.am): Likewise.
41787         * modules/filemode (Makefile.am): Likewise.
41788         * modules/filenamecat (Makefile.am): Likewise.
41789         * modules/fnmatch (Makefile.am): Likewise.
41790         * modules/fopen-safer (Makefile.am): Likewise.
41791         * modules/fpending (Makefile.am): Likewise.
41792         * modules/fprintftime (Makefile.am): Likewise.
41793         * modules/free (Makefile.am): Likewise.
41794         * modules/fsusage (Makefile.am): Likewise.
41795         * modules/ftruncate (Makefile.am): Likewise.
41796         * modules/fts (Makefile.am): Likewise.
41797         * modules/gc-arcfour (Makefile.am): Likewise.
41798         * modules/gc-des (Makefile.am): Likewise.
41799         * modules/gc-hmac-md5 (Makefile.am): Likewise.
41800         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
41801         * modules/gc-md4 (Makefile.am): Likewise.
41802         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
41803         * modules/gc-sha1 (Makefile.am): Likewise.
41804         * modules/gc (Makefile.am): Likewise.
41805         * modules/getaddrinfo (Makefile.am): Likewise.
41806         * modules/getcwd (Makefile.am): Likewise.
41807         * modules/getdelim (Makefile.am): Likewise.
41808         * modules/getdomainname (Makefile.am): Likewise.
41809         * modules/getgroups (Makefile.am): Likewise.
41810         * modules/gethostname (Makefile.am): Likewise.
41811         * modules/gethrxtime (Makefile.am): Likewise.
41812         * modules/getline (Makefile.am): Likewise.
41813         * modules/getloadavg (Makefile.am): Likewise.
41814         * modules/getlogin_r (Makefile.am): Likewise.
41815         * modules/getndelim2 (Makefile.am): Likewise.
41816         * modules/getopt (Makefile.am): Likewise.
41817         * modules/getpagesize (Makefile.am): Likewise.
41818         * modules/getpass-gnu (Makefile.am): Likewise.
41819         * modules/getpass (Makefile.am): Likewise.
41820         * modules/getsubopt (Makefile.am): Likewise.
41821         * modules/gettime (Makefile.am): Likewise.
41822         * modules/gettimeofday (Makefile.am): Likewise.
41823         * modules/getugroups (Makefile.am): Likewise.
41824         * modules/getusershell (Makefile.am): Likewise.
41825         * modules/glob (Makefile.am): Likewise.
41826         * modules/group-member (Makefile.am): Likewise.
41827         * modules/hard-locale (Makefile.am): Likewise.
41828         * modules/hash (Makefile.am): Likewise.
41829         * modules/hmac-md5 (Makefile.am): Likewise.
41830         * modules/hmac-sha1 (Makefile.am): Likewise.
41831         * modules/human (Makefile.am): Likewise.
41832         * modules/idcache (Makefile.am): Likewise.
41833         * modules/imaxabs (Makefile.am): Likewise.
41834         * modules/imaxdiv (Makefile.am): Likewise.
41835         * modules/inet_ntop (Makefile.am): Likewise.
41836         * modules/inet_pton (Makefile.am): Likewise.
41837         * modules/intprops (Makefile.am): Likewise.
41838         * modules/inttostr (Makefile.am): Likewise.
41839         * modules/inttypes (Makefile.am): Likewise.
41840         * modules/isapipe (Makefile.am): Likewise.
41841         * modules/javaversion (Makefile.am): Likewise.
41842         * modules/lchmod (Makefile.am): Likewise.
41843         * modules/lchown (Makefile.am): Likewise.
41844         * modules/localcharset (Makefile.am): Likewise.
41845         * modules/long-options (Makefile.am): Likewise.
41846         * modules/lstat (Makefile.am): Likewise.
41847         * modules/malloc (Makefile.am): Likewise.
41848         * modules/mathl (Makefile.am): Likewise.
41849         * modules/mbchar (Makefile.am): Likewise.
41850         * modules/md2 (Makefile.am): Likewise.
41851         * modules/md4 (Makefile.am): Likewise.
41852         * modules/md5 (Makefile.am): Likewise.
41853         * modules/memcasecmp (Makefile.am): Likewise.
41854         * modules/memchr (Makefile.am): Likewise.
41855         * modules/memcmp (Makefile.am): Likewise.
41856         * modules/memcoll (Makefile.am): Likewise.
41857         * modules/memcpy (Makefile.am): Likewise.
41858         * modules/memmem (Makefile.am): Likewise.
41859         * modules/memmove (Makefile.am): Likewise.
41860         * modules/mempcpy (Makefile.am): Likewise.
41861         * modules/memrchr (Makefile.am): Likewise.
41862         * modules/memset (Makefile.am): Likewise.
41863         * modules/memxor (Makefile.am): Likewise.
41864         * modules/mkancesdirs (Makefile.am): Likewise.
41865         * modules/mkdir-p (Makefile.am): Likewise.
41866         * modules/mkdir (Makefile.am): Likewise.
41867         * modules/mkdtemp (Makefile.am): Likewise.
41868         * modules/mkstemp (Makefile.am): Likewise.
41869         * modules/mktime (Makefile.am): Likewise.
41870         * modules/modechange (Makefile.am): Likewise.
41871         * modules/mountlist (Makefile.am): Likewise.
41872         * modules/nanosleep (Makefile.am): Likewise.
41873         * modules/obstack (Makefile.am): Likewise.
41874         * modules/openat (Makefile.am): Likewise.
41875         * modules/pagealign_alloc (Makefile.am): Likewise.
41876         * modules/pathmax (Makefile.am): Likewise.
41877         * modules/physmem (Makefile.am): Likewise.
41878         * modules/poll (Makefile.am): Likewise.
41879         * modules/posixtm (Makefile.am): Likewise.
41880         * modules/posixver (Makefile.am): Likewise.
41881         * modules/putenv (Makefile.am): Likewise.
41882         * modules/quote (Makefile.am): Likewise.
41883         * modules/quotearg (Makefile.am): Likewise.
41884         * modules/raise (Makefile.am): Likewise.
41885         * modules/read-file (Makefile.am): Likewise.
41886         * modules/readline (Makefile.am): Likewise.
41887         * modules/readlink (Makefile.am): Likewise.
41888         * modules/readtokens (Makefile.am): Likewise.
41889         * modules/readutmp (Makefile.am): Likewise.
41890         * modules/realloc (Makefile.am): Likewise.
41891         * modules/regex (Makefile.am): Likewise.
41892         * modules/rename-dest-slash (Makefile.am): Likewise.
41893         * modules/rename (Makefile.am): Likewise.
41894         * modules/rijndael (Makefile.am): Likewise.
41895         * modules/rmdir (Makefile.am): Likewise.
41896         * modules/rpmatch (Makefile.am): Likewise.
41897         * modules/safe-read (Makefile.am): Likewise.
41898         * modules/safe-write (Makefile.am): Likewise.
41899         * modules/same-inode (Makefile.am): Likewise.
41900         * modules/same (Makefile.am): Likewise.
41901         * modules/save-cwd (Makefile.am): Likewise.
41902         * modules/savedir (Makefile.am): Likewise.
41903         * modules/setenv (Makefile.am): Likewise.
41904         * modules/settime (Makefile.am): Likewise.
41905         * modules/sha1 (Makefile.am): Likewise.
41906         * modules/sig2str (Makefile.am): Likewise.
41907         * modules/snprintf (Makefile.am): Likewise.
41908         * modules/stat-macros (Makefile.am): Likewise.
41909         * modules/stat-time (Makefile.am): Likewise.
41910         * modules/stdbool (Makefile.am): Likewise.
41911         * modules/stdint (Makefile.am): Likewise.
41912         * modules/stdlib-safer (Makefile.am): Likewise.
41913         * modules/stpcpy (Makefile.am): Likewise.
41914         * modules/stpncpy (Makefile.am): Likewise.
41915         * modules/strcase (Makefile.am): Likewise.
41916         * modules/strcasestr (Makefile.am): Likewise.
41917         * modules/strchrnul (Makefile.am): Likewise.
41918         * modules/strcspn (Makefile.am): Likewise.
41919         * modules/strdup (Makefile.am): Likewise.
41920         * modules/strerror (Makefile.am): Likewise.
41921         * modules/strftime (Makefile.am): Likewise.
41922         * modules/strndup (Makefile.am): Likewise.
41923         * modules/strnlen (Makefile.am): Likewise.
41924         * modules/strpbrk (Makefile.am): Likewise.
41925         * modules/strsep (Makefile.am): Likewise.
41926         * modules/strstr (Makefile.am): Likewise.
41927         * modules/strtod (Makefile.am): Likewise.
41928         * modules/strtoimax (Makefile.am): Likewise.
41929         * modules/strtok_r (Makefile.am): Likewise.
41930         * modules/strtol (Makefile.am): Likewise.
41931         * modules/strtoll (Makefile.am): Likewise.
41932         * modules/strtoul (Makefile.am): Likewise.
41933         * modules/strtoull (Makefile.am): Likewise.
41934         * modules/strtoumax (Makefile.am): Likewise.
41935         * modules/strverscmp (Makefile.am): Likewise.
41936         * modules/sys_socket (Makefile.am): Likewise.
41937         * modules/sys_stat (Makefile.am): Likewise.
41938         * modules/sysexits (Makefile.am): Likewise.
41939         * modules/time_r (Makefile.am): Likewise.
41940         * modules/timegm (Makefile.am): Likewise.
41941         * modules/timespec (Makefile.am): Likewise.
41942         * modules/tmpfile-safer (Makefile.am): Likewise.
41943         * modules/trim (Makefile.am): Likewise.
41944         * modules/unistd-safer (Makefile.am): Likewise.
41945         * modules/unlinkdir (Makefile.am): Likewise.
41946         * modules/unlocked-io (Makefile.am): Likewise.
41947         * modules/userspec (Makefile.am): Likewise.
41948         * modules/utime (Makefile.am): Likewise.
41949         * modules/utimecmp (Makefile.am): Likewise.
41950         * modules/utimens (Makefile.am): Likewise.
41951         * modules/vasnprintf (Makefile.am): Likewise.
41952         * modules/vasprintf (Makefile.am): Likewise.
41953         * modules/vsnprintf (Makefile.am): Likewise.
41954         * modules/xalloc (Makefile.am): Likewise.
41955         * modules/xgetcwd (Makefile.am): Likewise.
41956         * modules/xnanosleep (Makefile.am): Likewise.
41957         * modules/xreadlink (Makefile.am): Likewise.
41958         * modules/xstrtod (Makefile.am): Likewise.
41959         * modules/xstrtol (Makefile.am): Likewise.
41960         * modules/xstrtold (Makefile.am): Likewise.
41961         * modules/yesno (Makefile.am): Likewise.
41962         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
41963
41964 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
41965
41966         * modules/error (Makefile.am): Distribute files through
41967         EXTRA_DIST, not lib_SOURCES.
41968
41969 2006-10-12  Eric Blake  <ebb9@byu.net>
41970
41971         * modules/error (Makefile.am): Distribute files in /lib.
41972         * modules/obstack (Makefile.am): Likewise.
41973
41974 2006-10-12  Bruno Haible  <bruno@clisp.org>
41975
41976         * modules/acl (Makefile.am): Distribute all files in lib/ through
41977         EXTRA_DIST.
41978         * modules/arcfour (Makefile.am): Likewise.
41979         * modules/arctwo (Makefile.am): Likewise.
41980         * modules/argmatch (Makefile.am): Likewise.
41981         * modules/argz (Makefile.am): Likewise.
41982         * modules/atexit (Makefile.am): Likewise.
41983         * modules/backupfile (Makefile.am): Likewise.
41984         * modules/c-strtod (Makefile.am): Likewise.
41985         * modules/c-strtold (Makefile.am): Likewise.
41986         * modules/calloc (Makefile.am): Likewise.
41987         * modules/canon-host (Makefile.am): Likewise.
41988         * modules/canonicalize (Makefile.am): Likewise.
41989         * modules/chdir-long (Makefile.am): Likewise.
41990         * modules/chdir-safer (Makefile.am): Likewise.
41991         * modules/check-version (Makefile.am): Likewise.
41992         * modules/chown (Makefile.am): Likewise.
41993         * modules/cloexec (Makefile.am): Likewise.
41994         * modules/close-stream (Makefile.am): Likewise.
41995         * modules/closeout (Makefile.am): Likewise.
41996         * modules/crc (Makefile.am): Likewise.
41997         * modules/cycle-check (Makefile.am): Likewise.
41998         * modules/des (Makefile.am): Likewise.
41999         * modules/dirfd (Makefile.am): Likewise.
42000         * modules/dirname (Makefile.am): Likewise.
42001         * modules/dup2 (Makefile.am): Likewise.
42002         * modules/euidaccess (Makefile.am): Likewise.
42003         * modules/exclude (Makefile.am): Likewise.
42004         * modules/exitfail (Makefile.am): Likewise.
42005         * modules/fcntl-safer (Makefile.am): Likewise.
42006         * modules/file-type (Makefile.am): Likewise.
42007         * modules/fileblocks (Makefile.am): Likewise.
42008         * modules/filemode (Makefile.am): Likewise.
42009         * modules/filenamecat (Makefile.am): Likewise.
42010         * modules/fnmatch (Makefile.am): Likewise.
42011         * modules/fopen-safer (Makefile.am): Likewise.
42012         * modules/fpending (Makefile.am): Likewise.
42013         * modules/fprintftime (Makefile.am): Likewise.
42014         * modules/free (Makefile.am): Likewise.
42015         * modules/fsusage (Makefile.am): Likewise.
42016         * modules/ftruncate (Makefile.am): Likewise.
42017         * modules/fts (Makefile.am): Likewise.
42018         * modules/gc (Makefile.am): Likewise.
42019         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
42020         * modules/getaddrinfo (Makefile.am): Likewise.
42021         * modules/getcwd (Makefile.am): Likewise.
42022         * modules/getdelim (Makefile.am): Likewise.
42023         * modules/getdomainname (Makefile.am): Likewise.
42024         * modules/getgroups (Makefile.am): Likewise.
42025         * modules/gethostname (Makefile.am): Likewise.
42026         * modules/gethrxtime (Makefile.am): Likewise.
42027         * modules/getline (Makefile.am): Likewise.
42028         * modules/getloadavg (Makefile.am): Likewise.
42029         * modules/getlogin_r (Makefile.am): Likewise.
42030         * modules/getopt (Makefile.am): Likewise.
42031         * modules/getpass (Makefile.am): Likewise.
42032         * modules/getpass-gnu (Makefile.am): Likewise.
42033         * modules/getsubopt (Makefile.am): Likewise.
42034         * modules/gettime (Makefile.am): Likewise.
42035         * modules/gettimeofday (Makefile.am): Likewise.
42036         * modules/getugroups (Makefile.am): Likewise.
42037         * modules/getusershell (Makefile.am): Likewise.
42038         * modules/glob (Makefile.am): Likewise.
42039         * modules/group-member (Makefile.am): Likewise.
42040         * modules/hard-locale (Makefile.am): Likewise.
42041         * modules/hash (Makefile.am): Likewise.
42042         * modules/hmac-md5 (Makefile.am): Likewise.
42043         * modules/hmac-sha1 (Makefile.am): Likewise.
42044         * modules/human (Makefile.am): Likewise.
42045         * modules/idcache (Makefile.am): Likewise.
42046         * modules/imaxabs (Makefile.am): Likewise.
42047         * modules/imaxdiv (Makefile.am): Likewise.
42048         * modules/inet_ntop (Makefile.am): Likewise.
42049         * modules/inet_pton (Makefile.am): Likewise.
42050         * modules/inttostr (Makefile.am): Likewise.
42051         * modules/isapipe (Makefile.am): Likewise.
42052         * modules/lchown (Makefile.am): Likewise.
42053         * modules/long-options (Makefile.am): Likewise.
42054         * modules/lstat (Makefile.am): Likewise.
42055         * modules/malloc (Makefile.am): Likewise.
42056         * modules/mathl (Makefile.am): Likewise.
42057         * modules/mbchar (Makefile.am): Likewise.
42058         * modules/md2 (Makefile.am): Likewise.
42059         * modules/md4 (Makefile.am): Likewise.
42060         * modules/md5 (Makefile.am): Likewise.
42061         * modules/memcasecmp (Makefile.am): Likewise.
42062         * modules/memchr (Makefile.am): Likewise.
42063         * modules/memcmp (Makefile.am): Likewise.
42064         * modules/memcoll (Makefile.am): Likewise.
42065         * modules/memcpy (Makefile.am): Likewise.
42066         * modules/memmem (Makefile.am): Likewise.
42067         * modules/memmove (Makefile.am): Likewise.
42068         * modules/mempcpy (Makefile.am): Likewise.
42069         * modules/memrchr (Makefile.am): Likewise.
42070         * modules/memset (Makefile.am): Likewise.
42071         * modules/memxor (Makefile.am): Likewise.
42072         * modules/mkancesdirs (Makefile.am): Likewise.
42073         * modules/mkdir (Makefile.am): Likewise.
42074         * modules/mkdir-p (Makefile.am): Likewise.
42075         * modules/mkdtemp (Makefile.am): Likewise.
42076         * modules/mkstemp (Makefile.am): Likewise.
42077         * modules/mktime (Makefile.am): Likewise.
42078         * modules/modechange (Makefile.am): Likewise.
42079         * modules/mountlist (Makefile.am): Likewise.
42080         * modules/nanosleep (Makefile.am): Likewise.
42081         * modules/openat (Makefile.am): Likewise.
42082         * modules/pagealign_alloc (Makefile.am): Likewise.
42083         * modules/physmem (Makefile.am): Likewise.
42084         * modules/poll (Makefile.am): Likewise.
42085         * modules/posixtm (Makefile.am): Likewise.
42086         * modules/posixver (Makefile.am): Likewise.
42087         * modules/putenv (Makefile.am): Likewise.
42088         * modules/quote (Makefile.am): Likewise.
42089         * modules/quotearg (Makefile.am): Likewise.
42090         * modules/raise (Makefile.am): Likewise.
42091         * modules/read-file (Makefile.am): Likewise.
42092         * modules/readline (Makefile.am): Likewise.
42093         * modules/readlink (Makefile.am): Likewise.
42094         * modules/readtokens (Makefile.am): Likewise.
42095         * modules/readutmp (Makefile.am): Likewise.
42096         * modules/realloc (Makefile.am): Likewise.
42097         * modules/regex (Makefile.am): Likewise.
42098         * modules/rename (Makefile.am): Likewise.
42099         * modules/rename-dest-slash (Makefile.am): Likewise.
42100         * modules/rijndael (Makefile.am): Likewise.
42101         * modules/rmdir (Makefile.am): Likewise.
42102         * modules/rpmatch (Makefile.am): Likewise.
42103         * modules/safe-read (Makefile.am): Likewise.
42104         * modules/safe-write (Makefile.am): Likewise.
42105         * modules/same (Makefile.am): Likewise.
42106         * modules/save-cwd (Makefile.am): Likewise.
42107         * modules/savedir (Makefile.am): Likewise.
42108         * modules/setenv (Makefile.am): Likewise.
42109         * modules/settime (Makefile.am): Likewise.
42110         * modules/sha1 (Makefile.am): Likewise.
42111         * modules/sig2str (Makefile.am): Likewise.
42112         * modules/snprintf (Makefile.am): Likewise.
42113         * modules/stdlib-safer (Makefile.am): Likewise.
42114         * modules/stpcpy (Makefile.am): Likewise.
42115         * modules/stpncpy (Makefile.am): Likewise.
42116         * modules/strcase (Makefile.am): Likewise.
42117         * modules/strcasestr (Makefile.am): Likewise.
42118         * modules/strchrnul (Makefile.am): Likewise.
42119         * modules/strcspn (Makefile.am): Likewise.
42120         * modules/strdup (Makefile.am): Likewise.
42121         * modules/strerror (Makefile.am): Likewise.
42122         * modules/strftime (Makefile.am): Likewise.
42123         * modules/strndup (Makefile.am): Likewise.
42124         * modules/strnlen (Makefile.am): Likewise.
42125         * modules/strpbrk (Makefile.am): Likewise.
42126         * modules/strsep (Makefile.am): Likewise.
42127         * modules/strstr (Makefile.am): Likewise.
42128         * modules/strtod (Makefile.am): Likewise.
42129         * modules/strtoimax (Makefile.am): Likewise.
42130         * modules/strtok_r (Makefile.am): Likewise.
42131         * modules/strtol (Makefile.am): Likewise.
42132         * modules/strtoll (Makefile.am): Likewise.
42133         * modules/strtoul (Makefile.am): Likewise.
42134         * modules/strtoull (Makefile.am): Likewise.
42135         * modules/strtoumax (Makefile.am): Likewise.
42136         * modules/strverscmp (Makefile.am): Likewise.
42137         * modules/time_r (Makefile.am): Likewise.
42138         * modules/timegm (Makefile.am): Likewise.
42139         * modules/tmpfile-safer (Makefile.am): Likewise.
42140         * modules/unistd-safer (Makefile.am): Likewise.
42141         * modules/unlinkdir (Makefile.am): Likewise.
42142         * modules/userspec (Makefile.am): Likewise.
42143         * modules/utime (Makefile.am): Likewise.
42144         * modules/utimecmp (Makefile.am): Likewise.
42145         * modules/utimens (Makefile.am): Likewise.
42146         * modules/vasnprintf (Makefile.am): Likewise.
42147         * modules/vasprintf (Makefile.am): Likewise.
42148         * modules/vsnprintf (Makefile.am): Likewise.
42149         * modules/xalloc (Makefile.am): Likewise.
42150         * modules/xgetcwd (Makefile.am): Likewise.
42151         * modules/xnanosleep (Makefile.am): Likewise.
42152         * modules/xreadlink (Makefile.am): Likewise.
42153         * modules/xstrtod (Makefile.am): Likewise.
42154         * modules/xstrtol (Makefile.am): Likewise.
42155         * modules/xstrtold (Makefile.am): Likewise.
42156         * modules/yesno (Makefile.am): Likewise.
42157
42158 2006-10-12  Jim Meyering  <jim@meyering.net>
42159
42160         * m4/getloadavg.m4: Revert the change below.
42161
42162         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
42163         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
42164         fail with a symlink, which is what coreutils' ./bootstrap now
42165         creates by default.
42166
42167 2006-10-12  Bruno Haible  <bruno@clisp.org>
42168
42169         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
42170         mingw.
42171         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
42172         MSVC and mingw explicitly.
42173
42174 2006-10-11  Simon Josefsson  <jas@extundo.com>
42175             Bruno Haible  <bruno@clisp.org>
42176
42177         Add support for multiple gnulib-tool invocations in the scope of a
42178         single configure.ac file.
42179         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
42180         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
42181         with the same contents as the _LIBADD variable.
42182         (func_emit_initmacro_start, func_emit_initmacro_end,
42183         func_emit_initmacro_done): New functions.
42184         (func_import, func_create_testdir): Invoke them. Allow the identifiers
42185         gl_LIBOBJS and gl_LTLIBOBJS.
42186
42187 2006-10-11  Bruno Haible  <bruno@clisp.org>
42188
42189         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
42190         (func_create_testdir): Don't create po/Makefile.am, don't invoke
42191         autoreconf. Instead, invoke autopoint explicitly but move back the
42192         *.m4 files from gnulib.
42193
42194 2006-10-11  Bruno Haible  <bruno@clisp.org>
42195
42196         * gnulib-tool (func_usage): Make module names after --create-testdir
42197         optional.
42198         (func_create_testdir): If no module was specified, use nearly all
42199         modules.
42200
42201 2006-10-12  Jim Meyering  <jim@meyering.net>
42202
42203         Big performance improvement for fts-based tools that use FTS_NOSTAT.
42204         Avoid spurious inode-mismatch problems on non-POSIX file systems.
42205         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
42206         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
42207         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
42208         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
42209         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
42210         (fts_set_stat_required): New function.
42211         (fts_open): Defer the calls to fts_stat, if possible or requested.
42212         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
42213         into fts_stat itself.
42214         (fts_read): Perform any required (deferred) fts_stat call.
42215         (fts_build): Likewise, for the directory we're about to open and read.
42216         In the readdir loop, carefully decide whether each entry will require
42217         an eventual call to fts_stat, using dirent.d_type info if available.
42218         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
42219         a command line argument into this function.  Update all callers.
42220         Map a return value of FTS_DOT to FTS_D for a command line argument.
42221         * modules/fts (Depends-on): Add d-type.  Alphabetize.
42222         Thanks to Miklos Szeredi for his tenacity and for the initial
42223         bug report about "find" failing on a FUSE-based file system.
42224
42225         * lib/fts.c (fts_open): Use consistent indentation.
42226
42227 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
42228
42229         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
42230         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
42231         reported by Jim Meyering.  All uses of cache variables renamed
42232         to match Autoconf's.
42233         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
42234         the other one.
42235
42236         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
42237         Fix misspelling in diagnostic.
42238
42239 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42240
42241         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
42242         defined.  Problem reported by Matthew Woehlke.
42243
42244         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
42245         Add support for Tandem NonStop R series.
42246         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
42247         Use new macro.
42248
42249         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
42250         (has_trailing_slash): Omit size arg; all callers changed.
42251         Omit 'inline', since it doesn't help performance and we'd
42252         need to configure it.
42253         Don't count //, ///, etc. as having a trailing slash.
42254         As a side effect, this removes a C99ism reported by Matthew Woehlke.
42255         (rpl_rename_dest_slash): On failure, use rename's errno rather
42256         than (in some cases) an incorrect or junk errno.
42257         Simplify code by removing need to compute length; this does
42258         cause it to make two passes instead of one over the file name,
42259         but it's worth it.
42260
42261         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
42262         change, since Autoconf's version may no longer be appropriate now
42263         that we are using CVS Autoconf's version.  Add support for Tandem.
42264
42265 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42266             Bruno Haible  <bruno@clisp.org>
42267
42268         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
42269         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
42270         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
42271         gl_AC_TYPE_LONG_LONG.
42272
42273         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
42274         instead of HAVE_LONG_LONG.
42275         * lib/printf-args.c (printf_fetchargs): Likewise.
42276         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
42277         * lib/vasnprintf.c (VASNPRINTF): Likewise.
42278         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
42279         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
42280         gl_AC_TYPE_LONG_LONG.
42281
42282 2006-10-11  Bruno Haible  <bruno@clisp.org>
42283
42284         * m4/longlong.m4: Add comments.
42285         * m4/ulonglong.m4: Likewise.
42286
42287 2006-10-10  Bruno Haible  <bruno@clisp.org>
42288
42289         Make it possible to #define stpcpy, strdup to aliases.
42290         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
42291         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
42292
42293 2006-10-10  Bruno Haible  <bruno@clisp.org>
42294
42295         Make it possible to #define gcd to an alias.
42296         * lib/gcd.c: Include config.h.
42297
42298 2006-10-10  Bruno Haible  <bruno@clisp.org>
42299
42300         Make it possible to #define c_isascii to an alias.
42301         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
42302         defined. Undefine the macros before defining them, to avoid gcc
42303         warnings.
42304         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
42305         define NO_C_CTYPE_MACROS early.
42306
42307 2006-10-10  Bruno Haible  <bruno@clisp.org>
42308
42309         Make it possible to #define set_program_name to an alias.
42310         * lib/progname.c: Don't undefine set_program_name; instead, undefine
42311         ENABLE_RELOCATABLE early.
42312
42313 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42314
42315         Port to Tandem NSK OSS, which has 64-bit signed int but at most
42316         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
42317         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
42318         More generally, don't assume that 64-bit signed int is available
42319         if unsigned int is, and vice versa.
42320         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
42321         unsigned symbols, not on their signed counterparts.
42322         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
42323         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
42324         (UINT64_C, UINTMAX_C):
42325         Likewise.
42326         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
42327         unsigned counterparts.
42328         (Have_long_long, Unsigned): New macros.
42329         (Int): Renamed from INT.
42330         (strtoimax): Use the new macros.
42331         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
42332         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
42333         * modules/inttypes (inttypes.h): Substitute
42334         HAVE_UNSIGNED_LONG_LONG_INT.
42335         * modules/stdint (stdint.h): Likewise.
42336         (Files): Add m4/ulonglong.m4.
42337
42338 2006-10-10  Bruno Haible  <bruno@clisp.org>
42339
42340         Fix a gcc -Wshadow warning.
42341         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
42342         to 'bucket'.
42343         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
42344         gl_linked_indexof_from_to): Likewise.
42345         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
42346         Likewise.
42347         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
42348         Likewise.
42349         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
42350         Reported by Eric Blake.
42351
42352 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
42353
42354         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
42355         for NetBSD.  Problem reported by Bruno Haible.
42356
42357 2006-10-09  Jim Meyering  <jim@meyering.net>
42358
42359         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
42360         Patch from Bruno Haible.
42361
42362 2006-10-09  Jim Meyering  <jim@meyering.net>
42363
42364         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
42365         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
42366         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
42367
42368 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
42369
42370         Don't include <config.h> twice; this doesn't work in some cases,
42371         e.g., when config.h has "#define intmax_t long long int" and
42372         we include <config.h>, <inttypes.h>, <config.h> in that order.
42373         Problem reported by Matthew Woehlke in:
42374         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
42375         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
42376         * lib/fts-cycle.c: Don't include config.h.
42377         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
42378         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
42379         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
42380         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
42381         inttypes.h.
42382         * lib/xstrtoumax.c: Likewise.
42383         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
42384         __strtol and the like, so that this module is more like its siblings.
42385         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
42386         Remove; no longer needed now that we assume gnulib inttypes.h.
42387
42388 2006-10-08  Bruno Haible  <bruno@clisp.org>
42389
42390         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
42391         option.
42392
42393 2006-10-07  Jim Meyering  <jim@meyering.net>
42394
42395         * modules/inttypes (inttypes.h): Revert what seems to have been
42396         an inadvertent part of today's change: use "|", not "/" in the
42397         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
42398
42399 2006-10-07  Bruno Haible  <bruno@clisp.org>
42400
42401         * modules/sublist: New file.
42402
42403 2006-10-07  Bruno Haible  <bruno@clisp.org>
42404
42405         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
42406         * modules/argz (argz.h): Likewise.
42407         * modules/arpa_inet (arpa/inet.h): Likewise.
42408         * modules/byteswap (byteswap.h): Likewise.
42409         * modules/configmake (configmake.h): Likewise.
42410         * modules/fcntl (fcntl.h): Likewise.
42411         * modules/fnmatch (fnmatch.h): Likewise.
42412         * modules/getopt (getopt.h): Likewise.
42413         * modules/glob (glob.h): Likewise.
42414         * modules/inttypes (inttypes.h): Likewise.
42415         * modules/netinet_in (netinet/in.h): Likewise.
42416         * modules/poll (poll.h): Likewise.
42417         * modules/stdbool (stdbool.h): Likewise.
42418         * modules/stdint (stdint.h): Likewise.
42419         * modules/sys_select (sys/select.h): Likewise.
42420         * modules/sys_socket (sys/socket.h): Likewise.
42421         * modules/sys_stat (sys/stat.h): Likewise.
42422         * modules/sysexits (sysexits.h): Likewise.
42423         * modules/unistd (unistd.h): Likewise.
42424         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
42425         Add a "DO NOT EDIT" comment to the generated file.
42426         (func_import): Likewise for gnulib-comp.m4.
42427
42428 2006-10-07  Bruno Haible  <bruno@clisp.org>
42429
42430         * lib/gl_sublist.h: New file.
42431         * lib/gl_sublist.c: New file.
42432
42433 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
42434
42435         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
42436         name (relative to the original working directory) and the file
42437         name component (relative to the temporary working directory).  All
42438         callers changed.
42439         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
42440         * lib/mkdir-p.c (make_dir_parents): Likewise.
42441         * lib/mkdir-p.h (make_dir_parents): Likewise.
42442
42443 2006-10-06  Eric Blake  <ebb9@byu.net>
42444
42445         Define several macros for use by the clean-temp module.
42446         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
42447         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
42448         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
42449
42450         * lib/clean-temp.h (close_stream_temp): New declaration.
42451         * lib/clean-temp.c (includes): Pull in headers according to what
42452         other modules are in use.
42453         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
42454
42455 2006-10-06  Bruno Haible  <bruno@clisp.org>
42456
42457         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
42458         instead of fopen, fwriteerror.
42459
42460 2006-10-06  Bruno Haible  <bruno@clisp.org>
42461
42462         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
42463         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
42464         int.
42465         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
42466         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
42467         Return an error indicator.
42468         Suggested by Eric Blake.
42469
42470 2006-10-06  Bruno Haible  <bruno@clisp.org>
42471
42472         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
42473         Reported by Eric Blake.
42474
42475 2006-10-06  Bruno Haible  <bruno@clisp.org>
42476
42477         * modules/closeout (Description): Mention stderr too.
42478
42479 2006-10-06  Bruno Haible  <bruno@clisp.org>
42480         and Paul Eggert  <eggert@cs.ucla.edu>
42481
42482         * lib/closeout.c (close_stdout): Also close stderr.
42483         * lib/closeout.h: Update comment.
42484
42485 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42486
42487         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
42488         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
42489         * lib/dirchownmod.c: Include lchown.h.
42490         * lib/lchown.c: Don't include files that lchown.h now includes.
42491         Don't declare chown, since lchown.h now does that.
42492         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
42493         (lchown): Define to rpl_chown if lchown is declared but
42494         does not exist.  Declare using a prototype if lchown is not
42495         declared.  Add a copyright notice.
42496         * lib/mkstemp.h: Include <unistd.h>.
42497         * lib/openat.c: Include lchown.h.
42498
42499         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
42500         we now test for that separately.
42501         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
42502         rather than O_NOFOLLOW, when testing whether it's possible to
42503         avoid a race condition reliably.
42504         * lib/savewd.c (savewd_chdir): Likewise.
42505
42506         Remove macros that are no longer needed now that stdint.h is
42507         reliable.
42508         * lib/fsusage.c (UINTMAX_MAX): Remove.
42509         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
42510         * lib/utimecmp.c (SIZE_MAX): Remove.
42511
42512         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
42513
42514         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
42515         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
42516         O_NOATIME works.
42517
42518 2006-10-05  Bruno Haible  <bruno@clisp.org>
42519
42520         * lib/gl_list.h (gl_sortedlist_search_from_to,
42521         gl_sortedlist_indexof_from_to): New declarations.
42522         (gl_list_implementation): New fields sortedlist_search_from_to,
42523         sortedlist_indexof_from_to.
42524         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
42525         inline functions.
42526         * lib/gl_list.c (gl_sortedlist_search_from_to,
42527         gl_sortedlist_indexof_from_to): New functions.
42528         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
42529         function.
42530         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
42531         (gl_array_sortedlist_search_from_to): New function.
42532         (gl_array_list_implementation): Update.
42533         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
42534         function.
42535         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
42536         (gl_carray_sortedlist_search_from_to): New function.
42537         (gl_carray_list_implementation): Update.
42538         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
42539         gl_linked_sortedlist_indexof_from_to): New functions.
42540         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
42541         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
42542         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
42543         gl_tree_sortedlist_indexof_from_to): New functions.
42544         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
42545         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
42546         Update.
42547         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
42548         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
42549         Update.
42550
42551 2006-10-05  Bruno Haible  <bruno@clisp.org>
42552
42553         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
42554         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
42555         (struct gl_list_implementation): Add fields search_from_to,
42556         indexof_from_to. Remove fields search, indexof.
42557         (gl_list_search): Use the search_from_to method.
42558         (gl_list_search_from, gl_list_search_from_to): New functions.
42559         (gl_list_indexof): Use the indexof_from_to method.
42560         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
42561         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
42562         (gl_list_search_from, gl_list_search_from_to): New functions.
42563         (gl_list_indexof): Use the indexof_from_to method.
42564         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
42565         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
42566         gl_array_indexof. Add start_index, end_index arguments.
42567         (gl_array_search_from_to): Renamed from gl_array_search. Add
42568         start_index, end_index arguments.
42569         (gl_array_remove, gl_array_list_implementation): Update.
42570         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
42571         gl_carray_indexof. Add start_index, end_index arguments.
42572         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
42573         start_index, end_index arguments.
42574         (gl_carray_remove, gl_carray_list_implementation): Update.
42575         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
42576         gl_linked_search. Add start_index, end_index arguments.
42577         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
42578         start_index, end_index arguments.
42579         (gl_linked_remove): Update.
42580         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
42581         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
42582         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
42583         field to 'size_t'.
42584         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
42585         gl_tree_search. Add start_index, end_index arguments.
42586         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
42587         start_index, end_index arguments.
42588         (gl_tree_remove): Update.
42589         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
42590         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
42591         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
42592         function.
42593         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
42594         gl_tree_search. Add start_index, end_index arguments.
42595         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
42596         start_index, end_index arguments.
42597         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
42598         Update.
42599         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
42600
42601 2006-10-05  Bruno Haible  <bruno@clisp.org>
42602
42603         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
42604
42605         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
42606         fwriteerror_temp): New declarations.
42607         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
42608         (descriptors): New variable.
42609         (cleanup): First, close the descriptors.
42610         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
42611         fclose_temp, fwriteerror_temp): New functions.
42612
42613 2006-10-04  Jim Meyering  <jim@meyering.net>
42614
42615         * lib/fts.c (fts_open): Tiny comment change.
42616
42617 2006-10-04  Bruno Haible  <bruno@clisp.org>
42618
42619         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
42620         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
42621         gl_LOCK_BODY.
42622         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
42623         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
42624         gl_LOCK_EARLY_BODY.
42625         (gl_LOCK): Require gl_LOCK_BODY.
42626
42627 2006-10-04  Bruno Haible  <bruno@clisp.org>
42628
42629         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
42630         (gl_oset_search_atleast): New declaration.
42631         (struct gl_oset_implementation): Add field 'search_atleast'.
42632         (gl_oset_search_atleast): New inline function.
42633         * lib/gl_oset.c (gl_oset_search_atleast): New function.
42634         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
42635         (gl_array_oset_implementation): Update.
42636         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
42637         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
42638         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
42639
42640 2006-10-04  Bruno Haible  <bruno@clisp.org>
42641
42642         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
42643
42644 2006-10-03  Bruno Haible  <bruno@clisp.org>
42645
42646         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
42647         from gl_avltreehash_list_implementation.
42648
42649 2006-10-03  Bruno Haible  <bruno@clisp.org>
42650
42651         * lib/gl_oset.c (gl_oset_add): Fix return type.
42652
42653 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
42654
42655         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
42656
42657 2006-10-02  Eric Blake  <ebb9@byu.net>
42658
42659         * modules/strnlen (Depends-on): Add extensions.
42660
42661 2006-10-02  Eric Blake  <ebb9@byu.net>
42662
42663         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
42664         definition in 2.60+.
42665
42666 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
42667
42668         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
42669         checks.
42670
42671 2006-10-02  Bruno Haible  <bruno@clisp.org>
42672
42673         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
42674         to the AUTOMAKE_OPTIONS.
42675         Reported by Jim Meyering.
42676
42677 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
42678
42679         Work around bug in Solaris 10 /proc file system:
42680         /proc/self/fd/NNN/.. isn't the parent directory of
42681         the directory whose file descriptor is NNN.  This needs to
42682         be worked around at run time, not compile time, since a
42683         program might be built on Solaris 8, where things work, and
42684         run on Solaris 10.
42685         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
42686         to use the following interface instead:
42687         (OPENAT_BUFFER_SIZE): New macro.
42688         (openat_proc_name): New function.
42689         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
42690         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
42691         Likewise.
42692         * lib/openat-proc.c: New file.
42693         * modules/openat (Files): Add lib/openat-proc.c.
42694         (Depends-on): Add same-inode, stdbool.
42695         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
42696
42697 2006-09-29  Bruno Haible  <bruno@clisp.org>
42698
42699         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
42700         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
42701         argument. Set stdout_closed before testing for ferror, not after.
42702         (fwriteerror, fwriteerror_no_ebadf): New functions.
42703
42704 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42705
42706         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
42707
42708 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
42709
42710         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
42711         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
42712
42713 2006-09-28  Jim Meyering  <jim@meyering.net>
42714
42715         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
42716         Include <unistd.h>.
42717
42718 2006-09-28  Bruno Haible  <bruno@clisp.org>
42719
42720         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
42721         * modules/linkedhash-list (Depends-on): Likewise.
42722         * modules/rbtreehash-list (Depends-on): Likewise.
42723
42724 2006-09-28  Bruno Haible  <bruno@clisp.org>
42725
42726         * lib/strndup.h: Simplify the redefinition of strndup.
42727         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
42728         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
42729
42730 2006-09-28  Bruno Haible  <bruno@clisp.org>
42731
42732         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
42733         * lib/gl_linkedhash_list.c: Likewise.
42734         * lib/gl_rbtreehash_list.c: Likewise.
42735
42736 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
42737
42738         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
42739         getaddrinfo.
42740
42741         * lib/__fpending.h: Don't include <stdio_ext.h> unless
42742         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
42743         it causes <stdio_ext.h> to cause a compile-time error.
42744         Problem reported by Nelson H. F. Beebe.
42745         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
42746         of HAVE_DECL___PENDING.
42747
42748         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
42749         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
42750         declaration.
42751
42752 2006-09-27  Jim Meyering  <jim@meyering.net>
42753
42754         This file could end up with a definition for a function
42755         named __strndup, rather than rpl_strndup on a system with
42756         incomplete weak_alias support.
42757         * lib/strndup.c (strndup): Rename from __strndup.
42758         Remove #defines that used to map __strndup to strndup.
42759         Don't use K&R prototypes.
42760         Remove LIBC-related code, since this file is not sync'd with glibc.
42761         * lib/strndup.h: Revamp, accordingly.
42762         * m4/strndup.m4: Modernize.
42763
42764 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
42765
42766         * modules/savewd (Depends-on): Add 'raise'.
42767         * lib/savewd.c: Include <signal.h>, for 'raise'.
42768
42769 2006-09-26  Jim Meyering  <jim@meyering.net>
42770
42771         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
42772         when we detect Darwin 8.7.0's acl_get_file bug.
42773         Rearrange to perform the new (below) run-test while $LIBS
42774         contains any acl-related library.  Set USE_ACL at the end.
42775         (gl_ACL_GET_FILE): New function.
42776
42777 2006-09-26  Eric Blake  <ebb9@byu.net>
42778
42779         * lib/verror.c: Include <config.h> unconditionally.
42780
42781 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
42782
42783         * modules/clock-time (Maintainer): Add self.
42784         * modules/getlogin_r (Depends-on): Add extensions.
42785
42786 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42787
42788         * modules/clock-time: New module.
42789         * modules/nanosleep (Depends-on): Add clock-time.
42790         * modules/gethrxtime (Depends-on): Likewise.
42791         * modules/gettime (Depends-on): Likewise.
42792         * modules/settime (Depends-on): Likewise.
42793
42794         * modules/fts-lgpl: Depend on openat.
42795         * modules/mkancesdirs: Depend on savewd.
42796         * modules/mkdir-p: Likewise.
42797
42798 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42799
42800         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
42801
42802         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
42803         `gl_have_arbitrary_file_name_length_limit' to
42804         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
42805         actually works between configure runs.
42806
42807 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42808             Bruno Haible  <bruno@clisp.org>
42809
42810         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
42811
42812 2006-09-25  Jim Meyering  <jim@meyering.net>
42813
42814         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
42815         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
42816
42817 2006-09-25  Eric Blake  <ebb9@byu.net>
42818
42819         * gnulib-tool (func_import, func_create_testdir): Fix typos in
42820         exec's in 2006-09-18 patch when shuffling fds.
42821
42822 2006-09-25  Bruno Haible  <bruno@clisp.org>
42823
42824         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
42825         Reported by Jim Meyering.
42826
42827 2006-09-24  Jim Meyering  <jim@meyering.net>
42828
42829         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
42830         compare a pointer against a literal "0".  That caused failures with
42831         at least HP-UX's hpcc.
42832
42833 2006-09-22  Simon Josefsson  <jas@extundo.com>
42834
42835         * modules/gc-sha1:
42836         * modules/gc-md4:
42837         * modules/gc-hmac-sha1:
42838         * modules/gc-hmac-md5:
42839         * modules/gc-des:
42840         * modules/gc-arcfour: Distribute more files.
42841
42842 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42843
42844         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
42845         (gl_linked_iterator_from_to): Initialize struct completely.
42846         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
42847         (gl_tree_iterator_from_to): Likewise
42848         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
42849         * lib/gl_array_list.c [lint] (gl_array_iterator)
42850         (gl_array_iterator_from_to): Likewise.
42851         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
42852         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
42853         (gl_carray_iterator_from_to): Likewise.
42854
42855         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
42856         * lib/md4.c (md4_process_block): Remove unused variable.
42857         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
42858         parentheses for clarity.
42859
42860 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42861
42862         * modules/bison-i18n (Depends-on): Add gettext.
42863
42864 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42865
42866         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
42867         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
42868         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
42869         also add missing comma that caused broken test.
42870         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
42871         stdlib.h, for `abort'.
42872         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
42873         variables.
42874         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
42875         include unistd.h if present, for `rmdir'.
42876         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
42877         variables.
42878         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
42879         in the process include standard headers for prototypes.
42880         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
42881         gets declared on GNU/Linux.
42882         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
42883         unistd.h, for `rmdir'.
42884         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
42885
42886         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
42887         always true.
42888         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
42889
42890         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
42891
42892 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42893
42894         * gnulib-tool (func_version): Create output all at once.  This
42895         may help avoid triggering unnecessary SIGPIPEs, and at any
42896         rate it doesn't hurt.
42897
42898 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42899             Bruno Haible  <bruno@clisp.org>
42900
42901         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
42902         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
42903         * m4/signed.m4 (bh_C_SIGNED): Likewise.
42904
42905         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
42906         (gl_FUNC_VASPRINTF): Invoke it.
42907
42908 2006-09-22  Bruno Haible  <bruno@clisp.org>
42909
42910         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
42911         getloadavg.c as first argument.
42912
42913 2006-09-22  Bruno Haible  <bruno@clisp.org>
42914
42915         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
42916         at the beginning of the gl_INIT macro.
42917         * modules/getloadavg (configure.ac): Pass $gl_source_base to
42918         gl_GETLOADAVG.
42919
42920 2006-09-22  Bruno Haible  <bruno@clisp.org>
42921
42922         * gnulib-tool (func_create_megatestdir): Don't include the config-h
42923         module.
42924         Suggested by Ralf Wildenhues.
42925
42926 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
42927
42928         Import this patch from libc:
42929
42930         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
42931
42932         * lib/regex_internal.c (re_string_reconstruct): Handle
42933         offset < pstr->valid_raw_len && pstr->offsets_needed case.
42934         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
42935         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
42936         re_string_context_at.
42937
42938         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
42939         now requires it.
42940         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
42941         gl_REGEX now does it for us.
42942         (gl_REGEX): Add test taken from
42943         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
42944
42945         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
42946         Check that large offsets work.  Modernize Autoconf usages.
42947         Prefer "yes" to mean a good thing rather than a bad.
42948         Don't put "#define mkstemp" in config.h, as this might interfere
42949         with standard system headers that "#define mkstemp mkstemp64".
42950
42951         * modules/mkstemp (Depends-on): Add extensions, so that
42952         mkstemp is visible on some platforms.
42953         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
42954         (Include): Change to "mkstemp.h" from <stdlib.h>.
42955         (Files): Add mkstemp.h.
42956
42957         * lib/mkstemp.h: New file, since some standard headers
42958         #define mkstemp.
42959         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
42960         Include "mkstemp.h".
42961         Make the _LIBC code resemble glibc original more,
42962         e.g., use K&R style.
42963         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
42964         (mkstemp): Remove, since mkstemp.h does this for us.
42965         * lib/stdlib--.h: Include mkstemp.h.
42966
42967         Import this patch from libc:
42968
42969         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
42970
42971         * lib/tempname.c (__gen_tempname): Change attempts_min
42972         into a macro.  Use preprocessor to decide how to initialize
42973         attempts [Coverity CID 67].
42974
42975 2006-09-20  Bruno Haible  <bruno@clisp.org>
42976
42977         * lib/mkdtemp.c: Import from libc.
42978         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
42979                 * sysdeps/posix/tempname.c (__gen_tempname): Change
42980                 attempts_min into a macro.  Use preprocessor to decide how to
42981                 initialize attempts [Coverity CID 67].
42982         2001-11-27  Paul Eggert  <eggert@twinsun.com>
42983                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
42984                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
42985
42986 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42987
42988         * gnulib-tool (func_exit): New function, to allow to pass the
42989         exit status portably through the trap.  Use everywhere.
42990         (--help, --version): Signal a write error.
42991         (trap): catch SIGPIPE, for write errors.
42992         Exit at the end of the trap, with the correct exit status.
42993
42994 2006-09-19  Karl Berry  <karl@gnu.org>
42995
42996         * doc/gnulib.texi: note about the license texinfo files.
42997
42998 2006-09-19  Eric Blake  <ebb9@byu.net>
42999
43000         * gnulib-tool: Avoid space-tab.
43001
43002 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
43003
43004         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
43005         that prevented coreutils 6.1 from building.  Problem reported
43006         by Petter Reinholdtsen.
43007
43008 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
43009
43010         * gnulib-tool (avoidlist): Fix typo that broke options like
43011         --avoid=lock that are used by coreutils bootstrap.
43012
43013 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
43014
43015         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
43016         more systematically.
43017
43018 2006-09-18  Jim Meyering  <jim@meyering.net>
43019
43020         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
43021
43022 2006-09-18  Bruno Haible  <bruno@clisp.org>
43023
43024         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
43025
43026 2006-09-18  Bruno Haible  <bruno@clisp.org>
43027
43028         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
43029         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
43030         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
43031         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
43032         * m4/gettext.m4: Require autoconf >= 2.52.
43033         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
43034         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
43035         of gl_cv_header_inttypes_h.
43036
43037 2006-09-18  Bruno Haible  <bruno@clisp.org>
43038
43039         * lib/javaversion.c: Include configmake.h.
43040
43041 2006-09-18  Bruno Haible  <bruno@clisp.org>
43042
43043         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
43044         avoid that the while loops be executed in a subshell.
43045
43046 2006-09-18  Bruno Haible  <bruno@clisp.org>
43047
43048         * MODULES.html.sh (func_module): Break long lines.
43049         Suggested by Bruce Korb <bkorb@gnu.org>.
43050
43051 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43052
43053         Speed up by a factor of 1.12.
43054         * gnulib-tool (nl): New variable.
43055         (func_import): Rewrite include directive extraction to only read each
43056         directive once.
43057
43058 2006-09-17  Bruno Haible  <bruno@clisp.org>
43059
43060         * modules/javaversion (Makefile.am): Remove DEFS setting.
43061         (Depends-on): Add configmake, for PKGDATADIR definition.
43062
43063 2006-09-17  Bruno Haible  <bruno@clisp.org>
43064
43065         * gnulib-tool (func_create_testdir): Rewrite all files at once.
43066
43067 2006-09-17  Bruno Haible  <bruno@clisp.org>
43068
43069         * gnulib-tool (func_append): New function, stolen from libtool.m4.
43070         (func_modules_transitive_closure, func_modules_add_dummy,
43071         func_modules_to_filelist, func_import, func_create_testdir,
43072         func_create_megatestdir, ...): Use it wherever possible.
43073         Suggested by Ralf Wildenhues.
43074
43075 2006-09-16  Karl Berry  <karl@gnu.org>
43076
43077         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
43078         to avoid sectioning errors.
43079         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
43080         [ifinfo]: blank line after @center-ed titles.
43081         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
43082         Spell FSF address consistently with others.
43083         (These changes approved by rms.)
43084
43085 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43086
43087         Speed up by a factor of 1.61.
43088         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
43089         already checked module names again.
43090
43091 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43092
43093         Speed up by a factor of 1.13.
43094         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
43095         for new_files, and the input to func_add_or_update.
43096
43097 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43098
43099         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
43100         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
43101
43102 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43103
43104         * modules/mkancesdirs (Depends-on): Add fcntl.
43105         * modules/savewd: New file.
43106         * MODULES.html.sh (File system functions): Add savewd.
43107
43108         * modules/configmake (Makefile.am): Add support for the
43109         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
43110
43111 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43112
43113         * m4/savewd.m4: New file.
43114
43115 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43116
43117         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
43118         (dirchownmod): New arg FD.  All callers changed.
43119         Use FD rather than opening the directory ourself, as opening is
43120         now the caller's responsibility.
43121         * lib/dirchownmod.h: Likewise.
43122         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
43123         hosts that require <sys/types.h> before <sys/stat.h>.  Include
43124         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
43125         (test_dir): Remove.
43126         (mkancesdirs): Return length of prefix of FILE that has already
43127         been made, or -2 if there is a child doing the work.  Redo
43128         algorithm so that it is O(N) rather than O(N**2).  Optimize away
43129         ".", and treat ".." specially since it might stray back into
43130         already-created areas.  Use a subprocess if necessary.  New arg
43131         WD; all users changed.  MAKE_DIR function should now return 1
43132         if it creates a directory that is not readable.  Return -2 if
43133         a child process is spun off.
43134         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
43135         Adjust signature to match code.
43136         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
43137         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
43138         all users changed.
43139         * lib/savewd.c, lib/savewd.h: New files.
43140
43141 2006-09-15  Jim Meyering  <jim@meyering.net>
43142
43143         * modules/rename-dest-slash: New module.
43144         * MODULES.html.sh (posix_compat): Add it here.
43145
43146         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
43147
43148 2006-09-15  Jim Meyering  <jim@meyering.net>
43149
43150         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
43151         file.
43152
43153         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
43154
43155 2006-09-15  Jim Meyering  <jim@meyering.net>
43156
43157         * lib/rename-dest-slash.c (has_trailing_slash): Use
43158         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
43159         (rpl_rename_dest_slash): Perform the cheaper trailing slash
43160         test before testing whether SRC is a directory.
43161         Suggestions from Bruno Haible.
43162
43163         Avoid a warning about an unused variable.
43164         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
43165         into the #ifdef block where it's used.
43166
43167         * lib/rename-dest-slash.c: New file.
43168
43169 2006-09-14  Bruno Haible  <bruno@clisp.org>
43170
43171         * lib/allocsa.c: Include <config.h> unconditionally.
43172         * lib/asnprintf.c: Likewise.
43173         * lib/asprintf.c: Likewise.
43174         * lib/c-strcasecmp.c: Likewise.
43175         * lib/c-strcasestr.c: Likewise.
43176         * lib/c-strncasecmp.c: Likewise.
43177         * lib/c-strstr.c: Likewise.
43178         * lib/classpath.c: Likewise.
43179         * lib/clean-temp.c: Likewise.
43180         * lib/concatpath.c: Likewise.
43181         * lib/copy-file.c: Likewise.
43182         * lib/csharpcomp.c: Likewise.
43183         * lib/csharpexec.c: Likewise.
43184         * lib/execute.c: Likewise.
43185         * lib/fatal-signal.c: Likewise.
43186         * lib/findprog.c: Likewise.
43187         * lib/fwriteerror.c: Likewise.
43188         * lib/gl_array_list.c: Likewise.
43189         * lib/gl_array_oset.c: Likewise.
43190         * lib/gl_avltree_list.c: Likewise.
43191         * lib/gl_avltree_oset.c: Likewise.
43192         * lib/gl_avltreehash_list.c: Likewise.
43193         * lib/gl_carray_list.c: Likewise.
43194         * lib/gl_linked_list.c: Likewise.
43195         * lib/gl_linkedhash_list.c: Likewise.
43196         * lib/gl_list.c: Likewise.
43197         * lib/gl_oset.c: Likewise.
43198         * lib/gl_rbtree_list.c: Likewise.
43199         * lib/gl_rbtree_oset.c: Likewise.
43200         * lib/gl_rbtreehash_list.c: Likewise.
43201         * lib/imaxabs.c: Likewise.
43202         * lib/imaxdiv.c: Likewise.
43203         * lib/javacomp.c: Likewise.
43204         * lib/javaexec.c: Likewise.
43205         * lib/javaversion.c: Likewise.
43206         * lib/linebreak.c: Likewise.
43207         * lib/localcharset.c: Likewise.
43208         * lib/lock.c: Likewise.
43209         * lib/mbchar.c: Likewise.
43210         * lib/mbswidth.c: Likewise.
43211         * lib/mkdtemp.c: Likewise.
43212         * lib/pipe.c: Likewise.
43213         * lib/printf-args.c: Likewise.
43214         * lib/printf-parse.c: Likewise.
43215         * lib/progname.c: Likewise.
43216         * lib/progreloc.c: Likewise.
43217         * lib/readlink.c: Likewise.
43218         * lib/sh-quote.c: Likewise.
43219         * lib/stpcpy.c: Likewise.
43220         * lib/stpncpy.c: Likewise.
43221         * lib/strcasecmp.c: Likewise.
43222         * lib/strcasestr.c: Likewise.
43223         * lib/strcspn.c: Likewise.
43224         * lib/striconv.c: Likewise.
43225         * lib/strncasecmp.c: Likewise.
43226         * lib/strnlen1.c: Likewise.
43227         * lib/strstr.c: Likewise.
43228         * lib/strtok_r.c: Likewise.
43229         * lib/tls.c: Likewise.
43230         * lib/tmpdir.c: Likewise.
43231         * lib/unicodeio.c: Likewise.
43232         * lib/unsetenv.c: Likewise.
43233         * lib/vasnprintf.c: Likewise.
43234         * lib/vasprintf.c: Likewise.
43235         * lib/wait-process.c: Likewise.
43236         * lib/xallocsa.c: Likewise.
43237         * lib/xsetenv.c: Likewise.
43238         * lib/xstriconv.c: Likewise.
43239
43240 2006-09-13  Simon Josefsson  <jas@extundo.com>
43241
43242         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
43243         that internally, suggested by Ralf Wildenhues
43244         <Ralf.Wildenhues@gmx.de>.
43245
43246 2006-09-13  Simon Josefsson  <jas@extundo.com>
43247
43248         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
43249         @LIBOBJS@.
43250         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43251
43252 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
43253
43254         * lib/_fpending.c: Include <config.h> unconditionally, since we no
43255         longer worry about uses that don't define HAVE_CONFIG_H.
43256         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
43257         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
43258         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
43259         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
43260         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
43261         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
43262         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
43263         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
43264         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
43265         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
43266         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
43267         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
43268         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
43269         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
43270         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
43271         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
43272         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
43273         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
43274         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
43275         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
43276         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
43277         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
43278         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
43279         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
43280         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
43281         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
43282         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
43283         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
43284         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
43285         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
43286         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
43287         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
43288         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
43289         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
43290         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
43291         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
43292         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
43293         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
43294         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
43295         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
43296         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
43297         Likewise.
43298
43299 2006-09-13  Eric Blake  <ebb9@byu.net>
43300
43301         * lib/getopt.c: Fix typo in last commit.
43302
43303 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
43304
43305         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
43306         dgettext.
43307
43308 2006-09-12  Jim Meyering  <jim@meyering.net>
43309
43310         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
43311         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
43312         Reported by Nelson H. F. Beebe.
43313
43314 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
43315
43316         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
43317         program_invocation_name and program_invocation_short_name are
43318         initialized.
43319         * lib/argp-namefrob.h: Move declarations of program_invocation_name
43320         and program_invocation_short_name to argp.h, so they are visible
43321         to user programs.
43322         * lib/argp.h: Likewise
43323
43324 2006-09-10  Bruno Haible  <bruno@clisp.org>
43325
43326         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
43327         m4/inttypes_h.m4, m4/uintmax_t.m4.
43328
43329 2006-09-10  Bruno Haible  <bruno@clisp.org>
43330
43331         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
43332         gl_AC_TYPE_UINTMAX_T.
43333
43334 2006-09-10  Bruno Haible  <bruno@clisp.org>
43335
43336         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
43337
43338 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
43339
43340         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
43341         convention.  Text proposed by Bruno Haible.
43342         (struct argp_option): Document the use of N_() wrappers.
43343
43344         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
43345         '\v', and translate the two parts separately, instead of feeding
43346         the whole string to gettext.  This allows to exclude
43347         '\v' from the strings visible to the translator by writing doc
43348         strings as N_("..") "\v" N_("..").
43349
43350 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
43351
43352         * config/srclist.txt: Undo latest change; the bug was fixed.
43353
43354 2006-09-09  Bruno Haible  <bruno@clisp.org>
43355
43356         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
43357         assignments if building a library without libtool.
43358         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
43359         in func_emit_lib_Makefile_am.
43360         (func_import): When building a static library libfoo.a, arrange to
43361         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
43362         (func_create_testdir): Likewise.
43363         * modules/gc (configure.ac, Makefile.am): If building statically,
43364         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
43365         * modules/iconvme (configure.ac, Makefile.am): Likewise.
43366         * modules/striconv (configure.ac, Makefile.am): Likewise.
43367         Based on a suggestion by Ralf Wildenhues.
43368
43369 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43370
43371         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
43372         Check for unistd.h too, since Autoconf doesn't assume POSIX.
43373         Also:
43374
43375         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43376         Add year_2050_test to catch glibc bug 2821
43377         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
43378
43379         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
43380         Prefer #ifdef to #if.
43381
43382         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
43383         Return from 'main' instead of calling 'exit'.
43384
43385 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43386
43387         * lib/mktime.c (guess_time_tm): Fix bug where mktime
43388         returned the maximum time_t value rather than (time_t) -1.
43389         Problem originally reported by William Bardwell
43390         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
43391
43392         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
43393         Moved to here ...
43394         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
43395         ... from here.
43396
43397 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43398
43399         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
43400         2821 is fixed.
43401
43402 2006-09-08  Jim Meyering  <jim@meyering.net>
43403
43404         Don't make generated files read-only.  That would bother too many
43405         people.  However, do retain the ability to work when targets are
43406         read-only: remove the destination and temporary files before writing
43407         them (when generated via sed or echo), or by using the -f option for
43408         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
43409         * modules/alloca-opt, modules/argz, modules/arpa_inet:
43410         * modules/byteswap, modules/configmake, modules/fcntl:
43411         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
43412         * modules/localcharset, modules/netinet_in, modules/poll:
43413         * modules/stdbool, modules/stdint, modules/sys_select:
43414         * modules/sys_socket, modules/sys_stat, modules/sysexits:
43415
43416 2006-09-08  Jim Meyering  <jim@meyering.net>
43417
43418         Avoid new build failure on FreeBSD 6.0.
43419         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
43420         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
43421         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
43422
43423 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43424
43425         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
43426
43427 2006-09-07  Jim Meyering  <jim@meyering.net>
43428
43429         Fix global typo in last change: use chmod u-w, not chmod u-x.
43430         Spotted by Paul Eggert and Bruce Korb.
43431         * modules/alloca-opt, modules/argz, modules/arpa_inet:
43432         * modules/byteswap, modules/configmake, modules/fcntl:
43433         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
43434         * modules/localcharset, modules/netinet_in, modules/poll:
43435         * modules/stdbool, modules/stdint, modules/sys_select:
43436         * modules/sys_socket, modules/sys_stat, modules/sysexits:
43437
43438 2006-09-06  Jim Meyering  <jim@meyering.net>
43439
43440         Make generated files be read-only.
43441         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
43442         Ensure that each generated file is now read-only.
43443         * modules/argz: Likewise.
43444         * modules/arpa_inet: Likewise.
43445         * modules/byteswap: Likewise.
43446         * modules/configmake: Likewise.
43447         * modules/fcntl: Likewise.
43448         * modules/fnmatch: Likewise.
43449         * modules/getopt: Likewise.
43450         * modules/glob: Likewise.
43451         * modules/inttypes: Likewise.
43452         * modules/netinet_in: Likewise.
43453         * modules/poll: Likewise.
43454         * modules/stdbool: Likewise.
43455         * modules/stdint: Likewise.
43456         * modules/sys_select: Likewise.
43457         * modules/sys_socket: Likewise.
43458         * modules/sys_stat: Likewise.
43459         * modules/sysexits: Likewise.
43460         * modules/localcharset: Same as above, but continue using temporary
43461         file named "t-$@" (why different?) rather than the "$@-t" used
43462         everywhere else.
43463
43464         * modules/sysexits (Makefile.am): Replace literal occurrences
43465         of "sysexit.h" more readable, and more consistent, "$@".
43466
43467 2006-09-06  Bruno Haible  <bruno@clisp.org>
43468
43469         * modules/striconv: New file.
43470         * modules/xstriconv: New file.
43471         * MODULES.html.sh (Internationalization functions): Add striconv,
43472         xstriconv.
43473
43474 2006-09-06  Bruno Haible  <bruno@clisp.org>
43475
43476         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
43477         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
43478         not using libtool correctly.
43479
43480 2006-09-06  Bruno Haible  <bruno@clisp.org>
43481
43482         * lib/striconv.h: New file.
43483         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
43484         iconvstring.c.
43485         * lib/xstriconv.h: New file.
43486         * lib/xstriconv.c: New file.
43487
43488 2006-09-06  Bruno Haible  <bruno@clisp.org>
43489
43490         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
43491         lib_..._LDFLAGS.
43492
43493 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43494
43495         * lib/argz_.h: Sync from Libtool.
43496
43497         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
43498                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
43499
43500         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
43501
43502 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
43503
43504         * modules/trim: New file.
43505
43506 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
43507
43508         * lib/trim.h: New file.
43509         * lib/trim.c: New file.
43510
43511 2006-09-05  Bruno Haible  <bruno@clisp.org>
43512
43513         * MODULES.html.sh (String handling): Add trim.
43514
43515 2006-09-04  Karl Berry  <karl@gnu.org>
43516
43517         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
43518         until next release.
43519
43520 2006-09-03  Bruno Haible  <bruno@clisp.org>
43521
43522         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
43523         correctly.
43524
43525 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43526
43527         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
43528         not gl_GETLOADAVG.  Omit unneeded semicolons.
43529         Problems reported by Ralf Wildenhues in
43530         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
43531         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
43532         at the end, which is the usual gnulib style.
43533
43534         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
43535         of doing all the work ourselves.
43536         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
43537         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
43538
43539 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43540
43541         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
43542         Problem reported by Ralf Wildenhues in
43543         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
43544
43545         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
43546         HAVE_STRUCT_STATFS_F_FSTYPENAME.
43547
43548 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43549
43550         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
43551         yesterday's patch by changing test -n to test -z.
43552
43553 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43554
43555         * modules/getloadavg (Files): Add m4/getloadavg.m4.
43556         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
43557         the former is now obsolescent.
43558
43559         * modules/chdir-long (Depends-on): Add fcntl.
43560
43561 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43562
43563         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
43564         obsolescent, and programs should use gnulib instead.
43565         * m4/getloadavg.m4: New file, with contents taken from Autoconf
43566         but with prefixes changed.
43567
43568 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43569
43570         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
43571         or stdbool.h, because they might not exist while configuring.
43572
43573         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
43574         Don't include unistd.h or limits.h; not needed, since chdir-long.h
43575         does that for us.
43576         (O_DIRECTORY): Remove.
43577
43578 2006-08-31  Eric Blake  <ebb9@byu.net>
43579
43580         * gnulib-tool: Don't let emacs change spaces to TAB.
43581
43582 2006-08-31  Bruno Haible  <bruno@clisp.org>
43583
43584         * gnulib-tool: When calling func_import more than once, do it in a
43585         subshell.
43586         Reported by Eric Blake <ebb9@byu.net>.
43587
43588 2006-08-31  Bruno Haible  <bruno@clisp.org>
43589
43590         * gnulib-tool (nl): Remove variable.
43591         (sed_transform_lib_file): Use more robust test for config-h module.
43592         (func_import): Fix typo in 2006-08-25 patch.
43593
43594 2006-08-31  Bruno Haible  <bruno@clisp.org>
43595
43596         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
43597         specified, augment Makefile.am variables instead of assigning them.
43598
43599 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43600
43601         Work around a bug in both the Linux and SunOS 64-bit kernels:
43602         nanosleep mishandles sleeps for longer than 2**31 seconds.
43603         Problem reported by Frank v Waveren in
43604         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
43605         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
43606         Check for nanosleep bug.
43607         (LIB_NANOSLEEP): Append clock_gettime library if needed.
43608
43609 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43610
43611         Work around a bug in both the Linux and SunOS 64-bit kernels:
43612         nanosleep mishandles sleeps for longer than 2**31 seconds.
43613         Problem reported by Frank v Waveren in
43614         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
43615         * lib/nanosleep.c (BILLION): New constant.
43616         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
43617         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
43618         implementation.
43619
43620 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43621
43622         * modules/nanosleep (Depends-on): Add gettime.
43623
43624 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
43625         and Simon Josefsson  <jas@extundo.com>
43626         and Oskar Liljeblad  <oskar@osk.mine.nu>
43627
43628         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
43629         * gnulib-tool (func_import): New license type 'unmodifiable license
43630         text'.
43631         * modules/fdl: Use it.  Longer description.
43632         * module/gpl, module/lgpl: New files.
43633
43634 2006-08-30  Jim Meyering  <jim@meyering.net>
43635
43636         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
43637         shadowing the parameter.
43638
43639 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43640
43641         Sync from Libtool:
43642
43643         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43644
43645         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
43646         sharing with gnulib.  Report by Eric Blake.
43647
43648 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43649
43650         * modules/isapipe: New file.
43651         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
43652
43653 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43654
43655         * modules/configmake (Makefile.am): Add a comment, and omit
43656         the CONFIGMAKE_ prefix from generated macro names.  Suggested
43657         by Bruno Haible.
43658
43659 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43660
43661         * m4/isapipe.m4: New file.
43662
43663 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
43664
43665         * lib/isapipe.c, lib/isapipe.h: New files.
43666
43667 2006-08-29  Jim Meyering  <jim@meyering.net>
43668
43669         * modules/configmake (Makefile.am): Make configmake.h depend on
43670         Makefile.  Otherwise, a stale configmake.h could hang around.
43671
43672 2006-08-29  Eric Blake  <ebb9@byu.net>
43673
43674         * lib/error.c (error_at_line, print_errno_message): Match libc, after
43675         resolution of upstream bug 3044.
43676
43677 2006-08-29  Bruno Haible  <bruno@clisp.org>
43678
43679         * modules/localcharset (Depends-on): Add configmake.
43680         (Makefile.am): Remove setting of LIBDIR through DEFS.
43681
43682 2006-08-29  Bruno Haible  <bruno@clisp.org>
43683
43684         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
43685         defined.
43686
43687 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43688
43689         * modules/fcntl: New file.
43690         * modules/chdir-safer (Depends-on): Add fcntl.
43691         * modules/fts: Likewise.
43692         * modules/mkdir-p: Likewise.
43693
43694         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
43695         This undoes the most recent change, since we're now addressing the
43696         problem in a different way.
43697
43698         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
43699         into output, since the output might be called Makefile.am even
43700         if $makefile_name is something different.
43701         (func_import): Use $makefile_am rather than
43702         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
43703         empty.
43704
43705         * modules/inttypes (Files): Add m4/inttypes-h.m4.
43706
43707 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43708
43709         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
43710         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
43711         recent change to stdint.m4, since we're now addressing the problem in a
43712         different way.
43713
43714 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43715
43716         * m4/fcntl_h.m4: New file.
43717
43718 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
43719
43720         * lib/fcntl_.h: New file.
43721         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
43722         the fcntl module.
43723         * lib/dirchownmod.c: Likewise.
43724         * lib/fts.c: Likewise.
43725
43726         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
43727         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
43728         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
43729         just before including <inttypes.h>, to avoid circular inclusion.
43730
43731 2006-08-28  Jim Meyering  <jim@meyering.net>
43732
43733         * doc/visibility.texi: Actually read and correct the grammar of the
43734         sentence affected by yesterday's change.
43735
43736 2006-08-28  Eric Blake  <ebb9@byu.net>
43737
43738         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
43739         needs wrapper.
43740
43741 2006-08-28  Eric Blake  <ebb9@byu.net>
43742
43743         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
43744
43745 2006-08-28  Eric Blake  <ebb9@byu.net>
43746
43747         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
43748
43749 2006-08-28  Bruno Haible  <bruno@clisp.org>
43750
43751         * modules/c-strstr: New file, from GNU gettext.
43752         * MODULES.html.sh (String handling): Add c-strstr.
43753
43754 2006-08-28  Bruno Haible  <bruno@clisp.org>
43755
43756         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
43757         macros.
43758         Reported by Eric Blake.
43759
43760 2006-08-28  Bruno Haible  <bruno@clisp.org>
43761
43762         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
43763         (VASNPRINTF): Return a string of length > INT_MAX without failing.
43764         * lib/vasprintf.c: Include errno.h, limits.h.
43765         (EOVERFLOW): New fallback definition.
43766         (vasprintf): Test here whether the string length is > INT_MAX.
43767         * lib/vsnprintf.c: Include errno.h, limits.h.
43768         (EOVERFLOW): New fallback definition.
43769         (vsnprintf): Fix bug when generated string was too long for the buffer.
43770         Test here whether the string length is > INT_MAX.
43771
43772 2006-08-28  Bruno Haible  <bruno@clisp.org>
43773
43774         * lib/inttypes_.h (SCNX*): Remove definitions.
43775         Reported by Eric Blake.
43776
43777 2006-08-28  Bruno Haible  <bruno@clisp.org>
43778
43779         * lib/c-strstr.h: New file, from GNU gettext.
43780         * lib/c-strstr.c: New file, from GNU gettext.
43781
43782 2006-08-28  Bruno Haible  <bruno@clisp.org>
43783
43784         * gnulib-tool: Reorder some statements.
43785
43786 2006-08-28  Bruno Haible  <bruno@clisp.org>
43787
43788         * gnulib-tool: New option --makefile-name.
43789         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
43790         $makefile_name.
43791         (func_import): Write $makefile_name to the cache file, and read it from
43792         there unless explicitly specified. Use $makefile_name as file name
43793         instead of Makefile.am. Adjust the recommendations accordingly.
43794
43795 2006-08-28  Bruno Haible  <bruno@clisp.org>
43796
43797         * gnulib-tool (func_verify_module): Check against misapplying patch.
43798
43799 2006-08-28  Bruno Haible  <bruno@clisp.org>
43800
43801         * gnulib-tool (func_relativize, func_relconcat): New functions.
43802         Give an error if --local-dir is given with --update.
43803         Remove trailing slashes from $local_gnulib_dir.
43804         (func_import): Store the relativized $local_gnulib_dir in
43805         gnulib-cache.m4, and read it from there if not specified explicitly.
43806
43807 2006-08-28  Bruno Haible  <bruno@clisp.org>
43808
43809         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
43810         is the current directory. Respect also $local_gnulib_dir.
43811
43812 2006-08-28  Bruno Haible  <bruno@clisp.org>
43813             Simon Josefsson  <jas@extundo.com>
43814
43815         BeOS portability.
43816         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
43817
43818 2006-08-27  Jim Meyering  <jim@meyering.net>
43819
43820         * doc/visibility.texi: Remove duplicate word: "pointer".
43821
43822 2006-08-26  Bruno Haible  <bruno@clisp.org>
43823
43824         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
43825         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
43826         (Makefile.am): Create inttypes.h from inttypes_.h.
43827         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
43828
43829         * modules/imaxabs: New file.
43830
43831         * modules/imaxdiv: New file.
43832
43833 2006-08-26  Bruno Haible  <bruno@clisp.org>
43834
43835         * m4/inttypes.m4: New file.
43836         * m4/_inttypes_h.m4: Remove file.
43837         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
43838         PRI_MACROS_BROKEN.
43839         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
43840
43841         * m4/imaxabs.m4: New file.
43842
43843         * m4/imaxdiv.m4: New file.
43844
43845 2006-08-26  Bruno Haible  <bruno@clisp.org>
43846
43847         * lib/inttypes_.h: New file.
43848         * lib/inttypes.h: Remove file.
43849         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
43850
43851         * lib/imaxabs.c: New file.
43852
43853         * lib/imaxdiv.c: New file.
43854
43855 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43856
43857         New config-h module, so that "make" output needn't be cluttered
43858         by -DHAVE_CONFIG_H.
43859         * MODULES.html.sh (Support for building libraries and executables):
43860         Add config-h.
43861         * modules/config-h: New file.
43862         * gnulib-tool (nl, sed_transform_lib_file): New vars.
43863         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
43864         the config-h module is used.
43865
43866         New configmake module, so that "make" output needn't be cluttered
43867         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
43868         * MODULES.html.sh (Support for building libraries and executables):
43869         Add configmake.
43870         * modules/configmake: New file.
43871
43872 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43873
43874         * m4/config-h.m4: New file.
43875
43876 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43877
43878         * config/srclist.txt: Add elisp-comp.
43879
43880 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43881
43882         * MODULES.html.sh (Support for building libraries and executables):
43883         Add elisp-comp.
43884         * build-aux/elisp-comp: New file.
43885         * modules/elisp-comp: New file.
43886
43887 2006-08-24  Bruno Haible  <bruno@clisp.org>
43888
43889         * gnulib-tool (func_create_testdir): Use non-default values of
43890         sourcebase and m4base.
43891
43892 2006-08-24  Bruno Haible  <bruno@clisp.org>
43893
43894         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
43895         HTML structure.
43896
43897 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
43898
43899         * modules/openat (Depends-on): Add lchown.
43900
43901 2006-08-23  Bruno Haible  <bruno@clisp.org>
43902
43903         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
43904         of gl_LOCK_EARLY instead of gl_LOCK.
43905
43906 2006-08-23  Bruno Haible  <bruno@clisp.org>
43907
43908         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
43909         on OSF/1 to no.
43910         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
43911
43912 2006-08-23  Bruno Haible  <bruno@clisp.org>
43913
43914         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
43915         as unusable.
43916
43917         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
43918         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
43919         (gl_LOCK): New macro.
43920
43921 2006-08-22  Simon Josefsson  <jas@extundo.com>
43922
43923         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
43924         to md5 module.
43925
43926 2006-08-22  Simon Josefsson  <jas@extundo.com>
43927
43928         * MODULES.html.sh: Add "Support for maintaining and release
43929         projects".
43930
43931         * build-aux/gnupload: New file, from coreutils.
43932
43933 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43934
43935         Avoid the need for AC_LIBSOURCES in m4 macros.
43936         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
43937         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
43938         * modules/check-version (EXTRA_DIST): Add check-version.h.
43939         * modules/crc (EXTRA_DIST): Add crc.h.
43940         * modules/des (EXTRA_DIST): Add des.h.
43941         * modules/gc (EXTRA_DIST): Add gc.h.
43942         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
43943         * modules/getline (EXTRA_DIST): Add getline.h.
43944         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
43945         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
43946         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
43947         * modules/md2 (EXTRA_DIST): Add md2.h.
43948         * modules/md4 (EXTRA_DIST): Add md4.h.
43949         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
43950         * modules/read-file (EXTRA_DIST): Add read-file.h.
43951         * modules/readline (EXTRA_DIST): Add readline.h.
43952         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
43953         rijndael-api-fst.h.
43954
43955 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43956
43957         * m4/rijndael.m4 (gl_ARCFOUR):
43958         * m4/arctwo.m4 (gl_ARCTWO):
43959         * m4/check-version.m4 (gl_CHECK_VERSION):
43960         * m4/crc.m4 (gl_CRC):
43961         * m4/des.m4 (gl_DES):
43962         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
43963         * m4/gc.m4 (gl_GC):
43964         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
43965         * m4/getline.m4 (gl_FUNC_GETLINE):
43966         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
43967         * m4/hmac-md5.m4 (gl_HMAC_MD5):
43968         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
43969         * m4/md2.m4 (gl_MD2):
43970         * m4/md4.m4 (gl_MD4):
43971         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
43972         * m4/read-file.m4 (gl_FUNC_READ_FILE):
43973         * m4/readline.m4 (gl_FUNC_READLINE):
43974         * m4/rijndael.m4 (gl_RIJNDAEL):
43975         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
43976         to get the necessary .h files and whatnot.
43977
43978 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
43979
43980         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
43981         gnulib rather than the other way around.
43982         * config/srclistvars.sh (COREUTILS): Remove.
43983
43984 2006-08-22  Jim Meyering  <jim@meyering.net>
43985
43986         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
43987
43988         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
43989
43990 2006-08-22  Eric Blake  <ebb9@byu.net>
43991
43992         * modules/regexprops-generic: New file.
43993         * MODULES.html.sh (Support for building documentation): List it.
43994
43995 2006-08-22  Eric Blake  <ebb9@byu.net>
43996
43997         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
43998         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
43999         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
44000         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
44001
44002 2006-08-22  Bruno Haible  <bruno@clisp.org>
44003
44004         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
44005         and lib_LTLIBRARIES like the other lib_* variables.
44006
44007 2006-08-22  Bruno Haible  <bruno@clisp.org>
44008
44009         * build-aux/x-to-1.in: New file, from GNU gettext.
44010
44011 2006-08-22  Bruno Haible  <bruno@clisp.org>
44012
44013         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
44014         <utmpx.h> exists.
44015
44016 2006-08-22  Bruno Haible  <bruno@clisp.org>
44017
44018         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
44019         <utmpx.h> exists.
44020
44021 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44022
44023         BeOS portability.
44024         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
44025         exist.
44026         Problem reported by Bruno Haible.
44027
44028 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44029
44030         Avoid the need for AC_LIBSOURCES in m4 macros.
44031         * modules/acl (EXTRA_DIST): Add acl.h.
44032         * modules/argmatch (Files): Add m4/argmatch.m4.
44033         (configure.ac): Add gl_ARGMATCH.
44034         (EXTRA_DIST): Renamed from lib_SOURCES, for
44035         consistency with the other modules.  Remove argmatch.c.
44036         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
44037         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
44038         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
44039         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
44040         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
44041         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
44042         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
44043         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
44044         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
44045         * modules/closeout (EXTRA_DIST): Add closeout.h.
44046         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
44047         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
44048         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
44049         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
44050         dirname.h; remove basename.c and stripslash.c.
44051         * modules/exclude (EXTRA_DIST): Add exclude.h.
44052         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
44053         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
44054         * modules/file-type (EXTRA_DIST): Add file-type.h.
44055         * modules/filemode (EXTRA_DIST): Add filemode.h.
44056         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
44057         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44058         * modules/fpending (EXTRA_DIST): Add __fpending.h.
44059         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
44060         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
44061         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
44062         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
44063         * modules/getdate (EXTRA_DIST): Add getdate.c.
44064         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
44065         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
44066         * modules/getpass (EXTRA_DIST): Add getpass.h.
44067         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
44068         * modules/group-member (EXTRA_DIST): Add group-member.h.
44069         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
44070         * modules/hash (EXTRA_DIST): Add hash.h.
44071         * modules/human (EXTRA_DIST): Add human.h.
44072         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
44073         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
44074         * modules/lchown (EXTRA_DIST): Add lchown.h.
44075         * modules/long-options (EXTRA_DIST): Add long-options.h.
44076         * modules/lstat (EXTRA_DIST): Add lstat.h.
44077         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
44078         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
44079         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
44080         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
44081         * modules/memxor (EXTRA_DIST): Add memxor.h.
44082         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
44083         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
44084         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
44085         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
44086         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
44087         * modules/physmem (EXTRA_DIST): Add physmem.h.
44088         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
44089         * modules/posixver (EXTRA_DIST): Add posixver.h.
44090         * modules/quote (EXTRA_DIST): Add quote.h.
44091         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
44092         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
44093         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
44094         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
44095         regex_internal.h regexec.c.
44096         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
44097         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
44098         * modules/same (EXTRA_DIST): Add same.h.
44099         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
44100         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
44101         * modules/savedir (EXTRA_DIST): Add savedir.h.
44102         * modules/sha1 (EXTRA_DIST): Add sha1.h.
44103         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
44104         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
44105         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
44106         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
44107         * modules/strdup (EXTRA_DIST): Add strdup.h.
44108         * modules/strftime (EXTRA_DIST): Add strftime.h.
44109         * modules/strndup (EXTRA_DIST): Add strndup.h.
44110         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
44111         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
44112         * modules/time_r (EXTRA_DIST): Add time_r.h.
44113         * modules/timespec (EXTRA_DIST): Add timespec.h.
44114         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44115         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
44116         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
44117         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
44118         * modules/userspec (EXTRA_DIST): Add userspec.h.
44119         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
44120         * modules/utimens (EXTRA_DIST): Add utimens.h.
44121         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
44122         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
44123         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
44124         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
44125         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
44126         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
44127         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
44128         * modules/yesno (EXTRA_DIST): Add yesno.h.
44129
44130 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44131
44132         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
44133
44134         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
44135         * m4/dev-ino.m4, same-inode.m4: Remove.
44136
44137         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
44138         * m4/acl.m4 (AC_FUNC_ACL):
44139         * m4/backupfile.m4 (gl_BACKUPFILE):
44140         * m4/c-strtod.m4 (gl_C99_STRTOLD):
44141         * m4/canon-host.m4 (gl_CANON_HOST):
44142         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
44143         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
44144         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
44145         * m4/cloexec.m4 (gl_CLOEXEC):
44146         * m4/close-stream.m4 (gl_CLOSE_STREAM):
44147         * m4/closeout.m4 (gl_CLOSEOUT):
44148         * m4/dirfd.m4 (gl_FUNC_DIRFD):
44149         * m4/dirname.m4 (gl_DIRNAME):
44150         * m4/exclude.m4 (gl_EXCLUDE):
44151         * m4/exitfail.m4 (gl_EXITFAIL):
44152         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
44153         * m4/file-type.m4 (gl_FILE_TYPE):
44154         * m4/filemode.m4 (gl_FILEMODE):
44155         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
44156         * m4/fpending.m4 (gl_FUNC_FPENDING):
44157         * m4/fprintftime.m4 (gl_FPRINTFTIME):
44158         * m4/fts.m4 (gl_FUNC_FTS):
44159         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
44160         * m4/getdate.m4 (gl_GETDATE):
44161         * m4/gethrxtime.m4 (gl_GETHRXTIME):
44162         * m4/getpagesize.m4 (gl_GETPAGESIZE):
44163         * m4/getpass.m4 (gl_FUNC_GETPASS):
44164         * m4/gettime.m4 (gl_GETTIME):
44165         * m4/getugroups.m4 (gl_GETUGROUPS):
44166         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
44167         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
44168         * m4/hard-locale.m4 (gl_HARD_LOCALE):
44169         * m4/hash.m4 (gl_HASH):
44170         * m4/idcache.m4 (gl_IDCACHE):
44171         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
44172         * m4/lchown.m4 (gl_FUNC_LCHOWN):
44173         * m4/long-options.m4 (gl_LONG_OPTIONS):
44174         * m4/lstat.m4 (gl_FUNC_LSTAT):
44175         * m4/md5.m4 (gl_MD5):
44176         * m4/memcasecmp.m4 (gl_MEMCASECMP):
44177         * m4/memcoll.m4 (gl_MEMCOLL):
44178         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
44179         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
44180         * m4/memxor.m4 (gl_MEMXOR):
44181         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
44182         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
44183         * m4/modechange.m4 (gl_MODECHANGE):
44184         * m4/mountlist.m4 (gl_MOUNTLIST):
44185         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
44186         * m4/openat.m4 (gl_FUNC_OPENAT):
44187         * m4/pathmax.m4 (gl_PATHMAX):
44188         * m4/physmem.m4 (gl_PHYSMEM):
44189         * m4/posixtm.m4 (gl_POSIXTM):
44190         * m4/posixver.m4 (gl_POSIXVER):
44191         * m4/quote.m4 (gl_QUOTE):
44192         * m4/quotearg.m4 (gl_QUOTEARG):
44193         * m4/readtokens.m4 (gl_READTOKENS):
44194         * m4/readutmp.m4 (gl_READUTMP):
44195         * m4/regex.m4 (gl_REGEX):
44196         * m4/safe-read.m4 (gl_SAFE_READ):
44197         * m4/safe-write.m4 (gl_SAFE_WRITE):
44198         * m4/same.m4 (gl_SAME):
44199         * m4/save-cwd.m4 (gl_SAVE_CWD):
44200         * m4/savedir.m4 (gl_SAVEDIR):
44201         * m4/settime.m4 (gl_SETTIME):
44202         * m4/sha1.m4 (gl_SHA1):
44203         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
44204         * m4/stat-macros.m4 (gl_STAT_MACROS):
44205         * m4/stat-time.m4 (gl_STAT_TIME):
44206         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
44207         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
44208         * m4/strdup.m4 (gl_FUNC_STRDUP):
44209         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
44210         * m4/strndup.m4 (gl_FUNC_STRNDUP):
44211         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
44212         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
44213         * m4/time_r.m4 (gl_TIME_R):
44214         * m4/timespec.m4 (gl_TIMESPEC):
44215         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
44216         * m4/unlinkdir.m4 (gl_UNLINKDIR):
44217         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
44218         * m4/userspec.m4 (gl_USERSPEC):
44219         * m4/utimecmp.m4 (gl_UTIMECMP):
44220         * m4/utimens.m4 (gl_UTIMENS):
44221         * m4/xalloc.m4 (gl_XALLOC):
44222         * m4/xgetcwd.m4 (gl_XGETCWD):
44223         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
44224         * m4/xreadlink.m4 (gl_XREADLINK):
44225         * m4/xstrtod.m4 (gl_XSTRTOD):
44226         * m4/yesno.m4 (gl_YESNO):
44227         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
44228         to get the necessary .h files and whatnot.
44229
44230 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
44231             Bruno Haible  <bruno@clisp.org>
44232
44233         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
44234         /bin/sh understanding of '!' conditional negation.
44235
44236 2006-08-21  Jim Meyering  <jim@meyering.net>
44237
44238         * modules/openat (Depends-on): Really alphabetize.
44239
44240         * modules/acl (Depends-on): Add error and quote.
44241
44242         * check-module (find_included_lib_files): Add at-func.c to the
44243         ok-to-include-more-than-once white list.
44244
44245         * modules/openat (Depends-on): Add lstat.  Alphabetize.
44246
44247 2006-08-21  Bruno Haible  <bruno@clisp.org>
44248
44249         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44250         Emit a pkgdata_DATA variable only if some snippets add contents to it.
44251         Reported by Martin Lambers <marlam@marlam.de>.
44252
44253 2006-08-21  Bruno Haible  <bruno@clisp.org>
44254
44255         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
44256         specify an installation location, don't emit a noinst_LIBRARIES or
44257         noinst_LTLIBRARIES assignment.
44258
44259 2006-08-21  Bruno Haible  <bruno@clisp.org>
44260
44261         BeOS portability.
44262         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
44263         BeOS has mbrtowc() but no <wctype.h>.
44264
44265 2006-08-21  Bruno Haible  <bruno@clisp.org>
44266
44267         BeOS portability.
44268         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
44269         exist.
44270
44271 2006-08-21  Bruno Haible  <bruno@clisp.org>
44272
44273         BeOS portability.
44274         * lib/mbchar.h: Include <wctype.h> only if it exists.
44275
44276 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44277
44278         Remove files that are no longer needed by their respective modules.
44279         * m4/obstack.m4: Remove.
44280         * m4/strerror_r.m4: Remove.
44281         * m4/uint32_t.m4: Remove.
44282         * m4/uintptr_t.m4: Remove.
44283         * m4/ullong_max.m4: Remove.
44284         * m4/xstrtoimax.m4: Remove.
44285         * m4/xstrtoumax.m4: Remove.
44286
44287         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
44288         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
44289         dependencies now capture this.
44290
44291         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
44292         Do not use AC_LIBSOURCES, since gnulib modules now do this.
44293         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
44294         * m4/human.m4 (gl_HUMAN): Likewise.
44295         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
44296         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
44297
44298         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
44299
44300         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
44301         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
44302         stdint.
44303         * m4/human.m4 (gl_HUMAN): Likewise.
44304         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
44305         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
44306         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44307         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44308         * m4/xstrtol (gl_XSTRTOL): Likewise.
44309
44310         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
44311         AC_TYPE_LONG_LONG_INT.
44312         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44313         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
44314         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
44315         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44316
44317         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
44318         on stdbool.
44319
44320         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
44321         (gl_PREREQ_XSTRTOUL): Remove.
44322
44323         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
44324
44325         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
44326         mode.
44327
44328 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44329
44330         Add and change modules to make it easier for coreutils to use
44331         gnulib-tool.
44332         * modules/backupfile (Files): Remove m4/d-ino.m4.
44333         (Depends-on): Add d-ino.
44334         * modules/cycle-check (Depends-on): Add stdint.
44335         (lib_SOURCES): Add cycle-check.h.
44336         * modules/d-ino: New module.
44337         * modules/d-type: New module.
44338         * modules/error (Files): Remove m4/strerror_r.m4.
44339         * modules/filemode (Files): Add m4/st_dm_mode.m4.
44340         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
44341         m4/inttypes_h.m4, m4/uintmax_t.m4.
44342         (Depends-on): Add stdint.
44343         (lib_SOURCES): Add fsusage.h.
44344         * modules/getcwd (Files): Remove d-ino.m4.
44345         (Depends-on): Add d-ino.
44346         * modules/getndelim2 (Depends-on): Add stdint.
44347         * modules/glob (Files): Remove m4/d-type.m4.
44348         (Depends-on): Add d-type.
44349         * modules/host-os: New module.
44350         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
44351         m4/inttypes_h.m4, m4/uintmax_t.m4.
44352         * Depends-on: Add stdint.
44353         (lib_SOURCES): Add human.h.
44354         * modules/inttostr (Files): Remove m4/intmax_t.m4,
44355         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
44356         m4/uintmax_t.m4, m4/ulonglong.m4.
44357         (Depends-on): Add stdint.
44358         (EXTRA_DIST): Add inttostr.h.
44359         * modules/lchmod: New module.
44360         * modules/link-follow: New module.
44361         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
44362         (Depends-on): Add lchmod.
44363         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
44364         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
44365         (Depends-on): Add stdint.
44366         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
44367         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
44368         (Depends-on): Add stdint.
44369         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
44370         * modules/perl: New module.
44371         * modules/regex (Depends-on): Add stdint.
44372         * modules/rmdir-errno: New module.
44373         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
44374         m4/intmax_t.m4.
44375         (Depends-on): Add stdint.
44376         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
44377         m4/uintmax_t.m4.
44378         (Depends-on): Add stdint.
44379         * modules/unlink-busy: New module.
44380         * modules/utimecmp (Depends-on): Add stdint.
44381         * modules/uptime: New module.
44382         * modules/winsz-ioctl: New module.
44383         * modules/winsz-termios: New module.
44384         * modules/xnanosleep (Depends-on): Add nanosleep.
44385         * modules/ullong_max: Remove.
44386         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
44387         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
44388         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
44389         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
44390         (Depends-on): Add inttypes.
44391         (lib_SOURCES): Add xstrtol.h.
44392         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
44393         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
44394         * MODULES.html.sh: Move 'assert' into the assert section.
44395         Move 'dummy' into the linking section.
44396         Remove ullong_max.
44397         Add section for compatibility checks for POSIX:2001 functions,
44398         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
44399         winsz-ioctl, and winsz-termios into it.
44400         Add lchmod.
44401         Add top-level Misc section and put host-os, perl, and uptime
44402         into it.
44403
44404 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44405
44406         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
44407         now assume the stdint module.  Do not include inttypes.h.
44408         * lib/fsusage.h: Likewise.
44409         * lib/getndelim2.c: Likewise.
44410         * lib/human.h: Likewise.
44411         * lib/inttostr.h: Likewise.
44412         * lib/obstack.c: Likewise.
44413         * lib/regex_internal.h: Likewise.
44414         * lib/tempname.c: Likewise.
44415         * lib/utimecmp.c: Likewise.
44416         * lib/xstrtol.h: Likewise.
44417
44418         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
44419
44420         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
44421         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
44422         * lib/xtime.h: Likewise.
44423
44424 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44425
44426         * modules/openat (Files): Add lib/fchmodat.c.
44427         Fixes problem reported by Jay Youngman.
44428
44429 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44430
44431         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
44432         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
44433
44434 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
44435             Bruno Haible  <bruno@clisp.org>
44436
44437         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
44438         and is a script that invokes bison. Tighten the code. Add comments.
44439
44440 2006-08-18  Jim Meyering  <jim@meyering.net>
44441
44442         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
44443         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
44444         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
44445         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
44446
44447 2006-08-18  Bruno Haible  <bruno@clisp.org>
44448
44449         * modules/bison-i18n: New file.
44450         * MODULES.html.sh (Internationalization functions): Add it.
44451
44452 2006-08-18  Bruno Haible  <bruno@clisp.org>
44453
44454         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
44455         sys/statvfs.h. When getmntinfo was found, check its declaration and
44456         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
44457
44458 2006-08-18  Bruno Haible  <bruno@clisp.org>
44459
44460         * m4/bison-i18n.m4: New file, from bison.
44461
44462 2006-08-18  Bruno Haible  <bruno@clisp.org>
44463
44464         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
44465         (ME_DUMMY): Treat "kernfs" as a dummy.
44466         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
44467
44468 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44469
44470         Update from coreutils.
44471
44472         2006-08-15  Jim Meyering  <jim@meyering.net>
44473
44474         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
44475
44476         2006-01-17  Jim Meyering  <jim@meyering.net>
44477
44478         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
44479
44480         2006-01-11  Jim Meyering  <jim@meyering.net>
44481
44482         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
44483         Check for the lchmod function.
44484
44485 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44486
44487         Update from coreutils.
44488
44489         * lib/__fpending.h: Add copyright notice.
44490         * lib/fprintftime.h: Likewise.
44491         * lib/savedir.c: Use (C) in copyright notice.
44492         * lib/savedir.h: Likewise.
44493
44494         2006-08-15  Jim Meyering  <jim@meyering.net>
44495
44496         * lib/at-func.c: New file, with the logic of all emulated at-functions.
44497         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
44498         in support of the EXPECTED_ERRNO macro.
44499         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
44500         definitions.  Instead, define the appropriate symbols and include
44501         "at-func.c".
44502         * lib/mkdirat.c (mkdirat): Likewise.
44503         * lib/fchmodat.c (fchmodat): Likewise.
44504         (ENOSYS): Remove definition.
44505         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
44506         it.  Don't include "unistd--.h" -- it wasn't ever used.
44507
44508         2006-01-17  Jim Meyering  <jim@meyering.net>
44509
44510         Rewrite fts.c not to change the current working directory,
44511         by using openat, fstatat, fdopendir, etc..
44512
44513         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
44514         (HAVE_OPENAT_SUPPORT): Define.
44515         [_LIBC] (fchdir): Don't undef or define; no longer used.
44516         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
44517         Now, this `function' always succeeds, and consumes its file descriptor
44518         parameter -- so callers must not close such FDs.  Update callers.
44519         (diropen_fd, opendirat, cwd_advance_fd): New functions.
44520         (diropen): Add parameter, SP.  Adjust all callers.
44521         Implement using diropen_fd, rather than open.
44522         (fts_open): Initialize new member, fts_cwd_fd.
44523         Remove fts_rft-setting code.
44524         (fts_close): Close fts_cwd_fd, if necessary.
44525         (__opendir2): Define in terms of opendir or opendirat,
44526         depending on whether the FST_NOCHDIR flag is set.
44527         (fts_build): Since fts_safe_changedir consumes its FD, and since
44528         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
44529         and close the dup'd file descriptor upon failure.
44530         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
44531         (fts_safe_changedir): Tweak semantics to reflect that this function
44532         now calls cwd_advance_fd and hence consumes its FD argument.
44533         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
44534         [struct FTS] (fts_rft): Remove now-unused member.
44535         [struct FTS] (fts_cycle.state): Improve comment.
44536
44537         * lib/openat.c (openat_needs_fchdir): New function.
44538         * lib/openat.h (openat_needs_fchdir): Declare it.
44539
44540 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44541
44542         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
44543         Problem and fix reported by Pádraig Brady in
44544         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
44545
44546 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44547
44548         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
44549
44550 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44551
44552         * lib/memcoll.c (memcoll): Optimize for the common case where the
44553         arguments are bytewise equal.
44554
44555 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44556
44557         * doc/regexprops-generic.texi: Add a copyright notice.
44558
44559 2006-08-15  Bruno Haible  <bruno@clisp.org>
44560
44561         * modules/tmpdir (License): Change to LGPL.
44562
44563 2006-08-15  Bruno Haible  <bruno@clisp.org>
44564
44565         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
44566         module.
44567
44568 2006-08-14  Simon Josefsson  <jas@extundo.com>
44569
44570         * config/srclist.txt: Add gnupload.
44571
44572 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44573
44574         Change copyright notice from LGPL 2 to GPL 2, since that's the
44575         standard form used in the gnulib repository.
44576         * tests/test-lock.c: Likewise.
44577         * tests/test-stdint.c: Likewise.
44578         * tests/test-tls.c: Likewise.
44579
44580         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
44581         prelude-manager.  User shorter URLs for GNU projects, without '?'.
44582         Add copyright notice.
44583
44584         * check-module: Add copyright notice.  Output a copyright
44585         notice if "--version" is specified.
44586         * modules/COPYING: New file.
44587         * tests/test-getaddrinfo.c: Add copyright notice.
44588         * tests/test-verify.c: Likewise.
44589
44590 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44591
44592         Change copyright notice from LGPL 2 to GPL 2, since that's the
44593         standard form used in the gnulib repository.
44594         * lib/lock.c: LGPL -> GPL.
44595         * lib/lock.h: Likewise.
44596         * lib/strnlen1.c: Likewise.
44597         * lib/strnlen1.h: Likewise.
44598         * lib/tls.c: Likewise.
44599         * lib/tls.h: Likewise.
44600         * lib/tmpdir.c: Likewise.
44601
44602         * lib/TODO: Remove; this belongs only in coreutils.
44603
44604 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44605
44606         Add copyright notices to long-enough files that lack them, since
44607         otherwise the files aren't clearly free.  Use the same notice that
44608         getdate.texi already uses.
44609         * doc/alloca-opt.texi: Add copyright notice.
44610         * doc/alloca.texi: Likewise.
44611         * doc/ctime.texi: Likewise.
44612         * doc/functions.texi: Likewise.
44613         * doc/gcd.texi: Likewise.
44614         * doc/gnulib-tool.texi: Likewise.
44615         * doc/inet_ntoa.texi: Likewise.
44616         * doc/visibility.texi: Likewise.
44617
44618         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
44619         * doc/quote.texi: Add copyright notice.
44620
44621         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
44622         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
44623         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
44624         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
44625         is now obsolete, and give a pointer to the Sun list.
44626         Add copyright notice.
44627
44628 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
44629
44630         * config/srclistvars.sh: Add copyright notice.
44631
44632 2006-08-14  Eric Blake  <ebb9@byu.net>
44633
44634         Import the following change from libc:
44635
44636         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
44637
44638         Upstream bug 2997.
44639         * lib/misc/error.c: Add space between program name and message if file
44640         name is missing.
44641
44642 2006-08-12  Karl Berry  <karl@gnu.org>
44643
44644         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
44645         remove, these originate in gnulib now.
44646
44647 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44648
44649         * doc/Makefile (standards.info standards.html standards.dvi):
44650         Also depend on make-stds.texi.
44651
44652 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
44653
44654         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
44655         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
44656
44657         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
44658         in wchar_t.  Problem reported by Eric Blake.
44659
44660         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
44661         LEN is smaller than SIZE.  Suggested by Bruno Haible.
44662         Also, help the compiler to keep LEN in a register.
44663
44664 2006-08-11  Eric Blake  <ebb9@byu.net>
44665
44666         * users.txt: Sort.  Add tar.
44667
44668 2006-08-11  Bruno Haible  <bruno@clisp.org>
44669
44670         * users.txt: New file.
44671
44672 2006-08-11  Bruno Haible  <bruno@clisp.org>
44673
44674         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
44675         before <wchar.h>. Needed for OSF/1 and BSD/OS.
44676
44677 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
44678
44679         * modules/snprintf (Depends-on): Remove minmax.
44680         (Maintainer): Add self and Bruno.
44681
44682 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
44683
44684         * lib/.cppi-disable: Add snprintf.h, socket_.h.
44685         * lib/snprintf.c: Include <errno.h> and <limits.h>.
44686         (EOVERFLOW): Define if the system does not.
44687         Do not include "minmax.h"; it wasn't used.
44688         (snprintf): Don't assume size_t promotes to an unsigned type.
44689         Fix bug when generated string was too long for the buffer: the
44690         buffer's contents are supposed to be the initial prefix of the
44691         output.  Don't assume vasnprintf returns EOVERFLOW if the size
44692         exceeds INT_MAX; do the check ourselves.
44693
44694         Import the following changes from libc:
44695
44696         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
44697
44698         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
44699         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
44700         set wc to the byte which couldn't be converted.
44701         (re_string_reconstruct): Don't clear valid_raw_len before calling
44702         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
44703         tip_context using re_string_context_at.
44704
44705         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
44706
44707         * lib/posix/regex.h: g++ still cannot handled [restrict].
44708
44709         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
44710
44711         * lib/posix/regex.h: Remove special handling for VMS.
44712
44713 2006-08-10  Jim Meyering  <jim@meyering.net>
44714
44715         * modules/same-inode: New module.
44716         * modules/dev-ino: New module.
44717         * modules/cycle-check: Depend on these modules, rather than simply
44718         including their .h files.
44719         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
44720         required via m4/cycle-check.m4.
44721         * modules/same: Depend on new same-inode module, rather than
44722         including same-inode.h.
44723         * modules/chdir-safer: New file.
44724
44725         * modules/chown (Depends-on): Add stat-macros.
44726
44727 2006-08-10  Jim Meyering  <jim@meyering.net>
44728
44729         * m4/cycle-check.m4: New file.
44730         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
44731         * m4/dev-ino.m4, m4/same-inode.m4: New files.
44732
44733 2006-08-10  Eric Blake  <ebb9@byu.net>
44734
44735         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
44736         in from original proposal.
44737
44738 2006-08-10  Eric Blake  <ebb9@byu.net>
44739         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
44740
44741         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
44742         namespace.
44743
44744 2006-08-10  Bruno Haible  <bruno@clisp.org>
44745
44746         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
44747         as well.
44748
44749 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44750
44751         Sync from coreutils.
44752
44753         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
44754
44755         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
44756         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
44757
44758 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44759
44760         * modules/restrict: Remove; no longer needed now that we assume
44761         Autoconf 2.59 or later.
44762         * MODULES.html.sh: Remove 'restrict'.
44763         * modules/argp (Depends-on): Remove 'restrict'.
44764         * modules/base64 (Depends-on): Likewise.
44765         * modules/gc (Depends-on): Likewise.
44766         * modules/getaddrinfo (Depends-on): Likewise.
44767         * modules/glob (Depends-on): Likewise.
44768         * modules/inet_ntop (Depends-on): Likewise.
44769         * modules/inet_pton (Depends-on): Likewise.
44770         * modules/memxor (Depends-on): Likewise.
44771         * modules/regex (Depends-on): Likewise.
44772         * modules/strtok_r (Depends-on): Likewise.
44773         * modules/time_r (Depends-on): Likewise.
44774
44775 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
44776
44777         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
44778         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
44779         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
44780         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
44781         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
44782         * m4/memxor.m4 (gl_MEMXOR): Likewise.
44783         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
44784         gl_C_RESTRICT replaced by AC_C_RESTRICT.
44785
44786         Merge from coreutils.
44787         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
44788         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
44789         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
44790         * m4/time_r.m4 (gl_TIME_R): Likewise.
44791
44792 2006-08-09  Karl Berry  <karl@gnu.org>
44793
44794         * config/srclist.txt: no more gettext-tools, per Bruno.
44795
44796 2006-08-08  Eric Blake  <ebb9@byu.net>
44797
44798         * modules/verror: New module.
44799         * MODULES.html.sh: Document it.
44800
44801 2006-08-08  Eric Blake  <ebb9@byu.net>
44802
44803         * lib/verror.h, lib/verror.c: New files.
44804
44805 2006-08-08  Eric Blake  <ebb9@byu.net>
44806
44807         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
44808         verror_at_line output complies with GNU Coding Standards even when
44809         file is NULL.
44810
44811 2006-08-07  Bruno Haible  <bruno@clisp.org>
44812
44813         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
44814         versions of AIX.
44815         Reported by Ralf Wildenhues.
44816
44817 2006-08-07  Bruno Haible  <bruno@clisp.org>
44818
44819         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
44820         in an AC_DEFUN. Needed so that the autoconf snippets can use
44821         AC_REQUIRE.
44822
44823 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44824
44825         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44826         Initialize pkgdata_DATA.
44827         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
44828         overriding it.
44829
44830 2006-08-06  Eric Blake  <ebb9@byu.net>
44831
44832         * lib/error.h: Fold in some upstream changes from glibc.
44833         * lib/error.c: Likewise.
44834
44835 2006-08-04  Bruno Haible  <bruno@clisp.org>
44836
44837         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44838         Make the mostlyclean-local rule depend on mostlyclean-generic.
44839         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
44840
44841 2006-07-31  Bruno Haible  <bruno@clisp.org>
44842
44843         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
44844         <stdlib.h>, <string.h>.
44845
44846 2006-07-30  Bruno Haible  <bruno@clisp.org>
44847
44848         * modules/readlink (License): Change to LGPL.
44849
44850 2006-07-30  Bruno Haible  <bruno@clisp.org>
44851
44852         * modules/javaversion (Makefile.am): Distribute javaversion.java and
44853         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
44854         set PKGDATADIR to point to it.
44855
44856 2006-07-30  Bruno Haible  <bruno@clisp.org>
44857
44858         * modules/csharpexec (configure.ac): Comment out macro invocation.
44859         * modules/javaexec (configure.ac): Likewise.
44860         * modules/javacomp-script (configure.ac): Likewise.
44861
44862         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
44863
44864 2006-07-30  Bruno Haible  <bruno@clisp.org>
44865
44866         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
44867         linked-list.
44868
44869 2006-07-30  Bruno Haible  <bruno@clisp.org>
44870
44871         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
44872
44873 2006-07-30  Bruno Haible  <bruno@clisp.org>
44874
44875         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44876         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
44877         get removed.
44878
44879 2006-07-29  Bruno Haible  <bruno@clisp.org>
44880
44881         Make it possible for gnulib-tool to work with locally modified or
44882         augmented gnulib repositories.
44883         * gnulib-tool (func_usage): Document --local-dir option.
44884         (local_gnulib_dir): New variable.
44885         Handle --local-dir option.
44886         (func_lookup_file): New function.
44887         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
44888         (func_get_description, func_get_filelist, func_get_description,
44889         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
44890         func_get_automake_snippet, func_get_include_directive,
44891         func_get_license, func_get_maintainer): Use func_lookup_file.
44892         (func_import, func_create_testdir): Use func_lookup_file.
44893
44894 2006-07-29  Bruno Haible  <bruno@clisp.org>
44895
44896         * modules/setenv (Depends-on): Add unistd.
44897
44898 2006-07-29  Bruno Haible  <bruno@clisp.org>
44899
44900         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
44901
44902 2006-07-29  Bruno Haible  <bruno@clisp.org>
44903
44904         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
44905
44906 2006-07-29  Bruno Haible  <bruno@clisp.org>
44907
44908         * gnulib-tool (import, update): If there is no Makefile.am, look at
44909         aclocal.m4, instead of bailing out.
44910
44911 2006-07-29  Bruno Haible  <bruno@clisp.org>
44912
44913         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
44914         Categorize the options by when they are useful.
44915
44916 2006-07-29  Bruno Haible  <bruno@clisp.org>
44917
44918         * gnulib-tool (func_usage): Document option --no-libtool.
44919         Handle option --no-libtool.
44920         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
44921         for changed semantics of $libtool variable.
44922         (func_import): Likewise. If libtool is not used, show this through
44923         an option --no-libtool.
44924         (func_create_testdir): Update.
44925
44926 2006-07-29  Bruno Haible  <bruno@clisp.org>
44927
44928         * gnulib-tool (func_import): Extend error message about missing
44929         --doc-base.
44930
44931 2006-07-29  Bruno Haible  <bruno@clisp.org>
44932
44933         * gnulib-tool (func_import): Don't create the $docbase directory if
44934         there is no file to store there.
44935
44936 2006-07-29  Bruno Haible  <bruno@clisp.org>
44937
44938         * gnulib-tool (autoconf_minversion): If a --dir option is given and
44939         relevant, look for configure.ac there, not in the current directory.
44940         Also use a simple search for AC_PREREQ, not "autoconf --trace".
44941
44942 2006-07-29  Bruno Haible  <bruno@clisp.org>
44943
44944         * gnulib-tool (SORT): New variable.
44945         (func_usage): Undocument --assume-autoconf option.
44946         Remove --assume-autoconf option handling.
44947         (autoconf_minversion): Determine from the contents of configure.ac.
44948         (func_import): Remove autoconf_minversion handling.
44949         Suggested by Eric Blake.
44950
44951 2006-07-29  Bruno Haible  <bruno@clisp.org>
44952
44953         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
44954
44955 2006-07-29  Bruno Haible  <bruno@clisp.org>
44956
44957         * config/srclist.txt (*setenv.[ch]): Remove rules.
44958
44959 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
44960
44961         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
44962
44963 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
44964
44965         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
44966         arpa/inet.h.
44967
44968 2006-07-28  Simon Josefsson  <jas@extundo.com>
44969
44970         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
44971         * modules/inet_pton (Depends-on): Likewise.
44972
44973 2006-07-28  Simon Josefsson  <jas@extundo.com>
44974
44975         * m4/netinet_in_h.m4: New file.
44976
44977 2006-07-28  Simon Josefsson  <jas@extundo.com>
44978
44979         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
44980         #include's.
44981
44982 2006-07-28  Simon Josefsson  <jas@extundo.com>
44983
44984         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
44985         #include's.
44986
44987 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
44988
44989         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
44990         setgid on directories only if they set these bits.
44991         * lib/modechange.h: Remove obsolete comment about masks.
44992
44993 2006-07-28  Eric Blake  <ebb9@byu.net>
44994
44995         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
44996         macro expansion.
44997
44998 2006-07-28  Bruno Haible  <bruno@clisp.org>
44999
45000         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
45001
45002 2006-07-28  Bruno Haible  <bruno@clisp.org>
45003
45004         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
45005
45006 2006-07-28  Bruno Haible  <bruno@clisp.org>
45007
45008         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
45009         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
45010         Define fallbacks.
45011         Avoids link error on FreeBSD 4.x.
45012         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
45013
45014         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
45015         encoding.
45016         * lib/mbswidth.c (iswcntrl): Likewise.
45017
45018 2006-07-27  Bruno Haible  <bruno@clisp.org>
45019
45020         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
45021         test.
45022
45023 2006-07-27  Bruno Haible  <bruno@clisp.org>
45024
45025         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
45026         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
45027         defined.
45028
45029 2006-07-26  Eric Blake  <ebb9@byu.net>
45030
45031         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
45032
45033 2006-07-26  Eric Blake  <ebb9@byu.net>
45034
45035         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
45036         like mingw that lack mkstemp.
45037         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
45038         avoid compilation warning on mingw.
45039
45040 2006-07-26  Bruno Haible  <bruno@clisp.org>
45041
45042         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
45043         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
45044         INT_FAST*_MIN, INTPTR_MIN.
45045
45046 2006-07-25  Bruno Haible  <bruno@clisp.org>
45047
45048         * modules/version-etc (Depends-on): Add stdarg.
45049
45050 2006-07-25  Bruno Haible  <bruno@clisp.org>
45051
45052         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
45053         complex commands.
45054
45055 2006-07-25  Bruno Haible  <bruno@clisp.org>
45056
45057         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
45058         defined in <stdarg.h> or config.h.
45059
45060 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45061
45062         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
45063         (gl_STDIO_SAFER): Remove.
45064
45065 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45066
45067         * MODULES.html.sh (File stream based Input/Output):
45068         Add fopen-safer, tmpfile-safer; remove stdio-safer.
45069         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
45070         * modules/fopen-safer, modules/tmpfile-safer: New files.
45071         * modules/stdio-safer: Remove.
45072
45073 2006-07-24  Bruno Haible  <bruno@clisp.org>
45074
45075         * modules/tmpdir: New file.
45076         * MODULES.html.sh (File system functions): Add it.
45077
45078 2006-07-24  Bruno Haible  <bruno@clisp.org>
45079
45080         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
45081         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
45082
45083 2006-07-24  Bruno Haible  <bruno@clisp.org>
45084
45085         * modules/clean-temp: New file.
45086
45087 2006-07-24  Bruno Haible  <bruno@clisp.org>
45088
45089         * m4/tmpdir.m4: New file, from GNU gettext.
45090
45091 2006-07-24  Bruno Haible  <bruno@clisp.org>
45092
45093         * lib/tmpdir.h: New file, from GNU gettext.
45094         * lib/tmpdir.c: New file, from GNU gettext.
45095
45096 2006-07-24  Bruno Haible  <bruno@clisp.org>
45097
45098         * lib/clean-temp.h: New file, from GNU gettext.
45099         * lib/clean-temp.c: New file, from GNU gettext.
45100
45101 2006-07-23  Eric Blake  <ebb9@byu.net>
45102
45103         * modules/stdio-safer (Files): Add tmpfile-safer.c.
45104         (Depends-on): Add binary-io.
45105
45106 2006-07-23  Eric Blake  <ebb9@byu.net>
45107
45108         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
45109
45110 2006-07-23  Eric Blake  <ebb9@byu.net>
45111
45112         * lib/tmpfile-safer.c: New file.
45113         * lib/stdio-safer.h (fopen_safer): Add prototype.
45114         * lib/stdio--.h (tmpfile): Make safer.
45115
45116 2006-07-23  Bruno Haible  <bruno@clisp.org>
45117
45118         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
45119         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
45120         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
45121         gl_linked_remove_at): Use it.
45122
45123 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45124         and Simon Josefsson <jas@extundo.com>
45125
45126         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
45127
45128         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
45129
45130 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45131
45132         * modules/close-stream: New file.
45133         * modules/closeout (Description): Make it clear that it exits
45134         with a diagnostic on error.
45135         (Depends-on): Add close-stream.  Remove fpending, stdbool.
45136         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
45137
45138 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45139
45140         * m4/close-stream.m4: New file.
45141
45142 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45143
45144         * lib/close-stream.c, lib/close-stream.h: New files.
45145
45146 2006-07-22  Bruno Haible  <bruno@clisp.org>
45147
45148         Merge from GNU gettext 0.15.
45149
45150         2006-05-01  Bruno Haible  <bruno@clisp.org>
45151
45152                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
45153
45154         2006-07-22  Bruno Haible  <bruno@clisp.org>
45155
45156                 * modules/javaversion: New file.
45157                 * MODULES.html.sh (Java): Add javaversion.
45158
45159         2006-03-12  Bruno Haible  <bruno@clisp.org>
45160
45161                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
45162
45163         2005-12-04  Bruno Haible  <bruno@clisp.org>
45164
45165                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
45166                 (untested).
45167
45168         2006-06-21  Bruno Haible  <bruno@clisp.org>
45169
45170                 Avoid warnings from recent versions of mcs.
45171                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
45172                 -o, -L, -r any more. Use options documented since mcs-1.0
45173                 instead. Similarly for -g.
45174
45175         2005-12-04  Bruno Haible  <bruno@clisp.org>
45176
45177                 * build-aux/csharpcomp.sh.in: Suffix for resources is
45178                 .resources, not .resource.
45179
45180         2005-07-09  Bruno Haible  <bruno@clisp.org>
45181
45182                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
45183                 add a .dll suffix.
45184                 Reported by Mark Junker <mjscod@gmx.de>.
45185
45186         2006-07-22  Bruno Haible  <bruno@clisp.org>
45187
45188                 * modules/gettext: Upgrade to gettext-0.15.
45189                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
45190                 m4/visibility.m4.
45191                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
45192
45193 2006-07-22  Bruno Haible  <bruno@clisp.org>
45194
45195         Merge from GNU gettext 0.15.
45196
45197         2006-03-25  Bruno Haible  <bruno@clisp.org>
45198
45199                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
45200
45201         2006-07-21  Bruno Haible  <bruno@clisp.org>
45202
45203                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
45204                 "1.1".
45205
45206         2006-05-09  Bruno Haible  <bruno@clisp.org>
45207
45208                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
45209                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
45210                 for the conftestver execution.
45211
45212         2006-05-01  Bruno Haible  <bruno@clisp.org>
45213
45214                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
45215                 optional target-version argument. Verify that the compiler
45216                 groks source of the specified source-version, or add -source
45217                 option as necessary. Verify that the compiler produces
45218                 bytecode in the specified target-version, or add -target and
45219                 -source options as necessary. Make the result of the test
45220                 available as variable CONF_JAVAC. Also log error output in
45221                 config.log.
45222
45223         2006-03-11  Bruno Haible  <bruno@clisp.org>
45224
45225                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
45226
45227         2006-05-09  Bruno Haible  <bruno@clisp.org>
45228
45229                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
45230                 CLASSPATH_SEPARATOR to a semicolon.
45231
45232         2006-03-12  Bruno Haible  <bruno@clisp.org>
45233
45234                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
45235                 available as variable CONF_JAVA, for subsequent autoconf
45236                 tests. Also log error output in config.log.
45237
45238         2006-07-19  Bruno Haible  <bruno@clisp.org>
45239
45240                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
45241                 that getline works on glibc2 systems. Needed to avoid trouble
45242                 in relocatable.c.
45243                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
45244
45245         2005-12-04  Bruno Haible  <bruno@clisp.org>
45246
45247                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
45248                 launcher (untested).
45249
45250         2005-12-04  Bruno Haible  <bruno@clisp.org>
45251
45252                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
45253
45254         2006-07-22  Bruno Haible  <bruno@clisp.org>
45255
45256                 * gettext.m4: Update from GNU gettext-0.15.
45257                 * nls.m4: Likewise.
45258                 * po.m4: Likewise.
45259                 * inttypes-pri.m4: Likewise.
45260                 * inttypes-h.m4: Renamed from inttypes.m4.
45261                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
45262
45263 2006-07-22  Bruno Haible  <bruno@clisp.org>
45264
45265         Merge from GNU gettext 0.15.
45266
45267         2005-07-05  Bruno Haible  <bruno@clisp.org>
45268
45269                 * printf-args.c (printf_fetchargs): Work around broken
45270                 definition of wint_t on mingw.
45271
45272         2005-02-12  Bruno Haible  <bruno@clisp.org>
45273
45274                 * xallocsa.h: Add extern "C" for C++.
45275
45276         2006-05-17  Bruno Haible  <bruno@clisp.org>
45277
45278                 Cygwin portability.
45279                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
45280
45281         2006-04-30  Bruno Haible  <bruno@clisp.org>
45282
45283                 * progreloc.c: Include <mach-o/dyld.h> if available.
45284                 (find_executable): Use _NSGetExecutablePath when possible.
45285
45286         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
45287
45288                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
45289                 function.
45290
45291         2005-12-29  Bruno Haible  <bruno@clisp.org>
45292
45293                 * progreloc.c (set_program_name_and_installdir): Fix
45294                 compilation error.
45295
45296         2005-12-04  Bruno Haible  <bruno@clisp.org>
45297
45298                 Cygwin portability.
45299                 * progreloc.c: Include <windows.h> also on Cygwin.
45300                 (find_executable): Add support for Cygwin.
45301                 (set_program_name_and_installdir): Handle also platforms with
45302                 nonempty EXEEXT.
45303
45304         2006-07-11  Bruno Haible  <bruno@clisp.org>
45305
45306                 * javacomp.c: Fix a comment.
45307                 Reported by Jim Meyering.
45308
45309         2006-04-30  Bruno Haible  <bruno@clisp.org>
45310
45311                 * javacomp.h (compile_java_class): Add source_version,
45312                 target_version arguments.
45313                 * javacomp.c: Rewritten to choose only a compiler that
45314                 respects the specified source_version and target_version.
45315
45316         2006-06-27  Bruno Haible  <bruno@clisp.org>
45317
45318                 Assume correct S_ISDIR macro.
45319                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
45320
45321         2006-07-22  Bruno Haible  <bruno@clisp.org>
45322
45323                 * javaversion.h: New file, from GNU gettext.
45324                 * javaversion.c: New file, from GNU gettext.
45325                 * javaversion.java: New file, from GNU gettext.
45326                 * javaversion.class: New file, from GNU gettext.
45327
45328         2006-05-17  Bruno Haible  <bruno@clisp.org>
45329
45330                 Cygwin portability.
45331                 * javaexec.c (execute_java_class): Test for jview program
45332                 also on Cygwin.
45333
45334         2006-04-09  Bruno Haible  <bruno@clisp.org>
45335
45336                 * fatal-signal.c: Don't include string.h.
45337                 (at_fatal_signal): Use a copying loop instead of memcpy.
45338
45339         2005-12-04  Bruno Haible  <bruno@clisp.org>
45340
45341                 * csharpexec.c: Add support for 'clix' launcher (untested).
45342                 (execute_csharp_using_sscli): New function.
45343                 (execute_csharp_program): Call it.
45344
45345         2006-06-21  Bruno Haible  <bruno@clisp.org>
45346
45347                 Avoid warnings from recent versions of mcs.
45348                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
45349                 -o, -L, -r any more. Use options documented since mcs-1.0
45350                 instead. Similarly for -g.
45351
45352         2005-07-09  Bruno Haible  <bruno@clisp.org>
45353
45354                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
45355                 add a .dll suffix.
45356                 Reported by Mark Junker <mjscod@gmx.de>.
45357
45358         2006-06-17  Bruno Haible  <bruno@clisp.org>
45359
45360                 * config.charset: Update for NetBSD 3.0.
45361
45362         2006-05-17  Bruno Haible  <bruno@clisp.org>
45363
45364                 Cygwin portability.
45365                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
45366
45367         2006-05-16  Bruno Haible  <bruno@clisp.org>
45368
45369                 * localcharset.c [CYGWIN]: Include <windows.h>.
45370                 (get_charset_aliases): For Cygwin, return the same CPxxx
45371                 aliases list as under WIN32.
45372                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
45373                 the environment variables. Fall back to GetACP().
45374
45375         2006-04-05  Bruno Haible  <bruno@clisp.org>
45376
45377                 * config.charset: Update Juan Manuel Guerrero's address.
45378
45379         2005-02-12  Bruno Haible  <bruno@clisp.org>
45380
45381                 * allocsa.h: Add extern "C" for C++.
45382
45383         2005-02-10  Bruno Haible  <bruno@clisp.org>
45384
45385                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
45386                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
45387
45388         2006-07-22  Bruno Haible  <bruno@clisp.org>
45389
45390                 * gettext.h: Update to GNU gettext-0.15.
45391
45392 2006-07-22  Bruno Haible  <bruno@clisp.org>
45393
45394         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
45395         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
45396         lib-prefix.m4, longdouble.m4, ssize_t.m4.
45397
45398 2006-07-21  Eric Blake  <ebb9@byu.net>
45399
45400         * modules/stdlib-safer: New file.
45401         * MODULES.html.sh (File stream based Input/Output): Add
45402         stdlib-safer.
45403
45404 2006-07-21  Eric Blake  <ebb9@byu.net>
45405
45406         * lib/stdlib-safer.h: New file from coreutils, required by
45407         stdlib--.h.
45408
45409 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
45410
45411         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
45412
45413 2006-07-20  Bruno Haible  <bruno@clisp.org>
45414
45415         * gnulib-tool: Recognize new option --assume-autoconf.
45416         (autoconf_minversion): New variable.
45417         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
45418
45419 2006-07-20  Bruno Haible  <bruno@clisp.org>
45420
45421         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
45422
45423 2006-07-19  Derek R. Price  <derek@ximbiot.com>
45424
45425         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
45426         Reindent and repaginate.
45427
45428 2006-07-19  Derek Price  <derek@ximbiot.com>
45429
45430         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
45431         Correct grammar.
45432
45433 2006-07-17  Bruno Haible  <bruno@clisp.org>
45434
45435         * modules/list: New file.
45436         * modules/array-list: New file.
45437         * modules/carray-list, modules/carray-list-tests: New files.
45438         * modules/linked-list, modules/linked-list-tests: New files.
45439         * modules/avltree-list, modules/avltree-list-tests: New files.
45440         * modules/rbtree-list, modules/rbtree-list-tests: New files.
45441         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
45442         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
45443         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
45444         * modules/oset: New file.
45445         * modules/array-oset: New file.
45446         * modules/avltree-oset, modules/avltree-oset-tests: New files.
45447         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
45448         * tests/test-carray_list.c: New file.
45449         * tests/test-linked_list.c: New file.
45450         * tests/test-avltree_list.c: New file.
45451         * tests/test-rbtree_list.c: New file.
45452         * tests/test-linkedhash_list.c: New file.
45453         * tests/test-avltreehash_list.c: New file.
45454         * tests/test-rbtreehash_list.c: New file.
45455         * tests/test-avltree_oset.c: New file.
45456         * tests/test-rbtree_oset.c: New file.
45457         * MODULES.html.sh (Container data structures): New section.
45458
45459 2006-07-17  Bruno Haible  <bruno@clisp.org>
45460
45461         * m4/gl_list.m4: New file.
45462
45463 2006-07-17  Bruno Haible  <bruno@clisp.org>
45464
45465         * lib/gl_list.h: New file.
45466         * lib/gl_list.c: New file.
45467         * lib/gl_array_list.h: New file.
45468         * lib/gl_array_list.c: New file.
45469         * lib/gl_carray_list.h: New file.
45470         * lib/gl_carray_list.c: New file.
45471         * lib/gl_linked_list.h: New file.
45472         * lib/gl_linked_list.c: New file.
45473         * lib/gl_anylinked_list1.h: New file.
45474         * lib/gl_anylinked_list2.h: New file.
45475         * lib/gl_avltree_list.h: New file.
45476         * lib/gl_avltree_list.c: New file.
45477         * lib/gl_anyavltree_list1.h: New file.
45478         * lib/gl_anyavltree_list2.h: New file.
45479         * lib/gl_rbtree_list.h: New file.
45480         * lib/gl_rbtree_list.c: New file.
45481         * lib/gl_anyrbtree_list1.h: New file.
45482         * lib/gl_anyrbtree_list2.h: New file.
45483         * lib/gl_anytree_list1.h: New file.
45484         * lib/gl_anytree_list2.h: New file.
45485         * lib/gl_linkedhash_list.h: New file.
45486         * lib/gl_linkedhash_list.c: New file.
45487         * lib/gl_anyhash_list1.h: New file.
45488         * lib/gl_anyhash_list2.h: New file.
45489         * lib/gl_avltreehash_list.h: New file.
45490         * lib/gl_avltreehash_list.c: New file.
45491         * lib/gl_rbtreehash_list.h: New file.
45492         * lib/gl_rbtreehash_list.c: New file.
45493         * lib/gl_anytreehash_list1.h: New file.
45494         * lib/gl_anytreehash_list2.h: New file.
45495
45496         * lib/gl_oset.h: New file.
45497         * lib/gl_oset.c: New file.
45498         * lib/gl_array_oset.h: New file.
45499         * lib/gl_array_oset.c: New file.
45500         * lib/gl_avltree_oset.h: New file.
45501         * lib/gl_avltree_oset.c: New file.
45502         * lib/gl_rbtree_oset.h: New file.
45503         * lib/gl_rbtree_oset.c: New file.
45504         * lib/gl_anytree_oset.h: New file.
45505
45506 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45507
45508         * m4/mkancesdirs.m4: New file.
45509         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
45510         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
45511         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
45512         it.
45513
45514 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45515
45516         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
45517         * lib/mkancesdirs.h: New files.
45518         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
45519         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
45520         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
45521         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
45522         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
45523         callers changed.  Revamp internals significantly, by not
45524         attempting to create directories that are temporarily more
45525         permissive than the final results.  Do not attempt to use
45526         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
45527         This removes some race conditions, fixes some bugs, and simplifies
45528         things.  Use new dirchownmod function to do owner and mode changes.
45529         * lib/mkdir-p.h: Likewise.
45530         * lib/modechange.c (octal_to_mode): New function.
45531         (struct mode_change): New member mentioned.
45532         (make_node_op_equals): New arg mentioned.  All callers changed.
45533         (mode_compile): Keep track of which mode bits the user has explicitly
45534         mentioned.
45535         (mode_adjust): New arg DIR, so that we implement the X op correctly.
45536         New arg PMODE_BITS, to keep track of which mode bits the user
45537         mentioned; it treats S_ISUID and S_ISGID speciall.
45538         All callers changed.
45539         * lib/modechange.h: Likewise.
45540
45541 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45542
45543         * MODULES.html.sh: Add mkancestors.
45544         * modules/mkancesdirs: New module.
45545         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
45546         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
45547         The chdir-safer and afs files are now orphans; I'll remove them
45548         unless someone speaks up.
45549         Add lib/dirchownmod.c, lib/dirchownmod.h.
45550         (Depends-on): Remove alloca, chown, save-cwd, dirname.
45551         Add lchown, mkancesdirs.
45552         (Maintainer): Add self.
45553
45554 2006-07-15  Karl Berry  <karl@gnu.org>
45555
45556         * gnulib-tool: help message wording/arrangement.
45557
45558 2006-07-14  Simon Josefsson  <jas@extundo.com>
45559
45560         * doc/gnulib.texi (Libtool and Windows): New section.
45561
45562 2006-07-12  Simon Josefsson  <jas@extundo.com>
45563
45564         * modules/gendocs (License): Fix license, approved by Karl.
45565
45566 2006-07-12  Eric Blake  <ebb9@byu.net>
45567
45568         * MODULES.html.sh: Add gendocs.
45569
45570 2006-07-11  Eric Blake  <ebb9@byu.net>
45571
45572         * modules/fdl: New module, to install doc/fdl.texi.
45573         * MODULES.html.sh: Add new section for documentation modules.
45574         * gnulib-tool: Avoid space-tab.
45575         (--doc-base): New option, to manage files from doc.
45576
45577 2006-07-11  Eric Blake  <ebb9@byu.net>
45578
45579         * m4/absolute-header.m4: Fix comments to match recent change.
45580
45581 2006-07-11  Eric Blake  <ebb9@byu.net>
45582
45583         * gnulib-tool: List --doc-base before --tests-base.
45584
45585 2006-07-11  Derek R. Price  <derek@ximbiot.com>
45586
45587         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
45588
45589 2006-07-11  Bruno Haible  <bruno@clisp.org>
45590
45591         * README: Mention where to put documentation.
45592
45593 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45594
45595         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
45596
45597 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
45598
45599         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
45600         to stdint.m4.
45601
45602 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
45603
45604         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
45605         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
45606         "no/such/file/stdint.h" when there is no such file, so that
45607         the resulting C code can be parsed by dodgy compilers.
45608         Problems reported by Bob Proulx.
45609
45610 2006-07-10  Derek R. Price  <derek@ximbiot.com>
45611
45612         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
45613         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
45614         macros into the GNU _D_EXACT_NAMLEN.
45615         * lib/savedir.c:  Likewise.
45616         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
45617
45618 2006-07-10  Derek R. Price  <derek@ximbiot.com>
45619         and Paul Eggert  <eggert@cs.ucla.edu>
45620
45621         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
45622         * m4/savedir.m4:
45623         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
45624         macros into the GNU _D_EXACT_NAMLEN.
45625
45626 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45627
45628         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
45629         around the absolute name, to work around a problem with the HP-UX
45630         11.23 native C compiler, reported by Bob Proulx.
45631
45632 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45633
45634         * doc/maintain.texi, make-stds.texi: Sync from
45635         <http://savannah.gnu.org/projects/gnustandards>.
45636
45637 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
45638
45639         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
45640
45641 2006-07-09  Jim Meyering  <jim@meyering.net>
45642
45643         * m4/glob.m4: Remove a doubled word in a comment.
45644
45645 2006-07-09  Jim Meyering  <jim@meyering.net>
45646
45647         * lib/argp-pv.c: Remove a doubled word in a comment.
45648         * lib/check-version.c (check_version): Likewise.
45649         * lib/javacomp.c (compile_java_class): Likewise.
45650
45651 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
45652
45653         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
45654         for the benefit of people using Autoconf 2.60.  If you want to
45655         support older Autoconf versions you can copy m4/onceonly_2_57.m4
45656         (or m4/onceonly.m4, if pre-2.57) manually.
45657
45658 2006-07-08  Jim Meyering  <jim@meyering.net>
45659
45660         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
45661         comment.
45662         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
45663         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
45664         comment.
45665
45666 2006-07-08  Jim Meyering  <jim@meyering.net>
45667
45668         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
45669
45670 2006-07-07  Simon Josefsson  <jas@extundo.com>
45671
45672         * tests/test-crc.c: Change expected crc value, the test vector
45673         were probably computed using the old broken crc.c?
45674
45675 2006-07-06  Simon Josefsson  <jas@extundo.com>
45676
45677         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
45678         now the canonical place for the M4 file).
45679
45680         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
45681         from the sys_socket dependency now.
45682
45683         * modules/inet_pton (Files): Ditto.
45684
45685         * modules/inet_ntop (Files): Ditto.
45686
45687 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
45688
45689         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
45690         not gl_PREREQ_GETUSERSHELL.
45691
45692 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45693
45694         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
45695         with only one argument, for Autoconf 2.60.
45696         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
45697         expand to nothing, so add a shell command to avoid syntax error.
45698         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
45699
45700 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45701
45702         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
45703
45704 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45705
45706         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
45707         no longer needed.  Check for isblank decl.
45708         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
45709         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
45710         of existence.
45711
45712 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45713
45714         * lib/getloadavg.c: Use __VMS, not VMS.
45715         * lib/getopt.c: Likewise.
45716         * lib/getpagesize.h: Likewise.
45717         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
45718         and probably does not work.
45719
45720 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45721
45722         * lib/.cppi-disable: Add wcwidth.
45723         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
45724         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
45725         (ISGRAPH): Remove.  All uses changed to isgraph.
45726         (FOLD) [!defined _LIBC]: Remove special case.
45727         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
45728         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
45729         HAVE_ISBLANK.
45730         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
45731         case.
45732
45733 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
45734
45735         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
45736         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
45737         brackets.  Other minor changes to suppress some compiler
45738         warnings.
45739
45740 2006-07-06  Derek R. Price  <derek@ximbiot.com>
45741         and Paul Eggert  <eggert@cs.ucla.edu>
45742
45743         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
45744         of invoking obsolescent AC_HEADER_DIRENT macro.
45745         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
45746         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
45747         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
45748         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
45749         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
45750         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
45751         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
45752         * m4/readdir.m4: Remove; no longer needed.
45753
45754 2006-07-06  Derek R. Price  <derek@ximbiot.com>
45755         and Paul Eggert  <eggert@cs.ucla.edu>
45756
45757         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
45758         Don't worry about this obsolete case any more.
45759         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
45760         directories.
45761         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
45762         worry about this obsolete case any more.
45763         * lib/fts.c: Likewise.
45764         * lib/getcwd.c: Likewise.
45765         * lib/glob.h: Likewise.
45766         * lib/savedir.c: Likewise.
45767
45768 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45769
45770         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
45771         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
45772         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
45773         needed.
45774         All uses removed.
45775         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45776         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
45777         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
45778         needed.
45779         * m4/getdate.m4 (gl_GETDATE): Likewise.
45780         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
45781         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
45782         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
45783         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45784         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
45785         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
45786         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
45787         needed.
45788
45789 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45790
45791         * lib/memcasecmp.c: Include <limits.h>.
45792         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
45793         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
45794         Don't assume isdigit succeeds only on '0' through '9'.
45795
45796 2006-07-05  Eric Blake  <ebb9@byu.net>
45797
45798         * modules/getaddrinfo (Depends-on): Add snprintf.
45799
45800 2006-07-05  Eric Blake  <ebb9@byu.net>
45801
45802         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
45803         to avoid 'header present but could not be compiled' on cygwin.
45804
45805 2006-07-05  Eric Blake  <ebb9@byu.net>
45806
45807         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
45808         missing from netdb.h.
45809         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
45810
45811 2006-07-05  Derek R. Price  <derek@ximbiot.com>
45812
45813         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
45814         no longer needed.
45815         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
45816         * m4/getdate.m4 (gl_GETDATE): Likewise.
45817         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
45818         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
45819         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
45820         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
45821         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
45822
45823 2006-07-05  Derek R. Price  <derek@ximbiot.com>
45824
45825         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
45826         All uses of is_space replaced by isspace.
45827         * lib/exit.h: Don't talk about STDC_HEADERS.
45828         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
45829         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
45830         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
45831         replaced by isprint etc.
45832         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
45833         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
45834         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
45835         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
45836         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
45837         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
45838
45839 2006-07-05  Bruno Haible  <bruno@clisp.org>
45840
45841         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
45842         the function exists, before testing against AIX.
45843         Reported by Martin Lambers <marlam@marlam.de>.
45844
45845 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
45846
45847         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
45848         From Mark D. Baushke.
45849
45850 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
45851
45852         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
45853         to the absolute name, not just one, to bypass Sun C 5.8's
45854         "warning: #include of /usr/include/... may be non-portable".
45855
45856 2006-07-04  Eric Blake  <ebb9@byu.net>
45857
45858         * modules/dirname-tests: New test module.
45859         * tests/test-dirname.c: New file, replacing dirname.c
45860         TEST_DIRNAME section that was recently deleted.
45861
45862 2006-07-04  Bruno Haible  <bruno@clisp.org>
45863
45864         Assume ANSI C header files and <ctype.h> functions.
45865         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
45866         (mbsnwidth): Use isprint, iscntrl instead.
45867
45868 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45869
45870         Merge from coreutils.
45871         * MODULES.html.sh: Add xstrtold.
45872         * modules/xstrtold: New file.
45873         * modules/cycle-check (Files): Add lib/same-inode.h.
45874         * modules/dirname (Files): Add m4/double-slash-root.m4.
45875         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
45876         * modules/mkdir-p (Files): Add lib/same-inode.h.
45877         * modules/same (Files): Add lib/same-inode.h.
45878
45879 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45880
45881         * m4/absolute-header.m4: Renamed from full-header-path.m4.
45882         This is to keep the terminology clean; POSIX talks about
45883         "absolute pathnames", not "full pathnames", but the GNU
45884         Coding Standards say to use "path" for something else;
45885         so use "absolute" to keep both sides happy.
45886         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
45887         Set gl_absolute_header, not gl_full_header_path.
45888         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
45889         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
45890         All uses changed.
45891
45892         Merge from coreutils.
45893
45894         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
45895
45896         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
45897         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
45898         want to require the building of c-strtod.o.
45899         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
45900         needs -lm directly.
45901         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
45902
45903         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
45904
45905         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
45906         --as-needed option if available.  Problem reported by Albert Chin in
45907         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
45908         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
45909         cc merely issues a bunch of annoying warnings for --as-needed
45910         (this problem was reported by Bob Proulx).  Also, try linking with
45911         -lm to detect a bug in binutils 2.16 (this problem was reported
45912         by Ralf Wildenhues).
45913
45914         2006-06-18  Jim Meyering  <jim@meyering.net>
45915
45916         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
45917         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
45918         macro.
45919         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
45920         also check for glibc-2.4's abort-inducing bug.
45921
45922         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
45923         Low-probability clean-up should be to use rmdir to get rid of
45924         the just-created directory, not unlink.
45925
45926         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
45927         configure fail, and request a bug report to inform us about it.
45928         Add a comment that, barring reports to the contrary, in 2007 we'll
45929         assume ftruncate is universally available.
45930
45931         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
45932
45933         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
45934
45935         2006-03-12  Jim Meyering  <jim@meyering.net>
45936
45937         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
45938         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
45939         * m4/same.m4 (gl_SAME): Likewise.
45940         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
45941
45942         2006-03-11  Eric Blake  <ebb9@byu.net>
45943
45944         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
45945         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
45946         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
45947         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
45948
45949 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45950
45951         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
45952         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
45953         reported by Mark D. Baushke, one in
45954         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
45955
45956         Merge from coreutils.
45957
45958         * lib/.cppi-disable: Add stdint_.h.
45959         * lib/.cvsignore: Add stdint.h.
45960
45961         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
45962
45963         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
45964         both double and long double versions.
45965         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
45966         * lib/xstrtold.c: New file.
45967         * lib/xstrtod.h (xstrtold): New decl.
45968
45969         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45970
45971         * lib/filemode.c (setst): Remove.
45972         (strmode): Rewrite to avoid setst.  This makes the code shorter,
45973         (arguably) clearer, and the generated code is a bit smaller on my
45974         Debian GNU/Linux stable x86 host.
45975
45976         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
45977
45978         * lib/filemode.c: Include "filemode.h" first, to test the interface.
45979         Assume that filemode.h includes sys/types.h and sys/stat.h.
45980         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
45981         (ftypelet): Reorder to put common cases first, for efficiency.
45982         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
45983         to do 'M'.
45984         (strmode): Renamed from mode_string, and now stores 12 bytes instead
45985         of 10, for compatibility with FreeBSD.  All callers changed.
45986         (filemodestring): Now stores 12 bytes instead of 10, and sets file
45987         types that can't be deduced solely from st_mode.  First arg is now a
45988         const pointer.
45989         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
45990         (strmode): Renamed from mode_string.
45991         (filemodestring): New decl.
45992         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
45993         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
45994         needed.
45995         (S_ISPORT, S_ISWHT): New macros, if not already defined.
45996
45997         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
45998
45999         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
46000         fsusage.h now does that.  Include fsusage.h first, to test interface.
46001         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
46002         at most one method (the old code could have generated decls that
46003         didn't conform to C89, not that this was ever exercised).
46004         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
46005
46006         2006-03-19  Jim Meyering  <jim@meyering.net>
46007
46008         Work even in a chroot where d_ino values for entries in "/"
46009         don't match the stat.st_ino values for the same names.
46010         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
46011         number, iterate through all entries again, using lstat instead.
46012         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
46013         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
46014
46015         * lib/getcwd.c (__getcwd): Clarify a comment.
46016         Use memcpy in place of a call to strcpy.
46017
46018         2006-03-12  Jim Meyering  <jim@meyering.net>
46019
46020         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
46021         matches that of the current directory (which we're about to chdir ".."
46022         out of), then save the dev-ino of the parent, instead.
46023
46024         * lib/same-inode.h (SAME_INODE): New file/macro.
46025         * lib/chdir-safer.c (SAME_INODE): Remove definition.
46026         Include "same-inode.h", instead.
46027         * lib/same.c: Likewise.
46028         * lib/cycle-check.h: Include "same-inode.h".
46029         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
46030         * lib/cycle-check.c (SAME_INODE): Remove definition.
46031         * lib/root-dev-ino.h: Include "same-inode.h".
46032
46033         2006-03-11  Eric Blake  <ebb9@byu.net>
46034
46035         * lib/same.c (same_name): s/base_name/last_component/
46036         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
46037         * lib/filenamecat.c (file_name_concat): Likewise.
46038
46039         2006-03-11  Eric Blake  <ebb9@byu.net>,
46040                     Paul Eggert  <eggert@cs.ucla.edu>
46041
46042         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
46043         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
46044         drive prefix.
46045         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
46046         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
46047         (last_component): New method.
46048         * lib/dirname.c (dir_len): Determine when drive letters need a
46049         subsequent slash.  Preserve // when it is special.
46050         (dir_name): Don't append dot when drive letter is absolute.
46051         [TEST_DIRNAME]: Move into a full-blown gnulib test.
46052         * lib/basename.c (base_name): New semantics - malloc the result.
46053         Preserve // when it is special.  Preserve relative files that look
46054         like drive letters.
46055         (base_len): Preserve // when it is special.
46056         (last_component): New method, similar to old base_name semantics.
46057         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
46058         base_name.  Strip redundant slashes from ///.
46059
46060 2006-07-03  Jim Meyering  <jim@meyering.net>
46061
46062         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
46063         macro is used before the first cycle_check call.
46064
46065 2006-07-03  Eric Blake  <ebb9@byu.net>
46066
46067         * modules/dirname (Depends-on): Add xstrndup.
46068
46069 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46070
46071         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
46072         test cases, so that config.log is a bit easier to follow.
46073
46074 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46075
46076         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
46077         both are 64 bits, since this seems to be the tradition, and this
46078         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
46079         we ever run into a host that prefers long long to long in this
46080         case, we'll need another configure-time test.  Problem reported by
46081         Jim Meyering.
46082
46083 2006-07-02  Eric Blake  <ebb9@byu.net>
46084
46085         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
46086
46087 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46088
46089         * modules/inttypes (Depends-on): No longer depends on stdint.
46090         * modules/stdint (Description): Say more about assumptions.
46091         Say that the fast types might differ.  Say macros are used.
46092         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
46093         (Makefile.am): Revise list of substituted symbols to match
46094         new stdint.m4.
46095         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
46096         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
46097         * tests/test-stdint.c (verify_same_types)
46098         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
46099         the code conforms to C99/C89.
46100         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
46101         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
46102
46103 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46104
46105         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
46106         but fix a bug, by requiring at least 64 bits.
46107         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
46108         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
46109         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
46110         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
46111
46112         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
46113         changes.  Make 2.59 a prerequisite.  Check and substitute for
46114         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
46115         inttypes.h.  Do not use special include files; just use the
46116         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
46117         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
46118         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
46119         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
46120         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
46121         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
46122         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
46123         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
46124         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
46125         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
46126         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
46127         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
46128         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
46129         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
46130         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
46131         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
46132         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
46133         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
46134         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
46135         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
46136         WINT_MAX.  Check for C99 conformance more strictly, by detecting
46137         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
46138         not check for things that C99 does not require, e.g., int8_t.  If
46139         a test isn't needed unless <stdint.h> isn't working, and is
46140         unlikely to be needed for any other reason, then don't do it
46141         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
46142         size_t, since we assume C89 freestanding at least.  Do not check
46143         for sig_atomic_t, wchar_t, or wint_t, since the code now does
46144         the right thing even if the types are not defined.  Instead use:
46145         (gl_STDINT_TYPE_PROPERTIES): New macro.
46146         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
46147         testing whether <sys/types.h> clashes, as Autoconf does this for
46148         us now.  All uses removed.
46149         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
46150         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
46151         (gl_CHECK_TYPE_SAME):
46152         Remove; no longer needed.
46153         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
46154         exists, since we'll return 0 anyway in that case.
46155         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
46156
46157 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46158
46159         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
46160         possible collision with system files.
46161         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
46162         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
46163         WCHAR_MIN and WCHAR_MAX in this case.
46164         (<stddef.h>): Do not include; no longer needed.
46165         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
46166         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
46167         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
46168         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
46169         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
46170         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
46171         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
46172         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
46173         !defined(__c99))]: Include in this case too, since it's harmless
46174         now.
46175         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
46176         dangerous to do so.
46177         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
46178         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
46179         (_STDINT_MIN, _STDINT_MAX): New macros.
46180         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
46181         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
46182         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
46183         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
46184         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
46185         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
46186         macros, not typedefs; this simplifies things quite a bit.
46187         Use long int for all types narrower than int64_t.
46188         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
46189         Define in terms of long long int or int64_t or long int,
46190         not int64_t or int32_t.  This saves some compile-time testing.
46191         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
46192         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
46193         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
46194         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
46195         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
46196         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
46197         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
46198         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
46199         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
46200         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
46201         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46202         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46203         undef any previous version and define our own version, for
46204         simplicity and consistency with the new macros for types.
46205         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46206         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46207         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
46208         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
46209         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
46210         @WINT_T_SUFFIX@ to keep things simple here.
46211         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
46212         Simplify by assuming typical 8/16/32/64 host, since we're
46213         already doing that elsewhere anyway.
46214         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
46215         and assume long long int is 64 bits if available.  This
46216         speeds up 'configure'.
46217
46218 2006-07-01  Eric Blake  <ebb9@byu.net>
46219
46220         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
46221         Reported by Andreas Buening.
46222
46223 2006-07-01  Eric Blake  <ebb9@byu.net>
46224
46225         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
46226
46227 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
46228
46229         * lib/getaddrinfo.c: fixed typo
46230
46231 2006-06-29  Jim Meyering  <jim@meyering.net>
46232
46233         * modules/strftime (Maintainer): Add my name, since with the
46234         FPRINTFTIME changes strftime.c has forked from glibc.
46235
46236 2006-06-29  Eric Blake  <ebb9@byu.net>
46237
46238         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
46239
46240 2006-06-29  Eric Blake  <ebb9@byu.net>
46241
46242         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
46243
46244 2006-06-29  Eric Blake  <ebb9@byu.net>
46245
46246         * lib/stat_.h: New file.
46247
46248 2006-06-29  Eric Blake  <ebb9@byu.net>
46249
46250         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
46251         unused static function.
46252
46253 2006-06-29  Eric Blake  <ebb9@byu.net>
46254
46255         * doc/functions.texi (Function Portability): Document missing lstat
46256         on mingw.
46257
46258 2006-06-29  Eric Blake  <ebb9@byu.net>
46259
46260         * MODULES.html.sh: Add sys_stat.
46261         * modules/sys_stat: New module.
46262         * modules/mkstemp (Depends-on): Add sys_stat.
46263
46264 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46265
46266         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
46267
46268 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46269
46270         * m4/c-bs-a.m4: Removed.
46271
46272 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46273
46274         * lib/strftime.c: Assume strftime() exists.
46275
46276 2006-06-29  Derek Price  <derek@ximbiot.com>
46277
46278         * modules/c-bs-a: Removed - \a is C89.
46279         * MODULES.html.sh: Remove c-bs-a.
46280
46281 2006-06-29  Bruno Haible  <bruno@clisp.org>
46282
46283         * modules/wcwidth (License): Change to LGPL.
46284
46285 2006-06-28  Simon Josefsson  <jas@extundo.com>
46286
46287         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
46288         on _WIN32.
46289
46290         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
46291         getnameinfo.
46292
46293 2006-06-28  Simon Josefsson  <jas@extundo.com>
46294
46295         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
46296
46297 2006-06-28  Simon Josefsson  <jas@extundo.com>
46298
46299         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
46300         functions there.  It will succeed on Windows XP, but on Windows
46301         2000 and (presumably) earlier, it will fail, and use the internal
46302         re-implementation.
46303         (use_win32_p): New function.
46304         (getaddrinfo): Use strtoul on servname, to support numeric ports.
46305         Support AI_NUMERICSERV to disable getservbyname.
46306         (getnameinfo): New function, only supports
46307         NI_NUMERICHOST|NI_NUMERICSERV for now.
46308
46309         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
46310         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
46311         getnameinfo.
46312
46313 2006-06-28  Eric Blake  <ebb9@byu.net>
46314
46315         * modules/wcwidth: New file.
46316         * modules/mbchar (Depends-on): Add wcwidth.
46317         * modules/mbswidth (Depends-on): Add wcwidth.
46318         * MODULES.html.sh: Add wcwidth.
46319
46320 2006-06-28  Eric Blake  <ebb9@byu.net>
46321
46322         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
46323         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
46324
46325 2006-06-28  Eric Blake  <ebb9@byu.net>
46326
46327         * lib/xvasprintf.h: Fix comments.
46328
46329 2006-06-28  Eric Blake  <ebb9@byu.net>
46330
46331         * lib/mbchar.h (wcwidth): Include wcwidth.h.
46332         * lib/mbswidth.c (wcwidth): Move from here...
46333         * lib/wcwidth.h: ...to this new file.
46334
46335 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46336
46337         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
46338
46339         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
46340         it's obsolete.
46341         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
46342
46343 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46344
46345         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
46346         Autoconf 2.60 says this stuff was obsolete.
46347
46348 2006-06-28  Bruno Haible  <bruno@clisp.org>
46349
46350         * modules/wcwidth (Files): Add m4/wchar_t.m4.
46351
46352 2006-06-28  Bruno Haible  <bruno@clisp.org>
46353
46354         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
46355         gt_TYPE_WCHAR_T.
46356
46357 2006-06-28  Bruno Haible  <bruno@clisp.org>
46358
46359         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
46360         declaration for wcwidth.
46361         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
46362
46363 2006-06-28  Bruno Haible  <bruno@clisp.org>
46364
46365         * lib/mkdtemp.c [MINGW]: Include <io.h>.
46366         (mkdir): Define using _mkdir.
46367
46368 2006-06-28  Bruno Haible  <bruno@clisp.org>
46369
46370         * lib/getaddrinfo.h: Fix POSIX URL.
46371         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
46372         _WIN32.
46373         (use_win32_p): Make static.
46374         (getaddrinfo): Reject service name if it is empty or does not consist
46375         solely of decimal digits, or if its value is > 65535.
46376         (getnameinfo): Remove useless casts.
46377
46378 2006-06-27  Simon Josefsson  <jas@extundo.com>
46379
46380         * modules/sys_select: New file, suggested by Bruno Haible, Paul
46381         Eggert and Martin Lambers.
46382
46383 2006-06-27  Simon Josefsson  <jas@extundo.com>
46384
46385         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
46386         Eggert and Martin Lambers.
46387
46388 2006-06-27  Bruno Haible  <bruno@clisp.org>
46389
46390         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
46391         result to 0, not to empty.
46392         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
46393
46394 2006-06-27  Bruno Haible  <bruno@clisp.org>
46395
46396         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
46397
46398 2006-06-26  Simon Josefsson  <jas@extundo.com>
46399
46400         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
46401         present.
46402
46403 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
46404
46405         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
46406         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
46407         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
46408
46409 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
46410
46411         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
46412
46413 2006-06-26  Bruno Haible  <bruno@clisp.org>
46414
46415         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
46416
46417 2006-06-26  Bruno Haible  <bruno@clisp.org>
46418
46419         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
46420
46421 2006-06-26  Bruno Haible  <bruno@clisp.org>
46422
46423         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
46424         SGI C compiler in pre-C99 mode.
46425         Suggested by Mark D. Baushke and Larry Jones.
46426
46427 2006-06-26  Bruno Haible  <bruno@clisp.org>
46428
46429         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
46430         WCHAR_MAX.
46431         Reported by Mark D. Baushke and Larry Jones.
46432
46433 2006-06-26  Bruno Haible  <bruno@clisp.org>
46434
46435         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
46436         in pre-C99 mode.
46437         Suggested by Mark D. Baushke and Larry Jones.
46438
46439 2006-06-23  Simon Josefsson  <jas@extundo.com>
46440             Bruno Haible  <bruno@clisp.org>
46441
46442         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
46443         Emit mostlyclean-local rule.
46444         (func_emit_tests_Makefile_am): Likewise.
46445         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
46446
46447 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
46448
46449         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
46450
46451 2006-06-23  Bruno Haible  <bruno@clisp.org>
46452
46453         * tests/test-stdint.c: Update to match ISO C 99 Technical
46454         Corrigendum 1.
46455
46456 2006-06-23  Bruno Haible  <bruno@clisp.org>
46457
46458         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
46459
46460 2006-06-23  Bruno Haible  <bruno@clisp.org>
46461
46462         * lib/stdint_.h: Treat IRIX like OpenBSD.
46463
46464 2006-06-23  Bruno Haible  <bruno@clisp.org>
46465
46466         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
46467         ISO C 99 Technical Corrigendum 1.
46468
46469 2006-06-22  Simon Josefsson  <jas@extundo.com>
46470
46471         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
46472         MinGW.
46473
46474 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
46475
46476         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
46477         needed.  Some compiler complained about some of them.  Problem reported
46478         by Larry Jones in
46479         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
46480
46481 2006-06-21  Simon Josefsson  <jas@extundo.com>
46482
46483         * tests/test-getaddrinfo.c: New file.
46484
46485         * modules/getaddrinfo-tests: New file.
46486
46487         * MODULES.html.sh: Add inet_pton.
46488
46489         * modules/inet_pton: New file.
46490
46491 2006-06-21  Simon Josefsson  <jas@extundo.com>
46492
46493         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
46494         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
46495         of using the (limited) gnulib implementation on Windows XP.
46496
46497         * m4/inet_pton.m4: New file.
46498
46499 2006-06-21  Simon Josefsson  <jas@extundo.com>
46500
46501         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
46502         variable.
46503
46504         * lib/socket_.h: Don't define WINVER.
46505
46506         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
46507         slightly modified to work in gnulib.
46508
46509 2006-06-21  Simon Josefsson  <jas@extundo.com>
46510
46511         * doc/gnulib.texi (Windows sockets): Add.
46512
46513 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
46514
46515         * lib/read-file.c (fread_file): Start with buffer allocation of
46516         0 bytes rather than 1 byte; this simplifies the code.
46517         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
46518         code to free buffer and save/restore errno.
46519         (internal_read_file): Remove unused local.
46520
46521 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
46522
46523         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
46524         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
46525         Problem reported by Denis Excoffier in
46526         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
46527
46528 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46529
46530         * modules/sys_socket, modules/socklen: Include sys/types since
46531         FreeBSD 4.x's sys/socket.h needs it.
46532
46533 2006-06-19  Simon Josefsson  <jas@extundo.com>
46534
46535         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
46536
46537 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
46538
46539         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
46540
46541 2006-06-19  Bruno Haible  <bruno@clisp.org>
46542
46543         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
46544         and FULL_PATH_INTTYPES_H in angle brackets.
46545         Reported by Mark D. Baushke <mdb@gnu.org>.
46546
46547 2006-06-17  Eric Blake  <ebb9@byu.net>
46548
46549         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
46550         errno.
46551
46552 2006-06-17  Bruno Haible  <bruno@clisp.org>
46553
46554         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
46555         <sys/inttypes.h>.
46556
46557 2006-06-17  Bruno Haible  <bruno@clisp.org>
46558
46559         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
46560         whether errno is declared. Assume <errno.h> declares errno.
46561
46562 2006-06-17  Bruno Haible  <bruno@clisp.org>
46563
46564         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
46565
46566 2006-06-17  Bruno Haible  <bruno@clisp.org>
46567
46568         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
46569         problem on Solaris 2.5.1.
46570
46571 2006-06-16  Eric Blake  <ebb9@byu.net>
46572
46573         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
46574         * lib/unicodeio.c [!defined errno]: Likewise.
46575         * lib/strtol.c [!defined errno]: Likewise.
46576         * lib/strtod.c [!defined errno]: Likewise.
46577
46578 2006-06-15  Eric Blake  <ebb9@byu.net>
46579
46580         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
46581
46582 2006-06-15  Eric Blake  <ebb9@byu.net>
46583
46584         * config/srclist.txt (ssize_t.m4): Lose sync.
46585
46586 2006-06-15  Bruno Haible  <bruno@clisp.org>
46587
46588         * modules/stdint (Files): Include m4/full-header-path.m4,
46589         m4/size_max.m4, m4/wchar_t.m4.
46590         (Makefile.am): Many more substitutions.
46591         * modules/stdint-tests: New file.
46592         * tests/test-stdint.c: New file.
46593
46594 2006-06-15  Bruno Haible  <bruno@clisp.org>
46595
46596         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
46597         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
46598         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
46599         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
46600         gl_CHECK_TYPE_SAME): New macros.
46601
46602 2006-06-15  Bruno Haible  <bruno@clisp.org>
46603
46604         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
46605
46606 2006-06-15  Bruno Haible  <bruno@clisp.org>
46607
46608         * lib/stdint_.h: Rewritten to be fully auto-configured.
46609         Fixes bug on HP-UX/IA64.
46610
46611 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
46612
46613         * lib/getdate.y (__attribute__): Don't define if already defined.
46614         Problem reported by Larry Jones.
46615         * lib/utimens.c (__attribute__): Likewise.
46616
46617 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
46618
46619         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
46620         reported by Andreas Schwab.
46621
46622 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46623             Bruno Haible  <bruno@clisp.org>
46624
46625         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
46626         check for the declaration of strnlen and a run test that exposes the
46627         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
46628         rpl_strndup.
46629
46630 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46631             Bruno Haible  <bruno@clisp.org>
46632
46633         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
46634
46635 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46636
46637         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
46638         compile test, for Tru64 4.0D.
46639
46640 2006-05-28  Karl Berry  <karl@gnu.org>
46641
46642         * config/srclist.txt (printf-args.c): lose sync.
46643
46644 2006-05-26  Martin Lambers  <marlam@marlam.de>
46645
46646         * lib/getpass.c: Updates the test for the native W32 API, and adds
46647         missing includes, thus fixing compilation warnings.
46648
46649 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
46650
46651         * lib/exclude.c (exclude_fnmatch): New function.
46652         (excluded_file_name): Call exclude_fnmatch.
46653         * lib/exclude.h (excluded_file_name): New prototype
46654
46655 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
46656
46657         * lib/tempname.c (small_open, large_open): New macros.
46658         (__open, __open64) [!_LIBC]: Remove.
46659         (__gen_tempname): Use small_open and large_open instead of __open
46660         and __open64.  This fixes a portability bug on HP-UX 11.11i
46661         reported by Simon Wing-Tang in
46662         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
46663
46664 2006-05-24  Bruno Haible  <bruno@clisp.org>
46665
46666         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
46667         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
46668         Reported by Thorsten Maerz <torte@netztorte.de> via
46669         Aaron Stone <aaron@serendipity.cx>.
46670
46671 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
46672
46673         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
46674         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
46675         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
46676         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
46677         not really conditional on the cache.
46678         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
46679
46680 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
46681
46682         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
46683         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
46684         (my_usleep): Don't mishandle maximum value.
46685
46686 2006-05-19  Jim Meyering  <jim@meyering.net>
46687
46688         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
46689
46690 2006-05-17  Bruno Haible  <bruno@clisp.org>
46691
46692         Cygwin portability.
46693         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
46694
46695 2006-05-17  Bruno Haible  <bruno@clisp.org>
46696
46697         * lib/stdint_.h: Fix recognition of Cygwin.
46698
46699 2006-05-15  Bruno Haible  <bruno@clisp.org>
46700
46701         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
46702         on libtool patch by Ralf Wildenhues.
46703
46704 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
46705
46706         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
46707         test for C99 conformance; (bool) 0.5 is an integer constant
46708         expression, but (bool) -0.5 is not.  Problem reported by Fedor
46709         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
46710
46711 2006-05-11  Simon Josefsson  <jas@extundo.com>
46712
46713         * m4/xvasprintf.m4: Fix obvious typo.
46714
46715 2006-05-11  Jim Meyering  <jim@meyering.net>
46716
46717         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
46718         James Lemley.
46719
46720 2006-05-10  Simon Josefsson  <jas@extundo.com>
46721
46722         * lib/md4.c: Typo fix, update copyright years.
46723         (K1, K2): Don't use L because it turn computations into 64-bit on
46724         64-bit platforms.
46725
46726 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
46727
46728         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
46729         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
46730         unwanted sign propagation, e.g., on hosts with 64-bit int.
46731         There still are some problems with reeelly weird theoretical hosts
46732         (e.g., 33-bit int) but it's not worth worrying about now.
46733         * lib/sha1.c (rol): Likewise.
46734         (K1, K2, K3, K4): Remove unnecessary L suffix.
46735
46736 2006-05-10  Bruno Haible  <bruno@clisp.org>
46737
46738         * lib/des.c: Cast to avoid warnings.
46739
46740 2006-05-09  Bruno Haible  <bruno@clisp.org>
46741
46742         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
46743         (Depends-on): Depend also on xsize, stdarg.
46744         (configure.ac): Add gl_XVASPRINTF.
46745
46746 2006-05-09  Bruno Haible  <bruno@clisp.org>
46747
46748         * m4/xvasprintf.m4: New file.
46749
46750 2006-05-09  Bruno Haible  <bruno@clisp.org>
46751
46752         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
46753         (EOVERFLOW): Define fallback value.
46754         (xstrcat): New function.
46755         (xvasprintf): Recognize the special case of a string concatenation.
46756
46757 2006-05-08  Eric Blake  <ebb9@byu.net>
46758
46759         * gnulib-tool (func_version): Base copyright year on CVS date.
46760         (func_emit_copyright_notice): New function.
46761         (func_emit_lib_Makefile_am): Use it.
46762         (func_emit_tests_Makefile_am): Likewise.
46763         (func_import): Likewise.
46764
46765 2006-05-08  Bruno Haible  <bruno@clisp.org>
46766
46767         * modules/stdarg: New file.
46768         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
46769
46770 2006-05-08  Bruno Haible  <bruno@clisp.org>
46771
46772         * m4/stdarg.m4: New file, from GNU gettext.
46773
46774 2006-05-08  Bruno Haible  <bruno@clisp.org>
46775
46776         * config/srclist.txt (build-aux/config.rpath): different from latest
46777         release.
46778
46779 2006-05-08  Bruno Haible  <bruno@clisp.org>
46780
46781         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
46782
46783 2006-05-05  Jim Meyering  <jim@meyering.net>
46784
46785         * m4/warning.m4: New file, derived from bison's file by the same name.
46786
46787 2006-05-03  Bruno Haible  <bruno@clisp.org>
46788
46789         * lib/stdint_.h: Shorter URL.
46790         * lib/inttypes.h: Likewise.
46791
46792 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46793
46794         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
46795
46796 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46797
46798         * lib/verify.h: Document the internals better.  Most of this change
46799         was written by Bruno Haible.
46800
46801 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
46802
46803         * doc/verify.texi: New file, partly based on a proposal by
46804         Bruno Haible.
46805
46806 2006-05-02  Bruno Haible  <bruno@clisp.org>
46807
46808         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
46809         test from here...
46810         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
46811
46812 2006-04-29  Bruno Haible  <bruno@clisp.org>
46813
46814         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
46815         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
46816
46817 2006-04-29  Bruno Haible  <bruno@clisp.org>
46818
46819         * gnulib-tool: Make --update option actually work.
46820
46821 2006-04-29  Bruno Haible  <bruno@clisp.org>
46822
46823         * doc/gcd.texi: New file.
46824         * doc/gnulib.texi: Include it.
46825
46826 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
46827
46828         * lib/getdate.y (get_date): When adding relative date, start with the
46829         initial time, not with the result of the first mktime call.
46830
46831 2006-04-25  Bruno Haible  <bruno@clisp.org>
46832
46833         * gnulib-tool (func_import): Output the include directives in three
46834         blocks, sorted separately.
46835         Reported by Ben Pfaff <blp@cs.stanford.edu>.
46836
46837 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
46838
46839         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
46840         to define main with arguments, for C++.  Reported by Eric Blake.
46841         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
46842         Prefer 'int main ()' to 'int main (void)', for C++.
46843         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
46844         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
46845         for 'main', for C99 and C++.
46846
46847 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
46848
46849         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
46850         Don't assume that exit status -1 is valid.
46851         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
46852         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
46853         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
46854         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
46855         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
46856         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
46857         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
46858         functions can be used without declaring them, or that you can
46859         exit with status -1.
46860         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
46861
46862 2006-04-24  Karl Berry  <karl@gnu.org>
46863
46864         * config/srclist.txt (longdouble.m4): sync lost.
46865
46866 2006-04-24  Eric Blake  <ebb9@byu.net>
46867
46868         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
46869
46870 2006-04-24  Bruno Haible  <bruno@clisp.org>
46871
46872         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
46873         poll() implementation in AIX.
46874         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
46875
46876 2006-04-24  Bruno Haible  <bruno@clisp.org>
46877
46878         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
46879         assigned exactly once.
46880
46881 2006-04-23  Claudio Fontana  <claudio@gnu.org>
46882             Bruno Haible  <bruno@clisp.org>
46883
46884         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
46885         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
46886         for AM_CPPFLAGS.
46887
46888 2006-04-23  Bruno Haible  <bruno@clisp.org>
46889
46890         * modules/copy-file: Depend on unistd.
46891         * modules/execute: Likewise.
46892         * modules/fatal-signal: Likewise.
46893         * modules/findprog: Likewise.
46894         * modules/mkdtemp : Likewise.
46895         * modules/pipe: Likewise.
46896         * modules/wait-process: Likewise.
46897
46898 2006-04-23  Bruno Haible  <bruno@clisp.org>
46899
46900         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
46901         condition was already detected.
46902         Reported by Ben Pfaff <blp@cs.stanford.edu>.
46903
46904 2006-04-23  Bruno Haible  <bruno@clisp.org>
46905
46906         * lib/copy-file.c: Include <unistd.h> unconditionally.
46907         * lib/execute.c: Likewise.
46908         * lib/fatal-signal.c: Likewise.
46909         * lib/findprog.c: Likewise.
46910         * lib/mkdtemp.c: Likewise.
46911         * lib/pipe.h: Likewise.
46912         * lib/pipe.c: Likewise.
46913         * lib/wait-process.h: Likewise.
46914
46915 2006-04-23  Bruno Haible  <bruno@clisp.org>
46916
46917         * gnulib-tool (func_usage): Fix --import description. Document
46918         --update.
46919         (func_import): Create temporary file in a temporary directory, if
46920         --dry-run is specified. Silence errors from 'grep' when there are no
46921         m4 files in $m4dir.
46922         (func_create_testdir): Silence errors from 'grep' when there are no
46923         m4 files in $m4dir.
46924         Reported by Karl Berry <karl@freefriends.org>.
46925
46926 2006-04-20  Bruno Haible  <bruno@clisp.org>
46927
46928         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
46929         one argument, so that the code will be portable to Autoconf 2.60.
46930         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
46931         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
46932         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
46933
46934 2006-04-19  Derek Price  <derek@ximbiot.com>
46935             Eric Blake  <ebb9@byu.net>
46936
46937         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
46938         rather than "/full/path.h".  Update comment to match.  Shorten &
46939         generalize m4_translit call via AS_TR_CPP.
46940
46941 2006-04-19  Derek Price  <derek@ximbiot.com>
46942             Eric Blake  <ebb9@byu.net>
46943
46944         * lib/inttypes.h: Correct grammar in comment.
46945
46946 2006-04-18  Derek Price  <derek@ximbiot.com>
46947             Paul Eggert  <eggert@cs.ucla.edu>
46948
46949         * modules/inttypes: New file.
46950         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
46951
46952 2006-04-18  Derek Price  <derek@ximbiot.com>
46953             Paul Eggert  <eggert@cs.ucla.edu>
46954
46955         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
46956         New files.
46957
46958 2006-04-18  Derek Price  <derek@ximbiot.com>
46959             Paul Eggert  <eggert@cs.ucla.edu>
46960
46961         * lib/inttypes.h: New file.
46962         * lib/strtoimax.c: Assume <inttypes.h>.
46963
46964 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
46965
46966         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
46967         isn't mounted.  Problem reported by Kir Kolyshkin.
46968
46969 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46970
46971         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
46972         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
46973         Derek R. Price.
46974         * lib/regex.h (RE_DUP_MAX): Update comment to match current
46975         implementation.
46976
46977 2006-04-12  Eric Blake  <ebb9@byu.net>
46978
46979         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
46980         is now done automatically by the corresponding Autoconf macro.
46981
46982 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
46983
46984         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
46985         time_r.h.
46986
46987 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
46988
46989         Merge regex changes from libc, removing some of our
46990         POSIX-conformance changes that were rejected and redoing them in a
46991         less-intrusive way.
46992
46993         * lib/regcomp.c (re_compile_internal, init_dfa):
46994         Length arg is now size_t, not Idx.  All uses changed.
46995         (peek_token): Forward decl now says internal_function.
46996         (__re_error_msgid, __re_error_msgid_idx):
46997         Now static rather than extern with attribute_hidden.
46998         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
46999         For some reason libc prefers K&R style defns for external functions.
47000         (regerror) [!defined _LIBC]: Likewise.
47001         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
47002         (seek_collating_symbol_entry, lookup_collation_sequence_value):
47003         (build_range_exp, build_collating_symbol):
47004         Use K&R-style defn.
47005         (re_compile_fastmap): Use '\0' to memset, not 0.
47006         (utf8_sb_map): Make the calculations more obvious.
47007         (init_dfa, parse_bracket_exp, build_charclass_op):
47008         Call calloc and cast result, as glibc does.
47009         (init_word_char, fetch_token, peek_token, peek_token_bracket):
47010         (build_range_exp, build_collating_symbol):
47011         Now internal functions.
47012
47013         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
47014
47015         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
47016         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
47017         Don't depend on VMS; depend on __VMS instead, for POSIX
47018         namespace cleanness.
47019         (regoff_t): Define to ssize_t, not long int.
47020
47021         Remove the REG_ macros named below.  Instead, make the old names
47022         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
47023         __USE_GNU_REGEX.
47024         (REG_BACKSLASH_ESCAPE_IN_LISTS):
47025         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
47026         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
47027         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
47028         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
47029         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
47030         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
47031         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
47032         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
47033         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
47034         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
47035         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
47036         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
47037         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
47038         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
47039         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
47040         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
47041         (REG_NREGS):
47042         Remove.  All uses replaced by the old RE_* names.
47043         (RE_BACKSLASH_ESCAPE_IN_LISTS):
47044         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
47045         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
47046         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
47047         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
47048         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
47049         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
47050         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
47051         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
47052         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
47053         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
47054         Don't bother having these macros be independent of each others'
47055         values, since they no longer exist in the POSIX name space.
47056
47057         Rename the following member names back to their old names,
47058         unless !__USE_GNU_REGEX.  All uses changed back.
47059         (buffer): Renamed from re_buffer.
47060         (allocated): Renamed from re_allocated.
47061         (used): Renamed from re_used.
47062         (syntax): Renamed from re_syntax.
47063         (fastmap): Renamed from re_fastmap.
47064         (translate): Renamed from re_translate.
47065         (can_be_null): Renamed from re_can_be_null.
47066         (regs_allocated): Renamed from re_regs_allocated.
47067         (fastmap_accurate): Renamed from re_fastmap_accurate.
47068         (no_sub): Renamed from re_no_sub.
47069         (not_bol): Renamed from re_not_bol.
47070         (not_eol): Renamed from re_not_eol.
47071         (newline_anchor): Renamed from re_newline_anchor.
47072         (num_regs): Renamed from rm_num_regs.
47073         (start): Renamed from rm_start.
47074         (end): Renamed from rm_end.
47075
47076         (free_state): Move up a bit.
47077
47078         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
47079         #define to be empty.
47080         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
47081         when that is what is intended.
47082         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
47083         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
47084         (MAX): New macro.
47085         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
47086         All uses changed back to re_malloc, etc.  It's now the caller's
47087         responsibility to check for overflow; all callers changed.
47088         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
47089         (re_x2nrealloc): Remove.
47090         (free_state): Remove decl.
47091
47092         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
47093         (re_set_registers, re_exec):
47094         Use K&R-style defn.
47095
47096         2006-01-31  Roland McGrath  <roland@redhat.com>
47097
47098         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
47099         Reported by Mike Frysinger <vapier@gentoo.org>.
47100
47101         2006-01-15  Andreas Jaeger  <aj@suse.de>
47102
47103         [BZ #1950]
47104         * lib/regex_internal.c (re_string_reconstruct): Adjust for
47105         build_wcs_upper_buffer change.
47106         (build_wcs_upper_buffer): Change return type.
47107
47108         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
47109
47110         * lib/regex_internal.h: Include <stdint.h> if available.
47111
47112         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
47113
47114         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
47115
47116         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
47117
47118         * lib/regcomp.c: Adjust for changed secondary hash function.
47119
47120         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
47121
47122         * lib/regex.h: Pretty printing.
47123         Clean up namespace a bit.
47124
47125         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
47126
47127         * lib/regexec.c (update_cur_sifted_state, check_arrival,
47128         check_arrival_add_next_nodes): Avoid using uninitialized variable.
47129
47130         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
47131                     Ulrich Drepper  <drepper@redhat.com>
47132
47133         [BZ #1302]
47134         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
47135         changed.
47136         (bitset_word_t): Renamed from bitset_word.  All uses changed.
47137
47138         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
47139
47140         [BZ #281]
47141         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
47142         * lib/regcomp.c: Remove unnecessary uses of
47143         unsigned RE_TRANSLATE_TYPE.
47144         * lib/regex_internal.h: Likewise.
47145         * lib/regex_internal.c: Likewise.
47146         * lib/regexec.c: Likewise.
47147         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
47148
47149         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
47150
47151         * lib/regexec.c (find_recover_state): Remove unnecessary
47152         initialization.
47153         (transit_state_bkref): Make DFA a const pointer.
47154         (get_subexp): Likewise.
47155         (check_arrival): Likewise.
47156         (update_cur_sifted_state): Likewise.
47157         (re_search_internal): Likewise.
47158         (prune_impossible_nodes): Likewise.
47159         (acquire_init_state_context): Likewise.
47160         (proceed_next_node): Likewise.
47161         (set_regs): Likewise.
47162         (free_fail_stack_return): Likewise.
47163         (check_arrival_expand_ecl): Mark DFA parameter as const.
47164         (check_arrival_expand_ecl_sub): Likewise.
47165         (check_subexp_limits): Likewise.
47166         (sub_epsilon_src_nodes):  Likewise.
47167         (add_epsilon_src_nodes):  Likewise.
47168         (merge_state_array): Likewise.
47169         (update_regs): Likewise.
47170         (build_trtable): Likewise.
47171         (sift_states_backward): Mark MCTX parameter as const.
47172         (build_sifted_states): Likewise.
47173         (update_cur_sifted_state): Likewise.
47174         (sift_states_mkref): Likewise.
47175         (check_arrival_expand_ecl): Mark eclosure as const.
47176         (check_dst_limits_calc_pos_1): Likewise.
47177         * lib/regex_internal.h (re_match_context_t): Make dfa a const
47178         pointer.
47179
47180         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
47181
47182         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
47183         (transit_state_sb): Likewise.
47184         (transit_state_mb): Likewise.
47185         (sift_states_iter_mb): Likewise.
47186         (check_arrival_add_next_nodes): Likewise.
47187         (check_node_accept_bytes): Change first parameter to pointer-to-const.
47188         [_LIBC] (re_search_2_stub): Use mempcpy.
47189
47190         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
47191         mbrtowc for very simple UTF-8 case.
47192
47193         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
47194         a pointer-to-const.
47195         (re_acquire_state_context): Likewise.
47196         * lib/regex_internal.h: Adjust prototypes.
47197
47198         * lib/regex.c: Prevent using C++ compilers.
47199
47200         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
47201         (re_acquire_state_context): Likewise.
47202
47203 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47204
47205         * modules/regex (Depends-on): Add ssize_t.
47206
47207 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47208
47209         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
47210         translation table.
47211
47212 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47213
47214         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
47215
47216 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
47217             Bruno Haible  <bruno@clisp.org>
47218
47219         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
47220         <sys/types.h> and <inttypes.h>.
47221
47222 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47223
47224         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
47225         `__error_t_defined', so argp.h will not typedef the former.
47226
47227 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
47228
47229         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
47230         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
47231         glibc names.  Even if glibc is changed to conform to POSIX, the
47232         traditional names will be available anyway, since regex depends on
47233         the extensions module.  Also, fix a longstanding typo in the
47234         implementation of Spencer ERE test #75 from grep 2.3.  Problems
47235         reported by Emanuele Giaquinta.  Also, change sense of cached
47236         variable, so that the message makes sense.
47237
47238 2006-03-24  Simon Josefsson  <jas@extundo.com>
47239
47240         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
47241         including some doc fixes.
47242         (base64_encode_alloc): Fix +1 bug on allocation failures.
47243
47244 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47245
47246         * lib/base64.c (base64_encode): Do not read past end of array with
47247         unsanitized input on systems with CHAR_BIT > 8.
47248
47249 2006-03-24  Eric Blake  <ebb9@byu.net>
47250
47251         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
47252
47253 2006-03-22  Karl Berry  <karl@gnu.org>
47254
47255         * config/srclist.txt (*setenv.[ch]): get from coreutils.
47256         * config/srclistvars.sh (COREUTILS): new var.
47257
47258 2006-03-17  Jim Meyering  <jim@meyering.net>
47259
47260         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
47261         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
47262
47263 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47264
47265         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
47266         no longer needs it.  Instead, check that regoff_t is as least
47267         as wide as ptrdiff_t.
47268
47269         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
47270         so that our regex.h stays compatible with the installed regex.
47271         This is helpful for installers who configure --without-included-regex.
47272         Problem reported by Emanuele Giaquinta.
47273
47274 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47275
47276         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
47277         Typedef to long int, not to off_, as POSIX will likely change
47278         in that direction.
47279
47280 2006-03-15  Eric Blake  <ebb9@byu.net>
47281
47282         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
47283
47284 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
47285
47286         * lib/argp-help.c (validate_uparams): Fix typo
47287         * lib/argp-parse.c (argp_default_options): Consistently begin help
47288         messages with a lowercase letter.
47289
47290 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
47291
47292         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
47293         overrun buffers and shouldn't be used (much as gets shouldn't be
47294         used).
47295         * lib/time_r.c (asctime_r, ctime_r): Likewise.
47296
47297 2006-03-08  Simon Josefsson  <jas@extundo.com>
47298
47299         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
47300         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47301
47302 2006-03-08  Simon Josefsson  <jas@extundo.com>
47303
47304         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
47305         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47306
47307 2006-03-08  Simon Josefsson  <jas@extundo.com>
47308
47309         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
47310         signal that configure disabled the device.
47311
47312 2006-03-08  Simon Josefsson  <jas@extundo.com>
47313
47314         * build-aux/maint.mk: Fix refresh-po, to handle no translated
47315         languages.
47316
47317 2006-03-07  Simon Josefsson  <jas@extundo.com>
47318
47319         * modules/getopt (Depends-on): Add unistd.
47320
47321         * modules/unistd: New file.
47322
47323 2006-03-07  Simon Josefsson  <jas@extundo.com>
47324
47325         * modules/gc-random: New file.
47326
47327 2006-03-07  Simon Josefsson  <jas@extundo.com>
47328
47329         * m4/unistd_h.m4: New file.
47330
47331 2006-03-07  Simon Josefsson  <jas@extundo.com>
47332
47333         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
47334         test to be side-effect free by storing the result in the cache
47335         variable gl_cv_lib_readline, and moving the assignment of
47336         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
47337         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47338
47339 2006-03-07  Simon Josefsson  <jas@extundo.com>
47340
47341         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
47342         error on missing devices (the functions will return an error).
47343
47344         * m4/gc.m4: Move random stuff to gc-random.m4
47345
47346 2006-03-07  Simon Josefsson  <jas@extundo.com>
47347
47348         * lib/unistd_.h: New file.
47349
47350 2006-03-07  Simon Josefsson  <jas@extundo.com>
47351
47352         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
47353
47354 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47355
47356         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
47357         Problem reported by Juan Manuel Guerrero.
47358
47359 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47360
47361         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
47362         the unistd module.
47363         * lib/getlogin_r.c: Likewise.
47364         * lib/getlogin_r.h: Likewise.
47365         * lib/glob.c: Likewise.
47366         * lib/pagealign_alloc.c: Likewise.
47367         * lib/unistd_.h: Remove; no longer needed.
47368
47369 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47370
47371         * MODULES.html.sh (Support for systems lacking POSIX:2001):
47372         Add unistd.
47373         * modules/c-stack (Depends-on): Add unistd.
47374         * modules/getlogin_r: Likewise.
47375         * modules/glob: Likewise.
47376         * modules/pagealign_alloc: Likewise.
47377         * modules/unistd (Files): Remove lib/unistd_.h.
47378         (EXTRA_DIST): Remove.
47379         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
47380         need unistd_.h.
47381         (MOSTLYCLEANFILES): Remove unistd.h-t.
47382
47383 2006-03-03  Simon Josefsson  <jas@extundo.com>
47384
47385         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
47386
47387 2006-03-03  Simon Josefsson  <jas@extundo.com>
47388
47389         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
47390         libidn and bison.
47391
47392 2006-03-03  Simon Josefsson  <jas@extundo.com>
47393
47394         * build-aux/maint.mk: Add indent target.
47395
47396 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
47397
47398         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
47399         our replacement poll.h in any case, to avoid a differing
47400         declaration from a system header.  Seen on AIX.
47401
47402 2006-03-01  Simon Josefsson  <jas@extundo.com>
47403
47404         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
47405         <kasal@ucw.cz>.
47406
47407 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
47408
47409         * modules/gettime (Depends-on): Add extensions module.
47410         * modules/nanosleep (Depends-on): Likewise.
47411         * modules/settime (Depends-on): Likewise.
47412
47413 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
47414
47415         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
47416         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
47417         pedantically.
47418         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
47419         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
47420
47421         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
47422         not "==".  Reported by Ralf Wildenhues.
47423
47424 2006-03-01  Karl Berry  <karl@gnu.org>
47425
47426         * doc/Copyright/request-*: new files, synced from gnuorg.
47427
47428 2006-03-01  Karl Berry  <karl@gnu.org>
47429
47430         * config/srclist.txt (Copyright/*): new entries.
47431
47432 2006-02-28  Simon Josefsson  <jas@extundo.com>
47433
47434         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
47435
47436 2006-02-27  Simon Josefsson  <jas@extundo.com>
47437
47438         * lib/base64.h: Indent #define's.  From Jim Meyering
47439         <jim@meyering.net>.
47440
47441 2006-02-27  Jim Meyering  <jim@meyering.net>
47442
47443         Revert the change of 2006-02-24, so these files can continue
47444         to be sync'd from gettext.
47445         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
47446         of `config.h'.
47447
47448 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
47449
47450         * modules/intprops: New file.
47451         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
47452         Add intprops.
47453         * modules/getloadavg (Files): Remove lib/intprops.h.
47454         (Depends-on): Add intprops.
47455         * modules/human: Likewise.
47456         * modules/inttostr: Likewise.
47457         * modules/openat: Likewise.
47458         * modules/sig2str: Likewise.
47459         * modules/userspec: Likewise.
47460         * modules/utimecmp: Likewise.
47461         * modules/xnanosleep: Likewise.
47462         * modules/xstrtol: Likewise.
47463
47464 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
47465
47466         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
47467         * modules/lock-tests (TESTS): Use $(EXEEXT).
47468         * modules/tls-tests: Likewise.
47469         * modules/argp-tests: Likewise.
47470         (check_PROGRAMS): New var, replacing...
47471         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
47472
47473 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47474
47475         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
47476         `config.h'.
47477
47478 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
47479
47480         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
47481
47482 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47483
47484         Sync from coreutils.
47485         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
47486         gl_CHDIR_SAFER.
47487
47488 2006-02-22  Jim Meyering  <jim@meyering.net>
47489
47490         Sync from coreutils.
47491         * m4/chdir-safer.m4: New file.
47492
47493 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
47494
47495         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
47496         AT_FDCWD exceeds INT_MAX.
47497         * lib/openat.h (AT_FDCWD): Likewise.
47498
47499 2006-02-17  Eric Blake  <address@hidden>
47500
47501         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
47502
47503 2006-02-16  Simon Josefsson  <jas@extundo.com>
47504
47505         * modules/getaddrinfo (Depends-on): Add sys_socket.
47506
47507 2006-02-15  Simon Josefsson  <jas@extundo.com>
47508
47509         * build-aux/maint.mk: Add dsyntax-check rule.
47510
47511 2006-02-15  Eric Blake  <ebb9@byu.net>
47512
47513         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
47514         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
47515         'present but cannot compile' warnings on cygwin.
47516         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
47517         use ws2tcpip.h if sys/socket.h works.
47518         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
47519         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
47520
47521 2006-02-14  Simon Josefsson  <jas@extundo.com>
47522
47523         * modules/maintainer-makefile (Files): Rename.
47524
47525         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
47526         and (the local) Makefile.cfg to maint-cfg.mk.
47527
47528         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
47529         to the latter.
47530
47531         * modules/maintainer-makefile: New module.
47532
47533         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
47534         severaly stripped to make it possible to build it up from scratch
47535         with reliable tests.
47536
47537         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
47538         fixes to permit overriding the default actions when configure and
47539         makefile are not available.
47540
47541 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
47542
47543         Sync from coreutils.
47544         * modules/lstat (Depends-on): Don't depend on xalloc.
47545         (License): Change from GPL to LGPL, since this is now simply a
47546         replacement for a libc function.
47547
47548 2006-02-14  Jim Meyering  <jim@meyering.net>
47549
47550         Sync from coreutils.
47551
47552         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
47553         failure on deficient systems, and simplify gnulib lgpl dependencies.
47554         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
47555         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
47556
47557         * lib/xalloc-die.c: Remove unused definition of N_.
47558
47559 2006-02-14  Jim Meyering  <jim@meyering.net>
47560
47561         Sync from coreutils.
47562         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
47563         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
47564         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
47565         double-quote uses of that variable, to accommodate the rare case in
47566         which getmntent is available in none of the libraries checked.  This
47567         happens at least on FreeBSD 5.0.
47568
47569 2006-02-13  Simon Josefsson  <jas@extundo.com>
47570
47571         * gnulib-tool (Usage): Fix --import, from
47572         karl@freefriends.org (Karl Berry).
47573
47574 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
47575
47576         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
47577
47578 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
47579
47580         * lib/argp-namefrob.h: Restore changes accidentally lost during the
47581         "autoupdate" on 2005-12-12.
47582
47583 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
47584
47585         * modules/closeout (Depends-on): Remove atexit.
47586
47587 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
47588
47589         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
47590         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
47591
47592 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
47593
47594         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
47595         __EXTENSIONS__ if this causes compilation to fail.  Problem
47596         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
47597         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
47598
47599 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
47600
47601         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
47602         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
47603         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
47604         All uses changed.
47605
47606 2006-01-26  Simon Josefsson  <jas@extundo.com>
47607
47608         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
47609         prototype is visible on mingw32.
47610
47611         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
47612         for mingw32.
47613
47614         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
47615         mingw32).
47616
47617 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
47618
47619         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
47620         attempt to open for write; this always fails, at least on POSIX
47621         hosts.  This reinstates the 2006-01-09 change, which was
47622         inadvertently removed.
47623
47624 2006-01-26  Bruno Haible  <bruno@clisp.org>
47625
47626         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
47627         Reported by Paul Eggert.
47628
47629 2006-01-26  Bruno Haible  <bruno@clisp.org>
47630             Paul Eggert  <eggert@cs.ucla.edu>
47631
47632         * lib/stdbool_.h (_Bool)
47633         [(! (defined __cplusplus || defined __BEOS__)
47634           && !defined __GNUC__
47635           && !(defined __HP_cc || defined __xlc__
47636                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
47637                || defined __sgi))]:
47638         #define to signed char in these cases too; this simplifies
47639         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
47640         etc., separately) and makes it more conservative.
47641
47642 2006-01-25  Simon Josefsson  <jas@extundo.com>
47643
47644         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
47645         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
47646         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
47647
47648 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
47649
47650         * lib/argp-namefrob.h: Bugfix. Remove stray #
47651
47652 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
47653
47654         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
47655         so that we test the test.
47656         Check for yet another HP-UX cc bug involving *bool |= bool.
47657
47658 2006-01-25  Karl Berry  <karl@gnu.org>
47659
47660         * config/srclist.txt (vasnprintf.c): sync lost.
47661
47662 2006-01-25  Jim Meyering  <jim@meyering.net>
47663
47664         Sync from the stable (b5) branch of coreutils:
47665
47666         * lib/fts.c (fts_children): Don't let close() clobber errno from
47667         failed fchdir().
47668
47669         * lib/fts.c (fts_stat): When following a symlink-to-directory,
47670         don't necessarily interpret stat-fails+lstat-succeeds as indicating
47671         a dangling symlink.  That can also happen at least for ELOOP.
47672         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
47673         FYI, this bug predates the inclusion of fts.c in coreutils.
47674
47675         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
47676         in their own block, so pre-c99 compilers don't object.
47677
47678         Avoid the double-free (first in fts_read, second in fts_close) that
47679         would occur when an `active' directory is made inaccessible (e.g.,
47680         via chmod a-x) during a traversal.
47681         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
47682         before returning.  Reproduce this failure by
47683         mkdir -p a/b; cd a; chmod a-x . b
47684         Reported by Stavros Passas.
47685
47686 2006-01-25  Jim Meyering  <jim@meyering.net>
47687
47688         * lib/fileblocks.c: Remove more useless parentheses.
47689         * lib/readutmp.h: Likewise.
47690
47691 2006-01-25  Bruno Haible  <bruno@clisp.org>
47692
47693         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
47694         warnings.
47695         Reported by Paul Eggert.
47696
47697 2006-01-25  Bruno Haible  <bruno@clisp.org>
47698
47699         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
47700         rid of a trap command. For Solaris sh.
47701         Reported by Mark D. Baushke <mdb@gnu.org>.
47702
47703 2006-01-24  Simon Josefsson  <jas@extundo.com>
47704
47705         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
47706         Bruno.
47707
47708 2006-01-24  Karl Berry  <karl@gnu.org>
47709
47710         * config/srclist.txt (argp-namefrob.h): sync lost.
47711
47712 2006-01-24  Jim Meyering  <jim@meyering.net>
47713
47714         * modules/openat (Files): Add lib/intprops.h.
47715         From Mark D. Baushke.
47716
47717 2006-01-24  Jim Meyering  <jim@meyering.net>
47718
47719         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
47720         Reported by Mark D. Baushke.
47721
47722 2006-01-24  Jim Meyering  <jim@meyering.net>
47723
47724         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
47725
47726 2006-01-24  Bruno Haible  <bruno@clisp.org>
47727
47728         * modules/strnlen (Maintainer): Change from glibc to all.
47729
47730 2006-01-24  Bruno Haible  <bruno@clisp.org>
47731
47732         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
47733         Patch by Paul Eggert.
47734
47735 2006-01-24  Bruno Haible  <bruno@clisp.org>
47736
47737         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
47738         already has it.
47739         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
47740         2005-11-26.
47741
47742         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
47743         'signed char' to avoid problems with the built-in _Bool type.
47744         Reported by Paul Eggert on 2005-11-26.
47745
47746 2006-01-24  Bruno Haible  <bruno@clisp.org>
47747
47748         * gnulib-tool (func_import): Avoid constructing complicated sed
47749         expressions inside backquote.
47750         Report and solution by Mark D. Baushke <mdb@gnu.org>.
47751
47752 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
47753
47754         These changes imported from libc.
47755         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
47756         test and two separate function calls.
47757         * lib/strndup.c (__strndup): Add libc_hidden_def.
47758
47759 2006-01-23  Simon Josefsson  <jas@extundo.com>
47760
47761         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
47762         Remove the test_*_SOURCES variable: automake infers it by default.
47763         * modules/tls-tests: Likewise.
47764
47765 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47766
47767         Work around porting bugs reported by Dieter in
47768         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
47769         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
47770         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
47771         Include "getopt.h" first, to check interface.
47772         (getenv): Declare only if defined HAVE_DECL_GETENV &&
47773         !HAVE_DECL_GETENV.
47774         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
47775         (__strndup): Revert to K&R-style function dfns, the glibc style.
47776         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
47777         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
47778         Include strnlen.h first, to get prototype properly.
47779         (strnlen): Renamed from __strnlen.
47780         Remove weak alias.
47781
47782 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47783
47784         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
47785
47786 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47787
47788         * config/srclist.txt: Adjust to reflect glibc reorganization.
47789         This affects only comments.
47790
47791 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
47792
47793          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
47794          Reported by Bruce Korb <bkorb@gnu.org>.
47795
47796 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
47797
47798         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
47799         to pacify gcc -Wswitch-default.
47800
47801 2006-01-22  Bruno Haible  <bruno@clisp.org>
47802
47803         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
47804         temporary buffer for sprintf, take into account the precision also
47805         for 'd', 'i', 'u', 'o', 'x', 'X'.
47806
47807 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
47808
47809         * modules/argp-tests: New module
47810         * tests/test-argp.c: New file
47811         * tests/test-argp-2.sh: New file
47812
47813 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
47814
47815         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
47816         (__argp_base_name): Removed
47817         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
47818         typo.
47819         (__argp_base_name): Provide macro definition or extern declaration
47820         depending on the configuration
47821
47822 2006-01-20  Simon Josefsson  <jas@extundo.com>
47823
47824         * modules/inet_ntop (Depends-on): Depend on sys_socket.
47825
47826 2006-01-20  Simon Josefsson  <jas@extundo.com>
47827
47828         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
47829
47830 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47831
47832         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
47833         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
47834         Suggested by Bruno Haible.
47835
47836 2006-01-20  Karl Berry  <karl@gnu.org>
47837
47838         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
47839         until changes propagate, I guess.
47840
47841 2006-01-19  Simon Josefsson  <jas@extundo.com>
47842
47843         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
47844
47845 2006-01-19  Simon Josefsson  <jas@extundo.com>
47846
47847         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
47848
47849 2006-01-19  Simon Josefsson  <jas@extundo.com>
47850
47851         * gnulib-tool: Set check_PROGRAMS.
47852
47853         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
47854         modules/des-tests, modules/gc-arcfour-tests,
47855         modules/gc-arctwo-tests, modules/gc-des-tests,
47856         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
47857         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
47858         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
47859         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
47860         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
47861         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
47862         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
47863         test_*_SOURCES.
47864
47865 2006-01-18  Simon Josefsson  <jas@extundo.com>
47866
47867         * modules/socklen (Depends-on): Depend on sys_socket.
47868
47869 2006-01-18  Simon Josefsson  <jas@extundo.com>
47870
47871         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
47872         modules/des-tests, modules/gc-arcfour-tests,
47873         modules/gc-arctwo-tests, modules/gc-des-tests,
47874         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
47875         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
47876         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
47877         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
47878         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
47879         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
47880         $(EXEEXT) to automake TESTS variable, for mingw32.
47881
47882 2006-01-17  Simon Josefsson  <jas@extundo.com>
47883
47884         * modules/socklen (Include): Need sys/socket.h.
47885
47886 2006-01-17  Bruno Haible  <bruno@clisp.org>
47887
47888         * modules/ssize_t (Include): Add <sys/types.h>.
47889
47890 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
47891
47892         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
47893         it's not portable and it doesn't work with cross-compiles.
47894         Problem reported by Bruno Haible.  Fix missing-$ typo in
47895         'test "gl_cv_ignore_unused_libraries" ...' that prevented
47896         -zignore from being used with Sun's C compiler.
47897
47898 2006-01-12  Simon Josefsson  <jas@extundo.com>
47899
47900         * lib/base64.c: Fix warning, reported by Bruno Haible
47901         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
47902
47903 2006-01-12  Bruno Haible  <bruno@clisp.org>
47904
47905         * modules/ldd: New file.
47906         * build-aux/ldd.sh.in: New file.
47907         * MODULES.html.sh (Support for building libraries and executables): Add
47908         ldd.
47909
47910 2006-01-12  Bruno Haible  <bruno@clisp.org>
47911
47912         * m4/ldd.m4: New file.
47913
47914 2006-01-12  Bruno Haible  <bruno@clisp.org>
47915
47916         * gnulib-tool (func_import, func_create_testdir): Don't go into an
47917         endless loop while replacing $auxdir with build-aux.
47918
47919 2006-01-11  Simon Josefsson  <jas@extundo.com>
47920
47921         * lib/stdint_.h (SIZE_MAX): Add missing (.
47922
47923 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
47924
47925         Sync from coreutils.
47926         * lib/md5.c: Fix commentary typos.
47927         (alignof, UNALIGNED_P): No need for a GCC-specific version.
47928         * lib/md5.h (__attribute__): Remove; unused.
47929         * lib/sha1.c: Fix commentary to match md5 better.
47930         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
47931         so that we don't need to worry about alignment.  All uses changed.
47932         This merges the 2005-10-28 md5 change into sha1.
47933
47934 2006-01-11  Jim Meyering  <jim@meyering.net>
47935
47936         Sync from coreutils.
47937         * lib/md5.c (OP): Fix spacing.
47938
47939 2006-01-11  Bruno Haible  <bruno@clisp.org>
47940
47941         Ensure automatic ordering between gl_LOCK and gl_ARGP.
47942         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
47943         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
47944
47945 2006-01-11  Bruno Haible  <bruno@clisp.org>
47946
47947         Ensure automatic ordering between gl_LOCK and gl_ARGP.
47948         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
47949         the "early" section as well.
47950
47951 2006-01-11  Bruno Haible  <bruno@clisp.org>
47952
47953         Avoid "ar: no archive members specified" error on MacOS X.
47954         * gnulib-tool (func_modules_add_dummy): New function.
47955         (func_import, func_create_testdir): Invoke it.
47956
47957 2006-01-11  Bruno Haible  <bruno@clisp.org>
47958
47959         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
47960         with $auxdir in AC_CONFIG_FILES statements.
47961
47962 2006-01-11  Bruno Haible  <bruno@clisp.org>
47963
47964         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
47965         Initialize also noinst_HEADERS to empty.
47966
47967 2006-01-11  Bruno Haible  <bruno@clisp.org>
47968
47969         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
47970         variables.
47971         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
47972         autoreconf.
47973
47974 2006-01-11  Bruno Haible  <bruno@clisp.org>
47975
47976         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
47977         overridable by the user.
47978         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47979
47980 2006-01-10  Simon Josefsson  <jas@extundo.com>
47981
47982         * modules/sys_socket: New file.
47983
47984 2006-01-10  Simon Josefsson  <jas@extundo.com>
47985
47986         * m4/sys_socket_h.m4: New file.
47987
47988 2006-01-10  Simon Josefsson  <jas@extundo.com>
47989
47990         * lib/socket_.h: New file.
47991
47992 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
47993
47994         * modules/readutmp (Maintainer): Add myself.
47995
47996 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
47997
47998         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
47999         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
48000         People who are still concerned with buggy memcmp implementations
48001         can invoke gl_FUNC_MEMCMP themselves.
48002
48003 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
48004
48005         * lib/regex_internal.h (BITSET_WORD_BITS):
48006         Work around a bug in 64-bit PGC (before version 6.1-2), where the
48007         preprocessor mishandles large unsigned values as if they were signed.
48008         Problem reported by Claudio Fontana in
48009         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
48010
48011 2006-01-10  Jim Meyering  <jim@meyering.net>
48012
48013         Avoid the double-free (first in fts_read, second in fts_close) that
48014         would occur when an `active' directory is made inaccessible (e.g.,
48015         via chmod a-x) during a traversal.
48016         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
48017         before returning.  Reproduce this failure by
48018         mkdir -p a/b; cd a; chmod a-x . b
48019         Reported by Stavros Passas.
48020
48021         Sync from coreutils.
48022         * lib/sha1.c: Tweak grammar in a comment.
48023
48024 2006-01-10  Jim Meyering  <jim@meyering.net>
48025
48026         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
48027         Patch by Joerg Sonnenberger.
48028
48029 2006-01-10  Bruno Haible  <bruno@clisp.org>
48030
48031         * modules/readutmp: Depend on module free.
48032         * modules/strtok_r: Depend on module restrict.
48033
48034 2006-01-10  Bruno Haible  <bruno@clisp.org>
48035
48036         * modules/gettext (configure.ac): Add an invocation of
48037         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
48038
48039 2006-01-10  Bruno Haible  <bruno@clisp.org>
48040
48041         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
48042         Reported by Werner Lemberg <wl@gnu.org>.
48043
48044 2006-01-10  Bruno Haible  <bruno@clisp.org>
48045
48046         * lib/localcharset.c: Update from GNU gettext.
48047
48048 2006-01-10  Bruno Haible  <bruno@clisp.org>
48049
48050         * lib/argp.h (__const): Remove macro. Use const instead.
48051         * lib/argp-fmtstream.h (__const): Likewise.
48052         * lib/glob_.h (__const): Remove macro.
48053         * lib/glob-libc.h: Use const instead of __const.
48054
48055 2006-01-10  Bruno Haible  <bruno@clisp.org>
48056
48057         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
48058         variable.
48059         Needed to avoid an automake error regarding the 'gettext' module.
48060
48061 2006-01-09  Simon Josefsson  <jas@extundo.com>
48062
48063         * modules/inet_ntop (Depends-on): Add restrict.
48064
48065 2006-01-09  Simon Josefsson  <jas@extundo.com>
48066
48067         * modules/gc-rijndael-tests (License): Put under LGPL.
48068
48069         * modules/gc-des-tests (License): Likewise.
48070
48071         * modules/gc-arcfour-tests (License): Likewise.
48072
48073         * modules/gc-arctwo-tests (License): Likewise.
48074
48075         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
48076
48077         * modules/gc-hmac-sha1-tests (Files): Likewise.
48078
48079         * modules/gc-hmac-md5-tests (License): Likewise.
48080
48081         * modules/gc-sha1-tests (License): Likewise.
48082
48083         * modules/gc-md5-tests (License): Likewise.
48084
48085         * modules/gc-md4-tests (License): Likewise.
48086
48087         * modules/gc-md2-tests (License): Likewise.
48088
48089         * modules/gc-tests (License): Likewise.
48090
48091         * modules/des-tests (License): Likewise.
48092
48093         * modules/md4-tests (License): Likewise.
48094
48095         * modules/md2-tests (License): Likewise.
48096
48097 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48098
48099         Sync from coreutils:
48100
48101         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
48102         * modules/lib-ignore: New file.
48103         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
48104         chdir-safer.m4, lchmod.m4.
48105         * modules/openat: Add mkdirat.c, openat-priv.h.
48106
48107 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48108
48109         Sync from coreutils.
48110         * m4/lib-ignore.m4: New file.
48111         * m4/lchmod.m4: New file.
48112
48113 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48114
48115         Sync from coreutils.
48116         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
48117         for write access: POSIX says that must fail.
48118         * lib/fts.c (diropen): Likewise.
48119         * lib/save-cwd.c (save_cwd): Likewise.
48120         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
48121         well, for minor improvements on hosts that lack O_DIRECTORY.
48122         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
48123         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
48124         Fall back on chown if open failed with EACCES.
48125
48126         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
48127         Report an error at compile-time if only a 1-second nominal clock
48128         resolution is found.
48129
48130         * lib/lchmod.h: New file.
48131         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
48132         (make_dir_parents): Use lchown rather than chown, and
48133         lchmod rather than chmod.
48134
48135         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
48136         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
48137         "proc" reported by n0dalus.
48138
48139         * lib/mountlist.c: Include <limits.h>.
48140         (dev_from_mount_options)
48141         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
48142         New function.  It no longer assumes "dev=" has the System V meaning
48143         on Linux (since it doesn't).  It also parses "dev=" more carefully.
48144         (read_file_system_list)
48145         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
48146         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
48147         dev= in that case.
48148
48149         * lib/posixtm.h (PDS_PRE_2000): New macro.
48150         * lib/posixtm.c (year): Arg is now syntax_bits rather than
48151         allow_century.  All usages changed.  Reject dates outside the range
48152         1969-1999 if PDS_PRE_2000 is used.
48153
48154 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48155
48156         Sync from coreutils.
48157         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
48158         (Time of day items): Mention the possibility of leap seconds.
48159         Problem reported by Dr. David Alan Gilbert.
48160
48161 2006-01-09  Jim Meyering  <jim@meyering.net>
48162
48163         Sync from coreutils.
48164
48165         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
48166
48167         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
48168
48169         * lib/modechange.c (mode_compile): Reject an invalid mode string
48170         that starts with an octal digit.  From Andreas Gruenbacher.
48171
48172         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
48173         and dup to open_safer and dup_safer, respectively.
48174         (openat_permissive): Fix typo in comment.
48175
48176         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
48177         "gettext.h"; either no longer needed or are guaranteed by openat.h.
48178         (_): Remove; no longer needed.
48179         (openat): Renamed from rpl_openat; no need for rpl_openat
48180         since openat.h renames openat for us.
48181         Replace most of the body with a call to openat_permissive,
48182         to avoid duplicate code.
48183         Port to (probably hypothetical) environments were mode_t is
48184         wider than int.
48185         (openat_permissive): Require mode arg, so that we can check
48186         types better.  Put it just after flags.  Change cwd failure
48187         indicator from pointer-to-bool to pointer-to-errno-value.
48188         All callers changed.
48189         Invoke openat_save_fail and/or openat_restore_fail if
48190         cwd_errno is null, so that openat can call us.
48191         (openat_permissive, fdopendir, fstatat, unlinkat):
48192         Simplify errno handling to avoid some duplicate code,
48193         as it's OK to set errno on success.
48194         * lib/openat.h: Revamp code so that function macros depend on
48195         __OPENAT_PREFIX only, not also on AT_FDCWD.
48196         (openat_ro): Remove.  Caller changed to use openat_permissive.
48197         (openat_permissive): Now a macro, if not a function.
48198         (openat_restore_fail, openat_save_fail): Now always functions,
48199         since mkdirat needs them even if __OPENAT_PREFIX is defined.
48200
48201         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
48202         and openat.c.
48203         * lib/mkdirat.c: Include openat-priv.h.
48204         Remove definitions of macros defined therein.
48205         * lib/openat.c: Likewise.
48206
48207         * lib/mkdirat.c (mkdirat): New file and function.
48208         * lib/openat.h (mkdirat): Declare.
48209
48210         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
48211
48212         * lib/openat.h (openat_permissive): Declare.
48213         (openat_ro): Define.
48214
48215         * lib/openat.c (EXPECTED_ERRNO): New macro.
48216         (openat_permissive): New function -- used in remove.c rewrite.
48217         (all functions): Set errno just before returning, only if there
48218         was an actual failure.
48219         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
48220
48221         Emulate openat-family functions using Linux's procfs, if possible.
48222         Idea and some code based on Ulrich Drepper's glibc changes.
48223
48224         * lib/openat.c: (BUILD_PROC_NAME): New macro.
48225         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
48226         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
48227         before falling back on save_cwd and restore_cwd.
48228         (fdopendir, fstatat, unlinkat): Likewise.
48229
48230         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
48231         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
48232
48233         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
48234         as second argument to va_arg.  Otherwise, some versions of gcc
48235         warn that `if this code is reached, the program will abort'.
48236
48237 2006-01-09  Jim Meyering  <jim@meyering.net>
48238
48239         Sync from coreutils.
48240         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
48241         Require openat-priv.h.
48242
48243 2006-01-09  Bruno Haible  <bruno@clisp.org>
48244
48245         * modules/strnlen (Include): Use strnlen.h.
48246
48247 2006-01-09  Bruno Haible  <bruno@clisp.org>
48248
48249         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
48250
48251 2006-01-09  Bruno Haible  <bruno@clisp.org>
48252
48253         * lib/sysexit_.h (EX_OK): New macro.
48254         Suggested by Martin Lambers <marlam@marlam.de>.
48255
48256 2006-01-09  Bruno Haible  <bruno@clisp.org>
48257
48258         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
48259         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
48260
48261 2006-01-09  Bruno Haible  <bruno@clisp.org>
48262
48263         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
48264         numbers.
48265
48266 2006-01-09  Bruno Haible  <bruno@clisp.org>
48267
48268         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
48269         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
48270         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
48271         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
48272
48273 2006-01-09  Bruno Haible  <bruno@clisp.org>
48274
48275         * build-aux/javacomp.sh.in: New file, moved from lib/.
48276         * modules/javacomp-script (Files): Update.
48277         (configure.ac): Add AC_CONFIG_FILES invocation.
48278         (EXTRA_DIST): Remove variable.
48279
48280         * build-aux/javaexec.sh.in: New file, moved from lib/.
48281         * modules/javaexec (Files): Update.
48282         (configure.ac): Add AC_CONFIG_FILES invocation.
48283         (EXTRA_DIST): Remove javaexec.sh.in.
48284
48285         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
48286         * modules/csharpcomp-script (Files): Update.
48287         (configure.ac): Add AC_CONFIG_FILES invocation.
48288         (EXTRA_DIST): Remove variable.
48289
48290         * build-aux/csharpexec.sh.in: New file, moved from lib/.
48291         * modules/csharpexec (Files): Update.
48292         (configure.ac): Add AC_CONFIG_FILES invocation.
48293         (EXTRA_DIST): Remove csharpexec.sh.in.
48294
48295 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48296
48297         Sync from coreutils.
48298
48299         Add POSIX ACL support
48300         * lib/acl.h (copy_acl, set_acl): Add declarations.
48301         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
48302         systems other than Linux.
48303         (chmod_or_fchmod): New function: use fchmod when possible,
48304         and chmod otherwise.
48305         (file_has_acl): Add a POSIX ACL implementation, with a
48306         Linux-specific subcase.
48307         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
48308         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
48309         acls are unsupported.
48310         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
48311         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
48312         are unsupported.
48313
48314 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48315
48316         Sync from coreutils.
48317         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
48318
48319 2006-01-07  Bruno Haible  <bruno@clisp.org>
48320
48321         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
48322         gl_EARLY.
48323
48324 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48325
48326         * lib/strftime.c (tzname): Don't declare if it is already #defined.
48327         Problem reported for Mingw by Mark Junker.
48328
48329 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48330
48331         * README: Gnulib normally doesn't generate a tarball.
48332
48333 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
48334
48335         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
48336         long int, not int, for nanosecond counts, so that people who are
48337         used to POSIX struct timespec won't be surprised.  Reported by Jim
48338         Meyering.
48339
48340 2005-12-28  Bruno Haible  <bruno@clisp.org>
48341
48342         * build-aux/config.rpath: Update from GNU gettext.
48343
48344 2005-12-16  Jim Meyering  <jim@meyering.net>
48345
48346         * modules/fprintftime: New module.
48347         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
48348
48349 2005-12-16  Jim Meyering  <jim@meyering.net>
48350
48351         * m4/fprintftime.m4: New file.
48352
48353 2005-12-16  Jim Meyering  <jim@meyering.net>
48354
48355         * lib/fprintftime.c, lib/fprintftime.h: New files.
48356
48357 2005-12-15  Simon Josefsson  <jas@extundo.com>
48358
48359         * modules/socklen (configure.ac): Fix M4 macro name, to align with
48360         new m4/socklen.m4.
48361
48362 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
48363
48364         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
48365         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
48366
48367 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
48368
48369         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
48370         * lib/argp-help.c (fill_in_uparams): Check if the constructed
48371         struct uparams is valid. Fall back to the default values if it is
48372         not.
48373
48374 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48375
48376         * modules/argp (Files): Add argp-pin.c
48377         (Depends-on): dirname
48378         (lib_SOURCES): Add argp-pin.c
48379
48380 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48381
48382         * m4/argp.m4:  Check if program_invocation_name and
48383         program_invocation_short_name are declared and define appropriate
48384         macros if they are not.
48385
48386 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48387
48388         * lib/argp-help.c (__argp_base_name): New function
48389         (__argp_short_program_name): Rewrite using __argp_base_name
48390         * lib/argp-namefrob.h: Define program_invocation_name and
48391         program_invocation_short_name if requested
48392         (__argp_base_name): Add prototype
48393         * lib/argp-parse.c (argp_def): Use gettext wrappers
48394         (argp_default_parser): Use __argp_base_name
48395         * lib/argp-pin.c: New file. Defines program_invocation_name and
48396         program_invocation_short_name on systems that lack them.
48397
48398 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
48399
48400         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
48401         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
48402         porting problem reported by Georg Schwarz in
48403         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
48404
48405 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
48406
48407         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
48408         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
48409         porting problem reported by Georg Schwarz in
48410         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
48411
48412 2005-12-05  Bruno Haible  <bruno@clisp.org>
48413
48414         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
48415         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
48416         Reported by Mark Junker <mjscod@gmx.de>.
48417
48418 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
48419
48420         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
48421         Use implementation from Albert Chin, with some
48422         comments/corrections by Stepan Kasal and myself.
48423
48424 2005-12-02  Bruno Haible  <bruno@clisp.org>
48425
48426         * gnulib-tool (func_import): Accept GPLed build tool modules when
48427         --lgpl is given.
48428         * modules/csharpcomp-script: New file.
48429         * modules/csharpcomp: Depend on it.
48430         * modules/javacomp-script: New file.
48431         * modules/javacomp: Depend on it.
48432         Suggested by Simon Josefsson.
48433
48434 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
48435
48436         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
48437         statement, to work around an HP-UX 10.20 compiler bug reported by
48438         Peter O'Gorman.
48439
48440 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
48441
48442         * modules/savedir (Depends-on): Add openat.
48443
48444 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
48445
48446         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
48447         (uintmax_t) [defined uintmax_t]: Do not declare.
48448         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
48449         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
48450         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
48451         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
48452         sake of portability to weird hosts that C allows (though we don't
48453         know of any practical examples).
48454
48455         * lib/savedir.h (fdsavedir): New decl.
48456         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
48457         contains most of the former guts of savedir.
48458         (savedir): Use savedirstream.
48459         Include "openat.h".
48460
48461 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
48462
48463         * modules/obstack (Files): Add m4/ulonglong.m4.
48464         Problem reported by Davide Angelocola.
48465
48466 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
48467
48468         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
48469         coreutils no longer futzes with rounding modes.
48470
48471 2005-11-14  Jim Meyering  <jim@meyering.net>
48472
48473         * lib/mkstemp-safer.c: Include <config.h>, required for possible
48474         replacement of mkstemp.
48475
48476 2005-11-10  Simon Josefsson  <jas@extundo.com>
48477
48478         * lib/readline.c: Remove EOL.
48479
48480 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48481
48482         * modules/gethrxtime (Depends-on): Add gettime.
48483
48484 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48485
48486         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
48487         or gettimeofday; no longer needed.
48488
48489 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48490
48491         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
48492         time business.
48493         (gethrxtime) [! (HAVE_NANOUPTIME
48494         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
48495         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
48496         our own approximation.
48497
48498 2005-11-08  Eric Blake  <ebb9@byu.net>
48499
48500         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
48501
48502 2005-11-08  Eric Blake  <ebb9@byu.net>
48503
48504         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
48505
48506 2005-11-04  Bruno Haible  <bruno@clisp.org>
48507
48508         * gnulib-tool: Implement --update mode.
48509
48510 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48511
48512         Fix porting problem reported by Theodoros V. Kalamatianos.
48513         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
48514         Don't assume that futimes failing means we must fail.
48515
48516 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48517
48518         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
48519         variables to suggest the intended function of the PATH_MAX check.
48520
48521 2005-10-30  Kean Johnston  <jkj@sco.com>
48522
48523         Trivial changes to support SCO systems.
48524         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
48525         as PATH_MAX.
48526         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
48527         where __ptr is null when no I/O is pending.
48528
48529 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
48530
48531         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
48532         leave errno alone.  Problem reported by Dmitry V. Levin.
48533
48534 2005-10-28  Simon Josefsson  <jas@extundo.com>
48535
48536         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
48537         Test more.
48538
48539         * tests/test-gc-md2.c, tests/test-md2.c: New files.
48540
48541         * modules/md2, modules/md2-tests: New files.
48542
48543 2005-10-28  Simon Josefsson  <jas@extundo.com>
48544
48545         * m4/inet_ntop.m4: More tests.
48546
48547         * m4/gc-md2.m4, md2.m4: New file.
48548
48549 2005-10-28  Simon Josefsson  <jas@extundo.com>
48550
48551         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
48552         "restrict" keywords, as per POSIX.  Protect the function
48553         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
48554         Don't use K&R prototypes.  Check the sprintf return values.
48555         Re-define EAFNOSUPPORT if not present.  Indent.
48556
48557         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
48558         suggested by Bruno Haible <bruno@clisp.org>.
48559
48560         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
48561
48562         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
48563
48564         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
48565         libgcrypt).
48566
48567         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
48568
48569         * lib/md2.h, lib/md2.c: New files.
48570
48571 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
48572
48573         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
48574         errno alone.  Problem reported by Frederic Jolliton.
48575
48576 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
48577
48578         * modules/verify (License): Change from GPL to LGPL.  This is a
48579         tiny module and there are apparently near-equivalents that are
48580         under the BSD license.
48581
48582 2005-10-24  Simon Josefsson  <jas@extundo.com>
48583
48584         * modules/sha1: Relicense to LGPL.
48585
48586 2005-10-24  Simon Josefsson  <jas@extundo.com>
48587
48588         * lib/md4.h: Shrink buffer size, now that we changed the type.
48589
48590 2005-10-23  Simon Josefsson  <jas@extundo.com>
48591
48592         * gnulib-tool (func_import): Fix --tests-base.
48593
48594 2005-10-22  Simon Josefsson  <jas@extundo.com>
48595
48596         * modules/arcfour (Depends-on): Need stdint.
48597
48598 2005-10-22  Simon Josefsson  <jas@extundo.com>
48599
48600         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
48601         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
48602
48603 2005-10-22  Simon Josefsson  <jas@extundo.com>
48604
48605         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
48606         suggested by Bruno Haible <bruno@clisp.org>.
48607
48608 2005-10-22  Simon Josefsson  <jas@extundo.com>
48609
48610         * lib/crc.h: Include stddef.h, for size_t.
48611
48612 2005-10-22  Simon Josefsson  <jas@extundo.com>
48613
48614         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
48615         arcfour_context struct (simplify test vector testing in GNU
48616         Shishi).
48617
48618 2005-10-21  Simon Josefsson  <jas@extundo.com>
48619
48620         * modules/des, modules/des-tests: New files.
48621
48622         * modules/gc-des, modules/gc-des-tests: New files.
48623
48624         * tests/test-des.c, tests/test-gc-des.c: New file.
48625
48626 2005-10-21  Simon Josefsson  <jas@extundo.com>
48627
48628         * modules/arctwo, modules/arctwo-tests: New files.
48629
48630         * tests/test-arctwo.c: New file.
48631
48632         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
48633
48634         * tests/test-gc-arctwo.c: New file.
48635
48636 2005-10-21  Simon Josefsson  <jas@extundo.com>
48637
48638         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
48639         Bruno Haible <bruno@clisp.org>.
48640
48641         * m4/gc-des.m4: New file.
48642
48643 2005-10-21  Simon Josefsson  <jas@extundo.com>
48644
48645         * m4/arctwo.m4: New file.
48646
48647         * m4/gc-arctwo.m4: New file.
48648
48649 2005-10-21  Simon Josefsson  <jas@extundo.com>
48650
48651         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
48652         block.
48653
48654 2005-10-21  Simon Josefsson  <jas@extundo.com>
48655
48656         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
48657         <bruno@clisp.org>.
48658
48659         * lib/hmac-sha1.c (hmac_sha1): Likewise.
48660
48661         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
48662         Bruno Haible <bruno@clisp.org>.
48663
48664         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
48665         <bruno@clisp.org>.
48666
48667 2005-10-21  Simon Josefsson  <jas@extundo.com>
48668
48669         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
48670
48671 2005-10-21  Simon Josefsson  <jas@extundo.com>
48672
48673         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
48674
48675 2005-10-21  Simon Josefsson  <jas@extundo.com>
48676
48677         * lib/des.h, lib/des.c: New files.
48678
48679         * lib/gc-gnulib.c: Support DES.c
48680
48681 2005-10-21  Simon Josefsson  <jas@extundo.com>
48682
48683         * lib/arctwo.h, lib/arctwo.c: New files.
48684
48685         * lib/gc-gnulib.c: Support ARCTWO.
48686
48687 2005-10-21  Simon Josefsson  <jas@extundo.com>
48688
48689         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
48690         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48691
48692 2005-10-21  Simon Josefsson  <jas@extundo.com>
48693
48694         * gnulib-tool (func_import, func_create_testdir): Define automake
48695         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
48696         Makefile.am snippet),
48697         suggested by Bruno Haible <bruno@clisp.org>.
48698
48699         * modules/gc (Makefile.am): Use it.
48700
48701 2005-10-21  Bruno Haible  <bruno@clisp.org>
48702
48703         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
48704         patch.
48705
48706 2005-10-19  Simon Josefsson  <jas@extundo.com>
48707
48708         * tests/test-gc-rijndael.c: New file.
48709
48710         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
48711
48712 2005-10-19  Simon Josefsson  <jas@extundo.com>
48713
48714         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
48715         interface too.
48716
48717 2005-10-19  Simon Josefsson  <jas@extundo.com>
48718
48719         * tests/test-gc-arcfour.c: New file.
48720
48721         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
48722
48723 2005-10-19  Simon Josefsson  <jas@extundo.com>
48724
48725         * modules/gc-md4, modules/gc-md4-tests: New file.
48726
48727         * tests/test-gc-md4.c: New file.
48728
48729 2005-10-19  Simon Josefsson  <jas@extundo.com>
48730
48731         * m4/gc-md4.m4: New file.
48732
48733 2005-10-19  Simon Josefsson  <jas@extundo.com>
48734
48735         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
48736         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
48737         <kasal@ucw.cz>.
48738
48739 2005-10-19  Simon Josefsson  <jas@extundo.com>
48740
48741         * m4/gc-arcfour.m4: New file.
48742
48743         * m4/gc-rijndael.m4: New file.
48744
48745 2005-10-19  Simon Josefsson  <jas@extundo.com>
48746
48747         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
48748
48749 2005-10-19  Simon Josefsson  <jas@extundo.com>
48750
48751         * lib/gc-gnulib.c: Support ARCFOUR.
48752
48753 2005-10-19  Simon Josefsson  <jas@extundo.com>
48754
48755         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
48756         support.
48757
48758         * lib/gc.h: Add ECB enum type.
48759
48760         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
48761
48762 2005-10-18  Simon Josefsson  <jas@extundo.com>
48763
48764         * tests/test-md5.c: New file.
48765
48766         * modules/md5-tests: New file.
48767
48768 2005-10-18  Simon Josefsson  <jas@extundo.com>
48769
48770         * tests/test-md4.c: New file.
48771
48772         * modules/md4, modules/md4-tests: New files.
48773
48774 2005-10-18  Simon Josefsson  <jas@extundo.com>
48775
48776         * m4/md4.m4: New file.
48777
48778 2005-10-18  Simon Josefsson  <jas@extundo.com>
48779
48780         * lib/md4.h, lib/md4.c: New files, based on md5.?.
48781
48782 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
48783
48784         * gnulib-tool (func_create_testdir): Omit the second check whether
48785         BUILT_SOURCES in nonempty.
48786
48787 2005-10-17  Simon Josefsson  <jas@extundo.com>
48788
48789         * tests/test-rijndael.c: New file.
48790
48791 2005-10-17  Simon Josefsson  <jas@extundo.com>
48792
48793         * modules/sha1: Depend on stdint instead of md5.
48794
48795         * modules/md5: Depend on stdint, remove uint32_t.
48796
48797 2005-10-17  Simon Josefsson  <jas@extundo.com>
48798
48799         * modules/gc-sha1-tests: New file.
48800
48801         * tests/test-gc-sha1.c: New file.
48802
48803 2005-10-17  Simon Josefsson  <jas@extundo.com>
48804
48805         * m4/md5.m4: Remove call to uint32_t.m4.
48806
48807 2005-10-17  Simon Josefsson  <jas@extundo.com>
48808
48809         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
48810
48811         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
48812         md5.h.
48813
48814         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
48815
48816         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
48817
48818 2005-10-17  Simon Josefsson  <jas@extundo.com>
48819
48820         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
48821
48822 2005-10-17  Simon Josefsson  <jas@extundo.com>
48823
48824         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
48825
48826 2005-10-17  Simon Josefsson  <jas@extundo.com>
48827
48828         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
48829
48830         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
48831
48832 2005-10-17  Bruno Haible  <bruno@clisp.org>
48833
48834         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
48835         that it can also be used in a test.
48836
48837 2005-10-16  Bruno Haible  <bruno@clisp.org>
48838
48839         * gnulib-tool (func_emit_tests_Makefile_am): Also define
48840         TESTS_ENVIRONMENT, so that individual tests can augment it.
48841
48842         * gnulib-tool (func_create_testdir): Use an intermediate target for
48843         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
48844         macros, like $(ALLOCA_H), which cannot be passed through the command
48845         line.
48846
48847 2005-10-15  Simon Josefsson  <jas@extundo.com>
48848
48849         * modules/rijndael-tests: New file.
48850
48851         * modules/rijndael: New file.
48852
48853 2005-10-15  Simon Josefsson  <jas@extundo.com>
48854
48855         * m4/rijndael.m4: New file.
48856
48857 2005-10-15  Simon Josefsson  <jas@extundo.com>
48858
48859         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
48860
48861         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
48862
48863 2005-10-14  Simon Josefsson  <jas@extundo.com>
48864
48865         * tests/test-arcfour.c: New file.
48866
48867         * modules/arcfour, modules/arcfour-tests: New files.
48868
48869 2005-10-14  Simon Josefsson  <jas@extundo.com>
48870
48871         * m4/arcfour.m4: New file.
48872
48873 2005-10-14  Simon Josefsson  <jas@extundo.com>
48874
48875         * lib/arcfour.h, lib/arcfour.c: New files.
48876
48877 2005-10-14  Roland McGrath  <roland@redhat.com>
48878
48879         Import from libc.  [BZ #1331]
48880         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
48881         macro argument.
48882         Reported by Matej Vela <vela@debian.org>.
48883
48884 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
48885
48886         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
48887         include <wchar.h>; no longer needed.
48888
48889 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
48890
48891         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
48892
48893 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
48894         and  Ulrich Drepper  <drepper@redhat.com>
48895
48896         Import from libc.
48897         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
48898         instead of inline stream orientation test and two separate
48899         function calls.  Pay no attention to USE_IN_LIBIO.
48900
48901 2005-10-13  Simon Josefsson  <jas@extundo.com>
48902
48903         * modules/gc-hmac-md5-tests: New file.
48904
48905         * tests/test-gc-hmac-sha1.c: New file.
48906
48907         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
48908
48909         * modules/gc-hmac-md5-tests: New file.
48910
48911         * tests/test-gc-md5.c: New file.
48912
48913         * modules/gc-md5-tests: New file.
48914
48915 2005-10-13  Simon Josefsson  <jas@extundo.com>
48916
48917         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
48918         Move memory allocation outside of loop.
48919
48920 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
48921
48922         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
48923         intermediate directory is in a read-only file system.  Problem
48924         reported by Eric Blake.
48925
48926 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
48927
48928         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
48929
48930 2005-10-12  Simon Josefsson  <jas@extundo.com>
48931
48932         * tests/test-hmac-sha1.c: New file.
48933
48934         * modules/hmac-sha1-tests: New file.
48935
48936         * modules/hmac-sha1: New file.
48937
48938 2005-10-12  Simon Josefsson  <jas@extundo.com>
48939
48940         * modules/gc-sha1: New file.
48941
48942 2005-10-12  Simon Josefsson  <jas@extundo.com>
48943
48944         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
48945
48946         * tests/test-gc-pbkdf2-sha1.c: New file.
48947
48948 2005-10-12  Simon Josefsson  <jas@extundo.com>
48949
48950         * modules/gc-md5, modules/gc-hmac-md5: New files.
48951
48952         * modules/gc (Files): Remove md5, memxor and hmac files.
48953
48954 2005-10-12  Simon Josefsson  <jas@extundo.com>
48955
48956         * m4/gc-pbkdf2-sha1.m4: New file.
48957
48958         * m4/gc-hmac-sha1.m4: New file.
48959
48960         * m4/gc-sha1: New file.
48961
48962         * m4/hmac-sha1.m4: New file.
48963
48964 2005-10-12  Simon Josefsson  <jas@extundo.com>
48965
48966         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
48967
48968         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
48969
48970 2005-10-12  Simon Josefsson  <jas@extundo.com>
48971
48972         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
48973         suggested by Bruno Haible <bruno@clisp.org>.
48974
48975 2005-10-12  Simon Josefsson  <jas@extundo.com>
48976
48977         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
48978
48979 2005-10-12  Simon Josefsson  <jas@extundo.com>
48980
48981         * lib/gc-pbkdf2-sha1.c: New file.
48982
48983         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
48984
48985 2005-10-12  Simon Josefsson  <jas@extundo.com>
48986
48987         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
48988
48989         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
48990
48991 2005-10-12  Simon Josefsson  <jas@extundo.com>
48992
48993         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
48994         GC_USE_HMAC_MD5, respectively.
48995
48996         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
48997         (gc_md5): Fix typo.
48998
48999         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
49000
49001         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
49002
49003         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
49004
49005 2005-10-12  Bruno Haible  <bruno@clisp.org>
49006
49007         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
49008         Reported by Stepan Kasal <kasal@ucw.cz>.
49009
49010 2005-10-11  Simon Josefsson  <jas@extundo.com>
49011
49012         * tests/test-crc.c: New file.
49013
49014         * modules/crc, modules/crc-tests: New files.
49015
49016 2005-10-11  Simon Josefsson  <jas@extundo.com>
49017
49018         * m4/crc.m4: New file.
49019
49020 2005-10-11  Simon Josefsson  <jas@extundo.com>
49021
49022         * lib/gc.h: Add gc_hash and gc_hash_buffer.
49023
49024         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
49025
49026         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
49027
49028 2005-10-11  Simon Josefsson  <jas@extundo.com>
49029
49030         * lib/crc.h, lib/crc.c: New files.
49031
49032         * lib/gc.h (gc_hash_buffer): Add doc.
49033
49034 2005-10-11  Bruno Haible  <bruno@clisp.org>
49035
49036         * modules/c-strcasestr: New file.
49037         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
49038
49039 2005-10-11  Bruno Haible  <bruno@clisp.org>
49040
49041         * modules/c-strcase: New file.
49042         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
49043
49044 2005-10-11  Bruno Haible  <bruno@clisp.org>
49045
49046         * lib/strcasecmp.c: Include limits.h.
49047         (strcasecmp): Avoid integer overflow on exotic platforms.
49048         * lib/strncasecmp.c: Include limits.h.
49049         (strncasecmp): Avoid integer overflow on exotic platforms.
49050         Reported by Paul Eggert.
49051
49052 2005-10-11  Bruno Haible  <bruno@clisp.org>
49053
49054         * lib/c-strcasestr.h: New file, from GNU gettext.
49055         * lib/c-strcasestr.c: New file, from GNU gettext.
49056
49057 2005-10-11  Bruno Haible  <bruno@clisp.org>
49058
49059         * lib/c-strcase.h: New file, from GNU gettext.
49060         * lib/c-strcasecmp.c: New file, from GNU gettext.
49061         * lib/c-strncasecmp.c: New file, from GNU gettext.
49062
49063 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
49064
49065         * modules/mempcpy (License): GPL -> LGPL.
49066         * modules/strchrnul (License): Likewise.
49067         * modules/sysexits (License): Likewise.
49068
49069 2005-10-08  Simon Josefsson  <jas@extundo.com>
49070
49071         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
49072
49073 2005-10-07  Simon Josefsson  <jas@extundo.com>
49074
49075         * m4/memxor.m4: Remove gl_C_RESTRICT call.
49076
49077 2005-10-06  Simon Josefsson  <jas@extundo.com>
49078
49079         * tests/test-hmac-md5.c: New file.
49080
49081         * modules/hmac-md5-tests: New file.
49082
49083         * modules/hmac-md5: New file.
49084
49085 2005-10-06  Simon Josefsson  <jas@extundo.com>
49086
49087         * m4/hmac-md5.m4: New file.
49088
49089         * m4/memxor.m4: Require gl_C_RESTRICT.
49090
49091 2005-10-06  Simon Josefsson  <jas@extundo.com>
49092
49093         * lib/memxor.c (memxor): Avoid casts and warnings.
49094
49095 2005-10-06  Simon Josefsson  <jas@extundo.com>
49096
49097         * lib/hmac-md5.c: New file.
49098
49099         * lib/hmac.h: New file.
49100
49101 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
49102
49103         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
49104         promotes to int, not unsigned int, to catch the AIX 5.3
49105         compiler bug.
49106
49107 2005-10-05  Simon Josefsson  <jas@extundo.com>
49108
49109         * modules/memxor: New file.
49110
49111         * modules/iconv (Files): Move config.rpath to havelib, it is used
49112         there.
49113
49114         * modules/havelib (Files): Add config.rpath.
49115
49116 2005-10-05  Simon Josefsson  <jas@extundo.com>
49117
49118         * m4/memxor.m4: New file.
49119
49120 2005-10-05  Simon Josefsson  <jas@extundo.com>
49121
49122         * lib/memxor.c (memxor): Fix compiler error.
49123
49124         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
49125         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
49126
49127         * lib/memxor.h, lib/memxor.c: New files.
49128
49129         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
49130         we assume all systems have it, suggested by Jim Meyering
49131         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
49132         any systems lack sys/socket.h; mingw32 is known to lack it, but we
49133         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
49134         same reasons.
49135
49136 2005-10-05  Simon Josefsson  <jas@extundo.com>
49137
49138         * config/srclist.txt: Add glibc bug 1423 for md5.h.
49139
49140 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
49141
49142         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
49143         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
49144         needed, since the source code now assumes these .h files.
49145
49146 2005-10-05  Derek Price  <derek@ximbiot.com>
49147
49148         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
49149
49150 2005-10-05  Bruno Haible  <bruno@clisp.org>
49151
49152         * modules/stdint (License): Change to LGPL.
49153
49154 2005-10-04  Simon Josefsson  <jas@extundo.com>
49155
49156         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
49157         D. Baushke" <mdb@gnu.org>.
49158
49159 2005-10-04  Bruno Haible  <bruno@clisp.org>
49160
49161         * lib/verify.h (verify_true): Provide alternative definition for C++.
49162
49163 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
49164
49165         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
49166         (SSIZE_MAX): New macro, if not already defined.
49167         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
49168         than 2 GiB.
49169
49170 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49171
49172         Sync from coreutils.
49173         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
49174         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
49175         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
49176         ULLONG_MAX doesn't work with 2.7.2.1.
49177
49178 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49179
49180         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
49181         From Ben Pfaff.
49182
49183         * modules/exclude (Depends-on): Depend on verify.
49184         * modules/strtoimax (Depends-on): Likewise.
49185         * modules/utimecmp (Depends-on): Likewise.
49186
49187 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49188
49189         * lib/exclude.c: Include verify.h.
49190         (verify): Remove.  All callers changed to use verify.h's version.
49191         * lib/strtoimax.c: Likewise.
49192         * lib/utimecmp.c: Likewis.e
49193
49194         Sync from coreutils.
49195         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
49196         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
49197         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
49198         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
49199         bother returning ENOSYS if settimeofday or stime fails; just let
49200         them return whatever errno they want to return.
49201         * lib/utimens.c: Include unistd.h, for dup2.
49202         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
49203         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
49204
49205 2005-10-02  Jim Meyering  <jim@meyering.net>
49206
49207         Sync from coreutils.
49208         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
49209         from glibc-2.2.5 that fails for read-only files.
49210
49211 2005-10-02  Jim Meyering  <jim@meyering.net>
49212
49213         Sync from coreutils.
49214         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
49215         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
49216         `#if HAVE_CONFIG_H'.
49217         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
49218         Remove AT_FDCWD test.
49219         Do not consume the fd unless successful.
49220         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
49221         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
49222         block, so that we don't even try to compile it if settimeofday is
49223         available.  This works around a compilation failure on OSF1 V5.1,
49224         due to stime requiring a `long int*' while tv_sec is `int'.
49225
49226 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
49227
49228         Sync from coreutils.
49229         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
49230         against `yes', rather than just testing for nonempty.
49231
49232 2005-10-01  Simon Josefsson  <jas@extundo.com>
49233
49234         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
49235         and Darwin.
49236
49237         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
49238         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
49239         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
49240         freeaddrinfo and gai_strerror are declared by the POSIX headers.
49241         Check if struct addrinfo is declared.
49242
49243 2005-10-01  Simon Josefsson  <jas@extundo.com>
49244
49245         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
49246         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
49247         AI_* and EAI_* definitions.  Protect function declarations.
49248
49249 2005-10-01  Jim Meyering  <jim@meyering.net>
49250
49251         Sync from coreutils.
49252
49253         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
49254         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
49255         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
49256         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49257         in the inet and nsl libraries.  Required on Solaris 5.7.
49258
49259 2005-10-01  Jim Meyering  <jim@meyering.net>
49260
49261         Sync from coreutils.
49262         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49263         in the inet and nsl libraries.  Required on Solaris 5.7.
49264
49265 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
49266
49267         * lib/getdelim.c (getdelim): Remove unused variables.
49268
49269 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
49270
49271         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
49272         so that the code works even with ancient cpp.  Portability problem
49273         with GCC 2.7.2.1 reported by Thomas M.Ott.
49274
49275 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
49276
49277         * modules/regex (Depends-on): Add strcase.
49278
49279         * modules/gethostname (Licence): Change from GPL to LGPL, since
49280         gethostname.c is a trivial implementation of a standard library
49281         function.
49282         * modules/poll (License): Change from GPL to LGPL, since it's
49283         derived from LGPL code.
49284
49285 2005-09-27  Jim Meyering  <jim@meyering.net>
49286
49287         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
49288         HAVE_CONFIG_H.
49289
49290         * lib/intprops.h (signed_type_or_expr__): Define.
49291         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
49292         for unsigned types.
49293
49294 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
49295
49296         * lib/verify.h (verify_expr): Remove, replacing with:
49297         (verify_true): New macro that returns true instead of void.
49298         (verify_type__): Remove.
49299         (verify): Use verify_true rather than verify_type__.
49300
49301 2005-09-26  Bruno Haible  <bruno@clisp.org>
49302
49303         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
49304         is necessary.
49305         (lib_SOURCES): Remove mbchar.c.
49306         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
49307         (Files): Add m4/mbrtowc.m4.
49308         * modules/mbiter: Likewise.
49309         * modules/mbuiter: Likewise.
49310
49311 2005-09-26  Bruno Haible  <bruno@clisp.org>
49312
49313         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
49314         compile mbchar.c if they are not both present.
49315         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
49316         * m4/mbiter.m4 (gl_MBITER): Likewise.
49317         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
49318         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
49319         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
49320
49321 2005-09-25  Jim Meyering  <jim@meyering.net>
49322
49323         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
49324         also uses socklen_t.
49325
49326 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
49327
49328         * lib/utimens.c (ENOSYS): Define if not already defined.
49329         (futimens): Support having a null PATH if the file descriptor
49330         is nonnegative.
49331
49332         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
49333         Remove.
49334         (__attribute): Define to empty unless GCC 3.1 or later.
49335         This works around a core dump on OpenBSD 3.4, which has GCC
49336         2.95.3, which dumps core when given __attribute__(()).  It also
49337         simplifies other tests, since we really don't want to bother with
49338         worrying about which ancient version of GCC supported what.
49339         Original problem reported by Yoann Vandoorselaere, with part of
49340         the fix suggested by Derek Price.
49341
49342 2005-09-24  Jim Meyering  <jim@meyering.net>
49343
49344         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
49345         so we can once again use a positive bitfield width of 1 -- now we
49346         don't have to explain why we were using a bitfield width of 2.
49347
49348 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
49349
49350         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
49351         and similarly for the other external symbols.  Problem reported
49352         by James Gallager.
49353
49354         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
49355         bug reported by Jim Meyering.
49356
49357         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
49358         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
49359         not needed, since socklen is a prerequisite module.
49360
49361 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
49362
49363         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
49364         Problem reported by Eric Blake.
49365         (getaddrinfo): Initialize se so that it's not garbage.
49366         Redo internal storage allocation so that it doesn't make unportable
49367         assumptions about alignment.
49368         Fix a memory leak.
49369
49370         * lib/utimens.c (futimens): Use futimesat if available.
49371         Prefer it to futimes since it doesn't have the futimes bug.
49372
49373         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
49374         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
49375         Instead, declare a function that returns a pointer to an array,
49376         and use verify_type__ to declare the size of the array.
49377         Problem and germ of a solution reported by Bruno Haible.
49378         (verify_type__): Use 2, not 1, for bitfield size, to avoid
49379         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
49380
49381 2005-09-23  Jim Meyering  <jim@meyering.net>
49382
49383         Sync from coreutils.
49384         Correct build failure (socklen_t not defined) on at least
49385         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
49386         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
49387
49388 2005-09-23  Jim Meyering  <jim@meyering.net>
49389
49390         * modules/getaddrinfo (Depends-on): Add socklen.
49391
49392 2005-09-23  Bruno Haible  <bruno@clisp.org>
49393
49394         * tests/test-verify.c: New file.
49395
49396 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49397
49398         Sync from coreutils.
49399
49400         * modules/argmatch (Depends-on): Add verify.
49401         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
49402         unistd-safer.
49403         * modules/save-cwd (Depends-on): Likewise.
49404
49405         * modules/openat (Files): Add lib/openat-die.c.
49406         (Depends-on): Remove error, exitfail.
49407         Add dirname.
49408
49409         * modules/verify: New file.
49410         * MODULES.html.sh (Diagnostics <assert.h>): New section,
49411         with "verify" module.
49412
49413 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49414
49415         Sync from coreutils.
49416
49417         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
49418         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
49419         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
49420         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
49421         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
49422         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
49423         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
49424         Don't bother checking for string.h, stdlib.h, unistd.h.
49425         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
49426         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
49427         module's job.
49428         * m4/jm-macros.m4 (gl_MACROS): Likewise.
49429         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
49430
49431         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
49432         (gl_GETDATE): Use it.
49433
49434         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
49435
49436 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49437
49438         Sync from coreutils.
49439
49440         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
49441         stat-time.h.
49442         * lib/argmatch.h: Include verify.h
49443         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
49444         (ARGMATCH_ASSERT): Remove; unused.
49445         * lib/canonicalize.c: Assume STDC_HEADERS.
49446         * lib/exclude.c: Include "strcase.h".
49447         * lib/regex_internal.h [!defined _LIBC]: Likewise.
49448         * lib/getusershell.c: Include stdio--.h rather than stdio.h
49449         and stdio-safer.h.
49450         (getusershell): Call fopen, not fopen_safer.
49451         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
49452         Do not include unistd-safer.h.
49453         (save_cwd): Don't call fd_safer; no longer needed
49454         now that we include fcntl--.h.
49455
49456         * lib/getdate.y (relative_time): New type.
49457         (RELATIVE_TIME_0): New constant.
49458         (parser_control): Use relative_time instead of doing it ourselves.
49459         (%union): Add new relative_time rel member.
49460         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
49461         Now typeless.
49462         (relunit, relunit_snumber): Now of type rel.
49463         (zone, rel, relunit, get_date): Adjust to above changes.
49464
49465         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
49466         Do not include unistd-safer.h.
49467         (getloadavg): Don't call fd_safer; no longer needed
49468         now that we include fcntl--.h.
49469
49470         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
49471         (make_dir_parents): Treat ENOSYS like EEXIST.
49472
49473         Improve quality of diagnostics on restore_cwd failure.
49474         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
49475         (make_dir_parents): Last arg is now int * (for errno), not bool *.
49476         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
49477         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
49478         each time through the loop.  Do not diagnose restore_cwd failure;
49479         that is the caller's job (and perhaps the caller does not care).
49480
49481         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
49482         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
49483         If the file already exists but is not a directory, don't bother
49484         to try to make its parents.
49485         Close potential file descriptor leak if we can't chdir("/") (!).
49486         Don't always return true if chdir($PWD) fails; return true only
49487         if the requested action was done successfully (except for the
49488         chdir($PWD)).
49489         Don't log final directory unless we actually made it.
49490         Refactor to avoid duplicate code to fix up permissions.
49491         Don't attempt to fix up parent permissions if chdir($PWD) fails.
49492
49493         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
49494         to make it a bit faster and (I hope) clearer.
49495         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
49496         Fix bug in formats like %2N.
49497
49498         * lib/verify.h: New file.
49499
49500 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49501
49502         Sync from coreutils.
49503         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
49504
49505 2005-09-22  Jim Meyering  <jim@meyering.net>
49506
49507         Sync from coreutils.
49508
49509         * m4/lstat.m4 (gl_FUNC_LSTAT):
49510         Use AC_LIBSOURCES to require lstat.c and lstat.h.
49511         Remove obsolete comment.
49512         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
49513         * m4/xstrtod.m4: Likewise.
49514
49515         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
49516
49517 2005-09-22  Jim Meyering  <jim@meyering.net>
49518
49519         Sync from coreutils.
49520
49521         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
49522
49523         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
49524         the .tm_year member, since otherwise gcc-4.0 would now warn about
49525         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
49526
49527         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
49528         order to avoid an unsuppressible warning from gcc on 64-bit systems.
49529
49530         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
49531         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
49532         when run in a time zone for which daylight savings time is in effect
49533         for the starting date.
49534
49535         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
49536         stop us from restricting permissions of just-created absolute-named
49537         directories.
49538         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
49539         to restore initial working directory.
49540         * lib/mkdir-p.c (make_dir_parents): New parameter:
49541         different_working_dir, to tell caller if/when we change the working
49542         directory and are unable to return to the initial one.
49543         * lib/mkdir-p.h (make_dir_parents): Update prototype.
49544         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
49545         `return false'.  This fixes a bug introduced on 2004-07-30.
49546
49547         * lib/openat.c (fdopendir): Be sure to close the supplied
49548         file descriptor before returning.  This makes our replacement
49549         implementation a little closer to Solaris's, where fdopendir
49550         ties the file descriptor to the returned DIR* pointer.
49551         * lib/openat.c (unlinkat): New function.
49552         * lib/openat.h (unlinkat): Add prototype.
49553         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
49554         (openat_restore_fail): Rename from openat_restore_die.
49555         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
49556
49557         Provide an alternative to exiting immediately upon save_cwd or
49558         restore_cwd failure.  Now, an application can arrange e.g.,
49559         to perform a longjump in that case.
49560         * lib/openat.c: Include dirname.h.
49561         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
49562         (rpl_openat, fdopendir, fstatat): Call openat_save_die
49563         and openat_restore_die rather than calling error directly.
49564         Don't include "error.h" or "exitfail.h"; they're no longer needed.
49565
49566         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
49567         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
49568         define.
49569
49570         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
49571         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
49572                             int utc, int nanoseconds);
49573         Background:
49574         date should not have to allocate a megabyte of virtual memory to
49575         handle a format argument like +%1048575T.  When implemented with
49576         strftime, it must allocate such a buffer, use strftime to fill it
49577         in, print it, then free it.
49578         With fprintftime, it simply prints everything and exits.
49579         With no need for memory allocation, that's one fewer way to fail.
49580         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
49581         optional field width, not before, so we accept %9:z, not %:9z.
49582         (my_strftime): Be sure to use L_('x') for literals.
49583
49584         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
49585         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
49586         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
49587         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
49588         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
49589         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
49590         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
49591         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
49592         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
49593         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
49594         * lib/xgethostname.c, lib/xreadlink.c:
49595         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
49596
49597         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
49598         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
49599         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
49600         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
49601         and don't include <sys/file.h>).
49602
49603 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
49604
49605         Sync from coreutils.
49606
49607         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
49608         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
49609         [!LDAV_DONE]: Avoid unused variable warning.
49610
49611 2005-09-21  Bruno Haible  <bruno@clisp.org>
49612
49613         * lib/unicodeio.h (unicode_to_mb): New declaration.
49614
49615 2005-09-20  Derek Price  <derek@ximbiot.com>
49616
49617         * lib/getaddrinfo.c: Don't include <netdb.h> included from
49618         getaddrinfo.h.
49619
49620 2005-09-20  Bruno Haible  <bruno@clisp.org>
49621
49622         * gnulib-tool: Remove trailing slashes from the values specified for
49623         --source-base, --m4-base, --tests-base, --aux-dir.
49624         Suggested by Simon Josefsson <jas@extundo.com>.
49625
49626 2005-09-20  Bruno Haible  <bruno@clisp.org>
49627
49628         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
49629         func_modules_to_filelist, func_import, func_create_testdir): Make all
49630         sorting results locale-independent, so that gnulib-cache.m4 doesn't
49631         change when gnulib-tool is invoked in a different locale.
49632
49633 2005-09-19  Simon Josefsson  <jas@extundo.com>
49634
49635         * m4/socklen.m4: Fix typo.
49636
49637 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49638
49639         Use a consistent style for including <config.h>.
49640         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
49641         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
49642         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
49643         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
49644         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
49645         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
49646         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
49647         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
49648         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
49649         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
49650         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
49651         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
49652         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
49653         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
49654         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
49655         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
49656         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
49657         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
49658         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
49659         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
49660         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
49661         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
49662         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
49663         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
49664         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
49665         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
49666         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
49667         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
49668         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
49669         lib/xstrtoumax.c, lib/yesno.c:
49670         Standardize inclusion of config.h.
49671         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
49672         lib/inttostr.h:  Removed inclusion of config.h from header files.
49673         * lib/inttostr.c:  Adjusted in-tree users.
49674         * lib/timespec.h: Remove superfluous warning to include config.h.
49675         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
49676         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
49677         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
49678         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
49679         config.h with HAVE_CONFIG_H.
49680
49681 2005-09-19  Jim Meyering  <jim@meyering.net>
49682
49683         * modules/pathmax (License): Change to LGPL.
49684
49685 2005-09-19  Derek Price  <derek@ximbiot.com>
49686
49687         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
49688
49689 2005-09-19  Bruno Haible  <bruno@clisp.org>
49690
49691         * gnulib-tool (import): Provide default for --tests-base.
49692
49693 2005-09-19  Bruno Haible  <bruno@clisp.org>
49694
49695         * doc/quote.texi: New file, extracted from gnulib.texi.
49696         * doc/ctime.texi: New file, extracted from gnulib.texi.
49697         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
49698         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
49699         * doc/gnulib.texi: Include them.
49700
49701 2005-09-18  Bruno Haible  <bruno@clisp.org>
49702
49703         Portability fix.
49704         * gnulib-tool (func_readlink): New function.
49705         (func_ln_if_changed): Use it.
49706
49707 2005-09-18  Bruno Haible  <bruno@clisp.org>
49708
49709         * gnulib-tool: Support --with-tests also with --import.
49710         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
49711         (func_import): Use variables $testsbase and $inctests. Emit a
49712         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
49713         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
49714         SUBDIRS += $testsdir.
49715         (func_create_testdir): Update.
49716
49717 2005-09-18  Bruno Haible  <bruno@clisp.org>
49718
49719         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
49720         instead of $dry_run.
49721         (func_cp_if_changed, func_mv_if_changed): Remove functions.
49722         (func_ln_if_changed): Don't handle dry-run here.
49723         (func_import): In dry-run mode, detect more precisely which actions
49724         would be performed, and don't use "...ing" verbs.
49725
49726 2005-09-18  Bruno Haible  <bruno@clisp.org>
49727
49728         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
49729         (func_import): Use join on two temporary files instead of three nested
49730         loops, in order to determine which files are new or old.
49731
49732 2005-09-18  Bruno Haible  <bruno@clisp.org>
49733
49734         * gnulib-tool (func_import): Comment out code that spits out the
49735         new files with --dry-run.
49736
49737 2005-09-18  Bruno Haible  <bruno@clisp.org>
49738
49739         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
49740
49741 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49742
49743         * lib/stat-time.h: New file.
49744         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
49745         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
49746         in a different way.
49747         (timespec_cmp): New function.
49748         * lib/utimecmp.c: Include stat-time.h.
49749         (SYSCALL_RESOLUTION): Depend on whether various struct stat
49750         members exist, not on the obsolescent ST_MTIM_NSEC.
49751         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
49752
49753 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49754
49755         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
49756
49757 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
49758
49759         * MODULES.html.sh (File system functions): Add stat-time.
49760         * modules/stat-time: New file.
49761         * modules/timespec (Files): Remove m4/st_mtim.m4; this
49762         is now done in a different way, by the stat-time module.
49763         * modules/utimecmp (Depends-on): Add stat-time.
49764
49765 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
49766
49767         * m4/st_mtim.m4: Remove.  Superseded by...
49768         * m4/stat-time.m4: New file.
49769         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
49770         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
49771
49772 2005-09-15  Derek Price  <derek@ximbiot.com>
49773
49774         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
49775
49776 2005-09-15  Derek Price  <derek@ximbiot.com>
49777
49778         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
49779         * lib/regex_internal.c: Ditto, using this...
49780         (__GNUC_PREREQ): ...new macro.
49781         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
49782         using...
49783         (__GNUC_PREREQ): ...this new macro.
49784
49785         * lib/strstr.h: Include string.h. Define strstr as a macro here.
49786
49787 2005-09-15  Derek Price  <derek@ximbiot.com>
49788             Paul Eggert  <eggert@cs.ucla.edu>
49789
49790         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
49791         changes, consolidating in...
49792         * lib/regex_internal.h: ...this file.
49793
49794 2005-09-13  Jim Meyering  <jim@meyering.net>
49795
49796         * lib/canon-host.c: Filter through gnu indent and reword comments
49797         slightly.
49798         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
49799
49800 2005-09-13  Derek Price  <derek@ximbiot.com>
49801
49802         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
49803         failure.
49804         Reported by Jim Meyering  <jim@meyering.net>.
49805
49806 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
49807
49808         * lib/base64.c: Typo.
49809         (base64_encode): Put b64str in initialized data section.
49810
49811 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
49812
49813         Merge glibc and coreutils changes into gnulib, plus a few
49814         extra fixes.
49815         * lib/md5.c: Use #error rather than a string.
49816         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
49817         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
49818         (__attribute__): Define to empty for non recent-GCC.
49819         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
49820         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
49821         Renamed from their non-__ counterparts, with new macros replacing
49822         them if not _LIBC.  Add __THROW attribute.
49823         (rol): Remove.
49824         (struct md5_ctx): Align buffer if using GCC.
49825         * lib/sha1.h (struct sha1_ctx): Likewise.
49826         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
49827         The old name was backwards.
49828         (NOTSWAP): Remove; not used.
49829         (rol): New macro, moved here from md5.h.
49830         (sha1_process_block): Remove a FIXME that doesn't make sense.
49831
49832 2005-09-12  Derek Price  <derek@ximbiot.com>
49833
49834         Return usable errors from canon-host.
49835         * lib/canon-host.h: New file.
49836         * lib/canon-host.c (canon_host): Wrap...
49837         (canon_host_r): ...this new function, which now relies exclusively on
49838         getaddrinfo.
49839         (ch_strerror): New function.
49840         (last_cherror): New global.
49841         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
49842         interface.
49843         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
49844         void *.
49845         (freeaddrinfo): Free ai->ai_canonname when set.
49846
49847 2005-09-12  Derek Price  <derek@ximbiot.com>
49848
49849         Make canon-host require getaddrinfo.
49850         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
49851         AC_LIBSOURCE canon-host.h.  Call...
49852         (gl_PREREQ_CANON_HOST): ...this new function, which requires
49853         gl_GETADDRINFO.
49854         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
49855
49856 2005-09-12  Derek Price  <derek@ximbiot.com>
49857
49858         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
49859         LGPL.
49860         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
49861
49862 2005-09-12  Derek Price  <derek@ximbiot.com>
49863
49864         * lib/gai_strerror.c: Include config.h when available.  Include
49865         getaddrinfo.h before other headers to test interface.
49866         Reported by Larry Jones <lawrence.jones@ugs.com>.
49867
49868 2005-09-12  Derek Price  <derek@ximbiot.com>
49869             Paul Eggert  <eggert@cs.ucla.edu>
49870
49871         * modules/glob (Files): Add glob-libc.h.
49872
49873 2005-09-12  Derek Price  <derek@ximbiot.com>
49874             Paul Eggert  <eggert@cs.ucla.edu>
49875
49876         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
49877         glob_.h, glob-libc.h.
49878         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
49879
49880 2005-09-12  Derek Price  <derek@ximbiot.com>
49881             Paul Eggert  <eggert@cs.ucla.edu>
49882
49883         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
49884         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
49885         protecting things that should be done only in gnulib contexts.
49886         * lib/glob_.h: New file, containing only the glob things needed for
49887         gnulib.
49888         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
49889         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
49890         (glob, globfree, glob_pattern_p): Now defined simply in terms of
49891         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
49892         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
49893         and to respect the namespace rules better.
49894
49895 2005-09-08  Simon Josefsson  <jas@extundo.com>
49896
49897         * modules/socklen: New file.
49898
49899 2005-09-08  Simon Josefsson  <jas@extundo.com>
49900
49901         * m4/socklen.m4: New file.
49902
49903 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49904
49905         * modules/utimens (Files): Add m4/utimbuf.m4, since
49906         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
49907         Reported by Sergey Poznyakoff.
49908
49909 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49910
49911         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
49912         definitions, since that's the preferred style in glibc.
49913         Fix a minor spacing issue, and update copyright notice to match
49914         glibc's.
49915
49916 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49917
49918         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
49919
49920 2005-09-06  Simon Josefsson  <jas@extundo.com>
49921
49922         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
49923         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
49924
49925 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
49926
49927         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
49928         warning.
49929
49930 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
49931
49932         * config/srclist.txt: Add glibc bug 1302.
49933
49934 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
49935
49936         Change bitset word type from unsigned int to unsigned long int,
49937         as this has better performance on typical 64-bit hosts.
49938         Port bitset code to hosts with unusual word sizes.
49939         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
49940         (build_collating_symbol):
49941         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
49942         argument is a bitset.  This is merely a style issue, but it makes
49943         it clearer that an entire array is expected.
49944         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
49945         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
49946         Port to the case where bitset_word is not the same as unsigned int.
49947         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
49948         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
49949         Likewise.
49950         * lib/regexec.c (check_dst_limits_calc_pos_1,
49951         check_subexp_matching_top):
49952         (build_trtable, group_nodes_into_DFAstates):
49953         Likewise.
49954         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
49955         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
49956         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
49957         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
49958         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
49959         * lib/regcomp.c (optimize_subexps, lower_subexp):
49960         Work even if bitset_word has holes in its bitwise representation.
49961         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
49962         * lib/regexec.c (check_dst_limits_calc_pos_1,
49963         check_subexp_matching_top):
49964         Likewise.
49965         * lib/regex_internal.c (re_string_reconstruct):
49966         Don't assume UCHAR_MAX == 255.
49967         * lib/regex_internal.h (bitset_set_all): Likewise.
49968         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
49969         All uses changed.
49970         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
49971         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
49972         All uses changed.
49973         (BITSET_WORD_MAX): New macro.
49974         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
49975         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
49976         (bitset_empty, bitset_copy):
49977         Prefer sizeof (bitset) to multiplying it out ourselves.
49978         (bitset_not_merge): Remove; unused.
49979         (bitset_contain): Return bool, not unsigned int with one bit on.
49980         All callers changed.
49981         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
49982         alignment than re_node_set; do this by defining a new internal
49983         type struct dests_alloc and using it to allocate memory.
49984
49985 2005-09-05  Bruno Haible  <bruno@clisp.org>
49986
49987         * gnulib-tool (func_import): Fix comparison in handling of symbolic
49988         links.
49989
49990 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
49991
49992         * modules/size_max (Makefile.am): Add size_max.h
49993
49994 2005-09-04  Derek Price  <derek@ximbiot.com>
49995
49996         * gnulib-tool (func_import): Fix reversed $symbolic logic.
49997
49998 2005-09-03  Simon Josefsson  <jas@extundo.com>
49999
50000         * gnulib-tool: Fix typo.
50001
50002 2005-09-03  Simon Josefsson  <jas@extundo.com>
50003
50004         * config/srclist.txt: Add glibc bug 1293.
50005
50006 2005-09-03  Derek Price  <derek@ximbiot.com>
50007
50008         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
50009         From Larry Jones <lawrence.jones@ugs.com>.
50010
50011 2005-09-02  Simon Josefsson  <jas@extundo.com>
50012
50013         * modules/socklen: New file.
50014
50015 2005-09-02  Simon Josefsson  <jas@extundo.com>
50016
50017         * modules/havelib: New module.
50018
50019         * modules/gettext, modules/iconv, modules/lock, modules/readline:
50020         Use havelib.
50021
50022 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
50023
50024         Check for arithmetic overflow when calculating sizes, to prevent
50025         some buffer-overflow issues.  These patches are conservative, in the
50026         sense that when I couldn't determine whether an overflow was possible,
50027         I inserted a run-time check.
50028         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
50029         macros.
50030         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
50031         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
50032         (re_xnrealloc, re_x2nrealloc): New inline functions.
50033         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
50034         parse_bracket_exp):
50035         (build_equiv_class, build_charclass): Check for arithmetic overflow
50036         in size expression calculations.
50037         * lib/regex_internal.c (re_string_realloc_buffers):
50038         (build_wcs_upper_buffer, re_node_set_add_intersect):
50039         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
50040         (re_dfa_add_node, register_state): Likewise.
50041         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
50042         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
50043         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
50044         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
50045
50046 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
50047
50048         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
50049         m4/ulonglong.m4.  Problem reported by Martin Lambers.
50050
50051 2005-09-02  Bruno Haible  <bruno@clisp.org>
50052
50053         Support for lib vs. lib64 distinction on biarch platforms.
50054         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
50055         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
50056         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
50057
50058 2005-09-02  Bruno Haible  <bruno@clisp.org>
50059
50060         * gnulib-tool (import): In the other first-use case, provide defaults
50061         as well.
50062
50063 2005-09-02  Bruno Haible  <bruno@clisp.org>
50064
50065         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
50066         patches not yet found in the latest gettext release.
50067
50068 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50069
50070         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
50071         to avoid a collision with bits/local_lim.h in glibc.
50072         All uses changed.  Problem reported by Dmitry V. Levin in
50073         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
50074
50075         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
50076         bugs in int versus size_t comparisons.
50077         (re_string_context_at): Fix bug where the code assumed that
50078         Idx is signed.
50079
50080         Use bool where appropriate.
50081         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
50082         All callers changed.
50083         (calc_eclosure_iter): Likewise, for ROOT arg.
50084         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
50085         (build_charclass_op): Likewise, for NON_MATCH arg.
50086         * lib/regex_internal.c (re_string_allocate, re_string_construct):
50087         (re_string_construct_common): Likewise, for ICASE arg.
50088         * lib/regexec.c (re_search_2_stub, re_search_stub):
50089         Likewise, for RET_LEN arg.
50090         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
50091         (set_regs): Likewise, for FL_BACKTRACK arg.
50092         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
50093         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
50094         (calc_eclosure_iter, parse_bracket_exp):
50095         Use bool for internal variables that are booleans.
50096         * lib/regexec.c (re_search_internal, check_matching,
50097         proceed_next_node):
50098         (set_regs, build_sifted_states, sift_states_bkref):
50099         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
50100         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
50101         (find_collation_sequence_value):
50102         Likewise.
50103         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
50104         (re_node_set_compare):
50105         Return bool, not int. All callers changed.
50106         * lib/regexec.c (check_halt_node_context, check_dst_limits):
50107         (build_trtable, check_node_accept): Likewise.
50108         * lib/regex_internal.h: Include stdbool.h.
50109
50110         Fix bugs uncovered when converting to bool.
50111         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
50112         failure instead of charging ahead blindly.
50113         * lib/regex_internal.c (register_state): Likewise.
50114         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
50115         for freeing internal storage.
50116         (group_nodes_into_DFA_states): Use unsigned int, not int, for
50117         bitset pieces used as boolean, to avoid undefined behavior
50118         on hosts that do int overflow checking.
50119
50120 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50121
50122         * config/srclist.txt: Add glibc bugs 1285-1287.
50123
50124 2005-09-01  Jim Meyering  <jim@meyering.net>
50125
50126         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
50127         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
50128         Require gl_STAT_MACROS, too.
50129
50130 2005-09-01  Bruno Haible  <bruno@clisp.org>
50131
50132         * gnulib-tool (import): In the first-use case, provide defaults.
50133
50134 2005-09-01  Bruno Haible  <bruno@clisp.org>
50135
50136         * gnulib-tool (func_import): Remove the .tmp files.
50137
50138 2005-09-01  Bruno Haible  <bruno@clisp.org>
50139
50140         * gnulib-tool (func_import): Fix handling of symbolic links.
50141
50142 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50143
50144         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
50145         old glibc regex code mishandles strings longer than 2**31 bytes.
50146         This patch fixes this when the regex code is used in gnulib
50147         (i.e., outside glibc).
50148
50149         This patch should not affect the use of the regex code inside
50150         glibc.  No doubt this problem also needs to be handled for glibc
50151         as well, but the result will be an incompatible change to the
50152         glibc ABI, and the old ABI will have to be supported too.  That
50153         can be the the subject for another patch.
50154
50155         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
50156         governing whether the rest of this patch is active.  By default,
50157         the macro is disabled and the patch has no effect.
50158         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
50159         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
50160         (struct re_pattern_buffer, re_search, re_search_2, re_match):
50161         (re_match_2, re_set_registers): Use the new types.
50162         * lib/regex_internal.h (Idx, re_hashval_t): New types.
50163         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
50164         New macros.
50165         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
50166         (re_string_context_at, bin_tree_t, re_dfastate_t):
50167         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
50168         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
50169         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
50170         (re_string_char_size_at, re_string_wchar_at):
50171         (re_string_elem_size_at):
50172         Use the new types and macros to port to 64-bit hosts.
50173         Use unsigned types for internal values, so that the code
50174         mostly works even for arrays larger than SSIZE_MAX.
50175         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
50176         (search_duplicated_node, calc_eclosure_iter, fetch_number):
50177         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
50178         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
50179         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
50180         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
50181         (calc_inveclosure, parse_dup_op, build_range_exp):
50182         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
50183         (fetch_number, create_token_tree, mark_opt_subexp):
50184         Likewise.
50185         * lib/regex_internal.c (re_string_construct_common,
50186         create_ci_newstate):
50187         (create_cd_newstate, re_string_allocate, re_string_construct):
50188         (re_string_realloc_buffers, build_wcs_upper_buffer):
50189         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
50190         (re_string_reconstruct, re_string_peek_byte_case):
50191         (re_string_fetch_byte_case, re_string_context_at):
50192         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
50193         (re_node_set_init_copy, re_node_set_add_intersect):
50194         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50195         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50196         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
50197         (re_acquire_state, re_acquire_state_context, register_state):
50198         Likewise.
50199         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
50200         search_cur_bkref_entry):
50201         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
50202         (re_search_internal, re_search_2_stub, re_search_stub)
50203         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
50204         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
50205         (update_cur_sifted_state, check_dst_limits):
50206         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50207         (check_subexp_limits, sift_states_bkref, merge_state_array):
50208         (check_subexp_matching_top, get_subexp, get_subexp_sub):
50209         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
50210         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
50211         (expand_bkref_cache, check_node_accept_bytes):
50212         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
50213         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
50214         (acquire_init_state_context, check_halt_node_context):
50215         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
50216         (sift_states_backward, clean_state_log_if_needed):
50217         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
50218         (find_recover_state, transit_state_sb, transit_state_mb):
50219         (transit_state_bkref, build_trtable, match_ctx_clean):
50220         Likewise.
50221         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
50222         to work around an assumption that REG_MISSING is negative.
50223
50224         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
50225         (seek_collating_symbol_entry) [defined _LIBC]:
50226         (lookup_collation_sequence_value) [defined _LIBC]:
50227         (build_range_exp, build_collating_symbol) [defined _LIBC]:
50228         Use prototypes rather than old-style function definitions.
50229         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
50230         (transit_state_sb) [0]:
50231         (find_collation_sequence_value) [defined _LIBC]: Likewise.
50232
50233         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
50234         rm_eo.
50235
50236         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
50237         (optimize_subexps, lower_subexp):
50238         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
50239         since the signed shift might overflow.  Use 1u<<31 instead.
50240         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
50241         Likewise.
50242         * lib/regexec.c (check_dst_limits_calc_pos_1,
50243         check_subexp_matching_top): Likewise.
50244
50245         * lib/regcomp.c (optimize_subexps, lower_subexp):
50246         Use CHAR_BIT rather than 8, for clarity.
50247         * lib/regexec.c (check_dst_limits_calc_pos_1):
50248         (check_subexp_matching_top): Likewise.
50249         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
50250         have to worry about portability issues when shifting it left.
50251         Remove no-longer-needed test for table_size > 0.
50252         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
50253         in a word, as the resulting behavior is undefined.
50254         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
50255         in one case, a <= should have been an <, and in another case the
50256         whole test was missing.
50257         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
50258         the standard name CHAR_BIT.
50259         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
50260         this is not true on one's complement and signed-magnitude hosts.
50261
50262         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
50263         next_last_offset.
50264         (struct re_dfa_t): Remove unused member states_alloc.
50265         * lib/regcomp.c (init_dfa): Don't initialize unused members.
50266
50267 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50268
50269         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
50270         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
50271         and large-file glibc and in 32-bit large-file Solaris.
50272
50273 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50274
50275         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
50276         lengths fit in regoff_t; this isn't true if regoff_t is the same
50277         width as size_t.
50278         * lib/regex.c (re_search_internal): 5th arg is LAST_START
50279         (= START + RANGE) instead of RANGE.  This avoids overflow
50280         problems when regoff_t is the same width as size_t.
50281         All callers changed.
50282         (re_search_2_stub): Check for overflow when adding the
50283         sizes of the two strings.
50284         (re_search_stub): Check for overflow when adding START
50285         to RANGE; if it occurs, substitute the extreme value.
50286
50287 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50288
50289         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
50290
50291 2005-08-31  Jim Meyering  <jim@meyering.net>
50292
50293         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
50294         a pointer-to-const.
50295         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
50296         (register_state): Likewise.
50297         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
50298         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50299         (group_nodes_into_DFAstates): Likewise.
50300
50301 2005-08-31  Jim Meyering  <jim@meyering.net>
50302
50303         * check-module: Add a FIXME comment.
50304
50305 2005-08-31  Eric Blake  <ebb9@byu.net>
50306
50307         * modules/unistd-safer (Files): Add unistd--.h.
50308         * modules/stdio-safer (Files): Add stdio--.h.
50309
50310 2005-08-31  Derek Price  <derek@ximbiot.com>
50311
50312         * lib/getdelim.c (getdelim): Return EOF on EOF.
50313         Reported by Larry Jones <lawrence.jones@ugs.com>.
50314
50315 2005-08-31  Bruno Haible  <bruno@clisp.org>
50316
50317         Avoid unnecessary diffs in the generated lib/Makefile.am.
50318         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
50319         the generated files.
50320         (func_import): Don't set cmd.
50321
50322 2005-08-31  Bruno Haible  <bruno@clisp.org>
50323
50324         * lib/strstr.c: Include <stddef.h>, for NULL.
50325         * lib/strcasestr.c: Likewise.
50326         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
50327
50328 2005-08-31  Bruno Haible  <bruno@clisp.org>
50329
50330         * gnulib-tool: New option --macro-prefix.
50331         (func_import): Use macro_prefix.
50332         (import): Handle option --macro-prefix.
50333
50334 2005-08-31  Bruno Haible  <bruno@clisp.org>
50335
50336         * gnulib-tool (import): Rename most ac_* variables to cached_*.
50337         Also use new variables cached_lgpl, cached_libtool.
50338
50339 2005-08-31  Bruno Haible  <bruno@clisp.org>
50340
50341         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
50342         always instantiating them.
50343
50344 2005-08-31  Bruno Haible  <bruno@clisp.org>
50345
50346         * gnulib-tool (func_import): Read the previous cached settings
50347         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
50348         earlier added by gnulib but are now dropped. Warn when a gnulib file
50349         overwrites a non-gnulib file.
50350
50351 2005-08-31  Bruno Haible  <bruno@clisp.org>
50352
50353         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
50354         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
50355         projects that don't keep autogenerated files in CVS. Put into
50356         actioncmd only the specified modules, not the transitive closure.
50357
50358 2005-08-31  Bruno Haible  <bruno@clisp.org>
50359
50360         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
50361         Create directories that shall be filled.
50362         (import): Don't look for gl_* macros in configure.ac. Recurse across
50363         all directories containing a gnulib-cache.m4 files, if meaningful.
50364
50365 2005-08-31  Bruno Haible  <bruno@clisp.org>
50366
50367         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
50368         (import): Set seen_libtool when we see gl_LIBTOOL.
50369
50370 2005-08-31  Bruno Haible  <bruno@clisp.org>
50371
50372         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
50373         declaration macro definitions from generated gnulib.m4.
50374
50375 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
50376
50377         * lib/iconvme.h: Add prototype for iconv_alloc.
50378
50379 2005-08-29  Simon Josefsson  <jas@extundo.com>
50380
50381         * lib/iconvme.c: Fix errno.
50382
50383 2005-08-29  Bruno Haible  <bruno@clisp.org>
50384
50385         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
50386         that it works when the directory contains spaces.
50387
50388 2005-08-29  Bruno Haible  <bruno@clisp.org>
50389
50390         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
50391
50392 2005-08-29  Bruno Haible  <bruno@clisp.org>
50393
50394         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
50395         Emit more advice.
50396
50397 2005-08-29  Bruno Haible  <bruno@clisp.org>
50398         and Stepan Kasal  <kasal@ucw.cz>
50399
50400         * check-module: If more parameters are given, check each of them
50401         separately; add more exceptions, as noted by Jim Meyering.
50402         (check_module): New procedure.
50403         (%exempt_header): Now contains all exceptions.
50404
50405 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
50406
50407         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
50408
50409 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
50410
50411         * lib/iconvme.c: Split iconv_string into iconv_alloc.
50412
50413 2005-08-28  Bruno Haible  <bruno@clisp.org>
50414
50415         * m4/gnulib-tool.m4: New file.
50416
50417 2005-08-27  Jim Meyering  <jim@meyering.net>
50418
50419         * modules/unistd-safer (Files): Add pipe-safer.c.
50420         * modules/fcntl-safer (Files): Add creat-safer.c.
50421
50422 2005-08-27  Jim Meyering  <jim@meyering.net>
50423
50424         * m4/stdlib-safer.m4: New file.  From coreutils.
50425         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
50426         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
50427         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
50428         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
50429         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
50430
50431 2005-08-27  Jim Meyering  <jim@meyering.net>
50432
50433         * lib/fopen-safer.c: Merge minor changes from coreutils.
50434         * lib/dup-safer.c: Likewise.
50435         * lib/fd-safer.c: Likewise.
50436
50437         Merge from coreutils.
50438         * lib/stdio--.h: New file.
50439         * lib/stdlib--.h: New file.
50440         * lib/mkstemp-safer.c: New file.
50441
50442         GNU tar needs these.
50443         * lib/pipe-safer.c: New file.
50444         * lib/creat-safer.c: New file.
50445         * lib/fcntl--.h (creat): Define to creat_safer.
50446         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
50447         * lib/unistd--.h (pipe): Define to pipe_safer.
50448         * lib/unistd-safer.h: Declare pipe_safer.
50449
50450 2005-08-26  Simon Josefsson  <jas@extundo.com>
50451
50452         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
50453         Haible <bruno@clisp.org>.
50454
50455 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
50456
50457         * lib/regex_internal.h: Remove all references to
50458         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
50459         or better.
50460         (bitset_not, bitset_merge, bitset_not_merge):
50461         (bitset_mask, re_string_allocate, re_string_construct):
50462         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
50463         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
50464         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
50465         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
50466         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50467         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50468         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
50469         (re_acquire_state_context):
50470         Remove unnecessary forward decls.
50471         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
50472         Put __attribute at function definition,
50473         now that the function decl has been removed.
50474         * lib/regex_internal.c (re_string_peek_byte_case):
50475         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
50476         Likewise.
50477
50478 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
50479
50480         * m4/regex.m4: Add AC_PREREQ(2.50).
50481         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
50482
50483 2005-08-25  Simon Josefsson  <jas@extundo.com>
50484
50485         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
50486         __fsetlocking.
50487
50488 2005-08-25  Simon Josefsson  <jas@extundo.com>
50489
50490         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
50491         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
50492         GLIBC specific code.
50493
50494 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50495
50496         Make regex safe for g++.  This fixes one real bug (an "err"
50497         that should have been "*err").  g++ problem reported by
50498         Sam Steingold.
50499         * lib/regex_internal.h (re_calloc): New macro, consistent with
50500         re_malloc etc.  All callers of calloc changed to use re_calloc.
50501         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
50502         not int.  All callers changed.
50503         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
50504         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
50505         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
50506         (find_recover_state): Change "err" to "*err"; this fixes what
50507         appears to be a real bug.
50508         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
50509         versus int.
50510
50511 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50512
50513         * modules/regex (Depends-on): Add malloc, since the code
50514         assumes that !malloc(0) means failure.
50515
50516 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50517
50518         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
50519
50520         alloca modernization/simplification for regex.
50521         * lib/regex.c: Remove portability cruft for alloca.  This no longer
50522         needs to be at the start of the file, and can be moved into
50523         regex_internal.h and simplified.
50524         * lib/regex_internal.h: Include <alloca.h>.
50525         (__libc_use_alloca) [!defined _LIBC]: New macro.
50526         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
50527         now works outside glibc.
50528
50529 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50530
50531         * config/srclist.txt: Add glibc bugs 1241, 1245.
50532
50533 2005-08-25  Jim Meyering  <jim@meyering.net>
50534
50535         * lib/open-safer.c: Include <config.h>.
50536         Otherwise, we'd lose LARGEFILE support in any file using
50537         e.g. "fcntl--.h"
50538
50539 2005-08-25  Bruno Haible  <bruno@clisp.org>
50540
50541         * m4/minmax.m4: Require autoconf 2.52.
50542         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
50543         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
50544         alternatives of translit over the alphabet.
50545         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
50546
50547 2005-08-24  Simon Josefsson  <jas@extundo.com>
50548
50549         * tests/test-getpass.c: New file.
50550
50551 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50552
50553         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
50554         for GNU regex features.
50555
50556 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50557
50558         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
50559         * lib/regex.h (regerror): Likewise.
50560
50561         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
50562         requires this.  (The code never needed it.)
50563
50564         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
50565         All uses of recently-renamed identifiers changed to use the new,
50566         POSIX-compliant names.  The code will build and run just fine
50567         without these changes, but it's better to eat our own dog food
50568         and use the standard-conforming names.
50569
50570         * lib/regex.h: Fix a multitude of POSIX name space violations.
50571         These changes have an effect only for programs that define
50572         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
50573         do not change anything for programs compiled in the normal way.
50574         Also, there is no effect on the ABI.
50575
50576         (_REGEX_SOURCE): New macro.
50577         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
50578         defined and _GNU_SOURCE is not; this fixes a name space violation.
50579
50580         Rename the following macros to obey POSIX requirements.
50581         The old names are still visible as macros if _REGEX_SOURCE is defined.
50582         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
50583         RE_BACKSLASH_ESCAPE_IN_LISTS.
50584         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
50585         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
50586         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
50587         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
50588         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
50589         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
50590         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
50591         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
50592         (REG_INTERVALS): renamed from RE_INTERVALS.
50593         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
50594         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
50595         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
50596         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
50597         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
50598         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
50599         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
50600         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
50601         RE_UNMATCHED_RIGHT_PAREN_ORD.
50602         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
50603         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
50604         (REG_DEBUG): renamed from RE_DEBUG.
50605         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
50606         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
50607         unusual, since we can't clash with the POSIX REG_ICASE.
50608         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
50609         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
50610         (REG_NO_SUB): renamed from RE_NO_SUB.
50611         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
50612         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
50613         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
50614         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
50615         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
50616         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
50617         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
50618         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
50619         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
50620         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
50621         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
50622         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
50623         RE_SYNTAX_POSIX_MINIMAL_BASIC.
50624         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
50625         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
50626         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
50627         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
50628         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
50629         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
50630         (REG_FIXED): Renamed from REGS_FIXED.
50631         (REG_NREGS): Renamed from RE_NREGS.
50632
50633         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
50634         of other REG_* macros, since POSIX says the user is allowed to
50635         #undef these macros selectively.
50636
50637         (reg_errcode_t): Update comment stating what other tables need
50638         to be consistent.
50639
50640         Rename the following enum values to obey POSIX requirements.
50641         The old names are still visible as macros.
50642         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
50643         is not defined, since GNU is supposed to be a superset of POSIX as
50644         much as possible, and since we want reg_errcode_t to be a signed
50645         type for implementation consistency.
50646         (_REG_NOERROR): Renamed from REG_NOERROR.
50647         (_REG_NOMATCH): Renamed from REG_NOMATCH.
50648         (_REG_BADPAT): Renamed from REG_BADPAT.
50649         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
50650         (_REG_ECTYPE): Renamed from REG_ECTYPE.
50651         (_REG_EESCAPE): Renamed from REG_EESCAPE.
50652         (_REG_ESUBREG): Renamed from REG_ESUBREG.
50653         (_REG_EBRACK): Renamed from REG_EBRACK.
50654         (_REG_EPAREN): Renamed from REG_EPAREN.
50655         (_REG_EBRACE): Renamed from REG_EBRACE.
50656         (_REG_BADBR): Renamed from REG_BADBR.
50657         (_REG_ERANGE): Renamed from REG_ERANGE.
50658         (_REG_ESPACE): Renamed from REG_ESPACE.
50659         (_REG_BADRPT): Renamed from REG_BADRPT.
50660         (_REG_EEND): Renamed from REG_EEND.
50661         (_REG_ESIZE): Renamed from REG_ESIZE.
50662         (_REG_ERPAREN): Renamed from REG_ERPAREN.
50663         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
50664         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
50665         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
50666         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
50667
50668         (_REG_RE_NAME, _REG_RM_NAME): New macros.
50669         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
50670         changed.  But support the old name if the new one is not defined
50671         and if _REGEX_SOURCE.
50672
50673         Change the following member names in struct re_pattern_buffer.
50674         The old names are still supported if !_REGEX_SOURCE.
50675         The new names are always supported, regardless of _REGEX_SOURCE.
50676         (re_buffer): Renamed from buffer.
50677         (re_allocated): Renamed from allocated.
50678         (re_used): Renamed from used.
50679         (re_syntax): Renamed from syntax.
50680         (re_fastmap): Renamed from fastmap.
50681         (re_translate): Renamed from translate.
50682         (re_can_be_null): Renamed from can_be_null.
50683         (re_regs_allocated): Renamed from regs_allocated.
50684         (re_fastmap_accurate): Renamed from fastmap_accurate.
50685         (re_no_sub): Renamed from no_sub.
50686         (re_not_bol): Renamed from not_bol.
50687         (re_not_eol): Renamed from not_eol.
50688         (re_newline_anchor): Renamed from newline_anchor.
50689
50690         Change the following member names in struct re_registers.
50691         The old names are still supported if !_REGEX_SOURCE.
50692         The new names are always supported, regardless of _REGEX_SOURCE.
50693         (rm_num_regs): Renamed from num_regs.
50694         (rm_start): Renamed from start.
50695         (rm_end): Renamed from end.
50696
50697         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
50698         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
50699         Prepend __ to parameter names.
50700
50701         Undo yesterday's changes.
50702
50703 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
50704
50705         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
50706         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
50707         lib/regex.c.
50708
50709 2005-08-24  Jim Meyering  <jim@meyering.net>
50710
50711         Sync from coreutils.
50712         * m4/fcntl-safer.m4: New file.
50713
50714         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
50715         and object files for this module.
50716
50717 2005-08-24  Jim Meyering  <jim@meyering.net>
50718
50719         Sync from coreutils.
50720         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
50721
50722 2005-08-24  Jim Meyering  <jim@meyering.net>
50723
50724         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
50725         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
50726
50727 2005-08-24  Jim Meyering  <jim@meyering.net>
50728
50729         * modules/fcntl-safer: New module.
50730         * modules/fts (Depends-on): Add fcntl-safer.
50731         * MODULES.html.sh (File descriptor based Input/Output):
50732         Add fcntl-safer.
50733
50734 2005-08-24  Bruno Haible  <bruno@clisp.org>
50735
50736         Support for unit test modules.
50737         * modules/README: Mention tests modules.
50738         * modules/TEMPLATE-TESTS: New file.
50739         * gnulib-tool: New options --extract-tests-module, --with-tests and
50740         --tests-base (unused for the moment).
50741         (testsbase, inctests): New variables.
50742         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
50743         (func_verify_module): Exclude TEMPLATE-TESTS.
50744         (func_verify_nontests_module, func_verify_tests_module): New functions.
50745         (func_get_dependencies): Add implicit dependency for tests modules.
50746         (func_get_tests_module): New function.
50747         (func_modules_transitive_closure): When --with-tests was specified,
50748         include the unit tests as well, unless explicitly avoided.
50749         (func_emit_lib_Makefile_am): Ignore the tests modules here.
50750         (func_emit_tests_Makefile_am): New function.
50751         (func_create_testdir): When --with-tests was specified, emit a
50752         tests/ directory.
50753         * MODULES.html.sh (Future developments): Update.
50754
50755 2005-08-24  Bruno Haible  <bruno@clisp.org>
50756
50757         * modules/tls-tests: New file.
50758         * tests/test-tls.c: New file, from GNU gettext.
50759
50760 2005-08-24  Bruno Haible  <bruno@clisp.org>
50761
50762         * modules/lock-tests: New file.
50763         * tests/test-lock.c: New file, from GNU gettext.
50764
50765 2005-08-24  Bruno Haible  <bruno@clisp.org>
50766
50767         * lib/lock.h: Add multiple inclusion guard.
50768         * lib/tls.h: Add multiple inclusion guard.
50769
50770 2005-08-24  Bruno Haible  <bruno@clisp.org>
50771
50772         * gnulib-tool: Add support for the --aux-dir option to
50773         --create-testdir, --create-megatestdir, --test, --megatest.
50774         (func_create_testdir, func_create_megatestdir): Optionally emit a
50775         AC_CONFIG_AUX_DIR directive.
50776         (create-testdir, create-megatestdir, test, megatest): Provide a
50777         default value for $auxdir.
50778
50779 2005-08-24  Bruno Haible  <bruno@clisp.org>
50780
50781         * gnulib-tool (import): Use compound statement instead of subshell
50782         where possible.
50783
50784 2005-08-24  Bruno Haible  <bruno@clisp.org>
50785
50786         * gnulib-tool (import): Change --aux-dir default to "build-aux".
50787
50788 2005-08-24  Bruno Haible  <bruno@clisp.org>
50789
50790         * gnulib-tool (func_version): Update.
50791
50792 2005-08-24  Bruno Haible  <bruno@clisp.org>
50793
50794         * gnulib-tool (func_import, func_create_testdir,
50795         func_create_megatestdir): Quote all autoconf macro arguments.
50796
50797 2005-08-24  Bruno Haible  <bruno@clisp.org>
50798
50799         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
50800         option --force, because --force causes the aclocal.m4 of each
50801         subdirectory to be newer than the corresponding config.h.in.
50802
50803 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50804
50805         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
50806         All contents moved to gl_REGEX.
50807         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
50808         assume that it does.
50809
50810 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50811
50812         * lib/regex.h (REG_NOSYS)
50813         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
50814         Define, since POSIX requires it as of 2001.
50815         (_REG_ENOSYS)
50816         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
50817         New private symbol, used to keep the enum signed in all cases.
50818         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
50819         Youngman in
50820         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
50821
50822         * lib/regex_internal.c (re_string_skip_chars, register_state):
50823         (calc_state_hash):
50824         Remove forward decls; no longer needed now that we use prototypes.
50825         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
50826         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
50827         (clean_state_log_if_needed): Likewise.
50828
50829 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
50830
50831         * config/srclist.txt: Add glibc bugs 1231-1233.
50832
50833 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50834
50835         Fix problems reported by Sam Steingold in
50836         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
50837         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
50838         assumed that reg_errcode_t is a signed type, which is not
50839         necessarily true if _XOPEN_SOURCE is not defined.
50840         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
50841         since some compilers warn about it otherwise.
50842
50843 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50844
50845         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
50846         (init_word_char, create_initial_state, duplicate_node_closure):
50847         (fetch_token, peek_token_bracket, build_range_exp):
50848         (build_collating_symbol): Remove forward decls; no longer needed
50849         now that we use prototypes.
50850
50851         * lib/regcomp.c:
50852         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
50853         (re_compile_fastmap_iter, regcomp, regerror, regfree):
50854         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
50855         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
50856         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
50857         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
50858         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
50859         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
50860         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
50861         (build_range_exp, build_collating_symbol, parse_bracket_exp):
50862         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
50863         (build_charclass, build_charclass_op, fetch_number, create_tree):
50864         (create_token_tree, mark_opt_subexp, duplicate_tree):
50865         Use prototypes rather than old-style definitions.
50866
50867         * lib/regex_internal.c:
50868         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
50869         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
50870         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
50871         (re_string_reconstruct, re_string_peek_byte_case):
50872         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
50873         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
50874         (re_node_set_init_copy, re_node_set_add_intersect):
50875         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50876         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50877         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
50878         (re_acquire_state, re_acquire_state_context, register_state):
50879         (create_ci_newstate, create_cd_newstate, free_state):
50880         Likewise.
50881         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
50882         re_search_2):
50883         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
50884         (re_search_internal, prune_impossible_nodes):
50885         (acquire_init_state_context, check_matching, static):
50886         (check_halt_node_context, check_halt_state_context, proceed_next_node):
50887         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
50888         (update_regs, sift_states_backward, build_sifted_states):
50889         (clean_state_log_if_needed, merge_state_array):
50890         (update_cur_sifted_state, add_epsilon_src_nodes):
50891         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
50892         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
50893         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
50894         (find_recover_state, check_subexp_matching_top, transit_state_mb):
50895         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
50896         (check_arrival, check_arrival_add_next_nodes):
50897         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
50898         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
50899         (check_node_accept_bytes, check_node_accept, extend_buffers):
50900         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
50901         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
50902         (sift_ctx_init):
50903         Likewise.
50904
50905         * lib/regex_internal.h:
50906         (re_string_allocate, re_string_construct, re_string_reconstruct):
50907         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
50908         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
50909         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
50910         (re_string_context_at, re_string_peek_byte_case):
50911         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
50912         is defined, since we now use prototypes always.
50913
50914         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
50915         C89 or better.  All uses removed.
50916
50917 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50918
50919         * config/srclist.txt: Add glibc bugs 1220-1227.
50920
50921 2005-08-20  Jim Meyering  <jim@meyering.net>
50922
50923         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
50924         of unused local, dfa.
50925
50926 2005-08-20  Bruno Haible  <bruno@clisp.org>
50927
50928         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
50929
50930 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50931
50932         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
50933         (re_node_set_insert_last, re_dfa_add_node):
50934         Rename local variables to avoid GCC shadowing warnings.
50935
50936 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50937
50938         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
50939         [defined lint]: Suppress bogus uninitialized-variable warnings.
50940
50941         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
50942         and let the caller return REG_ESPACE if out of space.  This
50943         removes an uninitialied-variable warning with GCC 4.0.1, and also
50944         avoids taking the address of a local variable.  All callers
50945         changed.
50946
50947 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50948
50949         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
50950         $LIBCSRC/posix/regexec.c.
50951         Add glibc bug 1217 for regcomp.c.
50952
50953 2005-08-19  Jim Meyering  <jim@meyering.net>
50954
50955         * lib/regexec.c (proceed_next_node): Redo local variables to
50956         avoid GCC shadowing warnings.
50957
50958 2005-08-18  Bruno Haible  <bruno@clisp.org>
50959
50960         * lib/strstr.c (strstr): Fix return value in multibyte case.
50961         * lib/strcasestr.c (strcasestr): Likewise.
50962
50963 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
50964
50965         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
50966
50967 2005-08-17  Jim Meyering  <jim@meyering.net>
50968
50969         Make the %s format (seconds since the epoch) work for a negative
50970         number and when used with a zero-padded field width, e.g. %015s.
50971
50972         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
50973         label so that it precedes the code to set `digits'.  Otherwise,
50974         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
50975         print `00-22'.  Now, it prints `-0022', as it should.
50976
50977 2005-08-17  Bruno Haible  <bruno@clisp.org>
50978
50979         * modules/strstr (Files): Add m4/mbrtowc.m4.
50980         (Depends-on): Add mbuiter.
50981
50982 2005-08-17  Bruno Haible  <bruno@clisp.org>
50983
50984         * modules/strcasestr: New file.
50985         * MODULES.html.sh (String handling, based on ANSI C 89): Add
50986         strcasestr.
50987
50988 2005-08-17  Bruno Haible  <bruno@clisp.org>
50989
50990         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
50991
50992 2005-08-17  Bruno Haible  <bruno@clisp.org>
50993
50994         * modules/mbuiter: New file.
50995         * MODULES.html.sh (Extended multibyte and wide character utilities):
50996         Add mbuiter.
50997
50998 2005-08-17  Bruno Haible  <bruno@clisp.org>
50999
51000         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
51001         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
51002
51003 2005-08-17  Bruno Haible  <bruno@clisp.org>
51004
51005         * m4/strcasestr.m4: New file.
51006
51007 2005-08-17  Bruno Haible  <bruno@clisp.org>
51008
51009         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
51010         * lib/strstr.c: Completely rewritten, with multibyte locale support.
51011
51012 2005-08-17  Bruno Haible  <bruno@clisp.org>
51013
51014         * lib/strcasestr.h: New file.
51015         * lib/strcasestr.c: New file.
51016
51017 2005-08-17  Bruno Haible  <bruno@clisp.org>
51018
51019         * lib/strcasecmp.c: Use mbuiter.h.
51020
51021 2005-08-17  Bruno Haible  <bruno@clisp.org>
51022
51023         * lib/mbuiter.h: New file.
51024
51025 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
51026
51027         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
51028         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
51029         and gl_GETOPT are both invoked via different paths (as happens
51030         with GNU tar CVS because it uses both argp and getopt), the former
51031         wins.
51032
51033 2005-08-16  Bruno Haible  <bruno@clisp.org>
51034
51035         * modules/tls: New file.
51036         * MODULES.html.sh (Multithreading): Add tls.
51037
51038 2005-08-16  Bruno Haible  <bruno@clisp.org>
51039
51040         * modules/strnlen1: New file.
51041         * MODULES.html.sh (String handling): Add strnlen1.
51042
51043 2005-08-16  Bruno Haible  <bruno@clisp.org>
51044
51045         * modules/strcase (Files): Add m4/mbrtowc.m4.
51046         (Depends-on): Add strnlen1, mbchar.
51047
51048 2005-08-16  Bruno Haible  <bruno@clisp.org>
51049
51050         * modules/mbiter: New file.
51051         * MODULES.html.sh (Extended multibyte and wide character utilities):
51052         Add mbiter.
51053
51054 2005-08-16  Bruno Haible  <bruno@clisp.org>
51055
51056         * modules/mbfile: New file.
51057         * MODULES.html.sh (Extended multibyte and wide character utilities):
51058         Add mbfile.
51059
51060 2005-08-16  Bruno Haible  <bruno@clisp.org>
51061
51062         * modules/mbchar: New file.
51063         * MODULES.html.sh (Extended multibyte and wide character utilities):
51064         New section.
51065
51066 2005-08-16  Bruno Haible  <bruno@clisp.org>
51067
51068         * m4/tls.m4: New file, from GNU gettext.
51069
51070 2005-08-16  Bruno Haible  <bruno@clisp.org>
51071
51072         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
51073         always.
51074         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
51075
51076 2005-08-16  Bruno Haible  <bruno@clisp.org>
51077
51078         * m4/mbiter.m4: New file.
51079
51080 2005-08-16  Bruno Haible  <bruno@clisp.org>
51081
51082         * m4/mbfile.m4: New file.
51083
51084 2005-08-16  Bruno Haible  <bruno@clisp.org>
51085
51086         * m4/mbchar.m4: New file.
51087
51088 2005-08-16  Bruno Haible  <bruno@clisp.org>
51089
51090         * lib/tls.h: New file, from GNU gettext.
51091         * lib/tls.c: New file, from GNU gettext.
51092
51093 2005-08-16  Bruno Haible  <bruno@clisp.org>
51094
51095         * lib/strnlen1.h: New file.
51096         * lib/strnlen1.c: New file.
51097
51098 2005-08-16  Bruno Haible  <bruno@clisp.org>
51099
51100         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
51101         (mbi_init): Update.
51102         (mbi_avail, mbi_advance): Let the iteration end before the terminating
51103         NUL byte, not after it.
51104
51105 2005-08-16  Bruno Haible  <bruno@clisp.org>
51106
51107         * lib/strcase.h (strcasecmp): Add note in comments.
51108         * lib/strncasecmp.c: Use code from strcasecmp.c.
51109         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
51110         (strcasecmp): Work correctly in multibyte locales.
51111
51112 2005-08-16  Bruno Haible  <bruno@clisp.org>
51113
51114         * lib/mbiter.h: New file.
51115
51116 2005-08-16  Bruno Haible  <bruno@clisp.org>
51117
51118         * lib/mbfile.h: New file.
51119
51120 2005-08-16  Bruno Haible  <bruno@clisp.org>
51121
51122         * lib/mbchar.h: New file.
51123         * lib/mbchar.c: New file.
51124
51125 2005-08-16  Bruno Haible  <bruno@clisp.org>
51126
51127         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
51128         the valid ones. Makes the comparison operations transitive:
51129         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
51130         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
51131
51132 2005-08-15  Simon Josefsson  <jas@extundo.com>
51133
51134         * modules/ssize_t (License): Change to 'unlimited'.
51135
51136         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
51137
51138 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
51139
51140         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
51141         Add comments for each pending glibc patch.
51142
51143 2005-08-15  Bruno Haible  <bruno@clisp.org>
51144
51145         * lib/regex.h (__restrict_arr): Don't define to __restrict if
51146         __cplusplus is defined.
51147
51148 2005-08-14  Jim Meyering  <jim@meyering.net>
51149
51150         Sync from coreutils.
51151
51152         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
51153         Use the hash-table-based cycle-detection code not just when
51154         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
51155         Reported by James Youngman in
51156         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
51157         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
51158         FTS_TIGHT_CYCLE_CHECK.
51159         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
51160         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
51161         once again.
51162         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
51163         * lib/fts.c (fd_safer): Remove decl.
51164         Include fcntl--.h rather than unistd-safer.h
51165         (fts_safe_changedir): Don't call fd_safer; no longer needed
51166         now that we include fcntl--.h.
51167
51168 2005-08-12  Simon Josefsson  <jas@extundo.com>
51169
51170         * modules/getndelim2: Use ssize_t module.
51171         * modules/getnline: Likewise.
51172         * modules/safe-read: Likewise.
51173         * modules/xreadlink: Likewise.
51174
51175         * modules/ssize_t: New file.
51176
51177 2005-08-12  Simon Josefsson  <jas@extundo.com>
51178
51179         * m4/readline.m4: Look for termcap, curses or ncurses if required.
51180
51181 2005-08-12  Simon Josefsson  <jas@extundo.com>
51182
51183         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
51184         ssize_t.
51185
51186 2005-08-12  Simon Josefsson  <jas@extundo.com>
51187
51188         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
51189         readline, getdelim and check_version.
51190         (Support for systems lacking ISO C 99: Sizes of integer types):
51191         Add size_max.
51192
51193 2005-08-12  Bruno Haible  <bruno@clisp.org>
51194
51195         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
51196
51197 2005-08-11  Simon Josefsson  <jas@extundo.com>
51198
51199         * modules/readline: New file.
51200
51201         * modules/strnlen (Files): Add strnlen.h.
51202
51203 2005-08-11  Simon Josefsson  <jas@extundo.com>
51204
51205         * m4/readline.m4: New file.
51206
51207 2005-08-11  Simon Josefsson  <jas@extundo.com>
51208
51209         * lib/readline.h, readline.c: New file.
51210
51211 2005-08-11  Simon Josefsson  <jas@extundo.com>
51212
51213         * doc/gnulib.texi (Initial import, Finishing touches): Mention
51214         gl_AVOID.
51215
51216 2005-08-11  Bruno Haible  <bruno@clisp.org>
51217
51218         * lib/strnlen.h (strnlen): Change parameter name to match comment.
51219
51220 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
51221
51222         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
51223
51224 2005-08-10  Simon Josefsson  <jas@extundo.com>
51225
51226         * tests/test-iconvme.c: New file.
51227
51228 2005-08-10  Simon Josefsson  <jas@extundo.com>
51229
51230         * m4/strnlen.m4: New file.
51231
51232         * m4/strndup.m4: Don't check for strnlen declaration, done in
51233         strnlen.m4.
51234
51235 2005-08-10  Simon Josefsson  <jas@extundo.com>
51236
51237         * lib/strndup.c: Use strnlen.h.
51238
51239         * lib/strnlen.h: New file.
51240
51241 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
51242
51243         * README: Typos.
51244
51245 2005-08-02  Simon Josefsson  <jas@extundo.com>
51246
51247         * modules/readline: New file.
51248
51249 2005-08-02  Simon Josefsson  <jas@extundo.com>
51250
51251         * modules/getdelim: New file.
51252
51253         * modules/getline: Rewrite, don't use getndelim2.
51254
51255 2005-08-02  Simon Josefsson  <jas@extundo.com>
51256
51257         * m4/getline.m4: Separate out getdelim stuff into separate module.
51258
51259         * m4/getdelim.m4: New file.
51260
51261 2005-08-02  Simon Josefsson  <jas@extundo.com>
51262
51263         * lib/getline.h, getline.c: Rewrite.
51264
51265         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
51266
51267 2005-07-31  Bruno Haible  <bruno@clisp.org>
51268
51269         * lib/lock.h (gl_lock_initializer): New macro.
51270         (gl_lock_define_initialized): Use it.
51271         (gl_rwlock_initializer): New macro.
51272         (gl_rwlock_define_initialized): Use it.
51273         (gl_recursive_lock_initializer): New macro.
51274         (gl_recursive_lock_define_initialized): Use it.
51275
51276 2005-07-30  Karl Berry  <karl@gnu.org>
51277
51278         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
51279         Report from Ben Pfaff, regarding getopt.
51280
51281 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
51282
51283         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
51284         normal way.
51285         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
51286         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
51287         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
51288         (gl_GETOPT): Use the new macros.  Most of the implementation
51289         is moved to the new macros.  This is for programs like Emacs
51290         that don't want all the functionality of gl_GETOPT.
51291
51292 2005-07-26  Bruno Haible  <bruno@clisp.org>
51293
51294         * m4/lock.m4: Update from GNU gettext.
51295
51296 2005-07-26  Bruno Haible  <bruno@clisp.org>
51297
51298         * lib/lock.h: Update from GNU gettext.
51299         * lib/lock.c: Update from GNU gettext.
51300
51301 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
51302
51303         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
51304         obsolescent AC_TRY_RUN.  Include the default includes files, for
51305         'exit'.
51306
51307 2005-07-24  Bruno Haible  <bruno@clisp.org>
51308
51309         * modules/visibility: New file.
51310         * MODULES.html.sh (Misc): Add visibility.
51311
51312 2005-07-24  Bruno Haible  <bruno@clisp.org>
51313
51314         * m4/visibility.m4: New file.
51315
51316 2005-07-24  Bruno Haible  <bruno@clisp.org>
51317
51318         * doc/visibility.texi: New file.
51319
51320 2005-07-22  Bruno Haible  <bruno@clisp.org>
51321
51322         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
51323         $(ALLOCA_H), redundant through BUILT_SOURCES.
51324         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
51325         redundant through BUILT_SOURCES.
51326         * modules/byteswap (Makefile.am): Remove explicit dependency on
51327         $(BYTESWAP_H), redundant through BUILT_SOURCES.
51328         * modules/fnmatch (Makefile.am): Remove explicit dependency on
51329         $(FNMATCH_H), redundant through BUILT_SOURCES.
51330         * modules/getopt (Makefile.am): Remove explicit dependency on
51331         $(GETOPT_H), redundant through BUILT_SOURCES.
51332         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
51333         redundant through BUILT_SOURCES.
51334         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
51335         redundant through BUILT_SOURCES.
51336         * modules/stdbool (Makefile.am): Remove explicit dependency on
51337         $(STDBOOL_H), redundant through BUILT_SOURCES.
51338         * modules/stdint (Makefile.am): Remove explicit dependency on
51339         $(STDINT_H), redundant through BUILT_SOURCES.
51340         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
51341         Remove explicit dependency on $(SYSEXITS_H).
51342         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
51343
51344 2005-07-18  Simon Josefsson  <jas@extundo.com>
51345
51346         * lib/check-version.c (check_version): Accept identical versions too.
51347
51348 2005-07-18  Bruno Haible  <bruno@clisp.org>
51349
51350         * modules/lock: New file.
51351         * MODULES.html.sh (Multithreading): New section.
51352
51353 2005-07-18  Bruno Haible  <bruno@clisp.org>
51354
51355         * m4/lock.m4: New file, from GNU gettext.
51356
51357 2005-07-18  Bruno Haible  <bruno@clisp.org>
51358
51359         * lib/lock.h: New file, from GNU gettext.
51360         * lib/lock.c: New file, from GNU gettext.
51361
51362 2005-07-18  Bruno Haible  <bruno@clisp.org>
51363
51364         * lib/lock.h (gl_once_t): New type.
51365         (gl_once_define, gl_once): New macros.
51366         * lib/lock.c (fresh_once): New variable.
51367         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
51368         functions.
51369
51370 2005-07-16  Simon Josefsson  <jas@extundo.com>
51371
51372         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
51373         workaround, suggested by Bruno.
51374
51375 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
51376
51377         * modules/xalloc (Depends-on): Add xalloc-die.
51378         * modules/xvasprintf (Depends-on): Add xalloc-die.
51379
51380 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
51381
51382         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
51383         with a minor change.
51384
51385 2005-07-15  Bruno Haible  <bruno@clisp.org>
51386
51387         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
51388         When using lib/poll.c, define poll as rpl_poll.
51389
51390 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
51391
51392         * modules/argp (Depends-on): Remove unlocked-io.
51393
51394 2005-07-14  Derek Price  <derek@ximbiot.com>
51395
51396         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
51397         for glob symlink bug.
51398
51399 2005-07-14  Bruno Haible  <bruno@clisp.org>
51400
51401         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
51402         Instead, test for *_unlocked function declarations directly.
51403
51404 2005-07-11  Simon Josefsson  <jas@extundo.com>
51405
51406         * modules/size_max: New file.
51407
51408         * modules/xsize: Depend on size_max module for size_max.m4.
51409
51410 2005-07-11  Simon Josefsson  <jas@extundo.com>
51411
51412         * lib/size_max.h: New file.
51413
51414 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
51415
51416         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
51417         copyright symbol and the year.
51418         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
51419         (version_etc_va): Use parameterized copyright notice.
51420         Reword to conform to the current GNU coding standards.
51421
51422 2005-07-11  Karl Berry  <karl@gnu.org>
51423
51424         * doc/gnulib.texi (Quoting): new node.
51425         (Initial import): more info, from Patrice.
51426
51427 2005-07-11  Bruno Haible  <bruno@clisp.org>
51428
51429         * gnulib-tool (func_usage): Document option --avoid.
51430         (Command line options): Handle --avoid.
51431         (func_acceptable): New function.
51432         (func_modules_transitive_closure): Use it.
51433
51434 2005-07-11  Bruno Haible  <bruno@clisp.org>
51435
51436         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
51437         Reported by Jim Meyering.
51438
51439 2005-07-10  Bruno Haible  <bruno@clisp.org>
51440
51441         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
51442         Needed when size_t is smaller than 'unsigned int'.
51443         Reported by Paul Eggert.
51444
51445 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
51446
51447         * modules/argp (Depends-on): Add unlocked-io
51448
51449 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
51450
51451         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
51452         block of defines.
51453
51454 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
51455
51456         * config/srclist.txt: Comment out regcomp.c, since we have a porting
51457         fix now.
51458
51459 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
51460         and Paul Eggert  <eggert@cs.ucla.edu>
51461
51462         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
51463         in wint_t, not wchar_t.  Remove now-unnecessary cast.
51464
51465 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51466
51467         * modules/regex (Files): Add lib/regex_internal.c,
51468         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
51469         (Depends-on): Add extensions.
51470         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
51471
51472 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51473
51474         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
51475         pathconf.
51476         * m4/same.m4 (gl_SAME): Likewise.
51477         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
51478
51479         * m4/regex.m4: Adjust to new libc regex implementation.
51480         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
51481         all the .c and .h parts of (the new) regex.
51482         Quote the m4 stuff better.
51483         Check for RE_ICASE bug of old gnulib.
51484         Check for REG_STARTEND of recent libc.
51485         Rename local variables from jm_* to gl_*.
51486         Quote operand of "test -f".
51487         Say "recent enough" version of libc, not "version 2".
51488         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
51489         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
51490         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
51491         Remove check for btowc, isascii.
51492         Require AM_LANGINFO_CODESET.
51493
51494 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51495
51496         * lib/regex.c, regex.h: Sync from libc.
51497         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
51498         * lib/regexec.c:
51499         New files, synced from libc, except that regex_internal.h
51500         currently has a small porting fix.
51501
51502 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51503
51504         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
51505         regex_internal.c, regexec.c.
51506         Add regex_internal.h too, but as a comment, since the libc version
51507         is currently broken in gnulib mode.
51508
51509 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
51510
51511         Support programs like Emacs that use gnulib but not gettext.
51512         * MODULES.html.sh (Internationalization functions): Add gettext-h.
51513         * modules/gettext-h: New file.
51514         * modules/gettext (Files): Remove lib/gettext.h.
51515         (Depends-on): Add gettext-h.
51516         (Makefile.am): Remove lib_SOURCES.
51517         * modules/argmatch, modules/c-stack, modules/closeout:
51518         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
51519         * modules/execute, modules/file-type, modules/getaddrinfo:
51520         * modules/getopt, modules/human, modules/javacomp:
51521         * modules/javaexec, modules/mkdir-p, modules/obstack:
51522         * modules/openat, modules/pagealign_alloc, modules/pipe:
51523         * modules/quotearg, modules/regex, modules/rpmatch:
51524         * modules/unicodeio, modules/userspec, modules/version-etc:
51525         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
51526         * modules/xsetenv:
51527         Depend on gettext-h, not gettext.
51528
51529 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
51530
51531         * gnulib-tool (func_import): Add support for 'public domain' license.
51532         * modules/alloca, modules/atexit, modules/memmove:
51533         Now public domain, not GPL.
51534         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
51535         * modules/realloc, modules/strerror, modules/strtod:
51536         Now LGPL, not GPL.
51537
51538 2005-07-05  Bruno Haible  <bruno@clisp.org>
51539
51540         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
51541         autoconf CVS. Needed for mingw.
51542
51543 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51544
51545         Remove the dependency of the strftime module on the tzset module.
51546         * modules/strftime (Depends-on): Remove dependency on tzset.
51547
51548 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51549
51550         Remove the dependency of the strftime module on the tzset module.
51551         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
51552         gl_FUNC_TZSET_CLOBBER.
51553
51554 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51555
51556         Remove the dependency of the strftime module on the tzset module.
51557         * lib/strftime.c (my_strftime)
51558         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
51559         Copy the input structure, to work around some of the bug with
51560         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
51561         Solaris releases, you should also use the tzset module, but we won't
51562         require it as a dependency any more since we don't want LGPLed code
51563         to depend on GPLed code.
51564
51565 2005-07-02  Jim Meyering  <jim@meyering.net>
51566
51567         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
51568         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
51569         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
51570         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
51571
51572 2005-07-02  Jim Meyering  <jim@meyering.net>
51573
51574         * lib/backupfile.c (backup_args): Change a `0' to NULL.
51575
51576 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
51577
51578         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
51579         declares only 'struct timespec;' (!).
51580
51581 2005-07-01  Jim Meyering  <jim@meyering.net>
51582
51583         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
51584         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
51585         * lib/save-cwd.c, tempname.c:
51586         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
51587         and don't include <sys/file.h>).
51588
51589 2005-06-29  Jim Meyering  <jim@meyering.net>
51590
51591         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
51592         type name.  Use the variable name instead.
51593         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
51594         Likewise.
51595
51596 2005-06-28  Simon Josefsson  <jas@extundo.com>
51597
51598         * modules/check-version (Files): Add check-version.m4.
51599
51600 2005-06-28  Simon Josefsson  <jas@extundo.com>
51601
51602         * m4/check-version.m4: New file, suggested by Jim Meyering
51603         <jim@meyering.net>.
51604
51605 2005-06-28  Simon Josefsson  <jas@extundo.com>
51606
51607         * lib/check-version.h, lib/check-version.c: New files.
51608
51609 2005-06-28  Simon Josefsson  <jas@extundo.com>
51610
51611         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
51612         collision with global variable.  Better indentation.  Don't
51613         increment buffer pointer beyond buffer end.  Based on comments
51614         from Paul Eggert <eggert@cs.ucla.edu>.
51615
51616         * lib/base64.h: Indent.
51617
51618 2005-06-28  Simon Josefsson  <jas@extundo.com>
51619
51620         * doc/gnulib.texi (Library version handling): New section.
51621
51622 2005-06-28  Jim Meyering  <jim@meyering.net>
51623
51624         * check-module (find_included_lib_files): Hard-code another
51625         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
51626         but modules/fts-lgpl (correctly) does not list those files.
51627
51628         * modules/canonicalize (Files): Add lib/pathmax.h.
51629
51630 2005-06-25  Simon Josefsson  <jas@extundo.com>
51631
51632         * modules/check-version: New file.
51633
51634 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
51635
51636         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
51637         initializer of struct addrinfo, as an indication that we don't
51638         care how many members the structure has.
51639
51640 2005-06-24  Derek Price  <derek@ximbiot.com>
51641         and Bruno Haible  <bruno@clisp.org>
51642
51643         Remove stat module & update lstat.
51644         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
51645         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
51646         * m4/stat.m4: Remove this file.
51647
51648 2005-06-24  Derek Price  <derek@ximbiot.com>
51649         and Bruno Haible  <bruno@clisp.org>
51650
51651         Remove stat module & update lstat.
51652         * lib/stat.c: Remove this file...
51653         (slash_aware_lstat): ...moving this content and its support...
51654         * lib/lstat.c (rpl_lstat): ...into here.
51655         * lib/lstat.h: New file.
51656
51657 2005-06-24  Derek Price  <derek@ximbiot.com>
51658         and Bruno Haible  <bruno@clisp.org>
51659
51660         Remove stat module & update lstat.
51661         * config/srclist.txt (libc sources): Remove stat.
51662
51663 2005-06-24  Derek Price  <derek@ximbiot.com>
51664         and Bruno Haible  <bruno@clisp.org>
51665
51666         Remove stat module & update lstat.
51667         * MODULES.html.sh (stat): Remove.
51668         * MODULES.html: Regenerated.
51669         * modules/lstat (Description): Correct function name.
51670         (Files): Add "lstat.h".
51671         (Depends-on): Remove stat, add xalloc, stat-macros.
51672         * modules/stat: Remove this file.
51673         (Include): Add "lstat.h", remove <sys/stat.h>.
51674
51675 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
51676
51677         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
51678         (ranged_convert): Don't save conversion in a temporary struct.
51679         This causes a warning with GCC 4.0.0, and anyway in the typical
51680         case it's not worth the extra 100 bytes or so of code.
51681         (ranged_convert, __mktime_internal): When calling a function via a
51682         pointer P, use P () rather than (*P) (), as we now assume C89 or
51683         better.
51684
51685 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
51686
51687         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
51688         "who -r" failed to give output.  Problem reported by Tim Waugh.
51689
51690         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
51691         (xcalloc): Use it to avoid needless tests.
51692         Problem reported by Jim Meyering.
51693
51694 2005-06-20  Derek Price  <derek@ximbiot.com>
51695
51696         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
51697         unnecessary for Autoconfs > 2.59c.
51698
51699 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
51700
51701         * lib/argp.h (__option_is_short): Check upper limit of
51702         __key. Isprint() requires its argument to have the value
51703         of an unsigned char or EOF.
51704
51705 2005-06-16  Jim Meyering  <jim@meyering.net>
51706
51707         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
51708         when either N or S is zero.
51709
51710 2005-06-16  Derek Price  <derek@ximbiot.com>
51711
51712         * m4/bison.m4: Declare YACC & YFLAGS precious.
51713
51714 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
51715
51716         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
51717         multibyte string or pattern, fall back on unibyte matching.
51718         Problem reported by James Youngman.
51719
51720 2005-06-08  Bruno Haible  <bruno@clisp.org>
51721
51722         * modules/csharpcomp: New file.
51723         * MODULES.html.sh (C#): Add csharpcomp.
51724
51725 2005-06-08  Bruno Haible  <bruno@clisp.org>
51726
51727         * m4/csharpcomp.m4: New file, from GNU gettext.
51728
51729 2005-06-08  Bruno Haible  <bruno@clisp.org>
51730
51731         * lib/csharpcomp.h: New file, from GNU gettext.
51732         * lib/csharpcomp.c: New file, from GNU gettext.
51733         * lib/csharpcomp.sh.in: New file, from GNU gettext.
51734
51735 2005-06-08  Bruno Haible  <bruno@clisp.org>
51736
51737         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
51738         warning on mingw.
51739
51740 2005-06-07  Derek Price  <derek@ximbiot.com>
51741
51742         Sync from CVS.
51743         * lib/glob_.h: Indent nested #ifdef.
51744
51745 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51746
51747         Sync from coreutils.
51748         Use "file name" when talking about file names, instead of "filename"
51749         or "path", as per the GNU coding standards.
51750         * lib/mkdir-p.c: Renamed from makepath.c.
51751         (make_dir_parents): Renamed from make_path.  All callers changed.
51752         * lib/mkdir-p.h: Likewise.  All includers changed.
51753         * lib/filenamecat.c: Renamed from path-concat.c.
51754         (file_name_concat): Renamed from path_concat.  All callers changed.
51755         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
51756         * lib/filenamecat.h: Likewise.  All includers changed.
51757         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
51758         in comments or local variable names.
51759         * lib/basename.c: Likewise.
51760         * lib/canonicalize.c, canonicalize.h: Likewise.
51761         * lib/dirname.c, dirname.h: Likewise.
51762         * lib/euidaccess.c: Likewise.
51763         * lib/exclude.c: Likewise
51764         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
51765         * lib/fsusage.c, fsuage.h: Likewise.
51766         * lib/fts.c, fts_.h: Likewise.
51767         * lib/getcwd.c: Likewise.
51768         * lib/getloadavg.c: Likewise.
51769         * lib/mkstemp.c: Likewise.
51770         * lib/mountlist.c, mountlist.h: Likewise.
51771         * lib/openat.c, openat.h: Likewise.
51772         * lib/readlink-stub.c: Likewise.
51773         * lib/readutmp.c, readutmp.h: Likewise.
51774         * lib/rename.c: Likewise.
51775         * lib/rmdir.c: Likewise.
51776         * lib/same.c: Likewise.
51777         * lib/savedir.c: Likewise.
51778         * lib/stripslash.c: Likewise.
51779         * lib/tempname.c: Likewise.
51780         * lib/xreadlink.c: Likewise.
51781         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
51782         All uses changed.
51783         * lib/exclude.h: Likewise.
51784
51785         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
51786         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51787         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
51788         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51789         * lib/pathmax.h: Include <limits.h> unconditionally, since other
51790         files have been getting away with it for years (MORE/BSD 4.3
51791         is extinct now).
51792         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
51793         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
51794
51795         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
51796         Define to 256, not 255, as per modern POSIX.
51797
51798 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51799
51800         Sync from coreutils.
51801         Use "file name" when talking about file names, instead of "filename"
51802         or "path", as per the GNU coding standards.
51803         * MODULES.html.sh: mkdir-p renamed from makepath.
51804         filenamecat renamed from path-concat.
51805         * modules/filenamecat: Renamed from modules/path-concat.
51806         (Files): filenamecat.h and filenamecat.c renamed from
51807         path-concat.h and path-concat.c.
51808         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
51809         (Include): filenamecat.h, not path-concat.h.
51810         * modules/mkdir-p: Renamed from modules/makepath.
51811         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
51812         makepath.c.
51813         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
51814         (Include): mkdir-p.h, not makepath.h.
51815
51816 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
51817
51818         Sync from coreutils.
51819         * m4/mkdir-p.m4: Renamed from makepath.m4.
51820         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
51821         Rename files from makepath.c to mkdir-p.c, and from
51822         makepath.h to mkdir-p.h.
51823         * m4/filenamecat.m4: Renamed from path-concat.m4.
51824         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
51825         Rename files from path-concat.c to filenamecat.c,
51826         and from path-concat.h to filenamecat.h.
51827         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
51828         "file name" in local variables or comments.
51829         * m4/rename.m4: Likewise.
51830
51831 2005-06-01  Bruno Haible  <bruno@clisp.org>
51832
51833         * modules/csharpexec: New file.
51834         * MODULES.html.sh (C#): New section.
51835
51836 2005-06-01  Bruno Haible  <bruno@clisp.org>
51837
51838         * m4/csharp.m4: New file, from GNU gettext.
51839         * m4/csharpexec.m4: New file, from GNU gettext.
51840
51841 2005-06-01  Bruno Haible  <bruno@clisp.org>
51842
51843         * lib/csharpexec.h: New file, from GNU gettext.
51844         * lib/csharpexec.c: New file, from GNU gettext.
51845         * lib/csharpexec.sh.in: New file, from GNU gettext.
51846
51847 2005-05-31  Derek Price  <derek@ximbiot.com>
51848             Paul Eggert  <eggert@cs.ucla.edu>
51849
51850         Sync from cvs.
51851         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
51852
51853 2005-05-31  Derek Price  <derek@ximbiot.com>
51854             Paul Eggert  <eggert@cs.ucla.edu>
51855
51856         Sync from cvs.
51857         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
51858
51859 2005-05-29  Derek Price  <derek@ximbiot.com>
51860
51861         * config/srclist.txt (glob_.h, glob.c): Add these files.
51862
51863 2005-05-29  Derek Price  <derek@ximbiot.com>
51864
51865         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
51866         * modules/glob: New file.
51867         * modules/getlogin_r: Add link to POSIX spec in description.
51868
51869 2005-05-29  Derek Price  <derek@ximbiot.com>
51870             Paul Eggert  <eggert@cs.ucla.edu>
51871
51872         * m4/glob.m4: New file.
51873
51874 2005-05-29  Derek Price  <derek@ximbiot.com>
51875             Paul Eggert  <eggert@cs.ucla.edu>
51876
51877         * lib/glob_.h, lib/glob.c: New files.
51878
51879 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51880
51881         * modules/fts (Files): Remove m4/inttypes-pri.m4.
51882         * modules/fts-lgpl (Depends-on): Remove gettext.
51883
51884 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51885
51886         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
51887         and don't require gt_INTTYPES_PRI.
51888
51889 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
51890
51891         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
51892
51893         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
51894         the configuration hassle isn't worth it.
51895         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
51896         (LONGEST_MODIFIER, PRIuMAX): Remove.
51897
51898 2005-05-27  Bruno Haible  <bruno@clisp.org>
51899
51900         * lib/getlogin_r.h: Remove second include of <stddef.h>.
51901
51902 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
51903
51904         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
51905         _POSIX_PTHREAD_SEMANTICS for Solaris.
51906
51907 2005-05-25  Derek Price  <derek@ximbiot.com>
51908
51909         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
51910
51911 2005-05-25  Derek Price  <derek@ximbiot.com>
51912             Paul Eggert  <eggert@cs.ucla.edu>
51913
51914         * modules/getlogin_r, m4/getlogin_r.m4: New files.
51915         * lib/getlogin_r.c, getlogin_r.h: New files.
51916
51917 2005-05-25  Bruno Haible  <bruno@clisp.org>
51918             Derek Price  <derek@ximbiot.com>
51919
51920         * lib/getlogin_r.h: Simplify API documentation.
51921
51922 2005-05-23  Derek Price  <derek@ximbiot.com>
51923
51924         * modules/minmax (Files): Add m4/minmax.m4.
51925         (configure.ac): Add gl_MINMAX.
51926
51927 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
51928
51929         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
51930         so that unistd-safer.h (GPL'ed code) need not be included.
51931
51932 2005-05-22  Bruno Haible  <bruno@clisp.org>
51933
51934         * m4/minmax.m4: New file.
51935         Based on a patch by Derek Price <derek@ximbiot.com>.
51936
51937 2005-05-22  Bruno Haible  <bruno@clisp.org>
51938
51939         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
51940         (INT64_MIN): Fix definition.
51941         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
51942
51943         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
51944         NEED_SIGNED_INT_TYPES.
51945
51946         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
51947         HAVE_SYSTEM_INTTYPES.
51948
51949 2005-05-22  Bruno Haible  <bruno@clisp.org>
51950
51951         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
51952         Also include <sys/param.h> if it defines MIN, MAX.
51953         Based on a patch by Derek Price <derek@ximbiot.com>.
51954
51955 2005-05-21  Jim Meyering  <jim@meyering.net>
51956
51957         * modules/fts (Files): Add m4/inttypes-pri.m4.
51958         (Depends-on): Add lstat and remove gettext.  Alphabetize.
51959
51960 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51961
51962         New fts module.
51963         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
51964         (setup_dir, free_dir): New functions.
51965         (enter_dir, leave_dir): Define trivial
51966         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
51967         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
51968         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
51969         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
51970         Move to fts-cycle.c.
51971         (fts_open): Use setup_dir.
51972         (fts_close): Use free_dir.
51973         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
51974         This adds a label and some gotos, but the alternatives were messier.
51975         Check for memory allocation failure when entering a dir.
51976         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
51977         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
51978         (FTS): New member fts_cycle, that is a union that contains the
51979         old active_dir_ht and cycle_state.  All uses changed to mention
51980         fts_cycle.ht and fts_cycle.state.
51981         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
51982         fts.c, with the following changes:
51983         (setup_dir, free_dir): New functions.
51984         (enter_dir): Now returns bool.  Return true if successful, false
51985         if memory exhausted.  All callers changed.
51986         Do not bother partly cleaning up on
51987         memory allocation failure; that is free_dir's job.
51988         However, free ad if hash_insert fails, to avoid memory leak.
51989         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
51990         fts->fts_options to see which union member to use.
51991
51992 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51993
51994         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
51995         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
51996
51997 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
51998
51999         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
52000
52001 2005-05-20  Jim Meyering  <jim@meyering.net>
52002
52003         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
52004         Now a macro, to pacify GCC.
52005
52006 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
52007
52008         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
52009         of -1.
52010
52011 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
52012
52013         * lib/chown.c (rpl_chown): Return -1 on failure.
52014
52015 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
52016
52017         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
52018         Don't check for stddef.h.
52019         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
52020         don't use its results.
52021         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
52022         since we include them unconditionally.  Don't require
52023         AM_STDBOOL_H, since stdbool is a prerequisite.
52024         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
52025         since we assume C89 or better.
52026         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
52027         as we don't use their results.
52028         Don't check for fchdir, memmove, memset, strrchr, as we use
52029         them unconditionally.
52030         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
52031         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
52032
52033 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
52034
52035         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
52036         Include <stddef.h> unconditionally, since we assume C89 now.
52037         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
52038         * lib/fts.c: Include fts_.h first, to check interface.
52039         Do not include intprops.h; no longer needed.
52040         Include cycle-check.h and hash.h, since fts_.h no longer does.
52041         Remove unnecessary casts of closedir to void.
52042         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
52043         decide whether to decrement nlinks.
52044         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
52045         (FTS): Use struct hash_table * instead of Hash_table, so that
52046         we no longer need to include hash.h here.
52047
52048 2005-05-18  Jim Meyering  <jim@meyering.net>
52049
52050         * modules/dirfd (License): Change to LGPL.  Most of the code
52051         is already in the public domain.
52052
52053 2005-05-18  Jim Meyering  <jim@meyering.net>
52054
52055         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
52056         Reported by Yoann Vandoorselaere.
52057
52058 2005-05-17  Jim Meyering  <jim@meyering.net>
52059
52060         * m4/fts.m4: New file, from coreutils.
52061
52062 2005-05-17  Jim Meyering  <jim@meyering.net>
52063
52064         * lib/fts.c, lib/fts_.h: New files, from coreutils.
52065
52066 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52067
52068         Sync from coreutils.
52069         * m4/unlinkdir.m4: New file.
52070
52071 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52072
52073         Sync from coreutils.
52074         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
52075         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
52076         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
52077         White space changes only.
52078         * lib/makepath.c (make_path): Port to hosts where leading "//" is
52079         special.
52080         * lib/yesno.c: Include getline.h, not ctype.h.
52081         (yesno): Don't remove leading white space; POSIX doesn't allow it.
52082         Use getline to remove arbitrary restriction on response length.
52083
52084 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52085
52086         * config/srclist-update: Spell out "Street" in FSF postal
52087         mail address; this is the style the FSF seems to prefer.
52088
52089         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
52090         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
52091         this updates FSF postal mail address.
52092
52093         Sync from coreutils.
52094         * modules/unlinkdir: New file.
52095         * modules/yesno (Depends-on): Add getline.
52096         * MODULES.html.sh (File system functions): Add unlinkdir.
52097
52098 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52099
52100         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
52101         lib/strsep.h:
52102         Change the initial comment to refer to GPL, not LGPL.
52103         gnulib-tool will change it to LGPL as needed.
52104
52105         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
52106         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
52107         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
52108         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
52109         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
52110         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
52111         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
52112         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
52113         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
52114         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
52115         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
52116         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
52117         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
52118         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
52119         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
52120         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
52121         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
52122         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
52123         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
52124         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
52125         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
52126         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
52127         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
52128         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
52129         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
52130         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
52131         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
52132         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
52133         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
52134         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
52135         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
52136         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
52137         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
52138         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
52139         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
52140         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
52141         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
52142         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
52143         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
52144         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
52145         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
52146         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
52147         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
52148         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
52149         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
52150         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
52151         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
52152         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
52153         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
52154         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
52155         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
52156         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
52157         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
52158         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
52159         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
52160         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
52161         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
52162         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
52163         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
52164         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
52165         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
52166         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
52167         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
52168         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
52169         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
52170         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
52171         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
52172         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
52173         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
52174         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
52175         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
52176         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
52177         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
52178         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
52179         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
52180         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
52181         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
52182         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
52183         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
52184         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
52185         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
52186         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
52187         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
52188         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
52189         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
52190         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
52191         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
52192         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
52193         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
52194         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
52195         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
52196         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
52197         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
52198         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
52199         lib/yesno.c, lib/yesno.h:
52200         Update FSF postal mail address.
52201
52202 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52203
52204         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
52205         tests/test-memmem.c, tests/test-stpncpy.c:
52206         Update FSF postal mail address.
52207
52208 2005-05-13  Bruno Haible  <bruno@clisp.org>
52209
52210         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
52211         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
52212         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
52213         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
52214         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
52215         Add support for 64-bit integers in the MSVC compiler.
52216
52217 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52218
52219         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
52220
52221 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
52222
52223         * gnulib-tool (func_import): Sort and uniquify recommended includes.
52224
52225 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
52226
52227         * doc/getdate.texi (General date syntax): Don't say that date
52228         date --iso-8601=ns generates acceptable dates; it doesn't yet.
52229         Problem reported by Nic Ferrier.
52230
52231 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52232
52233         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
52234         specified in ai_socktype. Fix invalid ai_protocol
52235         check. ai_protocol is usually set to 0 or depending on
52236         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
52237         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
52238         ai_socktype / ai_protocol in the returned addrinfo structure.
52239
52240 2005-05-10  Simon Josefsson  <jas@extundo.com>
52241
52242         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
52243         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
52244
52245 2005-05-10  Karl Berry  <karl@gnu.org>
52246
52247         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
52248         (from http://www.gnu.org/licenses).
52249         * doc/COPYING.LIB: also rename to COPYING.LESSER.
52250         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
52251         fdl.texi suffices.
52252
52253 2005-05-10  Karl Berry  <karl@gnu.org>
52254
52255         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
52256         (COPYING.DOC): remove.
52257
52258         * config/srclist-update: new FSF address.
52259
52260 2005-05-10  Derek Price  <derek@ximbiot.com>
52261
52262         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
52263         possible.
52264
52265 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52266             Bruno Haible  <bruno@clisp.org>
52267
52268         * modules/inet_ntop: New file.
52269         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
52270         inet_ntop.
52271
52272 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52273             Bruno Haible  <bruno@clisp.org>
52274
52275         * m4/inet_ntop.m4: New file.
52276
52277 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52278             Bruno Haible  <bruno@clisp.org>
52279
52280         * lib/inet_ntop.h: New file.
52281         * lib/inet_ntop.c: New file, from glibc with modifications.
52282
52283 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
52284
52285         * modules/time_r (License): Change to LGPL.
52286         * modules/extensions (License): Change to LGPL.  Actually,
52287         the license is more permissive than that, but currently gnulib-tool
52288         doesn't know how to handle more-permissive licenses.
52289
52290         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
52291         Problem reported by Dave Love.
52292
52293 2005-05-08  Jim Meyering  <jim@meyering.net>
52294
52295         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
52296         blank.
52297
52298 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
52299
52300         * modules/argmatch (Depends-on): Add stdbool.
52301         * modules/backupfile (Depends-on): Likewise.
52302         * modules/chdir-long (Depends-on): Likewise.
52303         * modules/closeout (Depends-on): Likewise.
52304         * modules/cycle-check (Depends-on): Likewise.
52305         * modules/dirname (Depends-on): Likewise.
52306         * modules/fnmatch (Depends-on): Likewise.
52307         * modules/fsusage (Depends-on): Likewise.
52308         * modules/fwriteerror (Depends-on): Likewise.
52309         * modules/getcwd (Depends-on): Likewise.
52310         * modules/getloadavg (Depends-on): Likewise.
52311         * modules/hard-locale (Depends-on): Likewise.
52312         * modules/makepath (Depends-on): Likewise.
52313         * modules/mountlist (Depends-on): Likewise.
52314         * modules/nanosleep (Depends-on): Likewise.
52315         * modules/posixtm (Depends-on): Likewise.
52316         * modules/quotearg (Depends-on): Likewise.
52317         * modules/readtokens (Depends-on): Likewise.
52318         * modules/readtokens0 (Depends-on): Likewise.
52319         * modules/readutmp (Depends-on): Likewise.
52320         * modules/save-cwd (Depends-on): Likewise.
52321         * modules/strftime (Depends-on): Likewise.
52322         * modules/userspec (Depends-on): Likewise.
52323         * modules/utimecmp (Depends-on): Likewise.
52324         * modules/xgetcwd (Depends-on): Likewise.
52325         * modules/xnanosleep (Depends-on): Likewise.
52326         * modules/xstrtod (Depends-on): Likewise.
52327         * modules/yesno (Depends-on): Likewise.
52328
52329 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
52330
52331         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
52332         needless checks.
52333
52334 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52335
52336         Merge from coreutils.  Among other things,
52337         add bulletproofing for cases where stdin, stdout, or stderr are closed.
52338         * lib/fd-safer.c: New file.
52339         * lib/fcntl-safer.h, open-safer.c: Remove.
52340         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
52341         * lib/dup-safer.c: Include unistd-safer.h first.
52342         Don't include errno.h.
52343         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
52344         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
52345         * lib/file-type.c: Rely on file-type.h change.
52346         * lib/getloadavg.c: Include unistd-safer.h.
52347         (getloadavg): Use safer open.
52348         * lib/getusershell.c: Include "stdio-safer.h".
52349         (getusershell): Use safer fopen.
52350         * lib/long-options.c (long_options): Use NULL rather than 0.
52351         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
52352         'free'.
52353         * lib/modechange.c: Likewise.
52354         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
52355         (MODE_DONE): New constant.
52356         (struct mode_change): Remove 'next' member.
52357         (make_node_op_equals): New function; like the old one of the
52358         same name, except it allocates an array.
52359         (mode_compile, mode_create_from_ref): Use it.
52360         (mode_compile): Allocate result as an array, not a linked list.
52361         Parse octal string ourself, so that we catch mistakes like "+0".
52362         (mode_adjust): Arg is an array, not a linked list.
52363         * lib/modechange.c: Include stat-macros.h, xalloc.h.
52364         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
52365         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
52366         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
52367         Remove.  This is now stat-macros.h's job.
52368         (talloc): Remove.  All callers replaced by xalloc, so that
52369         our invokers don't have to worry about reporting memory failures.
52370         (make_node_op_equals): Remove.
52371         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
52372         New constants.
52373         (struct mode_change): Moved here from modechange.h.
52374         (mode_append_entry): Remove.
52375         (mode_compile): Remove MASKED_OPS arg, since it encouraged
52376         apps to have incorrect behavior.  Use simpler algorithm for head
52377         and tail.  Don't futz with umask; that's now the job of mode_adjust.
52378         Detect more invalid usages rather than having somewhat-random behavior.
52379         Don't insert an "a=" action, as that leads to incorrect behavior.
52380         (mode_compile, mode_create_from_ref): Return NULL on error instead
52381         of an enum, since now there's only one way to have an error.  All
52382         callers changed.
52383         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
52384         at the correct time.  Simplify calculation of "+u" and its ilk.
52385         Don't mishandle "+X".
52386         (mode_free): Remove "register" and localize decls.
52387         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
52388         (struct mode_change): Move to modechange.c; callers don't
52389         need to see this stuff.
52390         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
52391         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
52392         (mode_change, mode_adjust): Reflect the new signatures noted above.
52393         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
52394         that might redefine system include files.
52395         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
52396         (my_usleep): Use NULL rather than (void *) 0.
52397         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
52398         Use siginterrupt to specify that system calls should be interrupted.
52399         (rpl_nanosleep): Move initialization of suspended closer to call of
52400         my_usleep.
52401         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
52402         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
52403         (desirable_utmp_entry): New function.
52404         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
52405         using x2nrealloc, to simplify logic.
52406         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
52407         size calculation.  Do not assume utmp file is a regular file.
52408         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
52409         (READ_UTMP_CHECK_PIDS): New constant.
52410         * lib/save-cwd.c: Include unistd-safer.h.
52411         (save_cwd): Use fd_safer.
52412         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
52413         [!_LIBC] Include "stat-macros.h" instead.
52414         * lib/unistd-safer.h (fd_safer): New decl.
52415
52416 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52417
52418         * modules/getloadavg (Depends-on): Add unistd-safer.
52419         * modules/getusershell (Depends-on): Add stdio-safer.
52420         * modules/lstat (Depends-on): Remove xalloc.
52421         * modules/mkstemp (Depends-on): Add stat-macros.
52422         * modules/modechange (Depends-on): Remove xstrtol.
52423         Add stat-macros, xalloc.
52424         * modules/save-cwd (Depends-on): Add unistd-safer.
52425         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
52426         * modules/unistd-safer (Files): Add lib/fd-safer.c
52427         (Makefile.am): Remove lib_SOURCES.
52428
52429         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
52430         Remove fcntl-safer; unistd-safer supersedes it.
52431
52432 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52433
52434         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
52435         AC_HEADER_STAT.
52436         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
52437         (gl_PREREQ_CHOWN): Remove.
52438         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
52439         it.  Don't require AC_HEADER_STAT.
52440         (gl_PREREQ_LSTAT): Remove.
52441         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
52442         Don't require AC_HEADER_STAT.
52443         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
52444         (gl_PREREQ_RMDIR): Remove.
52445         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
52446         mention stat-macros.h or AC_HEADER_STAT, since we'll make
52447         the stat-macros module a prerequisite.
52448         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
52449         * m4/filemode.m4 (gl_FILEMODE): Likewise.
52450         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
52451         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
52452         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
52453         variable names.
52454         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
52455         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
52456         variable prefixes.
52457         * m4/fcntl-safer.m4: Remove.
52458         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
52459         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
52460         Invoke gl_PREREQ_FD_SAFER.
52461         (gl_PREREQ_FD_SAFER): New macro.
52462         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
52463         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
52464         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
52465         Remove duplicate call to AC_LIBOBJ(readutmp).
52466         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
52467
52468         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
52469         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
52470
52471 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52472
52473         * MODULES.html.sh (Misc): Add byteswap.
52474
52475 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52476
52477         * modules/getcwd (Depends-on): Add extensions.
52478         * modules/openat (Depends-on): Likewise.
52479
52480 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52481
52482         * modules/byteswap: New file.
52483
52484 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52485
52486         * m4/byteswap.m4: New file.
52487
52488 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52489
52490         * lib/byteswap_.h: New file.
52491
52492 2005-04-25  Karl Berry  <karl@gnu.org>
52493
52494         * m4/gettext.m4: Update from GNU gettext 0.14.4.
52495
52496 2005-04-25  Albert Chin  <china@thewrittenword.com>
52497
52498         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
52499         Toolkit C bug.
52500
52501 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
52502
52503         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
52504         (func_ln_if_changed) Remove forcibly for no error message
52505         in case file does not exist.
52506
52507 2005-04-19  Simon Josefsson  <jas@extundo.com>
52508
52509         * gnulib-tool (Options): Make --symlink mean --symbolic.
52510
52511 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
52512
52513         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
52514
52515 2005-04-16  Simon Josefsson  <jas@extundo.com>
52516
52517         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
52518
52519 2005-04-15  Simon Josefsson  <jas@extundo.com>
52520
52521         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
52522
52523 2005-04-15  Simon Josefsson  <jas@extundo.com>
52524
52525         * gnulib-tool: Rename --symlink to --symbolic.
52526
52527 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
52528
52529         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
52530         symbolic links to files instead of copying/moving.  Add --aux-dir,
52531         specifying directory relative --dir where auxiliary build tools
52532         are placed.
52533
52534 2005-04-14  Bruno Haible  <bruno@clisp.org>
52535
52536         * modules/allocsa (License): Change to LGPL.
52537         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
52538
52539 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
52540
52541         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
52542         that "UTC +1 second" continues to work.  Problem reported
52543         by Dmitry V. Levin.
52544         (relunit_snumber): New rule.
52545         (relunit): Use it.
52546
52547 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
52548
52549         * lib/getdate.y (universal_time_zone_table): New constant.
52550         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
52551         universal_time_zone_table.
52552         (lookup_zone): Prefer universal_time_zone_table to
52553         local_time_zone_table, so that "GMT" time stamps are allowed in
52554         London during the summer.  Problem reported by Ian Abbott.
52555
52556 2005-04-12  Jim Meyering  <jim@meyering.net>
52557
52558         * lib/human.c (humblock): Set *options even when returning due to
52559         xstrtoumax conversion failure.  Thanks to a used-uninitialized
52560         warning from gcc-4.
52561
52562 2005-04-09  Jim Meyering  <jim@meyering.net>
52563
52564         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
52565         -Wuninitialized: initialize tm0.tm_year.
52566
52567 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
52568
52569         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
52570         count, since there's no maximum.  All uses changed.
52571         Add member dsts_seen.
52572         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
52573         not being INT_MAX.
52574         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
52575         Use pc_rels_seen to decide whther a date is absolute.
52576
52577         * lib/getdate.y (number): Don't overwrite year.
52578         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
52579         check.
52580
52581 2005-04-02  Simon Josefsson  <jas@extundo.com>
52582
52583         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
52584         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
52585
52586 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
52587
52588         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
52589         where no absolute path name can be longer than PATH_MAX.
52590
52591 2005-03-27  Jim Meyering  <jim@meyering.net>
52592
52593         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
52594
52595 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
52596
52597         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
52598         "one's complement" -> "ones' complement" in comment, as per Knuth.
52599         "value of type" -> "type or expression" in comment.
52600         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
52601
52602 2005-03-26  Jim Meyering  <jim@meyering.net>
52603
52604         Comment nits.
52605         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
52606         Correct typos: s/or/of/.
52607
52608 2005-03-26  Jim Meyering  <jim@meyering.net>
52609
52610         * modules/check-include-files: Move to ../ and rename to...
52611         * check-module: ...this.
52612
52613 2005-03-25  Jim Meyering  <jim@meyering.net>
52614
52615         * modules/xvasprintf (Files): Add xalloc.h.
52616
52617 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
52618
52619         * modules/gettext (Files): config/config.rpath ->
52620         build-aux/config.rpath
52621         * modules/iconv (Files): Likewise.
52622         Problem reported by Oskar Liljeblad.
52623
52624 2005-03-23  Jim Meyering  <jim@meyering.net>
52625
52626         * modules/check-include-files: New script to check for
52627         missing dependencies, multiple includes, etc.
52628
52629         * modules/c-strtold (Depends-on): Add xalloc.
52630         * modules/c-strtod (Depends-on): Add xalloc.
52631         * modules/hash (Depends-on): Add xalloc.
52632         (Files): Remove lib/xalloc.h.
52633
52634         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
52635         * modules/userspec (Files): Add lib/inttostr.h.
52636
52637 2005-03-23  Jim Meyering  <jim@meyering.net>
52638
52639         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
52640
52641 2005-03-22  Jim Meyering  <jim@meyering.net>
52642
52643         * modules/stat-macros: New module.
52644         * modules/canonicalize, modules/euidaccess, modules/file-type,
52645         * modules/filemode, modules/lchown, modules/makepath,
52646         * modules/rmdir, modules/stat: Depend on new stat-macros module
52647         rather than listing lib/stat-macros.h manually.
52648         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
52649
52650 2005-03-22  Jim Meyering  <jim@meyering.net>
52651
52652         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
52653
52654 2005-03-22  Bruno Haible  <bruno@clisp.org>
52655
52656         * config/srclist.txt: Replace target directory 'config' with
52657         'build-aux'.
52658         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
52659         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
52660         ../build-aux/.
52661
52662 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
52663
52664         * modules/chdir-long (Depends-on): Add mempcpy.
52665
52666         * modules/acl, modules/backupfile, modules/c-strtod,
52667         modules/c-strtold, modules/canon-host, modules/canonicalize,
52668         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
52669         modules/exclude, modules/exitfail, modules/file-type,
52670         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
52671         modules/getdate, modules/getline, modules/getpagesize,
52672         modules/getpass, modules/getugroups, modules/group-member,
52673         modules/hard-locale, modules/hash, modules/human, modules/idcache,
52674         modules/inttostr, modules/long-options, modules/makepath,
52675         modules/md5, modules/memcasecmp, modules/memcoll,
52676         modules/modechange, modules/mountlist, modules/path-concat,
52677         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
52678         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
52679         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
52680         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
52681         modules/strftime, modules/strndup, modules/strverscmp,
52682         modules/timespec, modules/unlocked-io, modules/userspec,
52683         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
52684         modules/yesno:
52685         Remove lib_SOURCES line from Makefile.am section, as this is now
52686         done automatically by the corresponding Autoconf macro.
52687
52688 2005-03-21  Jim Meyering  <jim@meyering.net>
52689
52690         Changes imported from coreutils.
52691
52692         * lib/cycle-check.c: Don't include xalloc.h.
52693
52694         * lib/path-concat.c: Don't include assert.h.
52695         (path_concat): Remove assertion that would have triggered
52696         for ABASE starting with more than one slash.
52697         Reported by Andreas Schwab.
52698
52699         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
52700         properly when ABASE is an absolute file name.
52701         Correct the description of this function.
52702         Include <assert.h>.
52703         Add an assertion and a test driver.
52704         This fixes a bug introduced on 2004-07-02.
52705         Andreas Schwab reported the resulting failure of cp --parents:
52706         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
52707
52708 2005-03-21  Jim Meyering  <jim@meyering.net>
52709
52710         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
52711         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
52712
52713 2005-03-21  Jim Meyering  <jim@meyering.net>
52714         and  Paul Eggert  <eggert@cs.ucla.edu>
52715
52716         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
52717         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
52718         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
52719         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
52720         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
52721         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
52722         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
52723         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
52724         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
52725         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
52726         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
52727         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
52728         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
52729         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
52730         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
52731         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
52732         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
52733         for these modules.
52734
52735 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
52736
52737         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
52738         (which shouldn't happen), generate nothing instead of returning 0
52739         immediately, so that nstrftime (NULL, ...) doesn't return 0.
52740
52741 2005-03-16  Bruno Haible  <bruno@clisp.org>
52742
52743         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
52744         HAVE_LONGLONG_64BIT.
52745
52746 2005-03-16  Bruno Haible  <bruno@clisp.org>
52747
52748         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
52749         HAVE_LONGLONG_64BIT.
52750
52751 2005-03-16  Bruno Haible  <bruno@clisp.org>
52752
52753         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
52754         HAVE_LONGLONG_64BIT.
52755
52756 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
52757
52758         * lib/strftime.c (my_strftime): Prepend space to format so that we can
52759         reliably distinguish strftime failure from empty output on POSIX
52760         hosts.
52761
52762 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
52763
52764         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
52765         (iconv_string): Don't guess a size-zero buffer, as that might cause
52766         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
52767         result would be 'too large', where 'too large' is (heuristically)
52768         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
52769         overflow concerns.  This will prevent some unwanted malloc failures
52770         when the inputs are very large.
52771
52772 2005-03-15  Karl Berry  <karl@gnu.org>
52773
52774         * config/srclist.txt (config.rpath): from gettext.
52775         * config/config.rpath: update.
52776
52777 2005-03-15  Bruno Haible  <bruno@clisp.org>
52778
52779         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
52780         to 'negate'.
52781
52782         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
52783         variable.
52784
52785         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
52786         results.
52787
52788 2005-03-14  Simon Josefsson  <jas@extundo.com>
52789
52790         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
52791         <fx@gnu.org>.
52792
52793 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
52794
52795         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
52796         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
52797         intprops.h.
52798         * lib/strtol.c: Likewise.
52799
52800 2005-03-14  Jim Meyering  <jim@meyering.net>
52801
52802         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
52803         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
52804         to be nonzero so that we (and caller) can detect the difference
52805         between a valid zero-length expansion and an error return, even
52806         when the underlying strftime fails before writing anything into
52807         that location.
52808
52809 2005-03-14  Bruno Haible  <bruno@clisp.org>
52810
52811         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
52812         Update from GNU gettext 0.14.3.
52813
52814 2005-03-10  Jim Meyering  <jim@meyering.net>
52815
52816         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
52817
52818 2005-03-10  Jim Meyering  <jim@meyering.net>
52819
52820         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
52821         so that this module works on systems without fchdir.
52822
52823 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
52824
52825         Factor int-properties macros into a single file, except for
52826         glibc-related files.
52827         * lib/intprops.h: New file.
52828         * lib/getloadavg.c: Include it instead of limits.h.
52829         (INT_STRLEN_BOUND): Remove.
52830         * lib/human.c: Include intprops.h.
52831         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
52832         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
52833         302/1000.
52834         * lib/inttostr.h: Include intprops.h instead of limits.h.
52835         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
52836         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
52837         for consistency with intprops.h.
52838         (time_t_is_integer, twos_complement_arithmetic): Use them.
52839         * lib/sig2str.h: Include <signal.h>, intprops.h.
52840         (INT_STRLEN_BOUND): Remove.
52841         * lib/strftime.c (TYPE_SIGNED): Remove.
52842         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
52843         * lib/strtol.c: Adjust comments to match intprops.h.
52844         * lib/userspec.c: Include intprops.h.
52845         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
52846         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
52847         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
52848         instead of rolling our own expressions.
52849         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
52850
52851         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
52852         instead of int.
52853         (my_strftime): Do not mishandle years close to INT_MAX, by doing
52854         the right thing even if adding 1900 would overflow.  Similarly
52855         for tm_mon + 1 and tm_yday + 1.
52856         Make %Y always equivalent to %C%y, and similarly for %G and %g.
52857         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
52858         (DO_SIGNED_NUMBER): New macro.
52859         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
52860
52861 2005-03-07  Bruno Haible  <bruno@clisp.org>
52862
52863         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
52864
52865 2005-03-07  Bruno Haible  <bruno@clisp.org>
52866
52867         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
52868
52869 2005-03-04  Derek R. Price  <derek@ximbiot.com>
52870
52871         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
52872         (func_import): Only replace files via --import when they have actually
52873         changed.
52874
52875 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52876
52877         * m4/mmap-anon.m4: New file.
52878         * m4/pagealign_alloc.m4: New file.
52879
52880 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52881             Bruno Haible  <bruno@clisp.org>
52882
52883         * modules/pagealign_alloc: New file.
52884         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
52885
52886 2005-03-03  Derek R. Price  <derek@ximbiot.com>
52887             Bruno Haible  <bruno@clisp.org>
52888
52889         * lib/pagealign_alloc.h: New file.
52890         * lib/pagealign_alloc.c: New file.
52891
52892 2005-03-03  Bruno Haible  <bruno@clisp.org>
52893
52894         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
52895         Use an all-permissive copyright notice, recommended by RMS.
52896
52897 2005-03-02  Bruno Haible  <bruno@clisp.org>
52898
52899         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
52900         of AIX, the replacement has to be done only after <string.h> is
52901         included, therefore not in config.h. stpncpy.h does the replacement,
52902         and stpncpy.c uses it.
52903
52904 2005-03-02  Bruno Haible  <bruno@clisp.org>
52905
52906         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
52907         stpncpy.c uses it.
52908
52909 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52910
52911         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
52912         The workaround isn't strictly needed for POSIX conformance, and
52913         it's too much of a pain to configure and maintain.  We'll ask
52914         people to fix their kernels instead.
52915         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
52916         (NANOSLEEP_BUG_WORKAROUND): Remove.
52917         (xnanosleep): Remove the workaround.
52918
52919 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52920
52921         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
52922         Reported by Derek Price.
52923         (Include): Add "timespec.h".
52924
52925         * modules/xnanosleep (Depends-on): Remove gethrxtime.
52926
52927 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
52928
52929         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
52930         to detect nanosleep bug.
52931
52932 2005-03-01  Bruno Haible  <bruno@clisp.org>
52933
52934         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
52935
52936 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
52937
52938         * modules/gethrxtime: New file.
52939         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
52940         (Depends-on): Add gethrxtime.
52941         (configure.ac): Add gl_XNANOSLEEP.
52942         (Makefile.am): Remove lib_SOURCES line.
52943
52944 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
52945
52946         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
52947         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
52948
52949 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
52950
52951         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
52952         * lib/timespec.h (gettime): Return void, since it always
52953         succeeds now.  All uses changed.
52954         * lib/gettime.c (gettime) Likewise.
52955         [HAVE_NANOTIME]: Prefer nanotime.
52956         Assume gettimeofday succeeds, as POSIX requires.
52957         Assime time () succeeds, since other code already does.
52958         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
52959         (timespec_subtract): Remove.
52960         (NANOSLEEP_BUG_WORKAROUND): New constant.
52961         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
52962         things considerably.  Use it only on GNU/Linux hosts, since the
52963         workaround shouldn't be needed elsewhere.
52964
52965 2005-02-24  Bruno Haible  <bruno@clisp.org>
52966
52967         * modules/gettext (Files): Add m4/glibc2.m4.
52968
52969 2005-02-24  Bruno Haible  <bruno@clisp.org>
52970
52971         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
52972         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
52973         * m4/progtest.m4:
52974         Update from GNU gettext 0.14.2.
52975         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
52976
52977 2005-02-24  Bruno Haible  <bruno@clisp.org>
52978
52979         * lib/localcharset.c: Update from GNU gettext 0.14.2.
52980         * lib/config.charset: Update from GNU gettext 0.14.2.
52981
52982 2005-02-24  Bruno Haible  <bruno@clisp.org>
52983
52984         * lib/gettext.h: Update from GNU gettext 0.14.2.
52985
52986 2005-02-23  Simon Josefsson  <jas@extundo.com>
52987
52988         * m4/iconvme.m4: New file.
52989
52990 2005-02-23  Jim Meyering  <jim@meyering.net>
52991
52992         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
52993         change.
52994         Thanks to Bruno Haible for catching it.
52995
52996 2005-02-22  Simon Josefsson  <jas@extundo.com>
52997
52998         * modules/iconvme: New file.
52999
53000         * MODULES.html.sh: Add iconvme.
53001
53002 2005-02-22  Simon Josefsson  <jas@extundo.com>
53003
53004         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
53005
53006 2005-02-22  Simon Josefsson  <jas@extundo.com>
53007
53008         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
53009
53010 2005-02-22  Jim Meyering  <jim@meyering.net>
53011
53012         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
53013         s/ifndef/ifdef/.
53014
53015 2005-02-20  Neil Conway  <neilc@samurai.com>
53016
53017         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
53018         returned by OSX/Darwin if the specified buffer is not large
53019         enough for the hostname.
53020
53021 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53022
53023         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
53024         pass it to _help, otherwise the latter coredumps trying to
53025         dereference state.root_argp.
53026
53027 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53028
53029         * modules/chdir-long (Depends-on): Add memrchr.
53030         * modules/memrchr (Files): Add lib/memrchr.h.
53031         (Include): "memrchr.h".
53032
53033 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53034
53035         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
53036
53037 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53038
53039         * lib/memrchr.h: New file.
53040         * lib/chdir-long.c: Include it.
53041         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
53042         Don't bother including stddef.h.
53043
53044 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
53045
53046         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
53047         inclusion.
53048         Include <sys/types.h>, for dev_t.
53049         (ME_DUMMY, ME_REMOTE): Move from here....
53050         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
53051         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
53052         Dmitry V. Levin.
53053         Include mountlist.h first, to test the interface.
53054
53055 2005-01-29  Bruno Haible  <bruno@clisp.org>
53056
53057         * lib/progname.c (program_name): Initialize.
53058         Needed when linking statically on MacOS X.
53059
53060 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53061
53062         Sync from coreutils.
53063         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
53064         (Depends-on): Add c-strtod.
53065         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
53066
53067 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53068
53069         Sync from coreutils.
53070         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
53071
53072         Remove files that are specific to coreutils.
53073         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
53074
53075 2005-01-28  Bruno Haible  <bruno@clisp.org>
53076
53077         * modules/javacomp: New file.
53078         * MODULES.html.sh (Java): Add javacomp.
53079
53080 2005-01-28  Bruno Haible  <bruno@clisp.org>
53081
53082         * m4/javacomp.m4: New file, from GNU gettext.
53083
53084 2005-01-28  Bruno Haible  <bruno@clisp.org>
53085
53086         * lib/javacomp.sh.in: New file, from GNU gettext.
53087         * lib/javacomp.h: New file, from GNU gettext.
53088         * lib/javacomp.c: New file, from GNU gettext.
53089
53090 2005-01-26  Simon Josefsson  <jas@extundo.com>
53091
53092         * lib/gai_strerror.c: Use GPL in header.
53093
53094 2005-01-26  Bruno Haible  <bruno@clisp.org>
53095
53096         * modules/javaexec: New file.
53097         * MODULES.html.sh (Java): Add javaexec.
53098
53099 2005-01-26  Bruno Haible  <bruno@clisp.org>
53100
53101         * m4/javaexec.m4: New file, from GNU gettext.
53102
53103 2005-01-26  Bruno Haible  <bruno@clisp.org>
53104
53105         * lib/javaexec.sh.in: New file, from GNU gettext.
53106         * lib/javaexec.h: New file, from GNU gettext.
53107         * lib/javaexec.c: New file, from GNU gettext.
53108
53109 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53110
53111         * modules/lchown (Depends-on): Remove lchown.h
53112
53113 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53114
53115         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
53116         must be defined if the header file was not found, in order
53117         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
53118
53119 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53120
53121         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
53122         initializers for struct pentry_state.
53123         (__argp_error): Check return value of __asprintf
53124         (__argp_failure): Translate error message
53125
53126         * lib/argp-parse.c: Removed braces around the expansion of N_()
53127
53128 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
53129
53130         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
53131         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
53132         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
53133         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
53134         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
53135         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
53136         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
53137         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
53138         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
53139         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
53140         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
53141         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
53142         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
53143         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
53144         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
53145         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
53146         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
53147         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
53148         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
53149         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
53150         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
53151         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
53152         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
53153         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
53154         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
53155         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
53156         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
53157         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
53158         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
53159         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
53160         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
53161         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
53162         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
53163         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
53164         xstrtol.m4, xstrtoumax.m4, yesno.m4:
53165         Use an all-permissive copyright notice, recommended by RMS.
53166
53167 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
53168
53169         * modules/chdir-long (Depends-on): Remove mempcpy.
53170
53171 2005-01-21  Jim Meyering  <jim@meyering.net>
53172
53173         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
53174         same value as for Solaris 9.
53175
53176         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
53177         component length.  This included changing the parameter to be
53178         of type `char *' rather than `char const *'.
53179         * lib/chdir-long.h (chdir_long): Update prototype.
53180
53181         * lib/openat.c (fdopendir, fstatat): New functions.
53182         * lib/openat.h: Include headers required for use of DIR and struct
53183         stat.
53184         [AT_SYMLINK_NOFOLLOW]: Define.
53185         (fdopendir, fstatat): Add prototypes.
53186
53187 2005-01-21  Bruno Haible  <bruno@clisp.org>
53188
53189         * modules/classpath: New file.
53190         * MODULES.html.sh (Java): Add classpath.
53191
53192 2005-01-21  Bruno Haible  <bruno@clisp.org>
53193
53194         * lib/classpath.h: New file, from GNU gettext.
53195         * lib/classpath.c: New file, from GNU gettext.
53196
53197 2005-01-20  Simon Josefsson  <jas@extundo.com>
53198
53199         * modules/version-etc-fsf: New file.
53200
53201 2005-01-20  Simon Josefsson  <jas@extundo.com>
53202
53203         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
53204         * lib/version-etc.c: Remove version_etc_copyright.
53205         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
53206         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
53207
53208 2005-01-20  Simon Josefsson  <jas@extundo.com>
53209
53210         * lib/base64.h (isbase64): Add.
53211
53212         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
53213         using a unsigned prototype, don't inline.
53214         (base64_decode): Use it.
53215
53216 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53217
53218         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
53219         it.
53220
53221 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53222
53223         * lib/save-cwd.c (save_cwd): Remove code to support the case
53224         where fchdir is missing or flaky.
53225
53226 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53227
53228         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
53229
53230 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
53231
53232         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
53233         AC_LIBSOURCES now does this.
53234         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
53235         with new ullong_max module.
53236
53237 2005-01-19  Bruno Haible  <bruno@clisp.org>
53238
53239         * modules/sh-quote: New file.
53240         * MODULES.html.sh (Executing programs): Add sh-quote.
53241
53242 2005-01-19  Bruno Haible  <bruno@clisp.org>
53243
53244         * lib/sh-quote.h: New file, from GNU gettext.
53245         * lib/sh-quote.c: New file, from GNU gettext.
53246
53247 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53248
53249         Merge from coreutils.
53250         * m4/ullong_max.m4: New file.
53251         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
53252         (gl_MACROS): Assume localeconv exists.
53253
53254 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53255
53256         Merge changes from coreutils, as described below in several
53257         changelogs dated today.
53258
53259         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
53260         (O_DIRECTORY): Remove; not needed here, since "." must be
53261         a directory.  All uses removed.
53262         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
53263         universal on Suns, and we also need to test for IRIX.
53264         Revamp code to use 'if' rather than '#if'.
53265         Avoid unnecessary comparison of cwd->desc to 0.
53266
53267         * lib/utimens.c (futimens): Robustify the previous patch, by checking
53268         for known valid error numbers rather than observed invalid ones.
53269
53270 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53271
53272         * modules/ullong_max: New file.
53273
53274         * modules/chdir-long, modules/openat: New files.
53275         * modules/save-cwd (Depends-on): Depend on chdir-long.
53276         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
53277
53278 2005-01-18  Jim Meyering  <jim@meyering.net>
53279
53280         Merge from coreutils.
53281         * m4/chdir-long.m4, m4/openat.m4: New files.
53282         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
53283         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
53284         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
53285         is sane and DOES follow symlinks.  Besides, testing 20 different
53286         systems found no broken chown implementations.
53287         Prompted by a change in rsync's copy of this macro.
53288         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
53289
53290         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
53291
53292         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
53293         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
53294         NULL-means-set-to-current-time semantics.
53295         Remove temporary file immediately, rather than waiting
53296         for configure's at-exit trap code to do it.
53297
53298 2005-01-18  Jim Meyering  <jim@meyering.net>
53299
53300         * lib/version-etc.c (version_etc_copyright): Update copyright date.
53301
53302         * lib/utimens.c (futimens): Account for the fact that futimes
53303         can also fail with errno == ENOSYS or errno == ENOENT.
53304         Patch from Dmitry V. Levin.
53305
53306         Change the name of the robust chdir function from chdir to chdir_long.
53307         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
53308         (restore_cwd): Use chdir_long, not chdir.
53309         * lib/chdir-long.c: Renamed from chdir.c.
53310         * lib/chdir-long.h: Renamed from chdir.h.
53311         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
53312         Hurd.
53313
53314 2005-01-18  Bruno Haible  <bruno@clisp.org>
53315
53316         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
53317         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
53318         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
53319         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
53320         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
53321         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
53322         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
53323         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
53324         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
53325         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
53326         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
53327         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
53328         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
53329         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
53330         Use an all-permissive copyright notice, recommended by RMS.
53331
53332 2005-01-18  Bob Proulx  <bob@proulx.com>
53333
53334         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
53335         simplify offsetof() macro construct to avoid compile failure with
53336         native HP-UX 11.0 ANSI C compiler.
53337
53338 2005-01-17  Bruno Haible  <bruno@clisp.org>
53339
53340         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
53341         redundant because stpncpy.m4 takes care of it.
53342
53343 2005-01-17  Bruno Haible  <bruno@clisp.org>
53344
53345         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
53346
53347 2005-01-17  Bruno Haible  <bruno@clisp.org>
53348
53349         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
53350         used.
53351
53352 2005-01-17  Bruno Haible  <bruno@clisp.org>
53353
53354         * lib/fwriteerror.h (fwriteerror): Change specification to include
53355         fclose.
53356         * lib/fwriteerror.c: Include <stdbool.h>.
53357         (fwriteerror): At the end, close the file stream. Record whether
53358         stdout was already closed.
53359
53360 2005-01-17  Bruno Haible  <bruno@clisp.org>
53361
53362         * lib/execute.c (environ): Declare if needed.
53363         * lib/pipe.c (environ): Likewise.
53364         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
53365
53366 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53367
53368         * modules/argp: Depend on vsnprintf
53369
53370 2005-01-10  Jim Meyering  <jim@meyering.net>
53371
53372         * modules/closeout (Depends-on): Add atexit.
53373
53374 2005-01-06  Bruno Haible  <bruno@clisp.org>
53375
53376         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
53377
53378 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
53379
53380         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
53381         definitions to be after all include files, to avoid collisions.
53382         Problem reported by Bob Proulx.
53383
53384 2005-01-04  Jim Meyering  <jim@meyering.net>
53385
53386         Changes imported from coreutils.
53387         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
53388         as the mkstemp template, use a temporary directory and an
53389         8.3-friendly template to avoid trouble on systems like DJGPP.
53390         Reported by Juan M. Guerrero via Stepan Kasal.
53391         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
53392         close. Remove the temporary directory right away, rather than waiting
53393         for configure's at-exit trap code to do it.
53394         Suggestion from Stepan Kasal.
53395
53396 2005-01-01  Simon Josefsson  <jas@extundo.com>
53397
53398         * gnulib-tool: Print #include directives when --import'ing.
53399
53400 2004-12-28  Simon Josefsson  <jas@extundo.com>
53401
53402         * tests/test-base64.c: Include required header files.  Remove
53403         unused variables.
53404
53405 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
53406
53407         * modules/error (Depends-on): Remove gettext.
53408
53409 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
53410
53411         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
53412         not needed.  This removes a dependency on the gettext module.
53413         [defined _LIBC]: Do not include <libintl.h>; not needed.
53414
53415 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
53416
53417         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
53418         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
53419
53420 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
53421
53422         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
53423         HAVE_DECL_STRTOLD.
53424
53425 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53426
53427         * modules/getdate (Depends-on): Remove alloca-opt.
53428
53429 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53430
53431         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
53432
53433 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53434
53435         * lib/argp-parse.c: Include <stddef.h>.
53436         (alignof, alignto): New macros.
53437         (parser_init): Don't assume that void * is aligned sufficiently
53438         for struct option.
53439
53440         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
53441         need to extend the stack.
53442         (YYINITDEPTH): New macro, so that the initial stack isn't overly
53443         large.
53444
53445 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53446
53447         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
53448
53449 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
53450
53451         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
53452         (2004-10-24) change.  Apparently this was a false alarm.
53453
53454         * modules/getdate: Depend on alloca-opt, not alloca.
53455
53456 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
53457
53458         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
53459         Remove now-obsolete comment about AIX.
53460         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
53461         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
53462         (YYMAXDEPTH): New macro.
53463
53464 2004-12-18  Simon Josefsson  <jas@extundo.com>
53465
53466         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
53467
53468 2004-12-18  Bruno Haible  <bruno@clisp.org>
53469
53470         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
53471
53472 2004-12-18  Bruno Haible  <bruno@clisp.org>
53473
53474         * lib/fatal-signal.c (fatal_signals): Make non-const.
53475         (init_fatal_signals): New function.
53476         (uninstall_handlers, install_handlers): Ignore signals that were set to
53477         SIG_IGN.
53478         (at_fatal_signal): Call init_fatal_signals.
53479         (init_fatal_signal_set): Likewise. Ignore signals that were set to
53480         SIG_IGN.
53481         Reported by Paul Eggert.
53482
53483 2004-12-18  Bruno Haible  <bruno@clisp.org>
53484
53485         * doc/alloca.texi: New file.
53486         * doc/alloca-opt.texi: New file.
53487
53488 2004-12-17  Jim Meyering  <jim@meyering.net>
53489
53490         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
53491         Otherwise, install-sh could exit with improper exit status when
53492         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
53493
53494 2004-12-16  Simon Josefsson  <jas@extundo.com>
53495
53496         * tests/test-base64.c: Add license.
53497
53498 2004-12-15  Stepan Kasal  <address@hidden>
53499
53500         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
53501
53502 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
53503
53504         * modules/getcwd (Files): Add m4/d-ino.m4.
53505         Suggested by Mark D. Baushke.
53506
53507 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
53508
53509         * lib/getdate.y (textint): New member "negative".
53510         (time_zone_hhmm): New function.
53511         Expect 14 shift-reduce conflicts, not 13.
53512         (o_colon_minutes): New rule.
53513         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
53514         (yylex): Set the "negative" member of signed numbers.
53515
53516 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
53517
53518         * doc/getdate.texi (Time of day items, Time zone items):
53519         Describe new formats +00:00, UTC+00:00.
53520
53521 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
53522
53523         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
53524         spurious "-l"s.  Problem reported by Stepan Kasal.
53525
53526 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
53527
53528         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
53529         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
53530
53531 2004-12-04  Simon Josefsson  <jas@extundo.com>
53532
53533         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
53534         Vandoorselaere <yoann@prelude-ids.org>.
53535
53536 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53537
53538         Changes imported from coreutils.
53539         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
53540         exist.
53541         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
53542
53543 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53544
53545         Changes imported from coreutils.
53546         * lib/hard-locale.c: Assume <locale.h> exists.
53547         Include "strdup.h".
53548         (GLIBC_VERSION): New macro.
53549         (hard_locale): Assume setlocale exists.
53550         Rewrite to avoid #ifdef.
53551         Use strdup rather than malloc + strcpy.
53552         * lib/human.c: Assume <locale.h> exists.
53553         (human_readable): Assume localeconv exists.
53554
53555 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
53556
53557         * modules/hard-locale (Depends-on): Add strdup.
53558
53559 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
53560
53561         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
53562         convert T2, not T.  (Imported from libc.)
53563
53564 2004-11-30  Simon Josefsson  <jas@extundo.com>
53565
53566         * modules/restrict (License): Change to LGPL.
53567
53568 2004-11-30  Simon Josefsson  <jas@extundo.com>
53569
53570         * m4/restrict.m4: Add copyright and copying conditions.
53571
53572 2004-11-30  Simon Josefsson  <jas@extundo.com>
53573
53574         * m4/base64.m4: New file.
53575
53576 2004-11-30  Simon Josefsson  <jas@extundo.com>
53577
53578         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
53579         base64.
53580
53581         * tests/test-base64.c: New file.
53582
53583         * modules/base64: New file.
53584
53585 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
53586
53587         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
53588         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
53589
53590         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
53591
53592 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
53593
53594         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
53595         (__getcwd.c): Don't restore errno; glibc doesn't.
53596         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
53597         first, falling back to our code only if its results look suspicious.
53598         Ensure that the resulting buffer is only as large as necessary.
53599
53600         * lib/readutmp.c: Include readutmp.h first.
53601         Include <errno.h>, since readutmp.h no longer does that.
53602         * lib/readutmp.h: Don't include <errno.h>,
53603         <sys/param.h>, <time.h>; not needed to establish interface.
53604         (errno): Remove decl.
53605         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
53606         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
53607         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
53608
53609 2004-11-28  Simon Josefsson  <jas@extundo.com>
53610
53611         * lib/base64.h, base64.c: New file.
53612
53613 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
53614
53615         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
53616
53617 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
53618
53619         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
53620         (Depends-on): Remove pathmax, same.  Add mempcpy.
53621         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
53622         (Makefile.am): Append getcwd.h to lib_SOURCES.
53623         (Include): Add getcwd.h.
53624         (Maintainer): Change from Jim Meyering to "all, glibc",
53625         since getdate now uses intended-for-glibc code.
53626         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
53627         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
53628
53629 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
53630
53631         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
53632         HP's ANSI C compiler.
53633         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
53634         Declaring int functions causes warnings on some modern systems and
53635         shouldn't be needed to compile on ancient ones.
53636         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
53637         defined.
53638
53639         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
53640         with the following changes.
53641         (__set_errno): Parenthesize properly.
53642         Include <stdbool.h>.
53643         (MIN, MAX, MATCHING_INO): New macros.
53644         (__getcwd): Define with prototype, not K&R form.
53645         Use heuristics to allocate default buffer on stack if possible.
53646         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
53647         behavior, and to avoid the PATH_MAX limit when computing
53648         ../../../../...
53649         Use MATCHING_INO to compare inode number to file.
53650         Check for arithmetic overflow in size calculations.
53651         Fix bug in reallocation of dot array that caused getcwd to fail
53652         on directories nested deeper than 75.
53653         Be more careful about saving errno on error.
53654         Do not use realloc; use only free+malloc, as this is a bit
53655         more flexible and avoids a needless copy operation.
53656         Do not inspect st_dev and st_ino for symbolic links; POSIX
53657         doesn't specify the latter.
53658         Check for closedir errors.
53659         Avoid needless casts.
53660         Use "#ifdef weak_alias" around weak_alias, to be like other
53661         glibc code.
53662         The following changes to getcwd.c have effect only when used in
53663         gnulib; they have no effect inside glibc proper.
53664         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
53665         as alloca isn't used.
53666         (alloca, __alloca): Likewise.
53667         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
53668         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
53669         unconditionally, as gnulib assumes C89 or better.
53670         Do not include <sys/param.h>.
53671         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
53672         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
53673         better.
53674         (NULL) [!defined NULL]: Remove; we assume C89 or better.
53675         Include <dirent.h> in a way that is compatible with modern Autoconf.
53676         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
53677         New macros, if not already defined.
53678         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
53679         Use "_LIBC", not "defined _LIBC", for consistency.
53680         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
53681         a mempcpy module.
53682         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
53683         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
53684         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
53685         credit only to Jim Meyering and adjust the copyright dates.
53686         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
53687         <stdlib.h>, <unistd.h>, "pathmax.h".
53688         Instead, include "xgetcwd.h" (first) and "getcwd.h".
53689         (INITIAL_BUFFER_SIZE): Remove.
53690         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
53691
53692 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
53693
53694         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
53695         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
53696         Use the _ONCE methods, for efficiency.
53697         Check for fcntl.h.  In test program, include <errno.h>
53698         and <fcntl.h> if available.  Remove old K&R cruft from
53699         test program.  Check for common errors in GNU/Linux,
53700         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
53701         don't do AC_LIBOBJ, as that's getcwd.m4's job.
53702         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
53703         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
53704         name accordingly.
53705         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
53706         accommodate new getcwd.c.
53707         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
53708         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
53709         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
53710         that's all we need now.
53711
53712 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53713
53714         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
53715         argp-parse.c depends on getopt internals, that means we should
53716         always use our getopt, to be on the safe side.
53717         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
53718         order not to spoil the result of an eventual previous invocation
53719         of gl_GETOPT_SUBSTITUTE.
53720
53721 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53722
53723         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
53724         redefinition warnings. To avoid them, include the defines
53725         in `#if !defined __need_getopt ... #endif'. The only place
53726         where __getopt_argv_const is used is in definitions
53727         of getopt_long and getopt_long_only below, which are as well
53728         protected by `#ifndef __need_getopt'.
53729         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
53730         __need_getopt after including <stdio.h> and <unistd.h> These
53731         headers might have defined it.
53732
53733 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
53734
53735         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
53736
53737 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
53738
53739         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
53740         (futimens): New function, which uses futimes if available.
53741         (futimens, utimens): Support timespec==NULL, with same semantics
53742         as utime and utimens.
53743         * lib/utimens.h (futimens): New decl.
53744
53745 2004-11-23  Jim Meyering  <jim@meyering.net>
53746
53747         * lib/getopt_.h: Remove trailing blanks.
53748
53749 2004-11-23  Jim Meyering  <jim@meyering.net>
53750
53751         * lib/__fpending.c: Add comment.
53752
53753 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
53754
53755         * modules/canonicalize (Depends-on): Add xreadlink.
53756         Problem reported by James Youngman.
53757
53758 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
53759
53760         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
53761         New macros.
53762         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
53763         optopt): Use them instead of invoking ## directly; otherwise, the
53764         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
53765
53766 2004-11-19  Bruno Haible  <bruno@clisp.org>
53767
53768         * lib/strtok_r.c: Move comments from here...
53769         * lib/strtok_r.h: ... to here.
53770
53771 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
53772
53773         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
53774         implementations that mishandle size_t overflow.
53775
53776 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
53777
53778         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
53779         might fail.  Problem reported by Yoann Vandoorselaere.
53780         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
53781         implementations that mishandle size_t overflow.
53782
53783 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53784
53785         * modules/canon-host (Depends-on): Add strdup.
53786
53787 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53788
53789         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
53790
53791 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53792
53793         * lib/canon-host.c: Include "strdup.h".
53794         (canon_host): Use getaddrinfo if available, so that IPv6 works.
53795         Use strdup instead of malloc/strcpy to duplicate strings.
53796
53797         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
53798         (human_space_before_unit): New constant.
53799         * lib/human.c (human_readable): Support it.
53800
53801         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
53802         (xgetcwd): Set errno correctly when failing.
53803         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
53804         the failure is actually due to a PATH_MAX problem.
53805
53806         Further getopt changes to make it more likely that glibc will
53807         buy the changes back.
53808         * lib/getopt.c (POSIXLY_CORRECT): New constant.
53809         (getopt): Use it, so to preserve glibc semantic
53810         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
53811         when compiling for libc.
53812         * lib/getopt_.h (__getopt_argv_const): Bring it back.
53813         (getopt_long, getopt_long_only): Use it.
53814
53815         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
53816         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
53817         (getopt): Argv is now char * const *, as per standard.
53818         (_getopt_internal_r, _getopt_internal): Argv is now char **,
53819         not char *__getopt_argv_const *.
53820         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
53821         _getopt_long_only_r): Likewise.
53822         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
53823         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
53824         _getopt_long_r, _getopt_long_only_r): Likewise.
53825         * lib/getopt_.h (__getopt_argv_const): Remove.
53826         (getopt): Argv is now char * const *, as per standard.
53827
53828         * lib/getdate.y (tORDINAL): New token.
53829         (day, relunit): Allow it for relative times.
53830         (relative_time_table): Use tORDINAL for ordinals.
53831
53832 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
53833
53834         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
53835         Document that "second" isn't allowed as an ordinal number.
53836
53837 2004-11-16  Jim Meyering  <jim@meyering.net>
53838
53839         * modules/closeout (Depends-on): Add fpending.
53840
53841 2004-11-15  Jim Meyering  <jim@meyering.net>
53842
53843         * lib/closeout.c: Include "__fpending.h" once again.
53844         Include <stdbool.h>.
53845         (close_stdout): Don't fail just because stdout was closed initially,
53846         since some programs don't write to stdout in the normal course of
53847         operation (other than --version and --help), and we don't want this
53848         function to make e.g. `touch file >&-' fail.
53849         But do fail if it was closed and someone has tried to write to it.
53850         E.g., `printf foo >&-' must fail.
53851
53852 2004-11-13  Jim Meyering  <jim@meyering.net>
53853
53854         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
53855
53856 2004-11-12  Simon Josefsson  <jas@extundo.com>
53857
53858         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
53859         small doc fix is still pending.
53860
53861 2004-11-11  Simon Josefsson  <jas@extundo.com>
53862
53863         * modules/strtok_r: New file.
53864
53865         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
53866         strtok_r.
53867
53868 2004-11-11  Simon Josefsson  <jas@extundo.com>
53869
53870         * m4/strtok_r.m4: New file.
53871
53872         * m4/getopt.m4: Replace opterr.
53873
53874 2004-11-11  Simon Josefsson  <jas@extundo.com>
53875
53876         * lib/strtok_r.h, strtok_r.c: New file.
53877
53878 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
53879
53880         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
53881         of replacing opterr, getopt, etc.  This should handle the
53882         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
53883
53884 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
53885
53886         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
53887         we can stop lying to compilers about the constness of argv when we
53888         are compiled outside glibc.
53889         (getopt, getopt_long, getopt_long_only): Use it.
53890         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
53891         _getopt_internal, getopt): Likewise.
53892         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
53893         _getopt_long_only_r): Likewise.
53894         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
53895         _getopt_long_r, _getopt_long_only_r): Likewise.
53896
53897         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
53898         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
53899         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
53900         the other external symbols.
53901         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
53902         declaration, since the above renaming now works around collisions.
53903
53904 2004-11-11  Jim Meyering  <jim@meyering.net>
53905
53906         * lib/linebreak.c: Remove trailing blanks.
53907         * lib/alloca_.h: Likewise.
53908         * lib/acosl.c: Likewise.
53909         * lib/euidaccess.c: Likewise.
53910         * lib/allocsa.h: Likewise.
53911
53912 2004-11-10  Simon Josefsson  <jas@extundo.com>
53913
53914         * m4/getaddrinfo.m4: New file.
53915
53916 2004-11-10  Simon Josefsson  <jas@extundo.com>
53917
53918         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
53919
53920 2004-11-10  Simon Josefsson  <jas@extundo.com>
53921
53922         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
53923         getaddrinfo.
53924
53925         * modules/getaddrinfo: New file.
53926
53927 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
53928
53929         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
53930
53931 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
53932
53933         * lib/mktime.c (SHR): New macro, which is a portable
53934         substitute for >> that should work even on Crays.
53935         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
53936         Problem reported by Mark D. Baushke in
53937         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
53938         * lib/getdate.y (SHR): Likewise.
53939         (tm_diff): Use it.
53940         * lib/strftime.c (SHR): Likewise.
53941         (tm_diff): Use it.
53942         * lib/quotearg.c (struct quoting_options): Use unsigned int for
53943         quote_these_too, so that right shifts are well defined.  All uses
53944         changed.
53945
53946 2004-11-10  Jim Meyering  <jim@meyering.net>
53947
53948         Ensure that no close failure goes unreported.
53949         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
53950         return early when it seems there's nothing to flush.
53951         Don't include __fpending.h.
53952
53953 2004-11-10  Jim Meyering  <jim@meyering.net>
53954
53955         * modules/closeout (Depends-on): Remove fpending.
53956
53957 2004-11-10  Jim Meyering  <jim@meyering.net>
53958
53959         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
53960
53961 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
53962
53963         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
53964         gl_FUNC_STRFTIME.
53965         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
53966         and AC_REQUIRE when possible, to avoid duplicate checks.
53967         Check for <wchar.h>.
53968
53969 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
53970
53971         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
53972
53973 2004-11-09  Bruno Haible  <bruno@clisp.org>
53974
53975         * m4/sockpfaf.m4: New file.
53976
53977 2004-11-05  Bruno Haible  <bruno@clisp.org>
53978
53979         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
53980         Reported by Mark D. Baushke <mdb@cvshome.org>.
53981
53982 2004-11-04  Bruno Haible  <bruno@clisp.org>
53983
53984         2004-09-11  Bruno Haible  <bruno@clisp.org>
53985                 * allocsa.valgrind: New file.
53986         2004-02-06  Bruno Haible  <bruno@clisp.org>
53987                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
53988                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
53989                 Reported by Christopher Seip <chris.seip@hp.com>.
53990
53991 2004-11-04  Bruno Haible  <bruno@clisp.org>
53992
53993         * modules/allocsa (Files): Add lib/allocsa.valgrind.
53994         (Makefile.am): Distribute it.
53995
53996 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
53997
53998         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
53999         with errno == ERANGE if the buffer is too small.
54000         Problem reported by Mark D. Baushke.
54001
54002 2004-11-03  Albert Chin  <china@thewrittenword.com>
54003             Paul Eggert  <eggert@cs.ucla.edu>
54004
54005         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
54006         equivalent, substitute $ac_type for equivalent type rather than
54007         blindly using uint32_t *always* which won't work if uint32_t is not
54008         available.  Define _UINT32_T to work around typedef of uint32_t if
54009         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
54010         2.5.1.
54011
54012 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54013
54014         * m4/jm-macros.m4: Sync from coreutils.
54015         (gl_MACROS): Check for mbrlen, for pathchk.
54016         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
54017
54018 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54019
54020         * lib/xreadlink.c (MAXSIZE): New macro.
54021         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
54022         size does not exceed MAXSIZE.  Avoid cast.
54023         As suggested by Mark D. Baushke in
54024         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
54025         if readlink fails with buffer size just under MAXSIZE, try again
54026         with MAXSIZE.
54027
54028 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54029
54030         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
54031
54032 2004-11-02  Derek R. Price  <derek@ximbiot.com>
54033         and  Paul Eggert  <eggert@cs.ucla.edu>
54034
54035         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
54036         (get_date): Overparenthesize to avoid GCC warning.
54037
54038 2004-11-02  Bruno Haible  <bruno@clisp.org>
54039
54040         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
54041         returns void.
54042
54043 2004-11-02  Bruno Haible  <bruno@clisp.org>
54044
54045         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
54046         function returns void.
54047
54048 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
54049
54050         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
54051         fflush_unlocked, flockfile, funlockfile, funlockfile,
54052         fputs_unlocked, putc_unlocked.
54053
54054 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
54055
54056         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54057         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
54058         already declared.
54059
54060 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54061
54062         * modules/getdate (Files): Add doc/getdate.texi.
54063         (Depends-on): Add setenv, xalloc.
54064
54065 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54066
54067         * lib/getdate.y: Add support for TZ="foo" within a date string.
54068         Fix some bugs near time_t boundaries.  Reject dates with
54069         out-of-range components, e.g., "Sept 31".
54070         Include <stdlib.h>, "setenv.h", "xalloc.h".
54071         (ISDIGIT_LOCALE): Remove; unused.
54072         Note that the TZ and time functions used here are not reentrant.
54073         (mktime_ok, get_tz): New functions.
54074         (TZBUFSIZE): New constant.
54075         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
54076         This requires that we sometimes generate our own TZ="XXX..." setting.
54077
54078 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54079
54080         * doc/getdate.texi: New file, from coreutils with modifications for
54081         the new TZ parsing.
54082
54083 2004-10-27  Derek R. Price  <derek@ximbiot.com>
54084
54085         * lib/mktime.c (not_equal_tm): Remove redundant check.
54086
54087 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54088
54089         * modules/regex (lib_SOURCES): Add regex.c.
54090         Reported by James Youngman in
54091         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
54092
54093 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54094
54095         * lib/getdate.y: Use Bison 1.875 features, and some minor
54096         code cleanups.  This change does not affect semantics.
54097         Don't include <stdlib.h>; no longer needed.
54098         Don't include unlocked-io.h; only the "#if TEST" code uses
54099         stdio, and performance isn't crucial there.
54100         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
54101         Bison 1.875 features as described below.
54102         All uses of "PC." replaced by "pc->".
54103         (YYSTYPE): Add a forward declaration.
54104         (yylex, yyerror): Use full prototypes in forward decls.
54105         Use "%pure-parser" rather than obsolescent "%pure_parser".
54106         Use %parse-param and %lex-param instead of obsolescent
54107         YYPARSE_PARAM and YYLEX_PARAM.
54108         (meridian_table, month_and_day_table, time_units_table,
54109         relative_time_table, time_zone_table, military_table,
54110         lookup_zone, lookup_word, get_date):
54111         Use NULL instead of 0 where appropriate.
54112         (to_hour): Avoid abort (), to avoid a dependency on
54113         stdlib.h.
54114         (yyerror, yylex): Now accepts parser_control * arg.
54115         (main) [TEST]: Use '\0' rather than 0 for char.
54116
54117 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54118
54119         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
54120
54121 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54122
54123         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
54124         It's now the caller's responsibility to handle the case where
54125         !HAVE_GETPAGESIZE && !defined getpagesize.
54126
54127         * lib/mktime.c (leapyear): Arg is long int, not int.
54128
54129 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
54130
54131         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
54132
54133 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
54134
54135         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
54136         missing.  Problem reported by James Youngman.
54137
54138 2004-10-16  Simon Josefsson  <jas@extundo.com>
54139
54140         * gnulib-tool: Fix comments.  Fix parse problem.
54141         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
54142
54143 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
54144
54145         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
54146         implementation of getopt_long.  Problem reported by Alexander Taler in:
54147         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
54148
54149 2004-10-15  Bruno Haible  <bruno@clisp.org>
54150
54151         * gnulib-tool: Untabify. Initialize supplied_libname.
54152         (func_usage): More homogenous output.
54153         (func_modules_transitive_closure, func_modules_to_filelist,
54154         func_emit_lib_Makefile_am): New functions.
54155         (func_import): New function, extracted from big case statement. Use
54156         func_get_license, func_modules_transitive_closure,
54157         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
54158         opt_lgpl. Don't use test -a, as it's not portable.
54159         (func_create_testdir): Use func_modules_transitive_closure,
54160         func_modules_to_filelist, func_emit_lib_Makefile_am.
54161
54162 2004-10-15  Bruno Haible  <bruno@clisp.org>
54163
54164         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
54165
54166 2004-10-15  Bruno Haible  <bruno@clisp.org>
54167
54168         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
54169         the portions belonging to each module.
54170         Suggested by Derek Robert Price <derek@ximbiot.com>.
54171
54172 2004-10-12  Simon Josefsson  <jas@extundo.com>
54173
54174         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54175         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
54176         to real functions.
54177
54178 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54179
54180         * modules/vsnprintf: New file.
54181
54182 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54183
54184         * m4/vsnprintf.m4: New file.
54185
54186 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54187
54188         * lib/vsnprintf.h: New file.
54189         * lib/vsnprintf.c: New file.
54190
54191 2004-10-11  Bruno Haible  <bruno@clisp.org>
54192
54193         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
54194         vsnprintf.
54195
54196 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
54197
54198         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
54199
54200 2004-10-07  Bruno Haible  <bruno@clisp.org>
54201
54202         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
54203         fits into the provided buffer.
54204
54205 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
54206
54207         * lib/diacrit.c, diacrit.h: Add GPL notice.
54208
54209         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
54210         notice.
54211         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
54212         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
54213         This avoids a potential constant-folding bug.
54214
54215 2004-10-05  Bruno Haible  <bruno@clisp.org>
54216
54217         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
54218         for the declaration of strsep.
54219
54220 2004-10-05  Bruno Haible  <bruno@clisp.org>
54221
54222         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
54223
54224 2004-10-04  Simon Josefsson  <jas@extundo.com>
54225
54226         * modules/memmem: New file.
54227         * tests/test-memmem.c: New file.
54228         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
54229
54230 2004-10-04  Simon Josefsson  <jas@extundo.com>
54231
54232         * m4/memmem.m4: New file.
54233
54234 2004-10-04  Simon Josefsson  <jas@extundo.com>
54235
54236         * lib/memmem.h: New file.
54237         * lib/memmem.c: New file, taken from glibc.
54238
54239 2004-10-04  Simon Josefsson  <jas@extundo.com>
54240
54241         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
54242         '#ifdef USE_UNLOCKED_IO'.
54243
54244 2004-10-04  Simon Josefsson  <jas@extundo.com>
54245
54246         * config/srclist.txt: Add memmem from glibc.
54247
54248 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54249
54250         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
54251
54252         * modules/argmatch, modules/argp, modules/closeout, modules/error,
54253         modules/exclude, modules/getdate, modules/getline,
54254         modules/getndelim2, modules/getpass, modules/getpass-gnu,
54255         modules/getusershell, modules/linebuffer, modules/md5,
54256         modules/mountlist, modules/posixtm, modules/readtokens,
54257         modules/readutmp, modules/regex, modules/sha1,
54258         modules/version-etc, modules/yesno:
54259         Remove dependency on unlocked-io.
54260
54261 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54262
54263         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
54264
54265         * m4/unlocked-io.m4: Add copyright notice.
54266         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
54267
54268 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54269
54270         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
54271         * lib/xmalloc.c (xmemdup): Likewise.
54272         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
54273         XFREE): Remove these long-obsolescent macros.
54274         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
54275         * lib/xstrdup.c: Remove.
54276
54277         * lib/regex.c (re_comp): Cast gettext return value to char *,
54278         Problem reported by Martin Neitzel via Mark D. Baushke.
54279
54280 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54281
54282         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
54283         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
54284         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
54285         regex.c, sha1.c, version-etc.c, yesno.c:
54286         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
54287         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
54288         the includer's responsibility.
54289
54290         Sync from coreutils.
54291
54292         * lib/modechange.c (mode_compile): Don't decrement a pointer that
54293         points to the start of a string, as the C Standard says the
54294         resulting behavior is undefined.
54295
54296         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
54297         simple -> simple_backups, numbered_existing ->
54298         numbered_existing_backups, numbered -> numbered_backups
54299         to avoid shadowing problems.  All uses changed.
54300         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
54301         * lib/backupfile.c (check_extension, numbered_backup):
54302         Rename locals to avoid shadowing 'basename'.
54303         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
54304         once.
54305
54306         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
54307         * lib/.cvsignore: Add getopt.h.
54308
54309 2004-10-04  Bruno Haible  <bruno@clisp.org>
54310
54311         * modules/README: New file.
54312         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
54313         not a module.
54314
54315 2004-10-02  Jim Meyering  <jim@meyering.net>
54316
54317         * lib/dirfd.h, getpagesize.h: Add copyright notice.
54318
54319 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54320
54321         * modules/strsep: New file.
54322
54323 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54324
54325         * m4/strsep.m4: New file.
54326
54327 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54328
54329         * lib/strsep.h: New file.
54330         * lib/strsep.c: New file.
54331
54332 2004-10-01  Simon Josefsson  <jas@extundo.com>
54333
54334         * lib/snprintf.c (snprintf): Handle size==0.
54335
54336 2004-10-01  Simon Josefsson  <jas@extundo.com>
54337             Bruno Haible  <bruno@clisp.org>
54338
54339         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
54340         (snprintf): Declare 'args'.
54341
54342 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
54343
54344         * lib/snprintf.c: Remove comments as to why each header is needed.
54345
54346 2004-10-01  Bruno Haible  <bruno@clisp.org>
54347
54348         * MODULES.html.sh: Add strsep.
54349
54350 2004-09-30  Simon Josefsson  <jas@extundo.com>
54351
54352         * modules/snprintf: New file.
54353
54354 2004-09-30  Simon Josefsson  <jas@extundo.com>
54355
54356         * m4/snprintf.m4: New file.
54357
54358 2004-09-30  Simon Josefsson  <jas@extundo.com>
54359
54360         * lib/snprintf.h, lib/snprintf.c: New files.
54361
54362 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54363
54364         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
54365         (hol_entry_help): Never translate an empty string.
54366         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
54367         * lib/argp.h (OPTION_NO_TRANS): New option.
54368
54369 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54370
54371         * modules/argp (Maintainer): Replace Simon Josefsson
54372         by Sergey Poznyakoff.
54373
54374 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54375
54376         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
54377         changes merged back into glibc.
54378
54379 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54380
54381         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
54382
54383 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
54384
54385         * lib/xvasprintf.c: Include xalloc.h.
54386         (xvasprintf): Use xalloc_die, not xmalloc_die.
54387
54388 2004-09-29  Bruno Haible  <bruno@clisp.org>
54389
54390         * modules/alloca-opt: New file, derived from modules/alloca.
54391         * modules/allocsa: Depend on alloca-opt instead of alloca.
54392         * modules/setenv: Likewise.
54393         * modules/vasnprintf: Likewise.
54394         * MODULES.html.sh: Add alloca-opt.
54395
54396 2004-09-28  Simon Josefsson  <jas@extundo.com>
54397
54398         * gnulib-tool: New parameter --lgpl, to asseert that modules are
54399         LGPL, and to replace license template from GPL to LGPL.
54400
54401 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
54402
54403         * modules/dummy: Change license to LGPL.
54404
54405 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
54406
54407         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
54408
54409 2004-09-24  Simon Josefsson  <jas@extundo.com>
54410
54411         * modules/minmax (License): Change from GPL to LGPL.
54412
54413 2004-09-23  Simon Josefsson  <jas@extundo.com>
54414
54415         * gnulib-tool (--import): Typo.
54416
54417 2004-09-23  Simon Josefsson  <jas@extundo.com>
54418
54419         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
54420
54421 2004-09-22  Bruno Haible  <bruno@clisp.org>
54422
54423         * modules/*: Add 'License' field.
54424         * gnulib-tool: Accept --extract-license option.
54425         (func_get_license): New function.
54426
54427 2004-09-21  Bruno Haible  <bruno@clisp.org>
54428
54429         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
54430         Reported by Simon Josefsson.
54431
54432 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
54433
54434         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
54435         gl_AC_TYPE_LONG_LONG.
54436
54437 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
54438
54439         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
54440
54441 2004-09-18  Simon Josefsson  <jas@extundo.com>
54442         and  Paul Eggert  <eggert@cs.ucla.edu>
54443
54444         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
54445         calls with autoreconf.  Define GL_LIB.
54446
54447 2004-09-14  Karl Berry  <karl@gnu.org>
54448
54449         * config/srclist.txt: unsync setenv.c, sigh.
54450
54451 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
54452
54453         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
54454         Problem reported by Bruno Haible in:
54455         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
54456
54457 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
54458
54459         * config/srclist.txt: Comment out argp-pvh.c.
54460
54461 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
54462
54463         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
54464         in case some system header has #define'd it.  Problem reported by
54465         Soeren D. Schulze in
54466         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
54467
54468 2004-09-09  Karl Berry  <karl@gnu.org>
54469
54470         * regex.[ch]: delete from the root.  These were supposed to be
54471                 synced with emacs cvs, but this has not happened for about
54472                 a year, and anyway nothing else uses emacs regex.[ch].
54473                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
54474                 lib/regex[.ch] is untouched.
54475
54476 2004-09-09  Bruno Haible  <bruno@clisp.org>
54477
54478         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
54479
54480 2004-09-09  Bruno Haible  <bruno@clisp.org>
54481
54482         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
54483         modifications.
54484         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
54485
54486 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
54487
54488         * modules/xvasprintf: New file.
54489         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
54490
54491 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
54492
54493         * lib/xvasprintf.h: New file.
54494         * lib/xvasprintf.c: New file.
54495         * lib/xasprintf.c: New file.
54496
54497 2004-09-08  Bruno Haible  <bruno@clisp.org>
54498
54499         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
54500
54501 2004-09-08  Bruno Haible  <bruno@clisp.org>
54502
54503         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
54504         length is > INT_MAX.
54505         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
54506         more.
54507
54508 2004-09-08  Bruno Haible  <bruno@clisp.org>
54509
54510         * lib/stdint_.h: New file, taken from GNU clisp.
54511
54512 2004-09-08  Bruno Haible  <bruno@clisp.org>
54513             Oskar Liljeblad  <oskar@osk.mine.nu>
54514
54515         * modules/stdint: New file.
54516         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
54517
54518 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54519
54520         Import from coreutils.
54521         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
54522         strings on unbounded length.  alloca's performance benefits aren't
54523         that important here.
54524         (V_STRDUP): Remove.
54525         (parse_with_separator): New function, with most of the internals
54526         of the old parse_user_spec.  Allow user to omit both user and group,
54527         for compatibility with FreeBSD.
54528         Clone only the user name, not the entire spec.
54529         Do not set *uid, *gid unless entirely successful.
54530         Avoid memory leak in some failing cases.
54531         Fix regression for USER.GROUP reported by Dmitry V. Levin in
54532         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
54533         (parse_user_spec): Rewrite to use parse_with_separator.
54534
54535 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54536
54537         * modules/userspec: Don't depend on alloca.
54538
54539 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54540
54541         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
54542
54543 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
54544
54545         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
54546         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
54547         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
54548
54549 2004-08-16  Simon Josefsson  <jas@extundo.com>
54550
54551         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
54552         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
54553         Add --dry-run for --import.
54554         Let user provided command line parameters override configure.ac
54555         settings.
54556
54557 2004-08-12  Simon Josefsson  <jas@extundo.com>
54558
54559         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
54560         as discussed with Paul Eggert in threads rooted at
54561         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
54562         and
54563         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
54564         Before, the test was empty, and relied on ELIDE_CODE in source
54565         code.)
54566         (gl_PREREQ_GETOPT): New macro.
54567         (gl_GETOPT): Use them.
54568
54569 2004-08-12  Simon Josefsson  <jas@extundo.com>
54570
54571         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
54572         * lib/getopt_.h: Renamed from getopt.h.
54573
54574 2004-08-12  Simon Josefsson  <jas@extundo.com>
54575
54576         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
54577         Change default library name from libfoo to libgnu.
54578         Now, if you have a configure.ac that says:
54579                 gl_SOURCE_BASE(gl)
54580                 gl_M4_BASE(gl/m4)
54581                 gl_MODULES(error getopt etcetera)
54582                 gl_INIT
54583         you can import all you need by running:
54584                 ../gnulib/gnulib-tool --import
54585
54586         * modules/getopt (Files): Rename getopt.h to getopt_.h.
54587         (Makefile.am): Rewrite, use logic from argz.
54588         (Include): Use <getopt.h> instead of "getopt.h".
54589
54590 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54591
54592         * modules/argp (Files): Add m4/unlocked-io.m4.
54593         (Depends-on): Add extensions.
54594
54595 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54596
54597         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
54598         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
54599         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
54600         Check for program_invocation_name, program_invocation_short_name,
54601         flockfile, funlockfile, features.h, _getopt_long_only_r.
54602
54603 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54604
54605         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
54606         its complicated substitute.
54607         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
54608         and program_invocation_name.
54609         (__argp_basename) [!_LIBC]: Remove; the only use was
54610         replaced by its body.
54611         (__argp_short_program_name): Change condition from
54612         !defined __argp_short_program_name to
54613         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
54614         to match argp-namefrob.h.
54615         (__argp_failure): Don't assume strerror_r returns char *.
54616         * lib/argp-parse.c (N_): Define unconditionally.
54617         (argp_default_options): Fill out initializers with 0 to avoid
54618         gcc warnings.
54619
54620 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
54621
54622         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
54623         getopt1.c.
54624
54625 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54626
54627         Merge from coreutils.
54628
54629         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
54630
54631         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
54632         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
54633
54634 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54635
54636         Merge from coreutils.
54637
54638         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
54639         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
54640         for Reliant Unix 5.43.
54641
54642         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
54643         (union fooround): Use uintmax_t, not long int.
54644         The rest is a merge from libc:
54645         [defined _LIBC]: Include <shlib-compat.h>.
54646         (_obstack) [defined _LIBC]: Remove after 2.3.4.
54647
54648         * lib/settime.c (settime): Recode to avoid warning with
54649         Sun Forte C 6U2.
54650
54651         * lib/strverscmp.c: Convert to UTF-8.
54652
54653 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
54654
54655         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
54656         m4/uintmax_t.m4.
54657
54658 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54659
54660         * modules/xalloc-die: New file.
54661         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
54662
54663         * modules/md5 (Files): Add m4/uint32_t.m4.
54664         * modules/sha1: Renamed from modules/sha.
54665         (Files):
54666         Rename lib/sha.h to lib/sha1.h.
54667         Rename lib/sha.c to lib/sha1.c.
54668         Rename m4/sha.m4 to m4/sha1.m4.
54669         (lib_SOURCES): Likewise.
54670         (configure.ac): Rename gl_SHA to gl_SHA1.
54671         (Include): sha.h -> sha1.h.
54672
54673 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54674
54675         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
54676         * m4/sha1.m4: Renamed from sha.m4.
54677         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
54678
54679 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
54680
54681         * lib/obstack.h (obstack_empty_p):
54682         Don't assume that chunk->contents is suitably aligned.
54683         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
54684         Likewise. Problem reported by Benno in
54685         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
54686
54687         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
54688         readable.  This could be improved further but it'd take some work.
54689
54690 2004-08-08  Simon Josefsson  <jas@extundo.com>
54691
54692         * modules/xgethostname (Depends-on): Remove exit and error (not
54693         used).
54694
54695         * modules/getpass-gnu: Add getpass.h.
54696         (Depends-on): Add stdbool.
54697         * modules/getpass: Add getpass.h.
54698
54699 2004-08-08  Simon Josefsson  <jas@extundo.com>
54700
54701         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
54702         Check getpass declaration.
54703
54704 2004-08-08  Simon Josefsson  <jas@extundo.com>
54705
54706         * lib/xgethostname.c: Don't include error.h (not used).
54707
54708         * lib/getpass.h: Add.
54709         * lib/getpass.c: Include getpass.h first.
54710
54711 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
54712
54713         * lib/xalloc-die.c: New file.
54714         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
54715         All uses removed.
54716         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
54717         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
54718         xalloc-die.c.
54719         (_, N_, xalloc_die): Move to xalloc-die.c.
54720         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
54721         so that we needn't mess with xalloc_msg_memory_exhausted.
54722
54723         * lib/sha1.h: Renamed from sha.h.
54724         (SHA1_H): Renamed from _SHA_H.
54725         (sha1_ctx): Renamed from sha_ctx.
54726         (sha1_init_ctx): Renamed from sha_init_ctx.
54727         (sha1_process_block): Renamed from sha_process_block.
54728         (sha1_process_bytes): Renamed from sha_process_bytes.
54729         (sha1_finish_ctx): Renamed from sha_finish_ctx.
54730         (sha1_read_ctx): Renamed from sha_read_ctx.
54731         (sha1_stream): Renamed from sha_stream.
54732         (sha1_buffer): Renamed from sha_buffer.
54733         * lib/sha1.c: Likewise; renamed from sha.c.
54734         Do not include <sys/types.h>.
54735         Include <stddef.h> rather than <stdlib.h>.
54736
54737 2004-08-08  Bruno Haible  <bruno@clisp.org>
54738
54739         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
54740         FILESYSTEM_PREFIX_LEN.
54741         * lib/progreloc.c: Likewise.
54742         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
54743
54744 2004-08-06  Simon Josefsson  <jas@extundo.com>
54745
54746         * modules/progname (Depends-on): Don't depend on stdbool.
54747
54748 2004-08-06  Simon Josefsson  <jas@extundo.com>
54749
54750         * modules/getsubopt: New file.
54751         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
54752         getsubopt.
54753
54754 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54755
54756         More merge from coreutils.
54757
54758         * m4/utimens.m4, m4/utimecmp.m4: New files.
54759         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
54760         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
54761         prereq.m4, sha.m4: Import changes from coreutils.
54762
54763 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54764
54765         More merge from coreutils.
54766         * modules/raise, modules/readtokens0, modules/utimens:
54767         * modules/utimecmp, module/xnanosleep: New files.
54768         * modules/strftime: Add lib/strftime.h.
54769         Change include from <time.h> to "strftime.h".
54770         * modules/yesno: Add lib/yesno.h.
54771         * modules/backupfile: Remove lib/addext.c.
54772         * modules/euidaccess: Add stat-macros.h.
54773         * modules/canonicalize, modules/euidaccess,
54774         modules/filemode, modules/lchown, modules/makepath,
54775         modules/rmdir, modules/stat: Likewise.
54776
54777 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
54778
54779         Merge from tar.
54780         * lib/argp-help.c (make_hol, hol_append): Don't assume that
54781         SIZE_MAX is a valid preprocessor constant.
54782         (__argp_basename): Change from "#ifndef _LIBC"
54783         to "#ifndef __argp_short_program_name", so that
54784         we don't compile these functions for tar.
54785
54786         More merges from coreutils.
54787         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
54788         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
54789         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
54790         * lib/addext.c: Remove; no longer needed.
54791         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
54792         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
54793         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
54794         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
54795         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
54796         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
54797         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
54798         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
54799         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
54800         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
54801         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
54802         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
54803         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
54804         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
54805         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
54806         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
54807         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
54808         Import changes from coreutils.
54809
54810 2004-08-05  Simon Josefsson  <jas@extundo.com>
54811
54812         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
54813
54814 2004-08-05  Simon Josefsson  <jas@extundo.com>
54815
54816         * m4/getsubopt.m4: New file.
54817
54818 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54819
54820         Merge from coreutils.
54821
54822         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
54823         * m4/getcwd-path-max.m4: New files.
54824
54825         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
54826         FILESYSTEM_PREFIX_LEN ->
54827         FILE_SYSTEM_PREFIX_LEN.
54828         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
54829         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
54830         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
54831         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
54832
54833         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
54834         prerequisite modules now handle the DOS stuff.
54835         Don't check for unistd.h.
54836
54837 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54838
54839         Merge from coreutils.
54840
54841         * lib/.gdb-history: Remove; this doesn't belong here.
54842
54843         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
54844         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
54845         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
54846         * lib/getcwd.c: New files.
54847
54848         * lib/dirname.h: Include <stdbool.h>.
54849         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
54850         for consistency with POSIX terminology.  All uses changed.
54851         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
54852         (strip_trailing_slashes): Use bool for booleans.
54853         * lib/stripslash.c (strip_trailing_slashes): Likewise.
54854
54855         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
54856         sometimes returns a positive errno value even when it succeeds.
54857         (print_errno_message) [!LIBC]: Fall back on strerror if
54858         __strerror_r fails.
54859
54860         * lib/path-concat.c (mempcpy): Don't define if a system header defines
54861         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
54862         (longest_relative_suffix): New function.
54863         (path_concat): Use it.  Assume first argument is not NULL.
54864         Port to DOS.  Omit redundant separators.
54865         Report an error instead of returning NULL.
54866         Use mempcpy instead of memcpy.
54867         (xpath_concat): Remove: not declared or used.
54868
54869         * lib/same.h: Include <stdbool.h>
54870         (same_name): Return bool, not int.
54871         * lib/same.c (same_name): Likewise.
54872         (errno): Don't declare; we assume C89 or better now.
54873
54874         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
54875         if not already defined.
54876
54877         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
54878         * lib/dup-safer.c (errno): Likewise.
54879
54880 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
54881
54882         Merge from coreutils.
54883         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
54884         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
54885         * modules/path-concat: Don't depend on strdup.
54886
54887 2004-08-03  Simon Josefsson  <jas@extundo.com>
54888
54889         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
54890         * lib/progname.h: Don't include stdbool.h.
54891
54892 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54893
54894         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
54895         * MODULES.html.sh (func_all_modules): Remove fatal.
54896
54897 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54898
54899         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
54900
54901 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
54902
54903         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
54904         working.
54905
54906 2004-08-02  Simon Josefsson  <jas@extundo.com>
54907
54908         * lib/getsubopt.h: New file, with comments from Bruno Haible.
54909         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
54910         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
54911
54912 2004-08-01  Simon Josefsson  <jas@extundo.com>
54913
54914         * lib/xgetdomainname.c: Include stdlib.h, for free().
54915
54916 2004-07-19  Bruno Haible  <bruno@clisp.org>
54917
54918         * MODULES.html.sh (func_all_modules): Add dummy.
54919
54920 2004-07-16  Simon Josefsson  <jas@extundo.com>
54921
54922         * modules/dummy: New file.
54923
54924 2004-07-16  Simon Josefsson  <jas@extundo.com>
54925
54926         * lib/dummy.c: New file.
54927
54928 2004-07-16  Bruno Haible  <bruno@clisp.org>
54929
54930         * lib/backupfile.h: Add extern "C" for C++.
54931         * lib/closeout.h: Likewise.
54932         * lib/copy-file.h: Likewise.
54933         * lib/findprog.h: Likewise.
54934         * lib/full-write.h: Likewise.
54935         * lib/pathname.h: Likewise.
54936         * lib/progname.h: Likewise.
54937         * lib/stpcpy.h: Likewise.
54938         * lib/stpncpy.h: Likewise.
54939         * lib/strcase.h: Likewise.
54940         * lib/strstr.h: Likewise.
54941         * lib/xalloc.h: Likewise.
54942
54943         * lib/mbswidth.h: Add extern "C" for C++.
54944         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
54945
54946 2004-07-13  Robert Millan  <robertmh@gnu.org>
54947
54948         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
54949
54950 2004-07-09  Simon Josefsson  <jas@extundo.com>
54951
54952         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
54953         failed without this.)
54954
54955 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
54956
54957         * modules/chown (Files): Add lib/fchown-stub.c, since
54958         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
54959
54960 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
54961
54962         * lib/fchown-stub.c: New file.
54963
54964 2004-06-24  Jim Meyering  <jim@meyering.net>
54965
54966         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
54967
54968 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54969
54970         * modules/argz: Omit "#include".
54971
54972         * MODULES.html.sh (func_all_modules): Add calloc, to match
54973         2004-06-01 addition of calloc module.
54974
54975 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54976
54977         * m4/argz.m4: New file, which is autoupdated from libtool.
54978
54979 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54980
54981         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
54982         libtool.
54983
54984 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
54985
54986         * config/srclist-update: Don't insist on "USA." before the
54987         close-comment, as libtool omits the period and puts the */ on a
54988         separate line.
54989         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
54990         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
54991
54992 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
54993
54994         * modules/argz: New file.
54995         * MODULES.html.sh (func_all_modules): Add argz.
54996
54997 2004-06-12  Jim Meyering  <jim@meyering.net>
54998         and  Paul Eggert  <eggert@cs.ucla.edu>
54999
55000         * modules/hash (Files): Add lib/xalloc.h.
55001         * modules/pipe (Depends-on): Add wait-process.
55002         * modules/stat (Depends-on): Add xalloc.
55003         * modules/userspec (Files): Add lib/userspec.h.
55004         * modules/xstrto
55005
55006         Upgrade from gettext-0.13.
55007         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
55008         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
55009         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
55010
55011 2004-06-10  Jim Meyering  <jim@meyering.net>
55012
55013         * lib/calloc.c: New file.
55014
55015 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
55016
55017         * lib/getdate.y (yylex): Allow space between sign and number.
55018         Problem reported by Dan Jacobson.
55019
55020 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
55021
55022         Merge from coreutils CVS.
55023
55024         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
55025         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
55026         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
55027         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
55028         xstrtol.m4: Fix copyright date and/or serial number.
55029
55030         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
55031         See if we need an fchown replacement.
55032         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
55033         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
55034         and use the replacement function if we detect either defect.
55035
55036         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
55037         gl_UTIMECMP.
55038
55039 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
55040         and  Jim Meyering  <jim@meyering.net>
55041
55042         Merge from coreutils CVS.
55043
55044         * lib/stat-macros.h: New file, with contents from file-type.h
55045         and coreutils' system.h.
55046         * lib/file-type.c: Include "stat-macros.h".
55047         * lib/file-type.h (file_type): Move all macro definitions to new file,
55048         stat-macros.h.
55049
55050         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
55051         Wrap old code with this conditional.
55052         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
55053         function that does not dereference symlinks.
55054         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
55055
55056         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
55057         dependency problems.
55058         (xreadlink): Accept new arg SIZE, for efficiency.
55059         All decls and uses changed.
55060         * lib/xreadlink.h: Include <stddef.h>, for size_t.
55061
55062         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
55063         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
55064
55065         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
55066         sysexits.h.
55067
55068 2004-06-01  Jim Meyering  <jim@meyering.net>
55069
55070         * m4/calloc.m4: New file.
55071
55072 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
55073
55074         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
55075         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
55076         Also, fix a typo in a diagnostic.
55077
55078 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55079
55080         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
55081         or AC_FUNC_REALLOC.
55082
55083 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55084
55085         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
55086         macros to be defined.
55087         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
55088         the allocator returns NULL because the requested size is zero.
55089
55090 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
55091
55092         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
55093         var.  Add comment explaining why libc still defines it.  This
55094         merges the following patch from glibc:
55095         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
55096
55097 2004-05-20  Andreas Schwab  <schwab@suse.de>
55098
55099         * m4/free.m4: Replace free if it not known to work, not the other
55100         way round.
55101
55102 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
55103
55104         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
55105         present in glibc since revision 1.1 of this file.
55106         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
55107         obstack_alignment_mask, obstack_alloc, obstack_base,
55108         obstack_blank, obstack_blank_fast, obstack_chunk_size,
55109         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
55110         obstack_grow0, obstack_init, obstack_int_grow,
55111         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
55112         obstack_next_free, obstack_object_size, obstack_ptr_grow,
55113         obstack_ptr_grow_fast, obstack_room): Remove declarations of
55114         nonexistent functions.
55115
55116 2004-05-18  Karl Berry  <karl@gnu.org>
55117
55118         * config/srclist.txt: break link for vasnprintf.c.
55119
55120 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55121
55122         Port obstack to the AS/400, where pointers are 16 bytes wide and
55123         you cannot cast an integer to a valid pointer.  This patch is
55124         currently waiting to be integrated into glibc; see
55125         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
55126
55127         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
55128         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
55129         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
55130         (struct obstack): temp member is now a union of a pointer and
55131         an integer, instead of an integer.  All integer uses changed.
55132         This does not affect the physical layout of struct obstack,
55133         except on hosts (like the AS/400) where the size or alignment of
55134         void * is greater than that of ptrdiff_t.
55135         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
55136         __STDC__)]: Store temporary in pointer member of union, not
55137         integer member.
55138         * lib/obstack.c: Include <stddef.h>, for offsetof.
55139         (struct fooalign): Remove; it doesn't need a name.
55140         (union fooround): Change double to long double, and add void *.
55141         (DEFAULT_ALIGNMENT): Use offsetof to compute.
55142         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
55143         not a macro.  Hence the values are always int; so remove all
55144         casts-to-int in uses.
55145
55146 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55147
55148         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
55149         we can get this patch merged into glibc.
55150
55151 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55152             Paul Eggert  <eggert@cs.ucla.edu>
55153
55154         * m4/argp: Depend on alloca.
55155
55156 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55157             Paul Eggert  <eggert@cs.ucla.edu>
55158
55159         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
55160         freecoding.
55161
55162 2004-05-17  Bruno Haible  <bruno@clisp.org>
55163
55164         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
55165         precision that consists of a '.' followed by an empty digit string.
55166         Patch by Tor Lillqvist <tml@iki.fi>.
55167
55168 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55169
55170         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
55171         for backward compatibility with older code.  We need our own
55172         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
55173         it under some other name, and our alloca.h will define it.
55174
55175 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55176             Derek Price  <derek@ximbiot.com>
55177
55178         * lib/alloca.c: Include <alloca.h>, to get our interface.
55179         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
55180         include <alloca.h> first.  Use C89 prototype for alloca; this
55181         requires including <stddef.h> for size_t.  Use extern "C" if C++.
55182         Use #elif for simplicity, since we can assume C89 now.
55183         Don't try to source the system alloca.h since it will not be found
55184         and to prevent recursively including its replacement.
55185         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
55186         * lib/regex.c: Likewise.
55187
55188 2004-05-16  Derek Price  <derek@ximbiot.com>
55189             Paul Eggert  <eggert@cs.ucla.edu>
55190
55191         getline cleanup.  This changes the getndelim2 API: both order of
55192         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
55193         no delimiter).
55194
55195         * lib/getline.c: Don't include stddef.h or stdio.h, since our
55196         interface does that.
55197         (getline): Always use getdelim, so that we don't have two
55198         copies of this code.
55199         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
55200         if available.
55201         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
55202         (GETNDELIM2_MAXIMUM): New macro.
55203         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
55204         instead of the old practice of delim2==0.  All callers changed.
55205         Return -1 on overflow, instead of returning junk.
55206         Do not set *linesize unless allocation succeeds.
55207         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
55208         that we include sys/types.h.
55209         * lib/getnline.h: Likewise.
55210         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
55211         (getndelim2): Reorder arguments.
55212         * lib/getnline.c (getnline, getndelim):
55213         Don't discard the NMAX argument.
55214         (getnline): Invoke getndelim, to avoid code duplication.
55215         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
55216         of (size_t) -1 by callers of the getnline family.
55217
55218 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55219
55220         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
55221         Check for gettimeofday.
55222         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
55223         Check for settimeofday, stime.
55224
55225 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55226
55227         * lib/nanosleep.c (suspended): Change its type from int to
55228         sig_atomic_t volatile.
55229         (first_call): Make it private to rpl_nanosleep, and have it
55230         be zero initially as that's a bit faster.
55231         (my_usleep): Round up fractional times instead of truncating them,
55232         as this is the usual meaning for 'sleep'.
55233
55234         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
55235         doesn't work.
55236         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
55237         (ENOSYS): Define if not defined.
55238         (settime): Fall back on stime if it exists and settimeofday fails.
55239         But don't bother with fallbacks if a method fails with errno == EPERM.
55240
55241 2004-05-11  Jim Meyering  <jim@meyering.net>
55242
55243         Prior to this change, the save_cwd caller required read access to the
55244         current directory on most systems (ones with the fchdir function).
55245
55246         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
55247         fails, try write-only, and finally, resort to using xgetcwd.
55248
55249 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
55250
55251         * lib/obstack.c, obstack.h: Import changes from libc.
55252
55253 2004-04-28  Bruno Haible  <bruno@clisp.org>
55254
55255         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
55256         also implicitly appends .exe to executables.
55257         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
55258         accepts Windows pathnames.
55259         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55260         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55261         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55262         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55263         Reported by Derek Robert Price <derek@ximbiot.com>.
55264
55265 2004-04-21  Karl Berry  <karl@gnu.org>
55266
55267         * config/srclist.txt (localcharset.c): break sync.
55268
55269 2004-04-20  Paul Eggert  <eggert@twinsun.com>
55270
55271         * m4/host-os.m4: Add a copyright notice.
55272
55273 2004-04-20  Jim Meyering  <jim@meyering.net>
55274
55275         Change UTILS_ to gl_ in AC_DEFINE'd names.
55276         Change utils_- and jm_-prefixed variables, too.
55277         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
55278         UTILS_FUNC_MKDIR_TRAILING_SLASH.
55279         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
55280
55281         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
55282         Don't emit trailing blanks.
55283         Also rename jm_-prefixed variables to have gl_ prefix.
55284
55285         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
55286         Also rename jm_-prefixed variables to have gl_ prefix.
55287
55288         * m4/jm-macros.m4: Reflect the renamings.
55289         * m4/prereq.m4: Likewise.
55290
55291 2004-04-20  Jim Meyering  <jim@meyering.net>
55292
55293         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
55294         memory.
55295
55296 2004-04-20  Jim Meyering  <jim@meyering.net>
55297             Bruno Haible  <bruno@clisp.org>
55298
55299         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
55300         memory when realloc fails.
55301
55302 2004-04-19  Jim Meyering  <jim@meyering.net>
55303
55304         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
55305         now that readutmp.c may call `free (0)'.
55306
55307 2004-04-19  Bruno Haible  <bruno@clisp.org>
55308
55309         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
55310         * m4/inttypes_h.m4: Likewise.
55311         * m4/stdint_h.m4: Likewise.
55312         * m4/intmax_t.m4: Likewise.
55313         * m4/uintmax_t.m4: Likewise.
55314
55315 2004-04-18  Jim Meyering  <jim@meyering.net>
55316
55317         * m4/prereq.m4: Don't forbid jm_ prefix.
55318
55319         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
55320         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
55321         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
55322         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
55323         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
55324         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
55325         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
55326         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
55327         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
55328         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
55329         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
55330         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
55331         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
55332         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
55333         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
55334         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
55335         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
55336         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
55337         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
55338
55339 2004-04-18  Jim Meyering  <jim@meyering.net>
55340
55341         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
55342         failure, don't leak memory and do call END_UTMP_ENT.
55343
55344 2004-04-16  Jim Meyering  <jim@meyering.net>
55345
55346         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
55347         coreutils' stat program.
55348         (gl_PREREQ): Don't require jm_PREREQ_STAT.
55349
55350 2004-04-11  Paul Eggert  <eggert@twinsun.com>
55351
55352         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
55353         C89.
55354         (CHAR_BIT): Remove, since we assume C89.
55355         Include <stdint.h> if available, as per current Autoconf CVS advice.
55356
55357 2004-03-31  Jim Meyering  <jim@meyering.net>
55358
55359         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
55360         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
55361         * m4/xalloc.m4: Likewise.
55362
55363 2004-03-30  Paul Eggert  <eggert@twinsun.com>
55364
55365         Merge from coreutils.
55366
55367         * m4/inttostr.m4: New file.
55368         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
55369         Require AM_STDBOOL_H and gl_TIMESPEC instead.
55370         Require gl_CLOCK_TIME.
55371         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
55372
55373 2004-03-30  Paul Eggert  <eggert@twinsun.com>
55374
55375         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
55376         not bool, to be more consistent with Unix conventions.
55377         Suggested by Bruno Haible.
55378
55379         Merge from coreutils.
55380
55381         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
55382         * lib/umaxtostr.c: New files.
55383
55384         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
55385         the usual <time.h> dance.
55386         (get_date): Change signature to support fractional time stamps.
55387         All callers changed.
55388         * lib/getdate.y: Include "getdate.h" first, as we can now
55389         assume C89 and don't need to worry about 'const'.
55390         Similarly, include "unlocked-io.h" near start, not in middle.
55391         Include <limits.h>.
55392         (textint.value): Use long int rather than int.
55393         (textint.digits): Use size_t rather than int.
55394         (BILLION, LOG10_BILLION): New constants.
55395         (parser_control): New member rel_ns.  Members day_ordinal,
55396         time_zone, month, day, hour, minutes, rel_year, rel_month,
55397         rel_day, rel_hour, rel_minutes, rel_seconds
55398         are now long int, not int.  Member seconds is now struct timespec,
55399         not int.  New member timespec_seen.  Members dates_seen, days_seen,
55400         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
55401         not int.
55402         (%union.intval): Now long int, not int.
55403         New member timespec.
55404         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
55405         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
55406         (spec): Now is a timespec or an item list.
55407         (timespec, items): New nonterminals.
55408         (time, rel, relunit, number, get_date):
55409         Add support for fractional seconds.
55410         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
55411         (gmtime, localtime, mktime): Remove decls; not needed with C89.
55412         (to_hour): First arg is now long int, not int.
55413         (to_year): Returns long int, not int.
55414         Don't treat year -70 like 70.
55415         (tm_diff): Returns long int, not int.
55416         (lookup_word): Use bool instead of int when appropriate.
55417         (yylex): Use size_t for count, not int.
55418         Detect overflow when parsing large integer constants.
55419         Add support for fractions.
55420         (get_date): Make pointers 'const' if possible.
55421         Use more-portable code to detect integer overflow.
55422         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
55423         Don't use ctime; it's not reliable if the year has >4 digits.
55424
55425         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
55426         This is for compatibility with BSD.
55427
55428         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
55429         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
55430         From coreutils' system.h.
55431
55432         * lib/userspec.c: Don't include "posixver.h".
55433         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
55434         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
55435         compatible extension.  Simplify code by removing a boolean int
55436         that was always nonzero if a string was nonnull.
55437
55438 2004-03-30  Jim Meyering  <jim@meyering.net>
55439
55440         Merge from coreutils.
55441
55442         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
55443         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
55444         on some systems one must include <grp.h> before it.
55445         Reported by Christian Krackowizer.
55446
55447 2004-03-30  Jim Meyering  <jim@meyering.net>
55448
55449         Merge from coreutils.
55450
55451         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
55452
55453         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
55454         an empty input stream.
55455
55456         * lib/readtokens.c: Include <stdbool.h>.
55457         (readtoken): Use `size_t' rather than int/long.
55458         All callers adjusted.
55459         Use `bool' rather than `int' where appropriate.
55460         Use memset rather than an explicit loop.
55461         Use x2nrealloc rather than xrealloc.
55462         Allow the use of `\0' as a delimiter.
55463         (readtokens): Likewise.
55464         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
55465
55466 2004-03-30  Jim Meyering  <jim@meyering.net>
55467
55468         * m4/realloc.m4: Remove file, since now it does no more than
55469         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
55470         the `configure.ac' section of module/realloc.
55471         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
55472
55473 2004-03-30  Bruno Haible  <bruno@clisp.org>
55474
55475         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
55476         nonnull.
55477
55478 2004-03-29  Paul Eggert  <eggert@twinsun.com>
55479
55480         Merge changes to getloadavg.c from coreutils and Emacs.
55481
55482         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
55483         Define to an expression, not to the empty string.
55484         Include cloexec.h and xalloc.h.
55485         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
55486         Use set_cloexec_flag rather than rolling our own.
55487         * lib/cloexec.c, lib/cloexec.h: New files.
55488
55489 2004-03-29  Paul Eggert  <eggert@twinsun.com>
55490
55491         * m4/cloexec.m4: New file.
55492
55493 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55494
55495         * lib/getopt.h: Sync with libc CVS.
55496
55497 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55498             Bruno Haible  <bruno@clisp.org>
55499
55500         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
55501         mbswidth.
55502
55503 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55504             Bruno Haible  <bruno@clisp.org>
55505
55506         * lib/mbswidth.h: Include <wchar.h> only if
55507         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
55508         <wchar.h>.
55509         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
55510
55511 2004-03-09  Paul Eggert  <eggert@twinsun.com>
55512
55513         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
55514         Sync with libc CVS.
55515         * lib/getopt_int.h: New file, also synced from libc.
55516
55517 2004-03-09  Paul Eggert  <eggert@twinsun.com>
55518
55519         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
55520         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
55521         Bring back getopt.c, getopt.h, getopt1.c.
55522
55523 2004-03-07  Paul Eggert  <eggert@twinsun.com>
55524
55525         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
55526         All uses changed.  Check for sa_sigaction member; this fixes
55527         a bug first reported by Jason Andrade in
55528         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
55529
55530 2004-03-07  Paul Eggert  <eggert@twinsun.com>
55531
55532         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
55533         '#if' expressions.  Unlike the code it replaces, it does not
55534         depend on (defined _SC_PAGESIZE).  However, it does depend on
55535         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
55536         first reported by Jason Andrade in
55537         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
55538
55539 2004-02-25  Simon Josefsson  <jas@extundo.com>
55540
55541         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
55542
55543 2004-02-25  Simon Josefsson  <jas@extundo.com>
55544
55545         * lib/strdup.h: New file.
55546         * lib/strdup.c: Include it.
55547         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
55548         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
55549
55550 2004-02-23  Karl Berry  <karl@gnu.org>
55551
55552         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
55553         (from fencepost.gnu.org:/gd/gnuorg).
55554
55555 2004-02-23  Karl Berry  <karl@gnu.org>
55556
55557         * config/srclistvars.sh (GNUORG) [karl]: redefine.
55558         * config/srclist.txt: add maintain/standards documents.
55559
55560 2004-02-18  Bruno Haible  <bruno@clisp.org>
55561
55562         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
55563         Reported by Derek Robert Price <derek@ximbiot.com>.
55564
55565 2004-02-16  Karl Berry  <karl@gnu.org>
55566
55567         * config/mkinstalldirs, install-sh: update from automake.
55568
55569 2004-02-06  Karl Berry  <karl@gnu.org>
55570
55571         * m4/po.m4: update from gettext 0.14.1.
55572
55573 2004-02-06  Karl Berry  <karl@gnu.org>
55574
55575         * lib/config.charset: update from gettext 0.14.1.
55576
55577 2004-02-05  Paul Eggert  <eggert@twinsun.com>
55578
55579         Add comments and code, prompted by suggestions from Bruno Haible
55580         for sh-quote.
55581         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
55582         describing the enum quoting_style values.
55583         * lib/quotearg.c (quotearg_alloc): New function.
55584         (quotearg_buffer_restyled): Treat lone { and } as special.
55585         Treat = as special.  Work around bug with older shells
55586         that "see" a '\' that is really the 2nd byte of a multibyte char.
55587         Quote empty string with shell_quoting_style.
55588
55589 2004-02-03  Bruno Haible  <bruno@clisp.org>
55590
55591         * m4/pipe.m4: New file, from GNU gettext.
55592
55593 2004-02-03  Bruno Haible  <bruno@clisp.org>
55594
55595         * lib/pipe.h: New file, from GNU gettext.
55596         * lib/pipe.c: New file, from GNU gettext.
55597
55598 2004-01-27  Bruno Haible  <bruno@clisp.org>
55599
55600         * m4/execute.m4: New file, from GNU gettext.
55601
55602 2004-01-27  Bruno Haible  <bruno@clisp.org>
55603
55604         * lib/execute.h: New file, from GNU gettext.
55605         * lib/execute.c: New file, from GNU gettext.
55606         * lib/w32spawn.h: New file, from GNU gettext.
55607
55608 2004-01-24  Paul Eggert  <eggert@twinsun.com>
55609
55610         Merge from diffutils.
55611
55612         * lib/file-type.c (file_type): Add typed memory objects.
55613         * lib/file-type.h (S_TYPEISTMO): New macro.
55614
55615         * lib/c-stack.h (c_stack_action): Remove argv argument.
55616         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
55617         (die): Don't calculate message unless segv_action returns.
55618         (get_stack_location, min_address_from_argv, max_address_from_argv,
55619         volatile stack_base, volatile_stack_size): Remove.
55620         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
55621         that every segmentation violation is a stack overflow.  (Ouch!)
55622         See Debian bug 136249 (still outstanding) for more info about why
55623         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
55624
55625 2004-01-24  Paul Eggert  <eggert@twinsun.com>
55626
55627         Exit-status fix from coreutils.
55628
55629         Use exit_failure consistently in place of EXIT_FAILURE,
55630         so that program exit statuses are consistent on failure.
55631
55632         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
55633         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
55634         * lib/argmatch.h: Comment fix to match the above.
55635         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
55636         Now a macro referring to exit_failure, instead of a separate
55637         variable.  Include "exitfail.h" to get it.
55638         * lib/xstrtol.h: Include "exitfail.h".
55639         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
55640
55641         * lib/long-options.c (parse_long_options): Use prototype
55642         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
55643         for clarity.
55644
55645 2004-01-21  Jim Meyering  <jim@meyering.net>
55646
55647         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
55648         so as not to conflict with a different-sized __mktime_internal
55649         function in GNU libc.
55650         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
55651         Problem building statically-linked `ls' reported by Michael Brunnbauer.
55652
55653 2004-01-20  Karl Berry  <karl@gnu.org>
55654
55655         * config/config.guess: update from config.
55656
55657         * config/srclistvars.sh: GNUWWWLICENSES for karl.
55658
55659 2004-01-20  Bruno Haible  <bruno@clisp.org>
55660
55661         Safer stack allocation.
55662         * lib/setenv.c: Include allocsa.h.
55663         (alloca): Remove fallback definition.
55664         (freea): Remove macro.
55665         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
55666         instead of freea.
55667
55668 2004-01-20  Bruno Haible  <bruno@clisp.org>
55669
55670         * m4/eealloc.m4: New file, from GNU gettext.
55671
55672 2004-01-20  Bruno Haible  <bruno@clisp.org>
55673
55674         * m4/allocsa.m4: New file, from GNU gettext.
55675
55676 2004-01-20  Bruno Haible  <bruno@clisp.org>
55677
55678         * lib/xallocsa.h: New file, from GNU gettext.
55679         * lib/xallocsa.c: New file, from GNU gettext.
55680
55681 2004-01-20  Bruno Haible  <bruno@clisp.org>
55682
55683         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
55684
55685 2004-01-20  Bruno Haible  <bruno@clisp.org>
55686
55687         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
55688         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
55689         specially.
55690
55691 2004-01-20  Bruno Haible  <bruno@clisp.org>
55692
55693         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
55694         patch.
55695
55696 2004-01-20  Bruno Haible  <bruno@clisp.org>
55697
55698         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
55699
55700 2004-01-20  Bruno Haible  <bruno@clisp.org>
55701
55702         * lib/eealloc.h: New file.
55703
55704 2004-01-20  Bruno Haible  <bruno@clisp.org>
55705
55706         * lib/binary-io.h: Avoid warnings on Cygwin.
55707
55708 2004-01-20  Bruno Haible  <bruno@clisp.org>
55709
55710         * lib/allocsa.h: New file, from GNU gettext.
55711         * lib/allocsa.c: New file, from GNU gettext.
55712
55713 2004-01-18  Karl Berry  <karl@gnu.org>
55714
55715         * doc/gpl.texi, doc/lgpl.texi: new files.
55716
55717 2004-01-18  Karl Berry  <karl@gnu.org>
55718
55719         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
55720         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
55721
55722 2004-01-15  Paul Eggert  <eggert@twinsun.com>
55723
55724         Merge from coreutils.
55725
55726         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
55727         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
55728         (gl_DEFAULT_POSIX2_VERSION): Move
55729         the documentation from 'configure' into 'config.hin',
55730         so that 'configure --help' isn't burdened by it and
55731         we don't have to worry about its formatting there.
55732         Reword the documentation so that it's more succinct
55733         and can be run together into a single paragraph.
55734         * m4/same.m4 (gl_SAME): Check for pathconf.
55735
55736 2004-01-15  Paul Eggert  <eggert@twinsun.com>
55737
55738         Merge from coreutils.
55739
55740         * lib/posixver.c: Include posixver.h.
55741
55742         * lib/same.c: Include <stdbool.h>, <limits.h>.
55743         (_POSIX_NAME_MAX): Define if not defined.
55744         (MIN): New macro.
55745         (same_name): If file names are silently truncated, report
55746         that the file names are the same if they are the same after
55747         the silent truncation.
55748
55749         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
55750         conversion function.
55751         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
55752         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
55753         longer needed.
55754
55755 2004-01-15  Jim Meyering  <jim@meyering.net>
55756
55757         Merge from coreutils.
55758
55759         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
55760         if no library is required.
55761         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
55762         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
55763         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
55764         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
55765         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
55766         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
55767         value, $ac_cv_search_crypt, if it's "none required".
55768         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
55769         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
55770         not gl_FUNC_GETLOADAVG.
55771         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
55772         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
55773
55774 2004-01-15  Jim Meyering  <jim@meyering.net>
55775
55776         Merge from coreutils.
55777
55778         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
55779         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
55780         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
55781
55782         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
55783         optional configure-time default.
55784
55785         * lib/version-etc.c (version_etc_copyright): Update copyright date.
55786
55787         * lib/xreadlink.c (xreadlink): Correct outdated comment.
55788
55789 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
55790
55791         Merge from coreutils.
55792
55793         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
55794         value, $ac_cv_search_nanosleep, if it's "none required".
55795
55796 2004-01-14  Paul Eggert  <eggert@twinsun.com>
55797
55798         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
55799         with like-named macro in fnmatch.c.
55800         (EXT): Use an internal constant instead.
55801
55802         Merge fnmatch patches from glibc.
55803         * lib/fnmatch.c (mbsinit): Remove define.
55804         Add libc_hidden_ver (__fnmatch, fnmatch).
55805         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
55806         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
55807
55808 2004-01-14  Karl Berry  <karl@gnu.org>
55809
55810         * config/install-sh: update from automake.
55811
55812 2004-01-13  Karl Berry  <karl@gnu.org>
55813
55814         * config/install-sh: update from automake.
55815
55816 2004-01-09  Karl Berry  <karl@gnu.org>
55817
55818         * config/install-sh: update from automake.
55819
55820 2004-01-05  Karl Berry  <karl@gnu.org>
55821
55822         * config/config.{sub,guess}: update from config.
55823
55824 2003-12-31  Karl Berry  <karl@gnu.org>
55825
55826         * config/depcomp: update from automake.
55827
55828 2003-12-14  Karl Berry  <karl@gnu.org>
55829
55830         * lib/config.charset: update from gettext-runtime.
55831
55832 2003-12-03  Paul Eggert  <eggert@twinsun.com>
55833
55834         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
55835         Bug reported by Alfred M. Szmidt.
55836
55837 2003-12-03  Bruno Haible  <bruno@clisp.org>
55838
55839         * m4/gettext.m4: Upgrade from gettext-0.13.
55840         * m4/po.m4: Upgrade from gettext-0.13.
55841         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
55842         * m4/intmax.m4: New file, from gettext-0.13.
55843         * m4/printf-posix.m4: New file, from gettext-0.13.
55844
55845 2003-11-29  Karl Berry  <karl@gnu.org>
55846
55847         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
55848
55849 2003-11-25  Paul Eggert  <eggert@twinsun.com>
55850             Bruno Haible  <bruno@clisp.org>
55851
55852         * lib/printf-parse.h: Don't include sys/types.h.
55853         (ARG_NONE): New macro.
55854         (char_directive): Change type of *arg_index fields to size_t.
55855         * lib/printf-parse.c: Don't include sys/types.h.
55856         (SSIZE_MAX): Remove macro.
55857         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
55858         Remove unnecessary overflow check.
55859         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
55860         fields.
55861
55862 2003-11-25  Bruno Haible  <bruno@clisp.org>
55863
55864         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
55865
55866 2003-11-25  Bruno Haible  <bruno@clisp.org>
55867
55868         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
55869         gt_TYPE_SSIZE_T.
55870
55871 2003-11-24  Paul Eggert  <eggert@twinsun.com>
55872
55873         * modules/alloca: Remove dependency on xalloc.
55874
55875 2003-11-24  Paul Eggert  <eggert@twinsun.com>
55876
55877         * lib/alloca.c: Remove dependency on xalloc module.
55878         (xalloc_die): Remove.
55879         (memory_full) [!defined emacs]: New macro.
55880         [!defined emacs]: Don't include xalloc.h.
55881         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
55882         address arithmetic overflows.  Change datatypes a bit to avoid
55883         unnecessary casts.
55884
55885 2003-11-22  Jim Meyering  <jim@meyering.net>
55886
55887         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
55888         s/size/size_t/.
55889
55890 2003-11-21  Karl Berry  <karl@gnu.org>
55891
55892         * config/config.{sub,guess}: update from config.
55893
55894 2003-11-18  Karl Berry  <karl@gnu.org>
55895
55896         * config/config.{sub,guess}: update from config.
55897
55898         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
55899
55900 2003-11-17  Paul Eggert  <eggert@twinsun.com>
55901
55902         * README: Mention that S+T cannot overflow if S is the size of
55903         an existing object and T is sufficiently small.
55904
55905 2003-11-17  Jim Meyering  <jim@meyering.net>
55906
55907         On systems without utime and without a utimes function capable of
55908         dealing with a NULL struct utimbuf* argument, this utime replacement
55909         could -- in unusual circumstances -- leak a file descriptor.
55910         * lib/utime.c: Include <unistd.h> and <errno.h>.
55911         (utime_null): Be sure to close `fd' and to preserve errno.
55912         Reported by Geoff Collyer via Arnold Robbins.
55913
55914 2003-11-17  Bruno Haible  <bruno@clisp.org>
55915
55916         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
55917         (Depends-on): Add xsize.
55918
55919 2003-11-17  Bruno Haible  <bruno@clisp.org>
55920
55921         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
55922
55923 2003-11-17  Bruno Haible  <bruno@clisp.org>
55924
55925         * lib/vasnprintf.c (alloca): Remove fallback definition.
55926         (freea): Remove definition.
55927         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
55928         Reported by Paul Eggert.
55929
55930 2003-11-16  Paul Eggert  <eggert@twinsun.com>
55931             Bruno Haible  <bruno@clisp.org>
55932
55933         Protect against address arithmetic overflow.
55934         * lib/printf-args.h: Include stddef.h.
55935         (arguments): Change type of field 'count' to size_t.
55936         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
55937         'unsigned int' where appropriate.
55938         * lib/printf-parse.h: Include sys/types.h.
55939         (char_directive): Change type of *arg_index fields to ssize_t.
55940         (char_directives): Change type of fields 'count', max_*_length to
55941         size_t.
55942         * lib/printf-parse.c: Include sys/types.h and xsize.h.
55943         (SSIZE_MAX): Define fallback value.
55944         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
55945         instead of 'int' where appropriate. Check a_allocated, d_allocated
55946         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
55947         * lib/vasnprintf.c: Include xsize.h.
55948         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
55949         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
55950         overflow. Avoid wraparound when converting a width or precision from
55951         decimal to binary.
55952
55953 2003-11-16  Bruno Haible  <bruno@clisp.org>
55954
55955         Update from GNU gettext.
55956         * lib/printf-parse.c: Generalize to it can be compiled for wide
55957         strings.
55958         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
55959         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
55960         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
55961         SNPRINTF): New macros.
55962         Don't include <alloca.h> if the file is used inside libintl.
55963         (local_wcslen): New function, for Solaris 2.5.1.
55964         (VASNPRINTF): Use it instead of wcslen.
55965
55966 2003-11-16  Bruno Haible  <bruno@clisp.org>
55967
55968         * lib/xsize.h (xmax): New function.
55969         (xsum, xsum3, xsum4): Declare as "pure" functions.
55970
55971 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55972
55973         * modules/xalloc (Files): Undo latest change, since xalloc.h
55974         no longer needs SIZE_MAX or PTRDIFF_MAX.
55975
55976 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55977
55978         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
55979         gl_PTRDIFF_MAX.
55980
55981 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55982
55983         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
55984         "return", to pacify some unknown compiler.  Problem reported
55985         by Joerg Schilling.
55986
55987 2003-11-12  Paul Eggert  <eggert@twinsun.com>
55988
55989         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
55990         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
55991         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
55992         heuristic is just as accurate as far as we know, and it removes a
55993         dependency on size_max.m4 and ptrdiff_max.m4.
55994
55995 2003-11-11  Bruno Haible  <bruno@clisp.org>
55996
55997         * modules/xsize (Files): Add m4/size_max.m4.
55998         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
55999
56000 2003-11-11  Bruno Haible  <bruno@clisp.org>
56001
56002         * m4/size_max.m4: New file.
56003         * m4/ptrdiff_max.m4: New file.
56004         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
56005         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
56006         (gl_XALLOC): Invoke it.
56007
56008 2003-11-11  Bruno Haible  <bruno@clisp.org>
56009
56010         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
56011         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
56012         defined.
56013
56014 2003-11-10  Paul Eggert  <eggert@twinsun.com>
56015
56016         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
56017         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
56018         rejected some allocations of exactly SIZE_MAX - 2 bytes.
56019         From Bruno Haible.
56020         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
56021         not (size_t) -1, since it's defined here.
56022
56023 2003-11-09  Karl Berry  <karl@gnu.org>
56024
56025         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
56026
56027 2003-11-06  Paul Eggert  <eggert@twinsun.com>
56028
56029         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
56030         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
56031         Reject sizes of exactly SIZE_MAX bytes.
56032         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
56033         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
56034
56035 2003-11-05  Bruno Haible  <bruno@clisp.org>
56036
56037         * lib/xsize.h: Include limits.h, to avoid a possible collision with
56038         SIZE_MAX defined in <limits.h> on Solaris.
56039
56040 2003-11-04  Jim Meyering  <jim@meyering.net>
56041
56042         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
56043         variable names, rather than @VAR@.
56044         * modules/poll: Likewise.
56045
56046 2003-11-04  Bruno Haible  <bruno@clisp.org>
56047
56048         * modules/xsize: New file.
56049         * modules/linebreak: Depend on xsize.
56050         * MODULES.html.sh (func_all_modules): Add xsize.
56051
56052 2003-11-04  Bruno Haible  <bruno@clisp.org>
56053
56054         * m4/xsize.m4: New file.
56055
56056 2003-11-04  Bruno Haible  <bruno@clisp.org>
56057
56058         * lib/xsize.h: New file.
56059         * lib/linebreak.c: Include xsize.h.
56060         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
56061         argument for overflow.
56062         Suggested by Paul Eggert.
56063
56064 2003-11-03  Karl Berry  <karl@gnu.org>
56065
56066         * config/config.{guess,sub}: update from config.
56067
56068 2003-11-03  Jim Meyering  <jim@meyering.net>
56069
56070         * modules/userspec (lib_SOURCES): Add userspec.h.
56071         (Include): Add "userspec.h".
56072         Improve description.
56073
56074 2003-11-03  Jim Meyering  <jim@meyering.net>
56075
56076         * lib/userspec.c: Include "userspec.h".
56077         * lib/userspec.h: New file.
56078
56079 2003-11-03  Bruno Haible  <bruno@clisp.org>
56080
56081         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
56082
56083 2003-11-03  Bruno Haible  <bruno@clisp.org>
56084
56085         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
56086         available, to avoid (extremely rare) race condition.
56087         Suggested by Paul Eggert.
56088
56089 2003-11-02  Karl Berry  <karl@gnu.org>
56090
56091         * config/srclist.txt (vasprintf.c): sync broken, sigh.
56092
56093 2003-10-31  Paul Eggert  <eggert@twinsun.com>
56094
56095         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
56096         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
56097         (read_filesystem_list): Set and use me_type_malloced.
56098         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
56099         whatever the type happens to be), for brevity and consistency.
56100         Check for size calculation overflow on Alphas running OSF/1.
56101
56102 2003-10-31  Jim Meyering  <jim@meyering.net>
56103
56104         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
56105
56106         * lib/linebuffer.c: Include <string.h> for declaration of memset.
56107
56108 2003-10-30  Paul Eggert  <eggert@twinsun.com>
56109             Bruno Haible  <bruno@clisp.org>
56110
56111         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
56112         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
56113
56114 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
56115
56116         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
56117         netbsd*-gnu*.  Suggested by Robert Millan.
56118
56119 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56120
56121         * modules/group-member: Depend on stdbool.
56122
56123 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56124
56125         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
56126
56127 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56128
56129         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
56130         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
56131         after the 'gnu' in these cases.  This fixes some bugs in the
56132         previous change, and is based on suggestions by Robert Millan.
56133
56134 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56135
56136         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
56137         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
56138         no longer needed.
56139         * lib/quotearg.c (quotearg_n_options): Use it.
56140         * lib/group-member.c: Include <stdbool.h>.
56141         (free_group_info): Arg is now const *; don't free arg.
56142         (get_group_info): Now returns bool and accepts struct group_info *,
56143         rather than returning a malloc'ed struct group_info *.
56144         All uses changed.  Check for overflow in internal size calculation.
56145
56146         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
56147         rather than xmalloc/xrealloc.
56148         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
56149         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
56150         conformance bug: the old code used a pointer after freeing the
56151         storage that it addressed.
56152         * lib/hash.c (hash_initialize): Simplify the code by using
56153         xalloc_oversized rather than doing it by hand.
56154         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
56155         the buffer preserved.  Use free and xmalloc instead.
56156         * lib/quotearg.c (quotearg_n_options): Likewise.
56157         Use a simpler test for size overflow.  Don't use xalloc_oversized
56158         because unsigned int might be wider than size_t (!); this suggests
56159         that we should switch from unsigned int to size_t for slot numbers.
56160
56161 2003-10-28  Paul Eggert  <eggert@twinsun.com>
56162
56163         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
56164         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
56165         NetBSD kernels.  Requested by Richard Stallman.
56166
56167 2003-10-27  Paul Eggert  <eggert@twinsun.com>
56168
56169         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
56170         to allocate the returned structure.  Do not allocate a subarray,
56171         as x2nrealloc will do that.
56172         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
56173         instead of xnrealloc.
56174         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
56175
56176 2003-10-27  Bruno Haible  <bruno@clisp.org>
56177
56178         * lib/stdbool_.h: Better support for BeOS.
56179
56180 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56181
56182         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
56183         now uses inline.
56184
56185 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56186
56187         * lib/xalloc.h (xalloc_oversized): New static inline function, for
56188         callers that want to do their own size-overflow checking.  Include
56189         <stdbool.h>, since xalloc_oversized returns bool.
56190         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
56191         to use xalloc_oversized.
56192
56193         Add two functions x2realloc, x2nrealloc, for programs that grow
56194         arrays dynamically by doubling their sizes.
56195         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
56196         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
56197         New functions.
56198
56199         Port to C99 semantics for 'inline' of external functions.
56200         Bug reported by Bruno Haible.
56201         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
56202         with the old contents of xnmalloc.
56203         (xnmalloc, xmalloc): Use it.
56204         (xnrealloc_inline): New static inline function,
56205         with the old contents of xnrealloc.
56206         (xnrealloc, xrealloc): Use it.
56207
56208         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
56209         that.
56210
56211 2003-10-26  Karl Berry  <karl@gnu.org>
56212
56213         * config/srclist.txt (COPYING.DOC): no longer available from
56214         /gd/gnuorg; don't know where the ultimate source is.
56215
56216 2003-10-25  Paul Eggert  <eggert@twinsun.com>
56217
56218         Fix several address-calculation bugs in the hash modules,
56219         plus some minor code cleanup.
56220
56221         * lib/hash.h: Include <stdbool.h>, for bool.
56222         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
56223         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
56224         hash_get_n_entries, hash_get_max_bucket_length,
56225         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
56226         hash_rehash): Use size_t rather than unsigned.
56227         * lib/hash.c (struct hash_table, hash_get_n_buckets,
56228         hash_get_n_buckets_used, hash_get_n_entries,
56229         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
56230         hash_get_entries, hash_do_for_each, hash_string, is_prime,
56231         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
56232         Likewise.
56233         (SIZE_MAX): Define if not defined.
56234         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
56235         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
56236         hash_print):
56237         Use const * when possible.
56238         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
56239         (check_tuning): Fix bug: if tuning parameters were very close to
56240         0 or 1, rounding errors could have caused subscript violations.
56241         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
56242         (hash_initialize): Add 'fail:' label
56243         to free table and return NULL, and use it to simplify code.
56244         Use calloc rather than clearing the storage ourself.
56245         (hash_initialize, hash_rehash): Check for arithmetic overflow in
56246         buffer size calculations.
56247         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
56248         Include <stddef.h>, for size_t.
56249         * lib/hash-pjw.c (hash_pjw): Likewise.
56250         Switch to method described by Bruno Haible.
56251         Include <limits.h>, for CHAR_BIT.
56252         (SIZE_BITS): New macro.
56253
56254 2003-10-23  Paul Eggert  <eggert@twinsun.com>
56255
56256         * m4/getline.m4 (AM_FUNC_GETLINE):
56257         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
56258         hosts.  Problem reported by Derek Robert Price in
56259         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
56260         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
56261         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
56262
56263 2003-10-21  Paul Eggert  <eggert@twinsun.com>
56264
56265         * lib/getndelim2.c (getndelim2): When size calculation overflows,
56266         ceiling the allocation at NMAX bytes rather than silently
56267         discarding input bytes before NMAX is reached.  This makes
56268         a difference only if NMAX exceeds SIZE_MAX / 2.
56269
56270         * lib/obstack.c: Merge from glibc.
56271         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
56272         Add libc_hidden_def (_obstack_newchunk).
56273         (_obstack_free) [! defined _LIBC]: Remove.
56274         [defined _LIBC]: Make a strong alias from obstack_free, rather than
56275         a clone of the function body.
56276         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
56277         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
56278
56279         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
56280         glibc.
56281         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
56282         arg to memcpy.
56283
56284         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
56285         (obstack_ptr_grow_fast, obstack_int_grow_fast):
56286         Don't use lvalue casts, as GCC plans to remove support for them
56287         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
56288         was also present in the non-GCC version, indicating that this
56289         code had always been buggy and had never been widely used.
56290         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
56291         Use the fast variant of each macro, rather than copying the
56292         definiens of the fast variant; that way, we'll be more likely to
56293         catch future bugs in the fast variants.
56294
56295 2003-10-20  Bruno Haible  <bruno@clisp.org>
56296
56297         * modules/wait-process: New file.
56298         * MODULES.html.sh (func_all_modules): Add wait-process.
56299
56300 2003-10-20  Bruno Haible  <bruno@clisp.org>
56301
56302         * m4/wait-process.m4: New file.
56303
56304 2003-10-20  Bruno Haible  <bruno@clisp.org>
56305
56306         * lib/wait-process.h: New file, from GNU gettext.
56307         * lib/wait-process.c: New file, from GNU gettext.
56308
56309 2003-10-19  Jim Meyering  <jim@meyering.net>
56310
56311         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
56312         HPUX 10.20.
56313
56314 2003-10-18  Karl Berry  <karl@gnu.org>
56315
56316         * config/config.guess: update from config.
56317
56318 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56319
56320         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
56321         (getgroups): First arg is int, not size_t.
56322         Don't let 'free' mangle errno.
56323
56324 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56325
56326         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
56327
56328 2003-10-16  Karl Berry  <karl@gnu.org>
56329
56330         * config/config.{guess,sub}: update from config.
56331
56332 2003-10-16  Jim Meyering  <jim@meyering.net>
56333
56334         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
56335         memcpy.
56336
56337 2003-10-15  Paul Eggert  <eggert@twinsun.com>
56338
56339         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
56340         (SIZE_MAX): Remove.
56341         (new_exclude, add_exclude_file): Initial size no longer needs to
56342         be a power of 2.
56343         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
56344         our own address arithmetic overflow checking.
56345
56346         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
56347         (fnmatch): Do not alloca more than 2000 wide characters;
56348         instead, use malloc for large buffers.
56349         Check for address arithmetic overflow, and return -1
56350         with errno set to ENOMEM in that case.
56351         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
56352         (NEW_PATTERN): Do not alloca more than 8000 bytes;
56353         instead, return -1.  Check for address arithmetic overflow.
56354
56355 2003-10-14  Paul Eggert  <eggert@twinsun.com>
56356
56357         Handle invalid suffixes and overflow independently, so that
56358         callers can treat them independently as needed.  Fix some bugs in
56359         suffix handling, e.g., "100k@" was not diagnosed as an invalid
56360         suffix for a human-readable blocksize.  The major caller-visible
56361         change is the addition of a new
56362         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
56363         that both overflow and suffix chars were found.
56364
56365         * lib/human.c (humblock): Don't check separately for invalid suffix
56366         char; that is xstrtoumax's job (now that its bug is fixed).
56367         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
56368         INTMAX_MAX]: New macros.
56369         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
56370         TYPE_MAXIMUM): New macros.
56371         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
56372         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
56373         if overflow occurs, as it's what __strtol does and it's more useful
56374         in practice.
56375         (__xstrtol): If __strtol reports some error other than ERANGE,
56376         reflect it to the caller as LONGINT_INVALID.  If it reports
56377         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
56378         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
56379         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
56380         value.
56381         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
56382         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
56383         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
56384         [defined UINTMAX_MAX]: New macros.
56385
56386 2003-10-14  Bruno Haible  <bruno@clisp.org>
56387
56388         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
56389
56390 2003-10-14  Bruno Haible  <bruno@clisp.org>
56391
56392         * m4/sig_atomic_t: New file, from GNU gettext.
56393         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
56394
56395 2003-10-14  Bruno Haible  <bruno@clisp.org>
56396
56397         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
56398         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
56399         Also use volatile where needed.
56400
56401 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56402
56403         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
56404         Change maintainer from Bruno Haible to 'all'.
56405
56406 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56407
56408         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
56409
56410 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56411
56412         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
56413         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
56414         and define in terms of the other primitives.
56415         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
56416         (SIZE_MAX): Define if not already defined.
56417         (array_size_overflow): New function.
56418         (xalloc_die): Abort instead of exiting if 'error' returns.
56419         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
56420         (xmalloc, xrealloc): Use them.
56421         (xcalloc): Check for address arithmetic overflow.
56422         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
56423         a bit faster than strcpy.
56424
56425 2003-10-10  Simon Josefsson  <jas@extundo.com>
56426
56427         * modules/argp (Depends-on): Add restrict and strcase.
56428
56429 2003-10-10  Simon Josefsson  <jas@extundo.com>
56430
56431         * m4/argp.m4: Add AC_C_INLINE.
56432
56433 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56434
56435         Merge getpass from libc, plus a few fixes.
56436
56437         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
56438         Include <stdbool.h>.
56439         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
56440         __fsetlocking to empty.
56441         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
56442         do include <bits/libc-lock.h>.
56443         Do not include <fcntl.h>; not needed.
56444         [_LIBC]: Include <wchar.h>.
56445         (NOTCANCEL_MODE): New macro.
56446         (flockfile, funlockfile) [_LIBC]: New macros.
56447         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
56448         [!_LIBC]: New macros.
56449         (call_fclose): New function.
56450         (getpass): Use it.  Save tty stream separately; this simplifies the
56451         code and makes it more reliable if stdin happens to equal stdout.
56452         Invoke __fsetlocking on tty.
56453         Handle thread cancellation if needed.
56454         Namespace cleanup (use __tcgetattr, __getline).
56455         Use bool for Booleans.
56456         [USE_IN_LIBIO]: Handle wide streams.
56457         [!_LIBC]: Unconditionally do the fseek, since we don't know what
56458         stream might go where.
56459
56460         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
56461         doesn't have to include <stdio.h> before us.
56462         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
56463         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
56464         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
56465         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
56466         if not declared, so that we can use getpass.c code from libc without
56467         rewriting it.
56468         (flockfile, ftrylockfile, funlockfile): New macros.
56469
56470 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56471
56472         * modules/getpass: Depend on stdbool.
56473
56474 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56475
56476         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
56477
56478 2003-10-07  Karl Berry  <karl@gnu.org>
56479
56480         * config/config.{guess,sub}: update from config.
56481
56482 2003-10-06  Jim Meyering  <jim@meyering.net>
56483             Bruno Haible  <bruno@clisp.org>
56484
56485         This lets translators provide better translations for the
56486         "Written by ..." part of --version output.
56487         * lib/version-etc.h: Include stdarg.h.
56488         (version_etc_copyright): Declare as readonly.
56489         (version_etc): Make this function variadic with a NULL-terminated list
56490         of author name strings.
56491         (version_etc_va): New declaration.
56492         * lib/version-etc.c: Include stdarg.h, stdlib.h.
56493         (version_etc_copyright): Declare as readonly.
56494         (version_etc_va): New function. Provide a different translatable string
56495         for each possible number of authors < 10. Abbreviate when there are 10
56496         authors or more.
56497         (version_etc): Make this function variadic. Call version_etc_va.
56498         Suggestion from Gary V. Vaughan.
56499
56500         * lib/long-options.h (parse_long_options): Change prototype: the
56501         authors string is moved to the end and becomes variadic.
56502         * lib/long-options.c: Include stdarg.h.
56503         (parse_long_options): Make this function variadic, too.
56504         Call version_etc_va, not version_etc.
56505
56506 2003-10-06  Bruno Haible  <bruno@clisp.org>
56507
56508         * modules/version-etc-2: Remove file.
56509         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
56510
56511 2003-10-06  Bruno Haible  <bruno@clisp.org>
56512
56513         * modules/fatal-signal: New file.
56514         * MODULES.html.sh (func_all_modules): Add fatal-signal.
56515
56516 2003-10-06  Bruno Haible  <bruno@clisp.org>
56517
56518         * m4/fatal-signal.m4: New file.
56519         * m4/signalblocking.m4: New file, from GNU gettext.
56520
56521 2003-10-06  Bruno Haible  <bruno@clisp.org>
56522
56523         * lib/version-etc-2.h: Remove file.
56524         * lib/version-etc-2.c: Remove file.
56525
56526 2003-10-06  Bruno Haible  <bruno@clisp.org>
56527
56528         * lib/fatal-signal.h: New file, from GNU gettext.
56529         * lib/fatal-signal.c: New file, from GNU gettext.
56530
56531 2003-10-05  Paul Eggert  <eggert@twinsun.com>
56532
56533         * README: Rework advice for preventing empty .o files.
56534         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
56535         not <sys/types.h>.
56536
56537 2003-10-04  Karl Berry  <karl@gnu.org>
56538
56539         * lib/argp*: update from libc.
56540
56541 2003-10-04  Karl Berry  <karl@gnu.org>
56542
56543         * config/config.{guess,sub}: update from config.
56544
56545 2003-10-02  Bruno Haible  <bruno@clisp.org>
56546
56547         * modules/lchown (Include): Add lchown.h.
56548         * modules/time_r (Include): Use "..." syntax.
56549         * modules/xgetdomainname (Include): Add xgetdomainname.h.
56550
56551 2003-10-01  Simon Josefsson  <jas@extundo.com>
56552
56553         * MODULES.html.sh (func_all_modules): Move gethostname from section
56554         'based on' to section 'lacking' POSIX:2001.
56555
56556 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
56557
56558         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
56559         to output mode on the same stream.
56560
56561 2003-09-29  Paul Eggert  <eggert@twinsun.com>
56562
56563         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
56564         Fix arg typo in previous patch.
56565
56566 2003-09-28  Jim Meyering  <jim@meyering.net>
56567
56568         * lib/error.c: Correct cpp indentation.
56569
56570 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56571
56572         * modules/free: New file.
56573
56574 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56575
56576         * m4/free.m4: New file.
56577
56578 2003-09-27  Paul Eggert  <eggert@twinsun.com>
56579
56580         * lib/minmax.h (MIN, MAX)
56581         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
56582         Omit the special code that used __typeof__, since we worry that
56583         it could be more trouble than it's worth.  See:
56584         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
56585         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
56586
56587         * lib/free.c: New file.
56588
56589 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
56590
56591         Trivial fixes to Makefile.am parts of module listings.
56592         * modules/strstr: Append strstr.h to lib_SOURCES.
56593         * modules/strcase: Likewise, for strcase.h.
56594
56595 2003-09-27  Karl Berry  <karl@gnu.org>
56596
56597         * config/mkinstalldirs: update from automake.
56598
56599 2003-09-26  Paul Eggert  <eggert@twinsun.com>
56600
56601         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
56602         (error_tail): Do not loop, reallocating temporary buffer, since
56603         the output cannot contain more wide characters than the input
56604         contains bytes, the size must be big enough already.  This avoids
56605         one potential size overflow calculation.  Check for size overflow
56606         when calculating temporary buffer size.  Free temporary buffer
56607         when done, if it was allocated with malloc; this plugs a memory
56608         leak.  Remove casts from void * to pointers, that are no longer
56609         needed now that we're assuming C89 or better.
56610
56611         Merge error changes from glibc.
56612
56613         * lib/error.c, error.h: Update copyright notice header to match glibc.
56614         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
56615         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
56616         Disable cancellation while printing error.
56617         * lib/error.h: Prepend __ to parameter names.
56618
56619 2003-09-26  Jim Meyering  <jim@meyering.net>
56620
56621         * lib/error.c (error_tail): Move some declarations
56622         into inner scope where the local variables are used.
56623
56624 2003-09-26  Bruno Haible  <bruno@clisp.org>
56625
56626         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
56627         stpncpy().
56628         Don't define stpncpy through config.h; it's now done through stpncpy.h.
56629
56630 2003-09-26  Bruno Haible  <bruno@clisp.org>
56631
56632         * lib/stpncpy.h (gnu_stpncpy): New declaration.
56633         (stpncpy): Define as alias for gnu_stpncpy.
56634         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
56635
56636 2003-09-25  Simon Josefsson  <jas@extundo.com>
56637
56638         * lib/xgetdomainname.h: New file.
56639         * lib/xgetdomainname.c: New file.
56640
56641 2003-09-25  Simon Josefsson  <jas@extundo.com>
56642             Bruno Haible  <bruno@clisp.org>
56643
56644         * modules/getdomainname: New file.
56645         * modules/xgetdomainname: New file.
56646         * MODULES.html.sh (func_all_modules): Add getdomainname,
56647         xgetdomainname.
56648
56649 2003-09-25  Simon Josefsson  <jas@extundo.com>
56650             Bruno Haible  <bruno@clisp.org>
56651
56652         * m4/getdomainname.m4: New file.
56653
56654 2003-09-25  Simon Josefsson  <jas@extundo.com>
56655             Bruno Haible  <bruno@clisp.org>
56656
56657         * lib/getdomainname.h: New file.
56658         * lib/getdomainname.c: New file.
56659
56660 2003-09-25  Karl Berry  <karl@gnu.org>
56661
56662         * lib/argp-fmtstream.c, argp-help.c: update from libc.
56663
56664 2003-09-25  Karl Berry  <karl@gnu.org>
56665
56666         * config/install-sh: update from automake.
56667
56668 2003-09-25  Bruno Haible  <bruno@clisp.org>
56669
56670         * modules/version-etc-2: New file, from modules/version-etc with
56671         modifications.
56672         * MODULES.html.sh (func_all_modules): Add version-etc-2.
56673
56674 2003-09-25  Bruno Haible  <bruno@clisp.org>
56675
56676         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
56677         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
56678
56679 2003-09-24  Simon Josefsson  <jas@extundo.com>
56680
56681         * modules/xgethostname: Add xgethostname.h.
56682
56683 2003-09-24  Paul Eggert  <eggert@twinsun.com>
56684
56685         * lib/linebuffer.c (freebuffer): Don't free the argument, just
56686         the buffer associated with the argument.  Bug reported by
56687         Simon Josefsson.
56688
56689 2003-09-24  Paul Eggert  <eggert@twinsun.com>
56690
56691         * README: Document assumptions that 'int' is at least 32 bits
56692         wide, that integer arithmetic is 2's complement without overflow,
56693         that there are no holes in integer values, that adding sizes of
56694         two nonoverlapping objects can't overflow, and that all-bits-zero
56695         yields scalar zero.  Fix spelling and capitalization typos.
56696
56697 2003-09-19  Karl Berry  <karl@gnu.org>
56698
56699         * lib/argp.h: update from libc.
56700
56701 2003-09-17  Paul Eggert  <eggert@twinsun.com>
56702
56703         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
56704         to avoid spurious warnings like "AC_RUN_IFELSE was called before
56705         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
56706
56707 2003-09-17  Paul Eggert  <eggert@twinsun.com>
56708
56709         * gnulib-tool: Use "test -h", not "test -L", for portability
56710         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
56711         (tags_regexp): Remove, since \| doesn't conform to POSIX.
56712         (sed_extract_prog): Issue s commands one-by-one, rather than
56713         using \| in one s command.
56714
56715 2003-09-16  Paul Eggert  <eggert@twinsun.com>
56716
56717         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
56718         input error, instead of returning NULL the next time we are called
56719         (and therefore losing track of errno).
56720
56721 2003-09-16  Bruno Haible  <bruno@clisp.org>
56722
56723         * gnulib-tool (func_create_testdir): Warn about duplicated
56724         dependencies.
56725
56726 2003-09-15  Paul Eggert  <eggert@twinsun.com>
56727
56728         * modules/argmatch, modules/fatal, modules/obstack,
56729         modules/xalloc, modules/xgethostname: Sort dependencies by
56730         importance, not alphabetically.
56731
56732 2003-09-15  Paul Eggert  <eggert@twinsun.com>
56733
56734         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
56735         fails, so that the caller gets the proper errno.
56736
56737         * lib/readutmp.c (read_utmp): Likewise.
56738         Check for fstat error.  Close stream and free storage
56739         when failing.
56740
56741 2003-09-14  Karl Berry  <karl@gnu.org>
56742
56743         * config/srclist.txt (strdup.c): disable for c89 changes.
56744
56745 2003-09-14  Jim Meyering  <jim@meyering.net>
56746
56747         * lib/getloadavg.c: Correct cpp indentation.
56748         * lib/strdup.c: Likewise.
56749         * lib/vasnprintf.c: Likewise.
56750
56751 2003-09-14  Bruno Haible  <bruno@clisp.org>
56752
56753         * modules/fwriteerror: New file.
56754         * MODULES.html.sh (func_all_modules): Add fwriteerror.
56755
56756 2003-09-14  Bruno Haible  <bruno@clisp.org>
56757
56758         * lib/fwriteerror.h: New file.
56759         * lib/fwriteerror.c: New file.
56760
56761 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56762
56763         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
56764         modules/xgethostname, modules/xalloc: Depend on exit.
56765
56766 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56767
56768         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
56769
56770         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
56771         and AC_MINIX, too, so that their extensions are available.
56772
56773         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
56774         This macro has been superseded by gl_BACKUPFILE.
56775
56776         More patches to assume C89 or better.
56777
56778         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
56779
56780         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
56781         unconditionally.
56782         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
56783         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
56784         Include <string.h>, <stdlib.h> unconditionally.
56785         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
56786         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
56787         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
56788         headers or for string.h.
56789         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
56790         or strtoul.
56791
56792         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
56793         headers.
56794         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
56795         * m4/userspec.m4 (gl_USERSPEC): Likewise.
56796         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
56797         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
56798         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
56799         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
56800         memcpy, memset.
56801         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
56802         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
56803         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
56804         strtol.
56805         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
56806         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
56807         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
56808         strtoul.
56809
56810 2003-09-12  Paul Eggert  <eggert@twinsun.com>
56811
56812         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
56813         * lib/obstack.c [!defined _LIBC]: Likewise.
56814         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
56815         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
56816         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
56817
56818         More changes to assume C89 or better.
56819
56820         * lib/error.c (error_tail): Assume vprintf.
56821
56822         * lib/argmatch.c (getenv): Remove decl.
56823         * lib/progreloc.c (get_full_program_name): Define via prototype.
56824         * lib/setenv.c (clearenv): Likewise.
56825         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
56826         needed.
56827         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
56828         (malloc, memcpy): Remove decls.
56829         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
56830         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
56831         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
56832         (memcpy): Remove macro.
56833         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
56834         (__P): Remove.  All uses removed.
56835         (PTR): Remove.  All uses changed to void *.
56836         (CHAR_BIT, NULL): Remove.
56837         (spaces, zeros, memset_space, memset_zero)
56838         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
56839         Remove.
56840         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
56841         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
56842         Define with prototype.
56843         Remove now-unnecessary prototype decl.
56844         (extra_args_spec): Assume ANSI C.  All uses changed.
56845         (extra_args_spec_iso): Remove.
56846         (my_strftime, emacs_strftimeu): Define via prototype.
56847         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
56848         unconditionally.
56849         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
56850         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
56851         (strtoul, strtol): Remove decls.
56852         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
56853         LONG_MAX): Remove.
56854         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
56855         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
56856         (LOCALE_PARAM_PROTO): New macro.
56857         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
56858         (INTERNAL (strtol), strtol): Define with a prototype.
56859         (PARAMS): Remove.  All uses removed.
56860         * lib/tempname.c: Include <string.h> unconditionally.
56861         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
56862         * lib/xgethostname.c (main): Define with a prototype.
56863         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
56864         Include <stdlib.h> unconditionally.
56865         (calloc, malloc, realloc, free): Remove decls.
56866         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
56867         Include <stdlib.h> unconditionally.  Sort include file names.
56868         (strtod): Remove.
56869         (xstrtod): Define with a prototype.
56870         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
56871         (strtol, strtoul): Remove decls.
56872
56873 2003-09-11  Paul Eggert  <eggert@twinsun.com>
56874
56875         More patches to assume C89 or better.
56876         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
56877         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
56878         string.h, memchr, STDC_HEADERS.
56879
56880 2003-09-11  Paul Eggert  <eggert@twinsun.com>
56881
56882         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
56883         Include <stdlib.h>, <string.h> unconditionally.
56884         Remove now-unnecessary cast to char *.
56885         * lib/strnlen.c: Include <string.h> unconditionally.
56886         * lib/yesno.c (yesno): Define with a prototype.
56887
56888 2003-09-11  Bruno Haible  <bruno@clisp.org>
56889
56890         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
56891
56892 2003-09-10  Jim Meyering  <jim@meyering.net>
56893
56894         * lib/error.c: Correct indentation of cpp directives.
56895
56896 2003-09-10  Bruno Haible  <bruno@clisp.org>
56897
56898         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
56899         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
56900         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
56901         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
56902         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
56903         <stdlib.h> and <string.h> checks.
56904         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
56905         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
56906
56907 2003-09-10  Bruno Haible  <bruno@clisp.org>
56908
56909         * lib/strcspn.c: Include <string.h> unconditionally.
56910         * lib/strpbrk.c: Include <string.h> unconditionally.
56911         * lib/strstr.c: Include <string.h> unconditionally.
56912         * lib/unicodeio.c: Include <string.h> unconditionally.
56913         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
56914         * lib/unsetenv.c: Likewise.
56915         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
56916         * lib/yesno.c: Include <stdlib.h> unconditionally.
56917         (rpmatch): Add prototype.
56918
56919 2003-09-09  Paul Eggert  <eggert@twinsun.com>
56920
56921         More patches to assume C89 or better.
56922         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
56923         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
56924         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
56925         or for string.h.
56926         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
56927         stdlib.h.
56928         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
56929         C headers.
56930         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
56931         string.h.
56932         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
56933         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
56934         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
56935         or for string.h.
56936         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
56937         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
56938         C headers.
56939         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
56940         memcpy.
56941         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
56942         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
56943         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
56944         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
56945         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
56946         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
56947         string.h, free.
56948         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
56949         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
56950         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
56951         C headers, or for string.h.
56952         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
56953         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
56954         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
56955         headers, memory.h, stdlib.h, string.h, strings.h.
56956         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
56957         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
56958         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
56959         strchr.
56960         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
56961         headers, memory.h, string.h.
56962         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
56963         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
56964         free.
56965         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
56966         headers.
56967         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
56968         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
56969         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
56970         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
56971         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
56972
56973 2003-09-09  Paul Eggert  <eggert@twinsun.com>
56974
56975         More K&R removal.
56976
56977         * lib/acosl.c (main): Use a prototype.
56978         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
56979         tanl.c: Likewise.
56980
56981         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
56982
56983         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
56984         (getopt, etopt_long, getopt_long_only, _getopt_internal)
56985         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
56986         with a prototype.
56987         * lib/getopt.c (const): Remove macro.
56988         Include <string.h> unconditionally.
56989         (my_index): Remove; all uses changed to strchr.
56990         (strlen): Remove decl.
56991         (exchange): Remove forward decl; no longer needed.
56992         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
56993         Define with prototype.
56994         * lib/getopt1.c (const): Remove macro.
56995         (getopt_long, getopt_long_only, main): Define with prototype.
56996
56997         * lib/getugroups.c: Include <string.h> unconditionally.
56998
56999         * lib/getusershell.c: Include <stdlib.h> unconditionally.
57000         (getusershell, setusershell, endusershell, readname, main):
57001         Define with prototypes.
57002
57003         * lib/group-member.c: Include group-member.h first.
57004         Include <stdlib.h> unconditionally.
57005
57006         * lib/hard-locale.c: Include hard-locale.h first.
57007         Include <stdlib.h>, <string.h> unconditionally.
57008
57009         * lib/hash.c (free, malloc): Remove decls.
57010         Include <stdlib.h> unconditionally.
57011
57012         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
57013         (getenv): Do not declare.
57014
57015         * lib/idcache.c: Include <string.h> unconditionally.
57016
57017         * lib/long-options.c: Include long-options.h first, to test interface.
57018         Include <stdlib.h> unconditionally.
57019
57020         * lib/makepath.c: Include makepath.h first, to test interface.
57021         Include <stdlib.h> and <string.h> unconditionally.
57022
57023         * lib/linebuffer.c: Include <stdlib.h>.
57024         (free): Remove decl.
57025
57026         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
57027         stddef.h. rpl_malloc returns void *, not char *.
57028         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
57029         prototype.
57030
57031         * lib/md5.h: Include <limits.h> unconditionally.
57032         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
57033         (__P): Remove; all uses removed.
57034         * lib/md5.c: Include "md5.h" first.
57035         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
57036         md5_buffer, md5_process_bytes, md5_process_block):
57037         Define with prototypes.
57038         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
57039         * lib/sha.c: Include "sha.h" first.
57040         Include <stdlib.h>, <string.h> unconditionally.
57041
57042         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
57043         * lib/memcmp.c (__ptr_t): Likewise.
57044         * lib/memrchr.c (__ptr_t): Likewise.
57045         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
57046         Include <string.h> unconditionally.
57047         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
57048         * lib/memchr.c: Include <stdlib.h> unconditionally.
57049         * lib/memchr.c (LONG_MAX): Remove.
57050         * lib/memrchr.c (LONG_MAX): Likewise.
57051         * lib/memchr.c (__memchr): Define via a prototype.
57052         * lib/memrchr.c (__memrchr): Likewise.
57053         * lib/memcmp.c (__P): Remove, and remove all uses.
57054         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
57055         Remove forward decls; no longer needed.
57056         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
57057         Use types required by C89 in prototype.
57058
57059         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
57060         * lib/savedir.c: Likewise.
57061         * lib/mkdir.c (free): Remove decl.
57062         * lib/rmdir.c (rmdir): Define with a prototype.
57063         * lib/savedir.c: Include savedir.h first, to test interface.
57064
57065         * lib/mktime.c (STDC_HEADERS): Remove.
57066         Include <stdlib.h>, <string.h> unconditionally.
57067
57068         * lib/modechange.c: Include <stdlib.h> unconditionally.
57069         (malloc): Remove decl.
57070
57071         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
57072         (free): Remove decl.
57073
57074         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
57075         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
57076         (This type really should be intptr_t, but that's a C99ism.)
57077         (_obstack_memcpy): Remove: all uses changed to memcpy.
57078         Include <string.h> unconditionally.
57079         (struct obstack): Assume __STDC__ for types of members
57080         chunkfun, freefun, extra_arg.
57081         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
57082         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
57083         obstack_begin, obstack_specify_allocation,
57084         obstack_specify_allocation_with_arg, obstack_chunkfun,
57085         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
57086         Remove unprototyped decls and the macros that use them.
57087         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
57088         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
57089         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
57090         (defined __STDC__ && __STDC__)]:
57091         Remove nonprototyped code.
57092         Include <stdlib.h> unconditionally.
57093         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
57094         _obstack_allocated_p, _obstack_free, obstack_free,
57095         _obstack_memory_used, print_and_abort):
57096         Define using prototypes.
57097         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
57098         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
57099         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
57100         obstack_next_free, obstack_object_size, obstack_room) [0]:
57101         Remove unused, unprototyped code.
57102
57103         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
57104
57105         * lib/physmem.c (physmem_total, physmem_available, main): Define
57106         with prototypes.
57107
57108         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
57109         (main): Define with a prototype.
57110
57111         * lib/posixver.c (getenv): Remove decl.
57112
57113         * lib/putenv.c (malloc): Returns void *, not char *.
57114         Include <string.h> unconditionally.
57115         (strchr, memcpy, NULL): Do not define.
57116
57117         * lib/readtokens.c: Include readtokens.h first, to test interface.
57118         Include <stdlib.h>, <string.h> unconditionally.
57119         (init_tokenbuffer): Define with a prototype.
57120
57121         * lib/regex.c (PARAMS): Remove.  All uses removed.
57122         All uses of _RE_ARGS removed, too.
57123         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
57124         unconditionally.
57125         (bzero): Assume memset exists.
57126         (memcmp, memcpy, NULL): Remove.
57127         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
57128         char, or assignments to local vars of type signed char.
57129         (init_syntax_once, PREFIX(extract_number_and_incr),
57130         PREFIX(print_partial_compiled_pattern),
57131         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
57132         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
57133         PREFIX(regex_grow_registers), PREFIX(regex_compile),
57134         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
57135         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
57136         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
57137         wcs_compile_range, byte_compile_range, truncate_wchar,
57138         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
57139         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
57140         count_mbs_length, wcs_re_match_2_internal,
57141         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
57142         PREFIX(alt_match_null_string_p),
57143         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
57144         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
57145         regfree, PREFIX(extract_number)): Define with prototype.  Remove
57146         now-unnecessary declaration, if any.
57147         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
57148         regcomp, regexec):
57149         Remove now-unnecessary casts among pointer types.
57150         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
57151
57152         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
57153         (free): Remove decl.
57154
57155         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
57156
57157         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
57158         (free): Remove decl.
57159
57160         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
57161         * lib/xgetcwd.c: Likewise.
57162
57163         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
57164         (free): Remove decl.
57165
57166         * lib/strchrnul.c (strchrnul): Define with a prototype.
57167         Fix bug: c_in was not converted to char before searching.
57168
57169         The following changes are not K&R related:
57170
57171         * lib/group-member.h: Include <sys/types.h>, so that this file is
57172         self-contained.
57173         * lib/makepath.h: Likewise.
57174
57175         * lib/getusershell.c (readname, default_index, line_size, readname):
57176         Use size_t, not int, for sizes.
57177         (readname): If the size overflows, report an error instead of
57178         looping forever.
57179
57180 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57181
57182         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
57183         libc.
57184
57185 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57186
57187         * README: New section: portability guidelines.
57188
57189 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57190
57191         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
57192         C89 spec.
57193
57194 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57195
57196         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
57197
57198 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57199
57200         Assume C89 or better; remove K&R cruft.
57201         A few of these changes were first proposed by Derek Robert Price
57202         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
57203
57204         * lib/addext.c: Include <string.h> unconditionally.
57205         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
57206         Don't declare getenv or malloc.
57207
57208         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
57209         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
57210         (NULL): Remove.
57211         (find_stack_direction, alloca): Use prototypes.
57212
57213         * lib/atexit.c (atexit): Define using a prototype.
57214
57215         * lib/basename.c, dirname.c, stripslash.c:
57216         Include <string.h> unconditionally.
57217
57218         * lib/bcopy.c: Include <stddef.h>.
57219         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
57220
57221         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
57222
57223         * lib/error.h (error, error_at_line, error_print_progname)
57224         [! (defined (__STDC__) && __STDC__)]: Remove decls.
57225         * lib/error.c: Include error.h first, to check interface.
57226         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57227         (VA_START): Remove; all uses changeed to va_start.
57228         (exit, strerror): Remove decls.
57229         (error_print_progname): Prototype uncondionally.
57230         Don't include <errno.h>; no longer needed.
57231         (private_strerror): Remove.
57232         (error_tail): Always define.
57233         (error, error_at_line): Assume C89 or better; always use prototypes.
57234         * lib/fatal.c: Include "fatal.h" first, to test interface.
57235         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57236         (VA_START): Remove; all uses changed to va_start.
57237         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
57238         this case.
57239         (exit): Remove decl.
57240         (fatal): Prototype unconditionally.  Assume va_start works.
57241         Abort at end, to pacify gcc.
57242
57243         * lib/euidaccess.c (main): Define with a prototype.
57244
57245         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
57246
57247         * lib/exitfail.c: Include <stdlib.h> unconditionally.
57248
57249         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
57250         prototypes.
57251         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
57252         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
57253         (getenv): Remove decl.
57254         (fnmatch): Define using a prototype.
57255         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
57256         (FCT): Define using a prototype.
57257
57258         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
57259
57260         * lib/gethostname.c: Include <stddef.h>.
57261         (gethostname): Define with prototype.  Length is size_t, not int.
57262
57263 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57264
57265         Assume C89 or better; remove K&R cruft.
57266         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
57267         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
57268         string.h, getenv, malloc.
57269         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
57270         headers.
57271         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
57272         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
57273         do not check for strerror.
57274         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
57275         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
57276         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
57277         do not check for doprnt or vprintf.
57278         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
57279         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
57280
57281 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57282
57283         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
57284         getversion.c should have been removed then, but was accidentally
57285         preserved.
57286
57287         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
57288         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
57289
57290 2003-09-08  Karl Berry  <karl@gnu.org>
57291
57292         * config/config.sub, config.guess, srclistvars.sh: update from savannah
57293                 config, forget about prep.
57294
57295         * config/depcomp, missing: update from automake.
57296
57297 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57298
57299         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
57300         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57301
57302 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57303
57304         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
57305         copy_tm_result.  Bug reported by Simon Josefsson in
57306         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57307
57308 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57309
57310         * m4/time_r.m4: New file.
57311         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
57312         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
57313         is. Check for timegm declaration.
57314         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
57315         Do not check for gmtime_r.
57316         Replace mktime if __mktime_internal does not exist and if mktime
57317         hasn't been replaced already.
57318
57319 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57320
57321         * lib/time_r.c, lib/time_r.h: New files.
57322
57323         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
57324         __localtime_r.
57325         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
57326         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
57327
57328         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
57329         __gmtime_r.
57330         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
57331         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
57332         Include <time_r.h>.
57333
57334         * lib/timegm.c: Switch to glibc implementation, with the following
57335         changes:
57336         [defined HAVE_CONFIG_H]: Include <config.h>.
57337         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
57338         (__mktime_internal) [!defined _LIBC]: New decl.
57339         (__gmtime_r) [!defined _LIBC]: New macro and function.
57340         (timegm): Use a prototype, since gnulib assumes C89.
57341         Do not bother declaring tmp to be const, as it's not really usefu.
57342         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
57343         (timegm): Declare only if HAVE_DECL_TIMEGM.
57344
57345 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57346
57347         * MODULES.html.sh (func_all_modules): Add time_r.
57348         * modules/time_r: New file.
57349         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
57350         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
57351
57352 2003-09-03  Paul Eggert  <eggert@twinsun.com>
57353
57354         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
57355         Bug reported by Lute Kamstra in
57356         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
57357
57358         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
57359         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
57360         course with correspondingly smaller numbers for tomorrow and
57361         yesterday.  From Tadayoshi Funaba.  Originally installed into
57362         sh-utils on 1999-08-07, but the patch got lost (I guess during the
57363         coreutils merge?).
57364
57365 2003-08-31  Simon Josefsson  <jas@extundo.com>
57366
57367         * modules/timegm: New file.
57368         * MODULES.html.sh (func_all_modules): Add timegm.
57369
57370 2003-08-31  Simon Josefsson  <jas@extundo.com>
57371
57372         * m4/timegm.m4: New file.
57373
57374 2003-08-31  Simon Josefsson  <jas@extundo.com>
57375
57376         * lib/timegm.h: New file.
57377         * lib/timegm.c: New file.  Based on
57378         wget-1.8.2/src/http.c:mktime_from_utc.
57379
57380 2003-08-31  Karl Berry  <karl@gnu.org>
57381
57382         * lib/argp.h: update from libc.
57383
57384 2003-08-28  Bruno Haible  <bruno@clisp.org>
57385
57386         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
57387         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
57388         followed by '#define fnmatch fnmatch_posix' gives an error.
57389
57390 2003-08-28  Bruno Haible  <bruno@clisp.org>
57391
57392         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
57393         warning on QNX, which defines O_BINARY to 000000.
57394
57395 2003-08-27  Jim Meyering  <jim@meyering.net>
57396
57397         * m4/mkstemp.m4: Require that the system mkstemp be able to create
57398         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
57399         would fail after 32.  Reported by Danny Levinson.  Details here:
57400         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
57401
57402 2003-08-24  Bruno Haible  <bruno@clisp.org>
57403
57404         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
57405         MSVC7 <stdio.h> is included later.
57406
57407 2003-08-22  Simon Josefsson  <jas@extundo.com>
57408
57409         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
57410
57411 2003-08-20  Karl Berry  <karl@gnu.org>
57412
57413         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
57414
57415 2003-08-20  Bruno Haible  <bruno@clisp.org>
57416
57417         * modules/progname: New file.
57418         * MODULES.html.sh (func_all_modules): Add progname.
57419
57420 2003-08-20  Bruno Haible  <bruno@clisp.org>
57421
57422         * lib/progname.h: New file, from GNU gettext.
57423         * lib/progname.c: New file, from GNU gettext.
57424         * lib/progreloc.c: New file, from GNU gettext.
57425
57426 2003-08-19  Jim Meyering  <jim@meyering.net>
57427
57428         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
57429         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
57430
57431 2003-08-19  Bruno Haible  <bruno@clisp.org>
57432
57433         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
57434         more.
57435
57436 2003-08-19  Bruno Haible  <bruno@clisp.org>
57437
57438         * lib/xstrdup.c: Assume <string.h> exists.
57439
57440 2003-08-18  Paul Eggert  <eggert@twinsun.com>
57441
57442         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
57443         in makefile rules.
57444
57445 2003-08-18  Jim Meyering  <jim@meyering.net>
57446
57447         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
57448         * m4/lib-ld.m4: Likewise.
57449
57450 2003-08-18  Jim Meyering  <jim@meyering.net>
57451
57452         * lib/setenv.h: Indent nested cpp directive.
57453         * lib/vasnprintf.c: Remove trailing blanks.
57454
57455 2003-08-17  Simon Josefsson  <jas@extundo.com>
57456
57457         * modules/xstrndup: New file.
57458         * MODULES.html.sh (func_all_modules): Add xstrndup.
57459
57460 2003-08-17  Simon Josefsson  <jas@extundo.com>
57461
57462         * modules/argp: Fix autoconf macro name. Add more dependencies.
57463
57464 2003-08-17  Simon Josefsson  <jas@extundo.com>
57465
57466         * m4/xstrndup.m4: New file.
57467
57468 2003-08-17  Simon Josefsson  <jas@extundo.com>
57469
57470         * m4/argp.m4: New file.
57471
57472 2003-08-17  Simon Josefsson  <jas@extundo.com>
57473             Bruno Haible  <bruno@clisp.org>
57474
57475         * lib/xstrndup.h: New file.
57476         * lib/xstrndup.c: New file.
57477
57478 2003-08-17  Bruno Haible  <bruno@clisp.org>
57479
57480         * modules/strndup (Files, Include): Add lib/strndup.h.
57481
57482 2003-08-17  Bruno Haible  <bruno@clisp.org>
57483
57484         * modules/euidaccess (Files): Add lib/euidaccess.h.
57485
57486 2003-08-17  Bruno Haible  <bruno@clisp.org>
57487
57488         * lib/strndup.h: New file.
57489
57490 2003-08-17  Bruno Haible  <bruno@clisp.org>
57491
57492         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
57493         like AC_GNU_SOURCE.
57494         * modules/extensions (configure.ac): Comment out the invocation of
57495         gl_USE_SYSTEM_EXTENSIONS.
57496
57497 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57498
57499         Merges from coreutils, etc.
57500         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
57501         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
57502         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
57503         fixing a typo.
57504         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
57505         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
57506
57507 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57508
57509         Document merge from coreutils.
57510         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
57511         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
57512         * modules/utime: Add m4/utimes-null.m4.
57513
57514 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57515
57516         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
57517         space, undoing this 2003-08-12 change:
57518         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
57519
57520 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57521
57522         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
57523         strtoul.c from libc, undoing this 2003-08-12 change:
57524         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
57525
57526 2003-08-16  Jim Meyering  <jim@meyering.net>
57527
57528         Merges from coreutils.
57529         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
57530         prefix.  Adjust cache variables similarly.  Create 500 rather than
57531         just 300 files, to exercise bug on Darwin6.5, too.
57532         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
57533         $missing_dir.
57534         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
57535         AM_SYS_POSIX_TERMIOS.
57536         Reported by mkc@mathdogs.com.
57537         Also change use of $am_cv_sys_posix_termios
57538         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
57539         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
57540         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
57541         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
57542         in /proc/mounts until it finds one with matching device number.  This
57543         is unnecessary when the FILE argument *is* a mount point.  No stat call
57544         is necessary in that case.  So, disable the statvfs-testing code on
57545         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
57546         as RedHat bug# 84846.
57547         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
57548         to 1MB, so as not to render systems with no stack size limit (e.g.,
57549         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
57550         Include <unistd.h>.  On some systems,
57551         it is required for the definition of _SC_PAGESIZE.
57552
57553 2003-08-16  Jim Meyering  <jim@meyering.net>
57554
57555         Merge from coreutils.
57556         * lib/xstrtoimax.c: #else #if -> #elif.
57557         * lib/xstrtoumax.c: Likewise.
57558
57559 2003-08-16  Jim Meyering  <jim@meyering.net>
57560
57561         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
57562         * m4/utimes.m4: Removed.
57563         * m4/utimes-null.m4: Renamed from utimes.m4.
57564
57565         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
57566         to 1MB, so as not to render systems with no stack size limit (e.g.,
57567         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
57568         Include <unistd.h>.  On some systems,
57569         it is required for the definition of _SC_PAGESIZE.
57570
57571 2003-08-16  Jim Meyering  <jim@meyering.net>
57572         and Paul Eggert  <eggert@cs.ucla.edu>
57573
57574         Merges from coreutils, etc.
57575
57576         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
57577         using the latest version from cvs.  This avoids problems with #line
57578         directives using a vendor (Sun) compiler.
57579         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
57580         Don't set GETGROUPS_LIB here; now it's
57581         done via getgroups.m4's wrapper function.
57582         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
57583         rather than just in sh-util/configure.in, so that the
57584         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
57585         same.
57586         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
57587         AC_FUNC_GETLOADAVG where to find getloadavg.c.
57588         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
57589         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
57590         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
57591         Remove code that is now done by the newly-required macros.
57592         Append $(EXEEXT) to DF_PROG.
57593         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
57594         Do not invoke or require the following here,
57595         since prereq.m4 or some gnulib .m4 now does this for us:
57596         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
57597         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
57598         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
57599         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
57600         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
57601         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
57602         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
57603         AC_FUNC_OBSTACK.
57604         Do not replace the following functions, as this is now the job
57605         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
57606         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
57607         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
57608         atexit getpass, strdup, getpagesize.
57609         Replace 'raise'.
57610         Do not check for the following functions, as this is now the job
57611         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
57612         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
57613         setregid.
57614         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
57615         Check for sys/sysctl.h.
57616         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
57617         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
57618         of checking for ssize_t ourselves.
57619
57620         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
57621         Require every macro that gnulib/modules/* suggests for us.
57622         (jm_PREREQ_ADDEXT): New macro.
57623         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
57624         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
57625
57626         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
57627         (gl_PHYSMEM): Use it.
57628         Also check for `table' function.
57629         Check for new headers and functions.
57630         Add check for sys/sysmp.h.
57631         With suggestions from Kaveh Ghazi.
57632         Ignore headers that are present but cannot be compiled.  This
57633         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
57634         C 5.4.
57635
57636 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57637
57638         Document merge from coreutils.
57639         * modules/userspec: Depend on posixver.
57640         * modules/strftime: Depend on tzset.
57641
57642 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57643
57644         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
57645         rather than tab, after '#' in shell-script copyright notices.
57646         Suggested by Bruno Haible.
57647
57648 2003-08-15  Paul Eggert  <eggert@twinsun.com>
57649
57650         * config/srclist-update: Use three spaces, rather than tab, after '#'
57651         in shell-script copyright notices.  Suggested by Bruno Haible.
57652         Remove unnecessary parenthesization in regular expression.
57653
57654 2003-08-15  Jim Meyering  <jim@meyering.net>
57655
57656         Merge from coreutils.
57657         * lib/xgethostname.c: Include <stdlib.h>.
57658         (xghostname): Don't exit for anything other than memory-related
57659         failure; just return NULL.
57660         * lib/userspec.c: Include "posixver.h".
57661         (parse_user_spec): Accept `.' as a separator only
57662         in pre-POSIX-200112 mode.
57663         * lib/strtoimax.c: Use #elif rather than #else #if.
57664         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
57665         Remove function, now that we can rely on a working tzset function.
57666         [!_LIBC]: Ensure that the required autoconf test has been run.
57667         [!defined _NL_CURRENT && HAVE_STRFTIME]:
57668         Use underlying_strftime for %r.
57669         * lib/sha.c: Merge in some clean-up and optimization changes from
57670         glibc.
57671         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
57672         Ensure that it is a multiple of 64.
57673         Rearrange loop exit tests so as to avoid performing an
57674         additional fread after encountering an error or EOF.
57675         * lib/realloc.c: Update copyright date.
57676
57677 2003-08-15  Jim Meyering  <jim@meyering.net>
57678         and Paul Eggert  <eggert@twinsun.com>
57679
57680         Merge from coreutils.
57681         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
57682         member but strut utmpx does not.  Needed for AIX 4.3.3.
57683         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
57684
57685 2003-08-15  Jim Meyering  <jim@meyering.net>
57686         and Paul Eggert  <eggert@cs.ucla.edu>
57687
57688         Merges from coreutils, etc.
57689         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
57690         Require gl_FUNC_TZSET_CLOBBER.
57691         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
57692         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
57693         members.
57694
57695 2003-08-14  Paul Eggert  <eggert@twinsun.com>
57696
57697         Help the merge from coreutils.
57698         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
57699         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
57700         * m4/tzset.m4: Use it too.
57701
57702 2003-08-14  Paul Eggert  <eggert@twinsun.com>
57703
57704         * modules/tzset: New file.
57705
57706 2003-08-14  Jim Meyering  <jim@meyering.net>
57707
57708         Merges from coreutils.
57709         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
57710         variable names, rather than @FNMATCH_H@.
57711         * modules/alloca: Likewise for $(ALLOCA_H).
57712
57713         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
57714         the three copies of the literal target, `fnmatch.h'.
57715         * modules/alloca (alloca.h): Likewise.
57716
57717 2003-08-14  Jim Meyering  <jim@meyering.net>
57718
57719         Merge from coreutils.
57720         * m4/tzset.m4: New file.
57721         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
57722         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
57723         otherwise, AIX 5.1 systems would end up using the latter.
57724         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
57725         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
57726         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
57727         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
57728
57729 2003-08-14  Jim Meyering  <jim@meyering.net>
57730
57731         Merge from coreutils.
57732         * lib/obstack.h: Whitespace changes.
57733         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
57734         and xcalloc return values.
57735         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
57736         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
57737         hang on OSF/1 5.1 for DIR on both local and remote file systems.
57738         Reported by (and fix confirmed by) Nelson H. F. Beebe.
57739         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
57740         error from mntctl.
57741         Use mntctl's return value to drive the entry-processing loop, since
57742         we can't rely on the value of the vmt_length member in the last
57743         entry.  On some systems doing so could result in exhausting
57744         virtual memory.  Based in part on a patch from Mike Jetzer.
57745
57746 2003-08-14  Jim Meyering  <jim@meyering.net>
57747         and Paul Eggert  <eggert@twinsun.com>
57748
57749         Merges from coreutils, plus other fixes.
57750         * lib/physmem.c: Merge in portability changes from gcc/libiberty
57751         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
57752         for credits and details.  Thanks to Kaveh Ghazi for helping
57753         to keep these files in sync.
57754         (ARRAY_SIZE): Define it.
57755         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
57756         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
57757         (memcasecmp): Don't assume size_t fits in unsigned int.
57758         Remove casts and duplicate code.
57759         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
57760         (memcpy): Remove definition.
57761         Merge in some clean-up and optimization changes from glibc.
57762         [BLOCKSIZE]: Move definition to top of file.
57763         Ensure that it is a multiple of 64.
57764         Rearrange loop exit tests so as to avoid performing an
57765         additional fread after encountering an error or EOF.
57766         * lib/md5.h (md5_uintptr): Define.
57767         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
57768         return to the initial working directory.  Preserve errno
57769         for caller.
57770         * lib/idcache.c: Include "xalloc.h".
57771         (xmalloc, xrealloc): Remove decls.
57772         (getuser): Remove casts no longer required in C89.
57773         * lib/human.c: Include stdio.h, for sprintf.
57774         * lib/group-member.c: Include "xalloc.h".
57775         (xmalloc, xrealloc): Remove decls.
57776         (get_group_info): Remove casts no longer required in C89.
57777         * lib/getusershell.c (readname): Remove casts no longer required in
57778         C89.
57779         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
57780         * lib/getline.c: Whitespace fix, from coreutils.
57781
57782 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57783
57784         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
57785         Check for isascii.
57786
57787         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
57788         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
57789         Undo previous (whitespace-only) change.
57790
57791 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57792
57793         * lib/exclude.c: Include <ctype.h>
57794         (IN_CTYPE_DOMAIN): New macro.
57795         (is_space): New fn.
57796         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
57797         and empty lines.
57798
57799         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
57800         Undo previous (whitespace-only) change.
57801
57802 2003-08-13  Paul Eggert  <eggert@twinsun.com>
57803
57804         * config/srclist-update: Change update back to the old behavior,
57805         leaving whitespace alone.  Use one 'sed' command rather than a
57806         pipeline.
57807         (fixlicense): Now a variable, not a function.
57808         (remove_trailing_blanks): Remove.
57809         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
57810         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
57811         Undo previous (whitespace-only) change.
57812
57813 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57814
57815         Merge from coreutils.
57816         * modules/euidaccess: Add lib_SOURCES, include for new
57817         file euidaccess.h
57818
57819 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57820
57821         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
57822         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
57823         Normalize leading white space and remove trailing white space.
57824
57825         Merge from coreutils
57826         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
57827
57828         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
57829         0.12.1.  These files are now being upgraded automatically by
57830         ../config/srclist-update.
57831
57832 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57833
57834         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
57835         Normalize leading white space and remove trailing white space.
57836         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
57837         notice, as per ../config/srclist-update.
57838
57839         Merge from coreutils.
57840         * lib/euidaccess.h: New file.
57841         * lib/euidaccess.c: Include it.
57842         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
57843         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
57844         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
57845
57846 2003-08-12  Paul Eggert  <eggert@twinsun.com>
57847
57848         * config/srclist-update: Add copyright notice.
57849         (remove_id_lines, remove_trailing_blanks): New constants.
57850         (fixfile): Use them to normalize spacing a bit in copied files.
57851         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
57852         Normalize leading white space and remove trailing white space.
57853
57854         * config/texinfo.tex: Sync with texinfo.
57855
57856         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
57857         strtoul.c from libc, to merge coreutils whitespace changes.
57858
57859         * config/srclist.txt: Get the following m4 files from gettext:
57860         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
57861         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
57862         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
57863         wint_t.m4.
57864
57865 2003-08-12  Karl Berry  <karl@gnu.org>
57866
57867         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
57868         been made.
57869
57870 2003-08-11  Paul Eggert  <eggert@twinsun.com>
57871
57872         * modules/gnu-source, m4/gnu-source.m4:
57873         Remove; we're assuming Autoconf 2.54 or later now.
57874         Suggested by Bruno Haible.
57875         * MODULES.html.sh (func_all_modules): Remove gnu-source.
57876
57877 2003-08-11  Bruno Haible  <bruno@clisp.org>
57878
57879         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
57880
57881 2003-08-11  Bruno Haible  <bruno@clisp.org>
57882
57883         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
57884         (vasnprintf): Use it instead of wcslen.
57885
57886 2003-08-11  Bruno Haible  <bruno@clisp.org>
57887
57888         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
57889         value to ensure that _Bool promotes to int. Use #define for _Bool when
57890         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
57891
57892 2003-08-10  Karl Berry  <karl@gnu.org>
57893
57894         * lib/regex.h: update from libc (whitespace fix).
57895
57896 2003-08-09  Paul Eggert  <eggert@twinsun.com>
57897
57898         Merge some files from coreutils.  These changes were
57899         originally made by Jim Meyering.
57900         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
57901         many older Unixes require this.
57902         * lib/alloca.c (alloca): Remove cast to argument of free;
57903         no longer needed in C89.
57904         * lib/alloca_.h, regex.h: Fix white space to match
57905         what GNU indent does.
57906
57907 2003-08-09  Paul Eggert  <eggert@twinsun.com>
57908
57909         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
57910         apparently Emacs's Unicode mode got confused before my 2003-08-05
57911         checkin.
57912
57913 2003-08-08  Paul Eggert  <eggert@twinsun.com>
57914
57915         * m4/extensions.m4: New file.
57916         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
57917         Require gl_USE_SYSTEM_EXTENSIONS.
57918         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
57919         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
57920
57921 2003-08-08  Paul Eggert  <eggert@twinsun.com>
57922
57923         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
57924         * modules/extensions, modules/gnu-source: New files.
57925         * modules/timespec, modules/unlocked-io: Depend on extensions.
57926
57927 2003-08-07  Paul Eggert  <eggert@twinsun.com>
57928
57929         * modules/restrict: New file.
57930         * MODULES.html.sh (func_all_modules): Add restrict.
57931         * modules/regex: Depend on restrict.
57932
57933 2003-08-07  Paul Eggert  <eggert@twinsun.com>
57934
57935         * m4/restrict.m4: New file.
57936         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
57937
57938 2003-08-07  Bruno Haible  <bruno@clisp.org>
57939
57940         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
57941         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
57942
57943 2003-08-07  Bruno Haible  <bruno@clisp.org>
57944
57945         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
57946         makes the module 'getndelim2' compatible with the module 'getline'.
57947
57948 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57949
57950         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
57951         byte with "\201" to avoid glitches when editing that source file
57952         with multi-gnome-terminal.
57953
57954 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57955
57956         * lib/bumpalloc.h: Remove.
57957
57958 2003-08-05  Paul Eggert  <eggert@twinsun.com>
57959
57960         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
57961         * modules/bumpalloc: Remove.
57962
57963 2003-08-04  Paul Eggert  <eggert@twinsun.com>
57964
57965         * lib/getloadavg.c: Change copyright notice and spacing to conform to
57966         GNU coding style.
57967
57968         Merge from coreutils.
57969         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
57970         1. From glibc.
57971         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
57972         from Karl Berry, implemented by Jim Meyering.
57973         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
57974         from Dmitry V. Levin.
57975         Remove anachronistic cast of xrealloc.
57976         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
57977         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
57978         type. Otherwise, it wouldn't compile with at least /bin/cc on
57979         ymp-cray-unicos9.0.2.X.
57980         Combine two mostly-identical uses of alloca into one.
57981         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
57982
57983 2003-08-04  Dave Love  <d.love@dl.ac.uk>
57984
57985         [From Emacs.]
57986
57987         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
57988         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
57989         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
57990         obsolete NLIST_NAME_UNION.
57991         [__GNU__]: Undef BSD and FSCALE.
57992         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
57993
57994 2003-08-03  Paul Eggert  <eggert@twinsun.com>
57995
57996         * lib/stdbool_.h (_Bool): Make it signed char, instead of
57997         an enum type, so that it's guaranteed to promote to int.  See:
57998         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
57999
58000 2003-08-03  Karl Berry  <karl@gnu.org>
58001
58002         * config/depcomp: update from automake.
58003
58004 2003-07-31  Paul Eggert  <eggert@twinsun.com>
58005
58006         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
58007         (strerror): Don't assume that a printable int fits in 14 bytes.
58008
58009 2003-07-31  Bruno Haible  <bruno@clisp.org>
58010
58011         * modules/getpass-gnu: New file.
58012         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
58013
58014 2003-07-31  Bruno Haible  <bruno@clisp.org>
58015
58016         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
58017
58018 2003-07-24  Karl Berry  <karl@gnu.org>
58019
58020         * config/missing: update from automake.
58021
58022 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
58023             Bruno Haible  <bruno@clisp.org>
58024
58025         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
58026         * lib/getline.c (getline, getdelim): Likewise.
58027         Remove _GNU_SOURCE define; now it's defined in config.h through
58028         m4/getline.m4.
58029
58030 2003-07-23  Karl Berry  <karl@gnu.org>
58031
58032         * config/config.sub: update from prep.
58033
58034 2003-07-22  Paul Eggert  <eggert@twinsun.com>
58035
58036         * modules/xalloc (Depends-on): Add exitfail.
58037         * modules/xmemcoll: Likewise.
58038
58039 2003-07-22  Paul Eggert  <eggert@twinsun.com>
58040
58041         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
58042         over-parenthesization in macros.
58043
58044         Sync with coreutils.
58045
58046         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
58047         required by C99.
58048
58049         Use `exit_failure' for xalloc and xmemcoll instead of their own
58050         private exit-failure variables.
58051         * lib/xalloc.h (xalloc_exit_failure): Remove.
58052         * lib/xmalloc.c: Likewise.  Include exitfail.h.
58053         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
58054         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
58055         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
58056         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
58057
58058 2003-07-20  Jim Meyering  <jim@meyering.net>
58059
58060         * modules/closeout (Depends-on): Add exitfail.
58061         Suggestion from Bruno Haible.
58062
58063 2003-07-19  Karl Berry  <karl@gnu.org>
58064
58065         * config/config.sub: update from prep.
58066
58067 2003-07-18  Paul Eggert  <eggert@twinsun.com>
58068
58069         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
58070         Remove.
58071         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
58072         to test that it can stand by itself.  Include "exitfail.h".
58073         Clients should set exit_failure instead.
58074         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
58075
58076 2003-07-18  Bruno Haible  <bruno@clisp.org>
58077
58078         * modules/getndelim2: New file.
58079         * modules/getline: Share files with module getndelim2.
58080         * modules/getnline: Depend on getndelim2 instead of sharing files with
58081         it. Add getnline.c to lib_SOURCES.
58082         * MODULES.html.sh (func_all_modules): Add getndelim2.
58083
58084 2003-07-18  Bruno Haible  <bruno@clisp.org>
58085
58086         * m4/getndelim2.m4: New file.
58087         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
58088         invoke gl_PREREQ_GETNDELIM2.
58089         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
58090         gl_PREREQ_GETNDELIM2.
58091         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
58092         gl_GETNDELIM2.
58093
58094 2003-07-18  Bruno Haible  <bruno@clisp.org>
58095
58096         * lib/getndelim2.h: New file.
58097         * lib/getndelim2.c: Make into a module of its own. Include config.h,
58098         getndelim2.h.
58099         (getndelim2): Make non-static. Change return type to ssize_t.
58100         * lib/getline.h: Change argument names.
58101         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
58102         * lib/getnline.c: Include getndelim2.h.
58103
58104 2003-07-18  Andreas Schwab  <schwab@suse.de>
58105
58106         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
58107
58108 2003-07-17  Karl Berry  <karl@gnu.org>
58109
58110         * config/config.sub: update from prep.
58111
58112 2003-07-17  Bruno Haible  <bruno@clisp.org>
58113
58114         * modules/getnline: New file.
58115         * modules/getline: Add lib/getndelim2.c to source file list.
58116         * MODULES.html.sh (func_all_modules): Add getnline.
58117
58118 2003-07-17  Bruno Haible  <bruno@clisp.org>
58119
58120         * m4/getnline.m4: New file.
58121
58122 2003-07-17  Bruno Haible  <bruno@clisp.org>
58123
58124         * m4/Makefile.am.in: Remove file.
58125         * m4/Makefile.am: Remove file.
58126         * m4/Makefile.in: Remove file.
58127
58128 2003-07-17  Bruno Haible  <bruno@clisp.org>
58129
58130         * lib/getnline.h: New file.
58131         * lib/getnline.c: New file.
58132         * lib/getndelim2.c: New file, extracted from getline.c.
58133         (getndelim2): Renamed from getdelim2, with added nmax argument.
58134         * lib/getline.c: Include getndelim2.c.
58135         (getdelim2): Moved out to getndelim2.c.
58136         (getline, getdelim): Update.
58137
58138 2003-07-17  Bruno Haible  <bruno@clisp.org>
58139
58140         * lib/Makefile.am: Remove file.
58141         * lib/Makefile.in: Remove file.
58142
58143 2003-07-17  Bruno Haible  <bruno@clisp.org>
58144
58145         * configure.in: Remove file.
58146         * Makefile.in: Remove file.
58147
58148 2003-07-17  Bruno Haible  <bruno@clisp.org>
58149
58150         * MODULES.html.sh: Put the </BODY> right before </HTML>.
58151
58152 2003-07-16  Karl Berry  <karl@gnu.org>
58153
58154         * config/srclist-update: was running fixlicense twice, which caused
58155                 texinfo.tex to be nullified for some reason.  Simplify,
58156                 $gplsrc is no longer needed as far as I can see?
58157
58158 2003-07-16  Jim Meyering  <jim@meyering.net>
58159
58160         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
58161
58162 2003-07-15  Paul Eggert  <eggert@twinsun.com>
58163
58164         * config/srclist.txt: Get the following files from gettext-runtime/intl
58165         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
58166         ref-del.sin.  From Bruno Haible.
58167         * config/srclist-update (fixfile): Change grep pattern again, since the
58168         previous fix didn't work (there was another trailing $).  Use
58169         '[$]' to escape the $s.
58170
58171 2003-07-15  Karl Berry  <karl@gnu.org>
58172
58173         * lib/vasnprintf.c: update from gettext.
58174
58175 2003-07-15  Karl Berry  <karl@gnu.org>
58176
58177         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
58178         gets expanded when surrounded by '$'.
58179
58180 2003-07-15  Jim Meyering  <jim@meyering.net>
58181
58182         * modules/save-cwd: Don't depend on error.  From Derek Price.
58183
58184 2003-07-15  Jim Meyering  <jim@meyering.net>
58185
58186         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
58187
58188 2003-07-14  Simon Josefsson  <jas@extundo.com>
58189
58190         * modules/mempcpy: New file.
58191         * MODULES.html.sh (func_all_modules): Add mempcpy.
58192
58193 2003-07-14  Simon Josefsson  <jas@extundo.com>
58194
58195         * m4/mempcpy.m4: New file.
58196
58197 2003-07-14  Simon Josefsson  <jas@extundo.com>
58198
58199         * lib/mempcpy.h: New file.
58200         * lib/mempcpy.c: New file.
58201
58202 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58203
58204         * modules/getdate, modules/posixtm: Depend on mktime.
58205
58206 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58207
58208         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
58209         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
58210         unicodeio.c, unicodeio.h, unlocked-io.h:
58211         Switch from LGPL to GPL.
58212
58213 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58214
58215         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
58216         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
58217         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
58218         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
58219         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
58220         updated automatically by ../config/srclist-update.  This changes
58221         their license from LPGL to GPL.
58222
58223 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58224
58225         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
58226         assumed to refer to the root of the most recent stable gettext version.
58227         * config/srclistvars.sh: Add defaults for eggert.
58228         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
58229         Match "This program" as well as "The program".  This is needed
58230         for gettext.
58231
58232 2003-07-14  Jim Meyering  <jim@meyering.net>
58233
58234         Don't emit diagnostics.  Let callers do that.
58235         * lib/save-cwd.c: Don't include "error.h".
58236         (save_cwd): Don't call error.  Ensure that errno is valid
58237         when returning nonzero.
58238
58239         * lib/save-cwd.h (restore_cwd): Update prototype.
58240         * lib/save-cwd.c (restore_cwd): Remove two parameters.
58241         Simplify.  Don't call error upon failure.  Let callers do that.
58242         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
58243         when auditing is enabled.  But don't bother updating the #if.
58244
58245 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
58246
58247         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
58248         it breaks C++ compilation.
58249         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
58250
58251 2003-07-10  Simon Josefsson  <jas@extundo.com>
58252
58253         * modules/strchrnul (Makefile.am): Add strchrnul.h.
58254
58255 2003-07-10  Jim Meyering  <jim@meyering.net>
58256
58257         * m4/clock_time.m4: Remove trailing blank.
58258         * m4/intmax_t.m4: Likewise.
58259
58260 2003-07-10  Jim Meyering  <jim@meyering.net>
58261
58262         * lib/vasnprintf.c: Remove trailing blanks.
58263         Make cpp indentation consistent.
58264
58265 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58266
58267         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
58268         posixver.c, strftime.c, strnlen.c, strverscmp.c:
58269         Switch from LGPL to GPL.
58270
58271 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58272
58273         * config/srclist.txt: Sort sublists.  Add
58274         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
58275         that differ from gnulib for one reason or another; we'd like this list
58276         to be smaller but for now let's document what we have.
58277
58278 2003-07-08  Paul Eggert  <eggert@twinsun.com>
58279
58280         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
58281         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
58282         and sweeter "eval x=$x".
58283         * config/srclist.txt: Get lib/argp* from glibc.
58284
58285 2003-07-07  Paul Eggert  <eggert@twinsun.com>
58286
58287         * lib/mktime.c: Fix some boundary cases and remove need for floating
58288         point.
58289
58290         Issue a compile-time diagnostic if time_t is floating point, or if
58291         two's complement arithmetic is not in effect, or if arithmetic
58292         right shift does not propagate the sign.  These assumptions were
58293         all in the original code but they weren't checked.
58294
58295         (TIME_T_MIDPOINT, verify): New macros.
58296         (__isleap): Remove; it has integer overflow problems.
58297         (leapyear): New function, without those problems.
58298         (ydhms_tm_diff): Remove; splitting into two parts.
58299         (ydhms_diff): New function, containing the arithmetic part of
58300         the old ydhms_tm_diff function.  Issue a compile-time
58301         diagnostic if we are not using C99 integer division.
58302         Avoid casts when possible.
58303         (guess_time_tm): New function, containing the checking part of
58304         the old ydhms_tm_diff function.  Return the new value, rather than
58305         the difference between it and the old.  Accept a new argument T
58306         so that *T specifies the old value.  Check for overflow in the result.
58307
58308         (__mktime_internal): Use a time_t offset, not a long int offset.
58309         This undoes the 2003-06-04 change, which is no longer needed now
58310         that we have better overflow checking.
58311         (localtime_offset): Likewise.
58312
58313         (__mktime_internal): Avoid harmful overflow on hosts where time_t
58314         and long are 64-bit but int is only 32-bit.
58315         (ydhms_diff): Use long int to store year1 and yday1.
58316         Issue a compile-time diagnostic if long int is not wide enough.
58317
58318         (__mktime_internal): Use long int to store adjusted year and yday.
58319         Use plain C rather than preprocessor commands, if that doesn't
58320         affect efficiency.
58321         Check for overflow (and try to repair) after each probe
58322         rather than checking only at the very end.  This avoids some bugs
58323         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
58324         does not equal GMT offset at maximum time).
58325         Use integer to check for overflow rather than floating point; this
58326         is more portable to non-IEEE hosts, and is a tad faster.
58327         When we detect that we are oscillating between two values,
58328         don't check whether tm_isdst has the requested value, since
58329         we already know the answer.  When tm_isdst has the wrong value,
58330         use a different heuristic to find the right one, based on the
58331         extreme values actually observed in practice in tz2003a,
58332         rather than the (overly optimistic) "previous 3 calendar quarters".
58333
58334         (not_equal_tm, print_tm, check_result): Use "const T" rather than
58335         "T const" to accommodate glibc style.
58336         (check_result): Use less-confusing report format.  "long" -> "long int.
58337         (main): Likewise.
58338         Don't loop if the iteration overflows time_t.
58339         Allow a negative step in the iteration.
58340
58341 2003-07-06  Karl Berry  <karl@gnu.org>
58342
58343         * config/depcomp: update from automake.
58344         * config/config.sub: update from prep.
58345
58346 2003-07-03  Karl Berry  <karl@gnu.org>
58347
58348         * config/config.guess: update from prep.
58349
58350 2003-07-01  Paul Eggert  <eggert@twinsun.com>
58351
58352         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
58353         xreadlink.c now includes it unconditionally.
58354
58355 2003-07-01  Paul Eggert  <eggert@twinsun.com>
58356
58357         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
58358         having it depend on HAVE_SYS_TYPES_H.
58359
58360 2003-07-01  Bruno Haible  <bruno@clisp.org>
58361
58362         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
58363         <sys/types.h> should be sufficient.
58364         Reported by Paul Eggert.
58365
58366 2003-06-26  Karl Berry  <karl@gnu.org>
58367
58368         * config/depcomp: update from automake.
58369
58370 2003-06-26  Bruno Haible  <bruno@clisp.org>
58371
58372         * modules/human: Depend on module stdbool.
58373
58374 2003-06-25  Bruno Haible  <bruno@clisp.org>
58375
58376         * modules/readlink: New file.
58377         * modules/xreadlink: Depend on it.
58378         * MODULES.html.sh (func_all_modules): Add readlink.
58379
58380 2003-06-25  Bruno Haible  <bruno@clisp.org>
58381
58382         * m4/readlink.m4: New file.
58383
58384 2003-06-25  Bruno Haible  <bruno@clisp.org>
58385
58386         * lib/readlink.c: New file.
58387
58388 2003-06-22  Karl Berry  <karl@gnu.org>
58389
58390         * config/srclist.txt: update mkinstalldirs from automake.
58391         * config/mkinstalldirs: update.
58392
58393 2003-06-22  Bruno Haible  <bruno@clisp.org>
58394
58395         Portability to mingw32.
58396         * m4/ssize_t.m4: New file, from GNU gettext.
58397         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
58398         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
58399
58400 2003-06-22  Bruno Haible  <bruno@clisp.org>
58401
58402         * modules/safe-read: Add m4/ssize_t.m4.
58403         * modules/xreadlink: Add m4/ssize_t.m4.
58404
58405 2003-06-20  Bruno Haible  <bruno@clisp.org>
58406
58407         Assume C89, so PARAMS isn't needed.
58408         * lib/unicodeio.h (PARAMS): Remove.
58409         * lib/unicodeio.c: Don't use PARAMS.
58410
58411 2003-06-18  Karl Berry  <karl@gnu.org>
58412
58413         * config/config.{guess,sub}: update from prep.
58414
58415 2003-06-18  Jim Meyering  <jim@meyering.net>
58416
58417         Merge changes from coreutils.
58418         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
58419         Remove explicit declarations of xmalloc and realloc.
58420         Include xalloc.h.
58421         (read_utmp): Remove anachronistic cast of xmalloc.
58422
58423 2003-06-17  Paul Eggert  <eggert@twinsun.com>
58424
58425         Assume C89, so PARAMS isn't needed.
58426         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
58427         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
58428         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
58429         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
58430         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
58431         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
58432         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
58433         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
58434         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
58435         lib/xstrtod.h, lib/xstrtol.h: Likewise.
58436         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
58437         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
58438         no longer needed. Anyway, config.h should always be included before any
58439         other file.
58440
58441 2003-06-11  Simon Josefsson  <jas@extundo.com>
58442
58443         * modules/sysexits: New file.
58444         * MODULES.html.sh (func_all_modules): Add sysexits.
58445
58446 2003-06-11  Simon Josefsson  <jas@extundo.com>
58447
58448         * lib/sysexit_.h: New file.
58449
58450 2003-06-11  Derek Price  <derek@ximbiot.com>
58451
58452         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
58453         necessary.
58454
58455 2003-06-11  Bruno Haible  <bruno@clisp.org>
58456
58457         * m4/sysexits.m4: New file.
58458
58459 2003-06-10  Simon Josefsson  <jas@extundo.com>
58460
58461         * lib/argp.h: New file, from glibc.
58462         * lib/argp-ba.c: New file, from glibc.
58463         * lib/argp-eexst.c: New file, from glibc.
58464         * lib/argp-fmtstream.c: New file, from glibc.
58465         * lib/argp-fmtstream.h: New file, from glibc.
58466         * lib/argp-fs-xinl.c: New file, from glibc.
58467         * lib/argp-help.c: New file, from glibc.
58468         * lib/argp-namefrob.h: New file, from glibc.
58469         * lib/argp-parse.c: New file, from glibc.
58470         * lib/argp-pv.c: New file, from glibc.
58471         * lib/argp-pvh.c: New file, from glibc.
58472         * lib/argp-xinl.c: New file, from glibc.
58473
58474 2003-06-10  Simon Josefsson  <jas@extundo.com>
58475
58476         * modules/strchrnul: New file.
58477
58478 2003-06-10  Simon Josefsson  <jas@extundo.com>
58479
58480         * modules/argp: New file.
58481
58482 2003-06-10  Simon Josefsson  <jas@extundo.com>
58483
58484         * m4/strchrnul.m4: New file.
58485
58486 2003-06-10  Simon Josefsson  <jas@extundo.com>
58487
58488         * lib/strchrnul.h: New file.
58489         * lib/strchrnul.c: New file.
58490
58491 2003-06-10  Bruno Haible  <bruno@clisp.org>
58492
58493         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
58494
58495 2003-06-07  Karl Berry  <karl@gnu.org>
58496
58497         * config/config.{guess,sub}: update from prep.
58498
58499 2003-06-07  Jim Meyering  <jim@meyering.net>
58500
58501         * modules/strtod: Use $(...) notation, not @...@ for
58502         AC_REPLACE'd variables.
58503         * modules/localcharset: Likewise.
58504
58505 2003-06-07  Jim Meyering  <jim@meyering.net>
58506
58507         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
58508         in place of my name in the copyright comment.
58509         Remove definition and uses of __P.
58510
58511         From coreutils.
58512         * lib/stat.c: Don't declare xmalloc explicitly.
58513         Instead, include "xalloc.h".
58514         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
58515         xrealloc, and xcalloc return values.
58516         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
58517         Improve comment.
58518         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
58519
58520 2003-06-07  Bruno Haible  <bruno@clisp.org>
58521
58522         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
58523         avoid AC_CONFIG_LINKS.
58524         * modules/fnmatch (Makefile.am): Use explicit creation rule for
58525         fnmatch.h, to avoid AC_CONFIG_LINKS.
58526         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
58527
58528 2003-06-07  Bruno Haible  <bruno@clisp.org>
58529
58530         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
58531         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
58532         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
58533         directory.
58534         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
58535         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
58536         directory.
58537
58538 2003-06-06  Jim Meyering  <jim@meyering.net>
58539
58540         Merge from coreutils.
58541         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
58542         Consolidate declarations and initializations of *_base* locals.
58543
58544         Merge from coreutils.
58545         This avoids a core dump on systems without GNU putenv,
58546         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
58547         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
58548         (unsetenv): New static function, from GNU libc.
58549         (rpl_putenv): Use it.
58550
58551         * lib/modechange.c: Remove trailing blanks.
58552
58553         Merge from coreutils.
58554         * lib/fsusage.c: Remove declaration of statfs.
58555         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
58556
58557         * lib/posixtm.c: Include <stdbool.h> unconditionally.
58558
58559 2003-06-06  Jim Meyering  <jim@meyering.net>
58560
58561         * lib/stdbool_.h: Renamed from stdbool.h.in.
58562
58563 2003-06-06  Jim Meyering  <jim@meyering.net>
58564             Bruno Haible  <bruno@clisp.org>
58565
58566         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
58567         Adjust Makefile.am snippet not to redirect directly to target.
58568         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
58569
58570 2003-06-05  Paul Eggert  <eggert@twinsun.com>
58571
58572         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
58573         mismatch, look in future quarters as well as past.  This fixes a
58574         bug when processing fall-backwards gaps immediately after a long
58575         period of daylight-saving time.
58576
58577         * lib/mktime.c: Assume freestanding C89 or better.
58578         (HAVE_LIMITS_H): Remove.  Assume it's 1.
58579         (__P): Remove; not used.
58580         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
58581         (mktime, not_equal_tm, print_tm, check_result,
58582         main): Use prototypes.  Use const * where appropriate.
58583         (main): Fix typo in testing code that uncovered by above changes.
58584         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
58585
58586 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58587
58588         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
58589         locale.h, localeconv.  This merges changes from coreutils.
58590
58591         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
58592         It can be removed after the next Autoconf is released.
58593         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
58594         needed.
58595
58596 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58597
58598         * lib/mktime.c: Fix Debian bug 177940
58599         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
58600         (localtime_offset): Now long int, not time_t, because we want it
58601         to be guaranteed to be signed.  All uses changed.
58602         (__mktime_internal): If overflow would occur when adding offset,
58603         don't add it.
58604
58605         Merge 'human' changes from coreutils.  Rewrite to support
58606         locale-specific notations like thousands separators.
58607         * lib/human.c: Simplify authorship notice.
58608         Include human.h immediately after config.h.
58609         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
58610         <limits.h>: Do not include, since human.h does.
58611         (SIZE_MAX, UINTMAX_MAX): New macros.
58612         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
58613         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
58614         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
58615         (power_letter): Renamed from suffixes.
58616         (generate_suffix_backwards): Remove.
58617         (adjust_value): Now takes int style (because of human.h changes)
58618         and long double value (for greater precision on some platforms).
58619         (group_number): New function.
58620         (human_readable): Use it.  Use integer options, not enum.
58621         Put the options before the sizes in the arg list.
58622         Support all the new options.
58623         The old human_readable function has been removed;
58624         use inttostr.h instead.
58625         (human_readable, default_block_size, humblock):
58626         Use uintmax_t, not int, for block sizes.
58627         (human_readable_inexact, block_size_types): Remove.
58628         (block_size_opts): New constant.
58629         (human_options): Renamed from human_block_size, with new signature
58630         that allows block sizes up to UINTMAX_MAX.  All callers changed.
58631         * lib/human.h: Add copyright and authorship notice.
58632         Include <limits.h> and <stdbool.h> unconditionally.
58633         (PARAMS): Remove.  All uses removed.
58634         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
58635         (enum human_inexact_style): Remove tag; now a nameless enum.
58636         (human_floor, human_ceiling, human_round_to_even): Now have
58637         values 2, 0, 1 rather than -1, 1, 0.
58638         (human_group_digits, human_suppress_point_zero, human_autoscale,
58639         human_base_1024, human_SI, human_B): New constants.
58640         (human_readable_inexact, human_block_size): Remove.
58641         (human_readable): Size args are now uintmax_t, not int.
58642         (human_options): New decl.
58643
58644         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
58645         unnecessary now that we assume C89 or better.  This change
58646         imported from coreutils.
58647
58648         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
58649         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
58650         in the 2003-05-30 sync from glibc.
58651
58652         .h files should stand alone, but we shouldn't include <sys/types.h>
58653         if we can get away with just <stddef.h>.
58654
58655         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
58656         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
58657         rather than <sys/types.h>, as we merely need size_t.
58658         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
58659         to get size_t.
58660         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
58661         Include <stdio.h>, to get FILE.
58662         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
58663         memcasecmp.h has included <stddef.h> and all we need is size_t.
58664         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
58665         our interface, instead of including <sys/types.h>
58666
58667 2003-06-04  Paul Eggert  <eggert@twinsun.com>
58668
58669         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
58670         now, as glibc mktime is buggy on non-glibc systems.
58671
58672 2003-06-03  Karl Berry  <karl@gnu.org>
58673
58674         * config/config.sub: update from prep.
58675
58676 2003-06-02  Paul Eggert  <eggert@twinsun.com>
58677
58678         [from coreutils]
58679         Fix some minor time-related bugs with POSIX time arguments.
58680         Some valid time stamps were being rejected (notably -1, and
58681         time stamps before 1900 on 64-bit hosts).  And some invalid
58682         time stamps were being accepted, e.g. September 31.
58683
58684         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
58685         that we can return (time_t) -1 successfully.
58686         * lib/posixtm.c: Likewise.
58687         [HAVE_STDBOOL_H]: Include <stdbool.h>.
58688         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
58689         (t): Remove static var.
58690         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
58691         of static var.  All uses changed.
58692         (year): Do not reject years before 1900; they can occur with
58693         64-bit time_t.
58694         (posix_time_parse): Do not check for out-of-range components;
58695         that is now the caller's responsibility, since our checks were
58696         only approximations.
58697         (posixtime): Use mktime to check for out-of-range components,
58698         since it knows them exactly.
58699         If mktime returns (time_t) -1, check whether an error actually occurred
58700         by invoking localtime on -1.
58701         (main) [TEST_POSIXTIME]: Check for input data errors, and report
58702         posixtime failures better.
58703         Improve the test data (in comments only).
58704
58705 2003-06-02  Karl Berry  <karl@gnu.org>
58706
58707         * config/mkinstalldirs (version): new variable.
58708         (--version): new option.
58709         (usage): improve message.
58710
58711 2003-05-30  Karl Berry  <karl@gnu.org>
58712
58713         * lib/mktime.c: update from libc.
58714
58715 2003-05-30  Bruno Haible  <bruno@clisp.org>
58716
58717         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
58718         * config/config.rpath: Upgrade to gettext-0.12.1.
58719
58720 2003-05-30  Bruno Haible  <bruno@clisp.org>
58721
58722         * m4/gettext.m4: Upgrade to gettext-0.12.1.
58723         * m4/nls.m4: New file, from gettext-0.12.1.
58724         * m4/po.m4: New file, from gettext-0.12.1.
58725         * m4/progtest.m4: Upgrade to gettext-0.12.1.
58726
58727 2003-05-30  Bruno Haible  <bruno@clisp.org>
58728
58729         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
58730         * lib/localcharset.h: Likewise.
58731         * lib/localcharset.c: Likewise.
58732
58733 2003-05-29  Karl Berry  <karl@gnu.org>
58734
58735         * config/config.rpath: update from gettext.
58736
58737 2003-05-28  Paul Eggert  <eggert@twinsun.com>
58738
58739         Assume the headers required for C89 freestanding compilers.
58740         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
58741         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
58742         * m4/human.m4 (gl_HUMAN): Likewise.
58743         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
58744         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
58745         * m4/userspec.m4 (gl_USERSPEC): Likewise.
58746         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
58747         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
58748         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
58749
58750 2003-05-28  Paul Eggert  <eggert@twinsun.com>
58751
58752         Assume the headers required for C89 freestanding compilers.
58753         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
58754         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
58755         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
58756         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
58757         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
58758         define, since <limits.h> is guaranteed to do that.
58759         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
58760         * lib/exclude.c: Include <stdbool.h> unconditionally.
58761         * lib/tempname.c: Include <stddef.h> unconditionally.
58762         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
58763         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
58764         <stddef.h> does that.
58765         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
58766         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
58767         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
58768         needed.
58769         * lib/xstrtol.c: Likewise.
58770         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
58771         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
58772
58773         * lib/addext.c (addext): Use assignment rather than cast, to avoid
58774         warnings on some platforms.
58775
58776         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
58777         arbitrarily.
58778
58779 2003-05-26  Jim Meyering  <jim@meyering.net>
58780
58781         Merge in a change from coreutils:
58782         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
58783         that is guaranteed to be `no'.  Use `no_such_member' to indicate
58784         that condition, rather than `-1' which is slightly misleading.
58785         Change the name of the cache variable to have the gl_ prefix.
58786         Prompted by a patch from Richard Dawe for DJGPP.
58787
58788 2003-05-24  Karl Berry  <karl@gnu.org>
58789
58790         * config/config.guess: update from prep.
58791
58792 2003-05-22  Karl Berry  <karl@gnu.org>
58793
58794         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
58795
58796 2003-05-20  Karl Berry  <karl@gnu.org>
58797
58798         * config/config.guess: update from prep.
58799
58800 2003-05-18  Karl Berry  <karl@gnu.org>
58801
58802         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
58803         might actually be set by the user.
58804
58805         * config/depcomp, install-sh, mdate-sh: update from automake.
58806
58807 2003-05-17  Bruno Haible  <bruno@clisp.org>
58808
58809         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
58810         invalid expansion for AC_EGREP_CPP.
58811         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
58812         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
58813         Suggested by Akim Demaille <akim@epita.fr> in
58814         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
58815
58816 2003-05-12  Jim Meyering  <jim@meyering.net>
58817
58818         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
58819         the space-padded-by-default conversion specifiers, %e, %k, %l.
58820
58821 2003-05-12  Bruno Haible  <bruno@clisp.org>
58822
58823         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
58824         the string is longer than 4 KB.
58825
58826 2003-05-11  Karl Berry  <karl@gnu.org>
58827
58828         * config/config.{guess,sub}: update from prep.
58829
58830 2003-05-09  Bruno Haible  <bruno@clisp.org>
58831
58832         * modules/error: Add m4/strerror_r.m4 to file list.
58833
58834 2003-05-03  Bruno Haible  <bruno@clisp.org>
58835
58836         Upgrade to Unicode-4.0.
58837         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
58838         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
58839         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
58840         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
58841         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
58842         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
58843         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
58844         Change width of U+E0100..U+E01EF from 1 to 0.
58845
58846 2003-04-25  Jim Meyering  <jim@meyering.net>
58847
58848         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
58849         of type size_t, not int.
58850
58851 2003-04-25  Bruno Haible  <bruno@clisp.org>
58852
58853         * lib/copy-file.c: Include <stddef.h>, for size_t.
58854
58855 2003-04-21  Paul Eggert  <eggert@twinsun.com>
58856
58857         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
58858         code which expansion is under static control.  Patch imported from
58859         Akim Demaille's patch to Bison; see
58860         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
58861
58862 2003-04-14  Bruno Haible  <bruno@clisp.org>
58863
58864         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
58865
58866 2003-04-11  Jim Meyering  <jim@meyering.net>
58867
58868         Merge changes from Coreutils.
58869
58870         2003-03-22  Jim Meyering  <jim@meyering.net>
58871
58872         * lib/strftime.c (widen): Cast alloca return value to proper type.
58873
58874         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
58875
58876         From GNU libc.
58877         * lib/strftime.c (my_strftime): Handle very large width
58878         specifications for numeric values correctly.  Improve checks for
58879         overflow.
58880
58881         2003-01-19  Jim Meyering  <jim@meyering.net>
58882
58883         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
58884         definitions.
58885         (nl_get_alt_digit) [! defined my_strftime]: Define.
58886         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
58887         _nl_get_alt_digit and _nl_get_walt_digit.
58888
58889         * lib/strftime.c (my_strftime): Merge in locale-related changes from
58890         libc. These changes have no effect outside of _LIBC.
58891
58892 2003-04-10  Bruno Haible  <bruno@clisp.org>
58893
58894         * modules/findprog: New file.
58895         * MODULES.html.sh (func_all_modules): Add it.
58896
58897 2003-04-10  Bruno Haible  <bruno@clisp.org>
58898
58899         * m4/findprog.m4: New file.
58900         * m4/eaccess.m4: New file.
58901
58902 2003-04-10  Bruno Haible  <bruno@clisp.org>
58903
58904         * lib/findprog.h: New file, from GNU gettext.
58905         * lib/findprog.c: New file, from GNU gettext.
58906
58907 2003-04-05  Jim Meyering  <jim@meyering.net>
58908
58909         Merge changes from Coreutils.
58910
58911         * lib/exclude.h (PARAMS): Remove definition and uses.
58912         * lib/exclude.c: Remove uses of `PARAMS'.
58913
58914         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
58915         Add test-cases for DOS filenames. Declare program_name.
58916         (main): Set up program_name.  Patch by Rich Dawe.
58917
58918         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
58919         error from mntctl.
58920         Use mntctl's return value to drive the entry-processing loop, since
58921         we can't rely on the value of the vmt_length member in the last
58922         entry.  On some systems doing so could result in exhausting
58923         virtual memory.  Based in part on a patch from Mike Jetzer.
58924
58925 2003-04-04  Bruno Haible  <bruno@clisp.org>
58926
58927         * modules/linebreak: New file.
58928         * MODULES.html.sh (func_all_modules): Add it.
58929
58930 2003-04-04  Bruno Haible  <bruno@clisp.org>
58931
58932         * m4/linebreak.m4: New file.
58933
58934 2003-04-04  Bruno Haible  <bruno@clisp.org>
58935
58936         * lib/linebreak.h: New file, from GNU gettext.
58937         * lib/linebreak.c: New file, from GNU gettext with slight
58938         modifications.
58939         * lib/lbrkprop.h: New file, from GNU gettext.
58940
58941 2003-04-03  Bruno Haible  <bruno@clisp.org>
58942
58943         * modules/utf8-ucs4: New file.
58944         * modules/utf16-ucs4: New file.
58945         * modules/ucs4-utf8: New file.
58946         * modules/ucs4-utf16: New file.
58947         * MODULES.html.sh (func_all_modules): Add them.
58948
58949 2003-04-03  Bruno Haible  <bruno@clisp.org>
58950
58951         * m4/utf-ucs4.m4: New file.
58952         * m4/ucs4-utf.m4: New file.
58953
58954 2003-04-03  Bruno Haible  <bruno@clisp.org>
58955
58956         * lib/utf8-ucs4.h: New file, from GNU gettext.
58957         * lib/utf16-ucs4.h: New file, from GNU gettext.
58958         * lib/ucs4-utf8.h: New file, from GNU gettext.
58959         * lib/ucs4-utf16.h: New file, from GNU gettext.
58960
58961 2003-04-02  Bruno Haible  <bruno@clisp.org>
58962
58963         * modules/binary-io: New file.
58964         * MODULES.html.sh (func_all_modules): Add it.
58965
58966 2003-04-02  Bruno Haible  <bruno@clisp.org>
58967
58968         * lib/binary-io.h: New file, from GNU gettext.
58969
58970 2003-04-01  Bruno Haible  <bruno@clisp.org>
58971
58972         * modules/pathname: New file.
58973         * MODULES.html.sh (func_all_modules): Add it.
58974
58975 2003-04-01  Bruno Haible  <bruno@clisp.org>
58976
58977         * lib/pathname.h: New file, from GNU gettext.
58978         * lib/concatpath.c: New file, from GNU gettext.
58979
58980 2003-03-30  Bruno Haible  <bruno@clisp.org>
58981
58982         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
58983
58984 2003-03-30  Bruno Haible  <bruno@clisp.org>
58985
58986         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
58987         function chown() doesn't exist.
58988
58989 2003-03-28  Bruno Haible  <bruno@clisp.org>
58990
58991         * modules/copy-file: New file.
58992         * MODULES.html.sh (func_all_modules): Add it.
58993
58994 2003-03-28  Bruno Haible  <bruno@clisp.org>
58995
58996         * m4/copy-file.m4: New file.
58997
58998 2003-03-28  Bruno Haible  <bruno@clisp.org>
58999
59000         * lib/copy-file.h: New file, from GNU gettext.
59001         * lib/copy-file.c: New file, from GNU gettext.
59002
59003 2003-03-18  Jim Meyering  <jim@meyering.net>
59004
59005         * lib/quote.c (quote_n): Fix typo in comment.
59006
59007 2003-03-18  Bruno Haible  <bruno@clisp.org>
59008
59009         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
59010         checking.
59011         * m4/onceonly_2_57.m4: Likewise.
59012
59013 2003-03-17  Bruno Haible  <bruno@clisp.org>
59014
59015         * m4/onceonly.m4: Require autoconf 2.54 or newer.
59016         (m4_quote): Remove macro.
59017         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
59018
59019 2003-03-14  Jim Meyering  <jim@meyering.net>
59020
59021         Merge changes from Coreutils.
59022         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
59023         to be const, in order to avoid warnings.
59024         (obstack_room): Likewise.
59025         (obstack_empty_p): Likewise.
59026
59027 2003-03-14  Bruno Haible  <bruno@clisp.org>
59028
59029         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
59030         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
59031
59032 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59033
59034         Merge changes from Bison.
59035         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
59036         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
59037         when compiling Bison 1.875's `bitset bset = obstack_alloc
59038         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
59039         * lib/hash.c: Include <stdbool.h> unconditionally.
59040
59041 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59042
59043         * m4/onceonly.m4 (m4_quote): New macro.
59044         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
59045         Quote AC_FOREACH variable-expansions properly.
59046
59047 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59048
59049         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
59050
59051 2003-03-09  Paul Eggert  <eggert@twinsun.com>
59052
59053         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
59054         Reported by Bruce Becker; see:
59055         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
59056
59057 2003-03-03  Paul Eggert  <eggert@twinsun.com>
59058             Bruno Haible  <bruno@clisp.org>
59059
59060         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
59061         Reported by John Hughes, see
59062         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
59063
59064 2003-02-20  Bruno Haible  <bruno@clisp.org>
59065
59066         * MODULES.html.sh (func_all_modules): Add poll.
59067
59068 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59069
59070         * modules/poll: New file.
59071
59072 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59073
59074         * lib/poll_.h: New file.
59075         * lib/poll.c: New file.
59076
59077 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59078
59079         * m4/poll.m4: New file.
59080
59081 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59082
59083         * modules/mathl: New file.
59084
59085 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59086
59087         * lib/mathl.h: New file.
59088         * lib/acosl.c: New file.
59089         * lib/asinl.c: New file.
59090         * lib/atanl.c: New file.
59091         * lib/ceill.c: New file.
59092         * lib/cosl.c: New file.
59093         * lib/expl.c: New file.
59094         * lib/floorl.c: New file.
59095         * lib/frexpl.c: New file.
59096         * lib/ldexpl.c: New file.
59097         * lib/logl.c: New file.
59098         * lib/sincosl.c: New file.
59099         * lib/sinl.c: New file.
59100         * lib/sqrtl.c: New file.
59101         * lib/tanl.c: New file.
59102         * lib/trigl.c: New file.
59103         * lib/trigl.h: New file.
59104
59105 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59106
59107         * m4/mathl.m4: New file.
59108
59109 2003-02-18  Bruno Haible  <bruno@clisp.org>
59110
59111         * MODULES.html.sh (func_all_modules): Add mathl.
59112
59113 2003-02-17  Bruno Haible  <bruno@clisp.org>
59114
59115         * modules/mkdtemp: New module.
59116         * MODULES.html.sh (func_all_modules): Add it.
59117
59118 2003-02-17  Bruno Haible  <bruno@clisp.org>
59119
59120         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
59121
59122 2003-02-17  Bruno Haible  <bruno@clisp.org>
59123
59124         * lib/mkdtemp.h: New file, from GNU gettext.
59125         * lib/mkdtemp.c: New file, from GNU gettext.
59126
59127 2003-02-02  Jim Meyering  <jim@meyering.net>
59128
59129         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
59130         e.g. glibc-2.2.93.
59131
59132 2003-01-31  Bruno Haible  <bruno@clisp.org>
59133
59134         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
59135         'rpl_rename'.
59136         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
59137         'rpl_strnlen'.
59138         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
59139         'rpl_strtod'.
59140         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
59141         'rpl_utime'.
59142
59143 2003-01-31  Bruno Haible  <bruno@clisp.org>
59144
59145         * lib/rename.c: #undef rename before defining rpl_rename.
59146         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
59147
59148 2003-01-30  Bruno Haible  <bruno@clisp.org>
59149
59150         * modules/vasnprintf, modules/vasprintf: New modules.
59151         * MODULES.html.sh (func_all_modules): Add them.
59152
59153 2003-01-30  Bruno Haible  <bruno@clisp.org>
59154
59155         * m4/signed.m4: New file, from GNU gettext.
59156         * m4/longdouble.m4: New file, from GNU gettext.
59157         * m4/wchar_t.m4: New file, from GNU gettext.
59158         * m4/wint_t.m4: New file, from GNU gettext.
59159         * m4/vasnprintf.m4: New file.
59160         * m4/vasprintf.m4: New file.
59161
59162 2003-01-30  Bruno Haible  <bruno@clisp.org>
59163
59164         * lib/printf-args.h: New file, from GNU gettext.
59165         * lib/printf-args.c: New file, from GNU gettext.
59166         * lib/printf-parse.h: New file, from GNU gettext.
59167         * lib/printf-parse.c: New file, from GNU gettext.
59168         * lib/vasnprintf.h: New file, from GNU gettext.
59169         * lib/vasnprintf.c: New file, from GNU gettext.
59170         * lib/asnprintf.c: New file, from GNU gettext.
59171         * lib/vasprintf.h: New file, from GNU gettext with modifications.
59172         * lib/vasprintf.c: New file, from GNU gettext.
59173         * lib/asprintf.c: New file, from GNU gettext.
59174
59175 2003-01-29  Bruno Haible  <bruno@clisp.org>
59176
59177         * modules/stpncpy: New module.
59178         * MODULES.html.sh (func_all_modules): Add it.
59179
59180 2003-01-29  Bruno Haible  <bruno@clisp.org>
59181
59182         * m4/stpncpy.m4: New file.
59183
59184 2003-01-29  Bruno Haible  <bruno@clisp.org>
59185
59186         * lib/stpncpy.h: New file, from GNU gettext with modifications.
59187         * lib/stpncpy.c: New file, from GNU gettext with modifications.
59188
59189 2003-01-28  Bruno Haible  <bruno@clisp.org>
59190
59191         * modules/c-ctype: New module.
59192         * MODULES.html.sh (func_all_modules): Add it.
59193
59194 2003-01-28  Bruno Haible  <bruno@clisp.org>
59195
59196         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
59197         Paul Eggert.
59198         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
59199         Paul Eggert.
59200
59201 2003-01-27  Bruno Haible  <bruno@clisp.org>
59202
59203         * modules/xsetenv: New module.
59204         * MODULES.html.sh (func_all_modules): Add it.
59205
59206 2003-01-27  Bruno Haible  <bruno@clisp.org>
59207
59208         * lib/xsetenv.h: New file, from GNU gettext.
59209         * lib/xsetenv.c: New file, from GNU gettext.
59210
59211 2003-01-23  Jim Meyering  <jim@meyering.net>
59212
59213         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
59214         from working on systems without dirfd (at least Irix and OSF1/Tru64).
59215
59216 2003-01-23  Bruno Haible  <bruno@clisp.org>
59217
59218         * modules/minmax: New module.
59219         * MODULES.html.sh (func_all_modules): Add it.
59220
59221 2003-01-23  Bruno Haible  <bruno@clisp.org>
59222
59223         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
59224         Eggert.
59225
59226 2003-01-22  Bruno Haible  <bruno@clisp.org>
59227
59228         * modules/exit: New module.
59229         * MODULES.html.sh (func_all_modules): Add it.
59230
59231 2003-01-22  Bruno Haible  <bruno@clisp.org>
59232
59233         * lib/exit.h: New file, from GNU gettext.
59234
59235 2003-01-19  Bruno Haible  <bruno@clisp.org>
59236
59237         * gnulib-tool: Recognize option --extract-maintainer.
59238         (func_get_maintainer): New function.
59239         * modules/*: Add Maintainer entry.
59240
59241 2003-01-16  Jim Meyering  <jim@meyering.net>
59242
59243         * m4/regex.m4: The `regex' struct is both input and output.
59244         Initialize it before each use.  Patch by Tim Waugh.
59245
59246 2003-01-16  Bruno Haible  <bruno@clisp.org>
59247
59248         * MODULES.html.sh: Add a table of contents. Add the module name as
59249         leftmost column. Add hyperlinks.
59250
59251 2003-01-15  Bruno Haible  <bruno@clisp.org>
59252
59253         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
59254
59255 2003-01-15  Bruno Haible  <bruno@clisp.org>
59256
59257         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
59258         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
59259         suffix.
59260
59261 2003-01-15  Bruno Haible  <bruno@clisp.org>
59262
59263         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
59264
59265 2003-01-15  Bruno Haible  <bruno@clisp.org>
59266
59267         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
59268         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
59269
59270 2003-01-14  Jim Meyering  <jim@meyering.net>
59271
59272         * lib/same.c (same_name): Tweak a comment.
59273
59274 2003-01-14  Bruno Haible  <bruno@clisp.org>
59275
59276         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
59277         when a string comparison is sufficient.
59278
59279 2003-01-14  Bruno Haible  <bruno@clisp.org>
59280
59281         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
59282         'unsigned int'.
59283
59284 2003-01-14  Bruno Haible  <bruno@clisp.org>
59285
59286         * lib/hash-pjw.c: Add comment about low quality of this function.
59287
59288 2003-01-13  Bruno Haible  <bruno@clisp.org>
59289
59290         * modules/stpcpy: Distribute lib/stpcpy.h.
59291         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
59292
59293 2003-01-13  Bruno Haible  <bruno@clisp.org>
59294
59295         * modules/*: Add a description.
59296         * modules/strpbrk: Fix Makefile.am snippet.
59297         * modules/strtoimax: Fix dependencies.
59298         * modules/strtoumax: Likewise.
59299
59300 2003-01-13  Bruno Haible  <bruno@clisp.org>
59301
59302         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
59303         * modules/alloca (Makefile.am): All object files depend on alloca.h.
59304         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
59305
59306 2003-01-13  Bruno Haible  <bruno@clisp.org>
59307
59308         * gnulib-tool (func_create_testdir): Store config/* files in the main
59309         directory.
59310         * config.rpath: Move to ...
59311         * config/config.rpath: ... here.
59312         * modules/gettext: Contains config/config.rpath, not config.rpath.
59313         * modules/iconv: Likewise.
59314
59315 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59316
59317         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59318         to avoid collisions with libcurses and libreadline.
59319
59320         * m4/getstr.m4: Remove.
59321         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
59322
59323 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59324
59325         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59326         to avoid collisions with libcurses and libreadline.
59327
59328         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
59329         * lib/getstr.h, getstr.c: Remove.
59330         * lib/getline.c: Include "getline.h", to check interface.
59331         Move body of old getstr.c here: this defines MIN_CHUNK and
59332         declares getdelim2, which is renamed from getstr.
59333         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
59334
59335         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
59336         All uses changed.
59337         * lib/linebuffer.h: Likewise.
59338         (readline): Remove backward-compatibility macro.
59339
59340 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59341
59342         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59343         to avoid collisions with libcurses and libreadline.
59344         * getstr: Remove.
59345         * MODULES.html.sh: Remove getstr.
59346         * modules/getline: Depend on unlocked-io, not getstr.
59347
59348 2003-01-12  Jim Meyering  <jim@meyering.net>
59349
59350         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
59351
59352 2003-01-10  Bruno Haible  <bruno@clisp.org>
59353
59354         * modules/alloca: Change Makefile.am requirements. Simplify Include
59355         requirements. Add lib/alloca_.h to file list.
59356
59357 2003-01-10  Bruno Haible  <bruno@clisp.org>
59358
59359         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
59360
59361 2003-01-10  Bruno Haible  <bruno@clisp.org>
59362
59363         * lib/alloca_.h: New file.
59364         * lib/getdate.y: Unconditionally include alloca.h.
59365         * lib/makepath.c: Likewise.
59366         * lib/setenv.c: Likewise.
59367         * lib/userspec.c: Likewise.
59368
59369 2003-01-09  Karl Berry  <karl@gnu.org>
59370
59371         * MODULES.html.sh: include `dirname $0` in PATH, to find
59372         gnulib-tool.
59373
59374 2003-01-09  Bruno Haible  <bruno@clisp.org>
59375
59376         * modules/stdbool: Change configure.ac, Makefile.am requirements.
59377         Simplify Include requirements. Add lib/stdbool.h.in to file list.
59378
59379 2003-01-09  Bruno Haible  <bruno@clisp.org>
59380
59381         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
59382
59383 2003-01-09  Bruno Haible  <bruno@clisp.org>
59384
59385         * lib/stdbool.h.in: New file.
59386
59387 2003-01-09  Bruno Haible  <bruno@clisp.org>
59388
59389         * gnulib-tool (func_all_modules): Ignore files ending in ~.
59390         * MODULES.html.sh: Likewise.
59391
59392 2003-01-08  Jim Meyering  <jim@meyering.net>
59393
59394         * lib/full-write.c: Undefine and define-away `const' after inclusion
59395         of errno.h, not before.  Suggestion from Bruno Haible.
59396
59397 2003-01-08  Bruno Haible  <bruno@clisp.org>
59398
59399         * modules/full-read: Depend on full-write.
59400
59401 2003-01-08  Bruno Haible  <bruno@clisp.org>
59402
59403         * lib/safe-read.c: Include specification header first, to ensure its
59404         selfcontainedness.
59405         * lib/full-write.c: Likewise.
59406
59407 2003-01-07  Jim Meyering  <jim@meyering.net>
59408
59409         * lib/full-write.c: Rework so that it may serve to define full_read,
59410         too.
59411         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
59412
59413 2003-01-07  Bruno Haible  <bruno@clisp.org>
59414
59415         * lib/strtoimax.c: Include <stdint.h> as an alternative to
59416         <inttypes.h>.
59417         * lib/xstrtol.h: Likewise.
59418         * lib/xstrtoimax.c: Likewise.
59419         * lib/xstrtoumax.c: Likewise.
59420         * lib/human.h: Likewise.
59421
59422         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
59423         on systems that have <inttypes.h> but not <stdint.h>.
59424
59425 2003-01-07  Bruno Haible  <bruno@clisp.org>
59426
59427         * MODULES.html.sh: Add copyright notice.
59428         (missed_files): Omit CVS directory entries.
59429         (func_module): Make it work with sed-3.02.
59430         * MODULES.txt: Remove file.
59431
59432 2003-01-06  Jim Meyering  <jim@meyering.net>
59433
59434         * lib/version-etc.c: Update year in translatable copyright string.
59435
59436 2003-01-03  Karl Berry  <karl@gnu.org>
59437
59438         * config/config.{guess,sub}: update from prep.
59439
59440 2003-01-02  Karl Berry  <karl@gnu.org>
59441
59442         * doc/COPYING.DOC: belatedly updated to 1.2.
59443
59444 2003-01-01  Karl Berry  <karl@gnu.org>
59445
59446         * gnulib-tool (func_verify_module): report module name $module in
59447         error message, not $1.
59448         * gnulib-tool (create-testdir): don't complain if destdir couldn't
59449         be created, only if it doesn't exist.
59450         * gnulib-tool (last_checkin_date): don't expand the $Date here.
59451
59452 2002-12-31  Paul Eggert  <eggert@twinsun.com>
59453
59454         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
59455
59456 2002-12-31  Paul Eggert  <eggert@twinsun.com>
59457
59458         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
59459         memcmp if strcoll doesn't work.
59460
59461 2002-12-31  Bruno Haible  <bruno@clisp.org>
59462
59463         * lib/utime.c (utime_null): No need to call ftruncate if the file was
59464         nonempty.
59465
59466 2002-12-31  Bruno Haible  <bruno@clisp.org>
59467
59468         * lib/memcoll.c (STRCOLL): New macro.
59469         (memcoll): Use it.
59470
59471 2002-12-31  Bruno Haible  <bruno@clisp.org>
59472
59473         * lib/localcharset.h: New file.
59474         * lib/localcharset.c: Include it.
59475         * lib/unicodeio.c: Likewise.
59476
59477 2002-12-31  Bruno Haible  <bruno@clisp.org>
59478
59479         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
59480         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
59481
59482 2002-12-31  Bruno Haible  <bruno@clisp.org>
59483
59484         * lib/getline.h: Include <stddef.h>, for size_t.
59485
59486         * lib/unicodeio.h: Include <stddef.h>, for size_t.
59487         * lib/unicodeio.c: Don't include <stddef.h>.
59488
59489 2002-12-31  Bruno Haible  <bruno@clisp.org>
59490
59491         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
59492         HAVE_TM_ZONE.
59493
59494 2002-12-24  Karl Berry  <karl@gnu.org>
59495
59496         * config/config.guess: update from prep.
59497
59498 2002-12-24  Bruno Haible  <bruno@clisp.org>
59499
59500         General infrasructure.
59501         * m4/README: Rewritten.
59502         * m4/onceonly.m4: New file.
59503         * m4/onceonly_2_57.m4: New file.
59504
59505         Module atexit.
59506         * m4/atexit.m4: New file.
59507
59508         Module strtod.
59509         * m4/strtod.m4: New file.
59510
59511         Module strtol.
59512         * m4/strtol.m4: New file.
59513
59514         Module strtoul.
59515         * m4/strtoul.m4: New file.
59516
59517         Module memchr.
59518         * m4/memchr.m4: New file.
59519
59520         Module memcmp.
59521         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
59522         (jm_FUNC_MEMCMP): Invoke it.
59523
59524         Module memcpy.
59525         * m4/memcpy.m4: New file.
59526
59527         Module memmove.
59528         * m4/memmove.m4: New file.
59529
59530         Module memset.
59531         * m4/memset.m4: New file.
59532
59533         Module strcspn.
59534         * m4/strcspn.m4: New file.
59535
59536         Module strpbrk.
59537         * m4/strpbrk.m4: New file.
59538
59539         Module strstr.
59540         * m4/strstr.m4: New file.
59541
59542         Module strerror.
59543         * m4/strerror.m4: New file.
59544
59545         Module mktime.
59546         * m4/mktime.m4: Renamed from jm-mktime.m4.
59547         (gl_PREREQ_MKTIME): New macro.
59548         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
59549
59550         Module malloc.
59551         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
59552         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
59553         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
59554
59555         Module realloc.
59556         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
59557         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
59558         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
59559
59560         Module strftime.
59561         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
59562         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
59563         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
59564         gl_TM_GMTOFF.
59565         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
59566
59567         Module xalloc.
59568         * m4/xalloc.m4: New file.
59569
59570         Module alloca.
59571         * m4/alloca.m4: New file.
59572
59573         Module putenv.
59574         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
59575         (jm_FUNC_PUTENV): Invoke it.
59576
59577         Module setenv.
59578         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
59579         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
59580         when invoked twice.
59581         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
59582         gt_FUNC_SETENV.
59583
59584         Module memrchr.
59585         * m4/memrchr.m4: New file.
59586
59587         Module stpcpy.
59588         * m4/stpcpy.m4: New file.
59589
59590         Module strcase.
59591         * m4/strcase.m4: New file.
59592
59593         Module strdup.
59594         * m4/strdup.m4: New file.
59595
59596         Module strnlen.
59597         * m4/strnlen.m4: New file.
59598
59599         Module strndup.
59600         * m4/strndup.m4: New file.
59601
59602         Module xstrtod.
59603         * m4/xstrtod.m4: New file.
59604
59605         Module xstrtol.
59606         * m4/xstrtol.m4: New file.
59607
59608         Module getdate.
59609         * m4/getdate.m4: New file.
59610
59611         Module unlocked-io.
59612         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
59613         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
59614         * m4/jm-glibc-io.m4n: Remove file.
59615
59616         Module long-options.
59617         * m4/long-options.m4: New file.
59618
59619         Module md5.
59620         * m4/md5.m4: New file.
59621
59622         Module sha.
59623         * m4/sha.m4: New file.
59624
59625         Module getstr.
59626         * m4/getstr.m4: New file.
59627
59628         Module getline.
59629         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
59630         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
59631         <sys/types.h>, for size_t. Use the function name gnu_getline, not
59632         simply getline. Infoke gl_PREREQ_GETLINE.
59633
59634         Module obstack.
59635         * m4/obstack.m4: New file.
59636
59637         Module hash.
59638         * m4/hash.m4: New file.
59639
59640         Module readtokens.
59641         * m4/readtokens.m4: New file.
59642
59643         Module strverscmp.
59644         * m4/strverscmp.m4: New file.
59645
59646         Module stdbool.
59647         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
59648         OSF/1.
59649
59650         Module strtoll.
59651         * m4/strtoll.m4: New file.
59652
59653         Module strtoull.
59654         * m4/strtoull.m4: New file.
59655
59656         Module strtoimax.
59657         * m4/strtoimax.m4: New file.
59658
59659         Module strtoumax.
59660         * m4/strtoumax.m4: New file.
59661
59662         Module xstrtoimax.
59663         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
59664         jm_AC_PREREQ_XSTRTOIMAX.
59665         Moved the strtol prerequisites to strtol.m4.
59666         Moved the strtoll prerequisites to strtoll.m4.
59667         Moved the strtoimax prerequisites to strtoimax.m4.
59668
59669         Module xstrtoumax.
59670         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
59671         jm_AC_PREREQ_XSTRTOUMAX.
59672         Moved the strtoul prerequisites to strtoul.m4.
59673         Moved the strtoull prerequisites to strtoull.m4.
59674         Moved the strtoumax prerequisites to strtoumax.m4.
59675
59676         Module chown.
59677         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
59678         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
59679
59680         Module dup2.
59681         * m4/dup2.m4: New file.
59682
59683         Module ftruncate.
59684         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
59685         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
59686
59687         Module getgroups.
59688         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
59689         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
59690
59691         Module gettimeofday.
59692         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
59693         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
59694         gl_PREREQ_GETTIMEOFDAY.
59695
59696         Module mkdir.
59697         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
59698         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
59699
59700         Module mkstemp.
59701         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
59702         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
59703         jm_AC_TYPE_UINTMAX_T.
59704         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
59705
59706         Module stat.
59707         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
59708         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
59709
59710         Module lstat.
59711         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
59712         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
59713
59714         Module timespec.
59715         * m4/timespec.m4 (gl_TIMESPEC): New macro.
59716         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
59717         * m4/st_mtim.m4: Indentation.
59718
59719         Module nanosleep.
59720         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
59721         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
59722         gl_PREREQ_NANOSLEEP.
59723
59724         Module regex.
59725         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
59726         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
59727         (gl_REGEX): New macro.
59728
59729         Module rename.
59730         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
59731         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
59732
59733         Module rmdir.
59734         * m4/rmdir.m4: New file.
59735
59736         Module utime.
59737         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
59738         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
59739         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
59740
59741         Module dirname.
59742         * m4/dirname.m4: New file.
59743
59744         Module getopt.
59745         * m4/getopt.m4: New file.
59746
59747         Module unistd-safer.
59748         * m4/unistd-safer.m4: New file.
59749
59750         Module fnmatch.
59751         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
59752         declaration.
59753         (gl_PREREQ_FNMATCH_EXTRA): New macro.
59754         (gl_FUNC_FNMATCH_POSIX): New macro.
59755         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
59756         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
59757         simply fnmatch.
59758
59759         Module exclude.
59760         * m4/exclude.m4: New file.
59761
59762         Module human.
59763         * m4/human.m4: New file.
59764
59765         Module acl.
59766         * m4/acl.m4: Nop.
59767
59768         Module backupfile.
59769         * m4/backupfile.m4: New file.
59770         * m4/d-ino.m4: Indentation.
59771
59772         Module fsusage.
59773         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
59774         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
59775         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
59776
59777         Module dirfd.
59778         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
59779         requirements.
59780
59781         Module euidaccess.
59782         * m4/euidaccess.m4: New file.
59783
59784         Module file-type.
59785         * m4/file-type.m4: New file.
59786
59787         Module fileblocks.
59788         * m4/fileblocks.m4: New file.
59789
59790         Module filemode.
59791         * m4/filemode.m4: New file.
59792
59793         Module isdir.
59794         * m4/isdir.m4: New file.
59795
59796         Module lchown.
59797         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
59798         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
59799
59800         Module makepath.
59801         * m4/makepath.m4: New file.
59802
59803         Module modechange.
59804         * m4/modechange.m4: New file.
59805
59806         Module mountlist.
59807         * m4/mountlist.m4: New file.
59808         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
59809         Indentation.
59810
59811         Module path-concat.
59812         * m4/path-concat.m4: New file.
59813
59814         Module pathmax.
59815         * m4/pathmax.m4: New file.
59816
59817         Module same.
59818         * m4/same.m4: New file.
59819
59820         Module save-cwd.
59821         * m4/save-cwd.m4: New file.
59822
59823         Module savedir.
59824         * m4/savedir.m4: New file.
59825
59826         Module xgetcwd.
59827         * m4/xgetcwd.m4: New file.
59828         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
59829
59830         Module xreadlink.
59831         * m4/xreadlink.m4: New file.
59832
59833         Module safe-read.
59834         * m4/safe-read.m4: New file.
59835
59836         Module safe-write.
59837         * m4/safe-write.m4: New file.
59838
59839         Module closeout.
59840         * m4/closeout.m4: New file.
59841
59842         Module stdio-safer.
59843         * m4/stdio-safer.m4: New file.
59844
59845         Module getpass.
59846         * m4/getpass.m4: New file.
59847
59848         Module getugroups.
59849         * m4/getugroups.m4: New file.
59850
59851         Module group-member.
59852         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
59853         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
59854
59855         Module idcache.
59856         * m4/idcache.m4: New file.
59857
59858         Module userspec.
59859         * m4/userspec.m4: New file.
59860
59861         Module gettime.
59862         * m4/clock_time.m4: New file.
59863         * m4/gettime.m4: New file.
59864
59865         Module settime.
59866         * m4/settime.m4: New file.
59867
59868         Module posixtm.
59869         * m4/posixtm.m4: New file.
59870
59871         Module gethostname.
59872         * m4/gethostname.m4: New file.
59873
59874         Module canon-host.
59875         * m4/canon-host.m4: New file.
59876
59877         Module gettext.
59878         * m4/codeset.m4: New file, from gettext-0.11.5.
59879         * m4/gettext.m4: New file, from gettext-0.11.5.
59880         * m4/glibc21.m4: New file, from gettext-0.11.5.
59881         * m4/iconv.m4: New file, from gettext-0.11.5.
59882         * m4/intdiv0.m4: New file, from gettext-0.11.5.
59883         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
59884         * m4/inttypes.m4: New file, from gettext-0.11.5.
59885         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
59886         * m4/isc-posix.m4: New file, from gettext-0.11.5.
59887         * m4/lcmessage.m4: New file, from gettext-0.11.5.
59888         * m4/lib-ld.m4: New file, from gettext-0.11.5.
59889         * m4/lib-link.m4: New file, from gettext-0.11.5.
59890         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
59891         * m4/progtest.m4: New file, from gettext-0.11.5.
59892         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
59893         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
59894         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
59895
59896         Module localcharset.
59897         * m4/localcharset.m4: New file.
59898
59899         Module hard-locale.
59900         * m4/hard-locale.m4: New file.
59901
59902         Module mbswidth.
59903         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
59904         onceonly macros.
59905         * m4/mbrtowc.m4: Add comment.
59906
59907         Module memcasecmp.
59908         * m4/memcasecmp.m4: New file.
59909
59910         Module memcoll.
59911         * m4/memcoll.m4: New file.
59912
59913         Module unicodeio.
59914         * m4/unicodeio.m4: New file.
59915
59916         Module rpmatch.
59917         * m4/rpmatch.m4: New file.
59918
59919         Module yesno.
59920         * m4/yesno.m4: New file.
59921
59922         Module exitfail.
59923         * m4/exitfail.m4: New file.
59924
59925         Module c-stack.
59926         * m4/c-stack.m4 (gl_C_STACK): New macro.
59927         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
59928
59929         Module error.
59930         * m4/error.m4 (gl_ERROR): New macro.
59931         (jm_PREREQ_ERROR): Use onceonly macros.
59932
59933         Module fatal.
59934         * m4/fatal.m4: New file.
59935
59936         Module getloadavg.
59937         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
59938         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
59939
59940         Module getpagesize.
59941         * m4/getpagesize.m4: New file.
59942
59943         Module getusershell.
59944         * m4/getusershell.m4: New file.
59945
59946         Module physmem.
59947         * m4/physmem.m4: New file.
59948
59949         Module posixver.
59950         * m4/posixver.m4: New file.
59951
59952         Module quotearg.
59953         * m4/quotearg.m4: New file.
59954
59955         Module quote.
59956         * m4/quote.m4: New file.
59957
59958         Module readutmp.
59959         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
59960
59961         Module sig2str.
59962         * m4/sig2str.m4: New file.
59963
59964         Other.
59965         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
59966         ulonglong.m4.
59967         * m4/intmax_t.m4: New file.
59968         * m4/d-type.m4: Indentation.
59969         * m4/jm-macros.m4: Update.
59970         * m4/prereq.m4 (jm_PREREQ): Update.
59971         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
59972         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
59973         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
59974         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
59975         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
59976         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
59977         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
59978         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
59979         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
59980         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
59981         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
59982         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
59983         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
59984         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
59985         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
59986         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
59987         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
59988         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
59989         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
59990
59991 2002-12-24  Bruno Haible  <bruno@clisp.org>
59992
59993         * MODULES.txt: Update according to m4/ changes.
59994
59995         Module gettext.
59996         * config.rpath: New file, from gettext-0.11.5.
59997
59998         * modules/*: New module descriptions.
59999         * gnulib-tool: New file.
60000         * MODULES.html.sh: New file.
60001
60002 2002-12-21  Karl Berry  <karl@gnu.org>
60003
60004         * doc/fdl.texi: update to version 1.2.
60005
60006 2002-12-19  Karl Berry  <karl@gnu.org>
60007
60008         * config/config.guess: update from prep.
60009
60010 2002-12-18  Bruno Haible  <bruno@clisp.org>
60011
60012         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
60013         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
60014
60015 2002-12-17  Bruno Haible  <bruno@clisp.org>
60016
60017         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
60018         stdlib.h, string.h.
60019
60020 2002-12-17  Bruno Haible  <bruno@clisp.org>
60021
60022         * lib/canon-host.c (strdup): Remove unused declaration.
60023
60024         * lib/fsusage.c: Include full_read.h.
60025         (get_fs_usage): Use full_read instead of safe_read.
60026
60027         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
60028
60029 2002-12-12  Karl Berry  <karl@gnu.org>
60030
60031         * config/config.guess: update from prep.
60032
60033 2002-12-11  Bruno Haible  <bruno@clisp.org>
60034
60035         * m4/setenv.m4: New file, from gettext-0.11.5.
60036
60037 2002-12-11  Bruno Haible  <bruno@clisp.org>
60038
60039         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
60040         not unsetenv().
60041         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
60042         modifications:
60043
60044         2002-12-11  Bruno Haible  <bruno@clisp.org>
60045
60046                 * setenv.c (alloca): Fall back to malloc.
60047                 (freea): New macro.
60048                 (setenv): Use freea() to free memory allocated with alloca().
60049
60050         2002-11-13  Bruno Haible  <bruno@clisp.org>
60051
60052                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
60053                 function declarations.
60054                 * unsetenv.c (unsetenv): Likewise.
60055
60056         2002-03-04  Bruno Haible  <bruno@clisp.org>
60057
60058                 Portability to AIX 4.3.3.
60059                 * unsetenv.c: New file, extracted from setenv.c.
60060                 * setenv.c: Move the unsetenv() function to unsetenv.c.
60061
60062         2001-12-20  Bruno Haible  <bruno@clisp.org>
60063
60064                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
60065                 use malloc instead. For SunOS 4.
60066
60067         2001-12-11  Bruno Haible  <bruno@clisp.org>
60068
60069                 * setenv.c: Declare alloca.
60070                 (compar_fn_t): New typedef.
60071                 (KNOWN_VALUE, STORE_VALUE): Use it.
60072
60073         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
60074         setenv.h.
60075
60076 2002-12-10  Paul Eggert  <eggert@twinsun.com>
60077
60078         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
60079         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
60080         Choose values that are less likely to collide with system fnmatch
60081         options.
60082         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
60083         defined (e.g., a pure POSIX system).
60084         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
60085         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
60086
60087 2002-12-06  Paul Eggert  <eggert@twinsun.com>
60088
60089         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
60090         a pain in practice to deal with generated m4 files.  This change
60091         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
60092
60093         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
60094         and jm-glibc-io.m4, as they are no longer a special case.
60095         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
60096         kludge and the auto-generation stuff.  Check only whether the
60097         functions are declared, not whether they exist, since older hosts
60098         that don't declare the functions can't use the optimization anyway.
60099
60100 2002-12-06  Jim Meyering  <jim@meyering.net>
60101
60102         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
60103
60104         Merge in changes from libc's misc/error.c, in preparation
60105         for the merge of gnulib's changes back into libc.
60106
60107         * lib/error.c (_): Define only if not already defined.
60108         Move definition to follow all #include directives.
60109         Include unlocked-io.h only if !_LIBC.
60110         [_LIBC]: Include <libio/libioP.h>.
60111         [USE_IN_LIBIO]: Include <libio/iolibio.h>
60112         (fflush): Tweak definition to use INTUSE.
60113         (putc): Define.
60114
60115 2002-12-05  Paul Eggert  <eggert@twinsun.com>
60116
60117         * lib/alloca.c [defined emacs]: Include "lisp.h".
60118         (xalloc_die) [defined emacs]: New macro.
60119         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
60120         [! defined emacs]: Include <xalloc.h>.
60121         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
60122         (pointer): Typedef to POINTER_TYPE *.
60123         (malloc): Remove decl; we now always use xmalloc.
60124         (alloca): Use old-style definition, since Emacs needs this.
60125         Check for arithmetic overflow when computing combined size.
60126
60127 2002-12-04  Paul Eggert  <eggert@twinsun.com>
60128
60129         Do not generate unlocked-io.h automatically, since it's easier to
60130         maintain it by hand.
60131
60132         * lib/unlocked-io.h: New file, from GNU diffutils,
60133         but with proper copyright notice and attribution.
60134         * lib/gen-uio: Remove.
60135         * lib/Makefile.am: Add copyright notice.
60136         (libfetish_a_SOURCES): Add unlocked-io.h.
60137         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
60138         (DISTCLEANFILES, io_functions): Remove macros.
60139         (EXTRA_DIST): Remove gen_uio.
60140         (unlocked-io.h): Remove rule.
60141
60142 2002-12-04  Jim Meyering  <jim@meyering.net>
60143
60144         Reflect the fact that stat.c and lstat.c are no longer generated.
60145         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
60146         (DISTCLEANFILES): Likewise.
60147         (EXTRA_DIST): Likewise.
60148         (all_local): Don't depend on stat.c or lstat.c.
60149         (stat.c, lstat.c): Remove rules.
60150         (EXTRA_DIST): Remove xstat.in.
60151
60152         * lib/xstat.in: Remove file.  Contents moved into stat.c.
60153         * lib/stat.c: New file.  Contents mostly from xstat.in.
60154         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
60155         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
60156
60157         * lib/safe-read.c: Rework so that it may serve to define safe_write,
60158         too.
60159         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
60160
60161 2002-12-03  Jim Meyering  <jim@meyering.net>
60162
60163         * lib/safe-read.c, safe-write.c: Change variable names and comments,
60164         but not semantics, to minimize the differences between these two files.
60165         (safe_read): Change comment to mention SAFE_READ_ERROR.
60166
60167         * lib/safe-read.c (IS_EINTR): Define.
60168         (safe_read): Use IS_EINTR in place of in-function cpp directives.
60169
60170 2002-12-02  Jim Meyering  <jim@meyering.net>
60171
60172         * lib/safe-read.c (EINTR): Define.
60173         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
60174         (INT_MAX): Provide fallback.
60175         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
60176
60177         * lib/safe-read.h (SAFE_READ_ERROR): Define.
60178
60179 2002-12-02  Bruno Haible  <bruno@clisp.org>
60180
60181         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
60182         Define, taken from safe-read.c.
60183         (INT_MAX): Provide fallback.
60184         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
60185         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
60186
60187         * lib/safe-read.c (EINTR): Remove definition.
60188         (safe_read): Don't use EINTR if it is absent.
60189
60190 2002-12-01  Jim Meyering  <jim@meyering.net>
60191
60192         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
60193         zero.
60194         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
60195
60196 2002-11-27  Paul Eggert  <eggert@twinsun.com>
60197
60198         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
60199         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
60200         with `if (! (value < limit)) abort ();', for readability.
60201
60202 2002-11-26  Karl Berry  <karl@gnu.org>
60203
60204         * lib/strdup.c: copy from libc again, with jim's ok.
60205         * lib/.cppi-disable: re-add strdup.c
60206
60207 2002-11-25  Karl Berry  <karl@gnu.org>
60208
60209         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
60210         instead of "strtol.c".
60211
60212 2002-11-25  Karl Berry  <karl@gnu.org>
60213
60214         * config/install-sh: update from automake for variable quoting, $0 in
60215         error msgs, etc.
60216
60217         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
60218         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
60219         entry.
60220
60221 2002-11-25  Jim Meyering  <jim@meyering.net>
60222
60223         * lib/mktime.c: Sync from libc, now that it has the latest fix.
60224
60225 2002-11-24  Karl Berry  <karl@gnu.org>
60226
60227         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
60228         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
60229
60230 2002-11-24  Jim Meyering  <jim@meyering.net>
60231
60232         Update from coreutils:
60233
60234         * lib/mktime.c: Merge in changes from libc.
60235
60236         Avoid a link-time failure on some Linux systems.
60237         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
60238         (otherwise).
60239         (__mon_yday): Declare with the STATIC attribute.
60240         (__mktime_internal): Likewise.
60241         Based on a report from Greg Schafer.
60242
60243 2002-11-23  Jim Meyering  <jim@meyering.net>
60244
60245         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
60246         Use `unsigned', not `int', as type of index.
60247
60248         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
60249
60250         * lib/fsusage.c: Remove unneeded parentheses around operands of
60251         `defined'.
60252
60253 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60254
60255         * lib/quotearg.h: Allow multiple inclusion by surrounding with
60256         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
60257         so that we can be included first.
60258         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
60259         * lib/quotearg.c: Include quotearg.h immediately after config.h.
60260         No need to include stddef.h or sys/types.h any more.
60261         Surround local include files with "", not "<>".
60262         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
60263         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
60264         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
60265         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
60266         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
60267         (ISPRINT): Remove; no longer needed now that we assume C89.
60268
60269         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
60270         Preserve errno.
60271
60272         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
60273         quotearg_char): Use SIZE_MAX rather than
60274         (size_t) -1 when we are talking about "infinity".
60275
60276         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
60277
60278 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60279
60280         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
60281         hint that one should use `if (! x) abort ();' rather than `assert
60282         (x);', and anyway it's one less thing to worry about configuring.
60283         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
60284         hash_rehash, hash_insert): Use abort rather than assert.
60285
60286 2002-11-22  Bruno Haible  <bruno@clisp.org>
60287
60288         * lib/safe-read.h: Assume C89. Add comments.
60289         (safe_read): Change return type to size_t.
60290         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
60291         byte counts > SSIZE_MAX correctly.
60292         * lib/safe-write.h: New file.
60293         * lib/safe-write.c: New file.
60294         * lib/full-read.h: New file.
60295         * lib/full-read.c: New file.
60296         * lib/full-write.h: Assume C89. Add comments.
60297         * lib/full-write.c: Include safe-write.h.
60298         (full_write): Rewritten to use safe_write.
60299         Suggested by Jim Meyering and Paul Eggert.
60300
60301 2002-11-21  Jim Meyering  <jim@meyering.net>
60302
60303         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
60304
60305         Merge in changes from the coreutils.
60306
60307         2002-09-25  Paul Eggert  <eggert@twinsun.com>
60308         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
60309         <stdint.h>.
60310         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
60311         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
60312         int.  Work more efficiently if X is the same width as uintmax_t.
60313         Do not compare X to -1, to avoid bogus compiler warning.
60314         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
60315         Don't assume that f_frsize and f_bsize are the same type.
60316
60317         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
60318         warning on FreeBSD.
60319
60320         * lib/makepath.c (make_path): Restore umask *before* creating the final
60321         component.
60322         (make_path): Minor reformatting.
60323
60324         * lib/xmalloc.c: Adjust to work with new autoconf macros,
60325         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
60326         HAVE_MALLOC/HAVE_REALLOC.
60327
60328         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
60329         dummy ones.  At least on GNU/Linux systems, `auto' means something
60330         else.
60331         From Michael Stone.
60332
60333 2002-11-21  Bruno Haible  <bruno@clisp.org>
60334
60335         Remove case insensitive option matching.
60336         * lib/argmatch.h (argcasematch): Remove declaration.
60337         (ARGCASEMATCH): Remove macro.
60338         (__xargmatch_internal): Remove case_sensitive argument.
60339         (XARGMATCH): Update.
60340         (XARGCASEMATCH): Remove macro.
60341         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
60342         case_sensitive argument.
60343         (argcasematch): Remove function.
60344         (__xargmatch_internal): Remove case_sensitive argument.
60345         (main): Use XARGMATCH instead of XARGCASEMATCH.
60346
60347         * lib/xmalloc.c: Change compile-time error message. Add comment about
60348         required autoconf version.
60349
60350 2002-11-20  Paul Eggert  <eggert@twinsun.com>
60351
60352         Merge argmatch cleanups from Bison.  Assume C89.
60353
60354         * lib/argmatch.c: Include config.h here, not in argmatch.h.
60355         Include stdlib.h, for EXIT_FAILURE.
60356         Always include <string.h>, since we assume C89.
60357         (EXIT_FAILURE): Remove pre-C89 bug workaround.
60358         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
60359         Include <stddef.h> instead, since it's all we need for size_t.
60360         (PARAMS): Remove.  All uses removed.
60361         (ARRAY_CARDINALITY): Do not bother to #undef.
60362         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
60363         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
60364         Remove unnecessary parentheses.
60365         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
60366         Insert necessary parentheses.
60367         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
60368         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
60369
60370 2002-11-19  Bruno Haible  <bruno@clisp.org>
60371
60372         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
60373         * lib/mbswidth.h: Include <stddef.h>, for size_t.
60374
60375         * lib/mbswidth.h (PARAMS): Remove macro.
60376         (mbswidth, mbsnwidth): Use ANSI C function declarations.
60377         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
60378
60379         * lib/gcd.h (PARAMS): Remove macro.
60380         (gcd): Use ANSI C function declarations.
60381         * lib/gcd.c (gcd): Likewise.
60382
60383 2002-11-15  Bruno Haible  <bruno@clisp.org>
60384
60385         * lib/strcspn.c: Include <stddef.h>.
60386         (strcspn): Use ANSI C function declaration. Change return type to
60387         size_t. Use NULL.
60388         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
60389         (strpbrk): Use NULL.
60390         * lib/strpbrk.h (PARAMS): Remove macro.
60391         (strpbrk): Use ANSI C function declaration.
60392         * lib/strstr.c: Don't include <sys/types.h>.
60393         * lib/strstr.h (PARAMS): Remove macro.
60394         (strstr): Use ANSI C function declarations.
60395
60396 2002-11-14  Karl Berry  <karl@gnu.org>
60397
60398         * config/mkinstalldirs: `do' on separate line, instead of
60399         `for var; do'.
60400
60401 2002-11-06  Bruno Haible  <bruno@clisp.org>
60402
60403         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
60404         * lib/gcd.c (gcd): Likewise.
60405
60406 2002-11-05  Bruno Haible  <bruno@clisp.org>
60407
60408         * lib/gcd.h: New file, from gettext-0.11.5.
60409         * lib/gcd.c: New file, from gettext-0.11.5.
60410
60411 2002-11-05  Bruno Haible  <bruno@clisp.org>
60412
60413         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60414         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60415         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60416         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60417
60418         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
60419         <libintl.h>.
60420         * lib/makepath.c: Include gettext.h instead of <locale.h> and
60421         <libintl.h>.
60422
60423         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
60424         * lib/human.c: Include gettext.h instead of <libintl.h>.
60425         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
60426         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
60427         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
60428         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
60429         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
60430         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
60431         (textdomain): Remove definition.
60432         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
60433
60434         * lib/long-options.c: Remove include of <libintl.h> and definition of
60435         _.
60436         * lib/same.c: Remove include of <libintl.h> and definition of _.
60437
60438 2002-11-04  Owen Taylor  <otaylor@redhat.com>
60439
60440         * lib/config.charset: A few additions for Solaris.
60441
60442 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
60443
60444         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
60445         * lib/localcharset.c (locale_charset): Declare as extern "C".
60446
60447 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
60448
60449         * lib/config.charset: msdos in uk_UA uses CP1125.
60450
60451 2002-11-04  Bruno Haible  <bruno@clisp.org>
60452
60453         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
60454         * lib/strcase.h: New file, from GNU gettext-0.11.5.
60455         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
60456         * lib/strstr.h: New file, from GNU gettext-0.11.5.
60457         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
60458
60459 2002-11-04  Bruno Haible  <bruno@clisp.org>
60460
60461         * lib/localcharset.c (locale_charset): Don't return an empty string.
60462
60463 2002-11-04  Bruno Haible  <bruno@clisp.org>
60464
60465         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
60466         aliases.
60467
60468 2002-11-04  Bruno Haible  <bruno@clisp.org>
60469
60470         * lib/config.charset: Update for newest glibc. Add canonical names
60471         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
60472
60473 2002-11-04  Bruno Haible  <bruno@clisp.org>
60474
60475         * lib/config.charset: Add support for NetBSD.
60476
60477 2002-11-04  Bruno Haible  <bruno@clisp.org>
60478
60479         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
60480
60481 2002-11-01  Bruno Haible  <bruno@clisp.org>
60482
60483         * configure.in: Add AC_CONFIG_AUX_DIR call.
60484         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
60485         test/Makefile.
60486         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
60487
60488 2002-09-28  Karl Berry  <karl@gnu.org>
60489
60490         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
60491         installed automake until the next release, since changes have been
60492         made.
60493
60494 2002-09-25  Karl Berry  <karl@gnu.org>
60495
60496         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
60497         * lib/getopt*: copy from libc/posix.
60498         * lib/gettext.h: copy from gettext.
60499         * lib/.cppi-disable: add strdup.c, gettext.h.
60500
60501 2002-09-25  Karl Berry  <karl@gnu.org>
60502
60503         * config/srclist.txt: enable gettext.h check.
60504         * config/config.{guess,sub}: update from prep.
60505         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
60506                 from automake 1.6.3.
60507         See srclist*.
60508
60509 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
60510
60511         * regex.c (PATFETCH): Remove the translating fetch.
60512         (PATFETCH_RAW): Rename to PATFETCH.
60513         (set_image_of_range): New fun.
60514         (SET_RANGE_TABLE_WORK_AREA): Use it.
60515         (regex_compile): Don't translate the pattern chars so eagerly.
60516         Only do it when inserting an `exactn' bytecode or when handling
60517         a char-range.
60518         (mutually_exclusive_p): Avoid empty statement.
60519
60520 2002-07-06  Jim Meyering  <meyering@lucent.com>
60521
60522         * m4/README: Don't mention Makefile.am.in.
60523         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
60524
60525 2002-07-01  Jim Meyering  <meyering@lucent.com>
60526
60527         * lib/c-stack.c: Include sys/time.h.
60528         From Volker Borchert.
60529
60530 2002-06-26  Paul Eggert  <eggert@twinsun.com>
60531
60532         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
60533
60534 2002-06-26  Paul Eggert  <eggert@twinsun.com>
60535
60536         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
60537         New macro.  Use it uniformly instead of
60538         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
60539         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
60540         reported by Vin Shelton.
60541
60542 2002-06-22  Paul Eggert  <eggert@twinsun.com>
60543
60544         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
60545         Do not assume SA_SIGINFO behavior.
60546         Bug reported by Jim Meyering on NetBSD 1.5.2.
60547
60548 2002-06-22  Jim Meyering  <meyering@lucent.com>
60549
60550         * m4/c-stack.m4: New file, from diffutils-2.8.2.
60551         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
60552
60553         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
60554         now that configure.ac uses AC_GNU_SOURCE.
60555         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
60556         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
60557
60558         Update to latest tools.  Suggestions from Paul Eggert.
60559         * m4/stdbool.m4: New file, from diffutils-2.8.2.
60560         * m4/gnu-source.m4: Update from diffutils-2.8.2.
60561         * m4/fnmatch.m4: Likewise.
60562         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
60563         to AC_HEADER_STDBOOL
60564
60565 2002-06-22  Jim Meyering  <meyering@lucent.com>
60566
60567         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
60568         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
60569
60570 2002-06-22  Jim Meyering  <meyering@lucent.com>
60571
60572         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
60573
60574         * lib/exitfail.c, exitfail.h: Likewise.
60575         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
60576
60577         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
60578         of fnmatch.h.
60579         (EXTRA_DIST): Add fnmatch_loop.c.
60580         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
60581
60582         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
60583         * lib/fnmatch.c: Update from diffutils-2.8.2.
60584         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
60585         * lib/fnmatch.h: Remove file.
60586
60587 2002-06-21  Jim Meyering  <meyering@lucent.com>
60588
60589         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
60590         * m4/mbrtowc.m4: Likewise.
60591
60592         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
60593         * m4/mbswidth.m4: Reflect name change:
60594         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
60595         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
60596
60597         * m4/lib-link.m4: Update from gettext-0.11.2.
60598         * m4/gettext.m4: Likewise.
60599
60600         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
60601         From Alfred M. Szmidt.
60602
60603 2002-06-18  Paul Eggert  <eggert@twinsun.com>
60604
60605         * lib/file-type.h: Report an error if neither S_ISREG nor
60606         S_IFREG is defined, instead of using a test specific to glibc
60607         2.2.  This should be safe, since POSIX requires S_ISREG and
60608         Unix Version 7 had S_IFREG.  We don't need to check for
60609         <sys/types.h> since we don't use any symbols that it defines.
60610
60611 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
60612
60613         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
60614         $@-t, so that each temporary file name is unique and valid in the first
60615         8 characters, for operation under DOS.
60616
60617 2002-06-15  Paul Eggert  <eggert@twinsun.com>
60618
60619         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
60620
60621 2002-06-15  Jim Meyering  <meyering@lucent.com>
60622
60623         Work even with DJGPP 2.03, which lacks support for symlinks.
60624         From Richard Dawe.
60625         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
60626         is defined.
60627         * lib/lchown.c (S_ISLNK): Likewise.
60628
60629 2002-06-15  Jim Meyering  <meyering@lucent.com>
60630
60631         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
60632         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
60633         have been included before this file.
60634
60635 2002-06-14  Jim Meyering  <meyering@lucent.com>
60636
60637         * lib/file-type.h: Use the version from diffutils-2.8.2.
60638         * lib/file-type.c: Likewise.
60639
60640 2002-06-07  Jim Meyering  <meyering@lucent.com>
60641
60642         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
60643         They're needed at least for NetBSD 1.5.2.
60644         ($statxfs_includes): Include those same headers.
60645         ($statxfs_includes): Include sys/vfs.h if available.
60646         ($statxfs_includes): Likewise for sys/statvfs.h.
60647         Check for the following members in both structs statfs and statvfs:
60648         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
60649
60650 2002-06-01  Jim Meyering  <meyering@lucent.com>
60651
60652         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
60653         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
60654
60655 2002-05-28  Jim Meyering  <meyering@lucent.com>
60656
60657         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
60658         Reported by Volker Borchert.
60659
60660 2002-05-27  Jim Meyering  <meyering@lucent.com>
60661
60662         Fix a problem seen only on nonconforming systems whereby ls.c's
60663         use of localtime, and then of gettimeofday would cause trouble:
60664         the localtime call used to initialize rpl_gettimeofday's save
60665         mechanism would clobber ls's current local time information so
60666         that in any long listing the first file would always be listed
60667         with date 1970-01-01.  Analysis by Volker Borchert.
60668
60669         * lib/gettimeofday.c (localtime): Undefine.
60670         (rpl_localtime): New function.
60671
60672 2002-05-27  Jim Meyering  <meyering@lucent.com>
60673
60674         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
60675         localtime.
60676
60677         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
60678         use the replacement function; it wouldn't resolve at link time.
60679         Reported by Volker Borchert.
60680
60681 2002-05-22  Jim Meyering  <meyering@lucent.com>
60682
60683         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
60684         file-type.h.
60685         * lib/file-type.h: New file.
60686         * lib/file-type.c (file_type): New file/function.  Extracted from
60687         diffutils.
60688
60689 2002-04-30  Jim Meyering  <meyering@lucent.com>
60690
60691         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
60692
60693 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60694
60695         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
60696
60697 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60698
60699         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
60700         Do not check for alloca.h (no longer used) or stdbool.h (was never
60701         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
60702
60703 2002-04-29  Paul Eggert  <eggert@twinsun.com>
60704
60705         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
60706
60707 2002-04-29  Jim Meyering  <meyering@lucent.com>
60708
60709         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
60710         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
60711         Use AC_FUNC_STRNLEN here instead.
60712
60713         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
60714         With autoconf-2.53a, it's part of AC_PROG_CC.
60715
60716 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60717
60718         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
60719         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
60720
60721 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60722
60723         * lib/sig2str.h, lib/sig2str.c: New files.
60724         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
60725
60726 2002-04-28  Paul Eggert  <eggert@twinsun.com>
60727
60728         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
60729         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
60730         of 127, since 64 is the largest conceivable number for ancient
60731         nonstandard hosts.
60732         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
60733
60734 2002-04-28  Jim Meyering  <meyering@lucent.com>
60735
60736         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
60737
60738 2002-04-24  Jim Meyering  <meyering@lucent.com>
60739
60740         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
60741         (jm_PREREQ): Use it.
60742
60743         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
60744         mach/mach.h fcntl.h.
60745         Check for this function: setlocale.
60746
60747 2002-04-24  Jim Meyering  <meyering@lucent.com>
60748
60749         * lib/gettext.h: New file, from Gettext.
60750         * lib/Makefile.am (INCLUDES): Remove -I../intl.
60751         (libfetish_a_SOURCES): Add gettext.h.
60752
60753 2002-04-16  Jim Meyering  <meyering@lucent.com>
60754
60755         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
60756         ut_pid, ut_id, ut_exit.
60757
60758 2002-04-16  Jim Meyering  <meyering@lucent.com>
60759
60760         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
60761         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
60762         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
60763
60764 2002-04-12  Jim Meyering  <meyering@lucent.com>
60765
60766         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
60767         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
60768         existence of the getmntinfo function.  Needed for Darwin 5.3.
60769
60770         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
60771         This is necessary at least on Darwin 5.3.
60772
60773         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
60774         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
60775         strnlen.o in the library, and that makes some versions of ranlib
60776         object.
60777
60778 2002-04-12  Jim Meyering  <meyering@lucent.com>
60779
60780         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
60781
60782 2002-04-09  Jim Meyering  <meyering@lucent.com>
60783
60784         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
60785         to be more precise.  Rather than saying we're checking whether the
60786         function `works', say what we're testing.
60787         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
60788         Reported by Bruno Haible.
60789
60790 2002-03-10  Jim Meyering  <meyering@lucent.com>
60791
60792         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
60793         Suggestion from Santiago Vila.
60794
60795 2002-03-08  Jim Meyering  <meyering@lucent.com>
60796
60797         * lib/rename.c: Mention that this wrapper is needed also on
60798         mips-dec-ultrix4.4 systems.
60799
60800 2002-03-02  Jim Meyering  <meyering@lucent.com>
60801
60802         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
60803         not HAVE_CLOCK_SETTIME.
60804
60805 2002-02-27  Paul Eggert  <eggert@twinsun.com>
60806
60807         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
60808         Check for clock_settime.
60809
60810 2002-02-27  Paul Eggert  <eggert@twinsun.com>
60811
60812         * lib/nanosleep.h: Rename to....
60813         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
60814
60815         * lib/gettime.c: New file.
60816         * lib/settime.c: New file.
60817         * lib/stime.c: Remove.
60818
60819         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
60820         timespec.h.  Remove nanosleep.h.
60821
60822 2002-02-25  Paul Eggert  <eggert@twinsun.com>
60823
60824         * m4/acl.m4: New file.
60825         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
60826         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
60827
60828 2002-02-25  Paul Eggert  <eggert@twinsun.com>
60829
60830         * lib/acl.c, lib/acl.h: New files.
60831         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
60832
60833 2002-02-24  Jim Meyering  <meyering@lucent.com>
60834
60835         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
60836         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
60837         cause trouble.  Reported by Nelson Beebe.
60838
60839 2002-02-23  Paul Eggert  <eggert@twinsun.com>
60840
60841         * lib/path-concat.c (xpath_concat): Reorder code to pacify
60842         compilers that don't know that xalloc_die never returns.
60843
60844 2002-02-20  Jim Meyering  <meyering@lucent.com>
60845
60846         * lib/getdate.c: Regenerate using bison-1.33.
60847
60848 2002-02-17  Jim Meyering  <meyering@lucent.com>
60849
60850         * config/config.guess (main): Don't use `head -1'; it's no longer
60851         portable. Use `sed 1q' instead.
60852
60853 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
60854
60855         * m4/codeset.m4: Upgrade to gettext-0.11.
60856         * m4/gettext.m4: Upgrade to gettext-0.11.
60857         * m4/glibc21.m4: Upgrade to gettext-0.11.
60858         * m4/iconv.m4: Upgrade to gettext-0.11.
60859         * m4/isc-posix.m4: Upgrade to gettext-0.11.
60860         * m4/lcmessage.m4: Upgrade to gettext-0.11.
60861         * m4/lib-ld.m4: New file, from gettext-0.11.
60862         * m4/lib-link.m4: New file, from gettext-0.11.
60863         * m4/lib-prefix.m4: New file, from gettext-0.11.
60864         * m4/progtest.m4: Upgrade to gettext-0.11.
60865
60866 2002-02-15  Paul Eggert  <eggert@twinsun.com>
60867
60868         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
60869         (jm_PREREQ): Use it.
60870
60871 2002-02-15  Paul Eggert  <eggert@twinsun.com>
60872
60873         * lib/posixver.c, lib/posixver.h: New files.
60874         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
60875
60876 2002-02-02  Paul Eggert  <eggert@twinsun.com>
60877             Bruno Haible  <bruno@clisp.org>
60878
60879         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
60880         (fwrite_success_callback): New declaration.
60881         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
60882         print_unicode_char. Call failure callback instead of error.
60883         (fwrite_success_callback): New function.
60884         (exit_failure_callback): New function.
60885         (fallback_failure_callback): New function.
60886         (print_unicode_char): Call unicode_to_mb.
60887
60888 2002-01-26  Jim Meyering  <meyering@lucent.com>
60889
60890         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
60891         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
60892
60893 2002-01-26  Jim Meyering  <meyering@lucent.com>
60894
60895         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
60896
60897 2002-01-22  Paul Eggert  <eggert@twinsun.com>
60898
60899         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
60900
60901 2002-01-22  Jim Meyering  <meyering@lucent.com>
60902
60903         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
60904         Otherwise, some versions of automake would omit the rule that makes
60905         Makefile from Makefile.in.
60906
60907 2002-01-21  Paul Eggert  <eggert@twinsun.com>
60908
60909         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
60910         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
60911         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
60912         (memcoll): Set errno to zero if there is no error.
60913
60914         * lib/quotearg.c (quotearg_buffer_restyled):
60915         Fix bug with quoting buffers containing NUL when backslashing escapes.
60916         This bug was exposed by the other changes in this patch.
60917         (quotearg_n_options): New arg ARGSIZE.
60918         All callers changed.
60919         (quoting_options_from_style): New function.
60920         (quotearg_n_style): Use it.
60921         (quotearg_n_style_mem): New function.
60922
60923         * lib/quotearg.h (quotearg_n_style_mem): New function.
60924
60925 2002-01-19  Jim Meyering  <meyering@lucent.com>
60926
60927         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
60928         Remove useless quotes: DF_PROG="df".
60929         * m4/strnlen.m4: New file.
60930
60931 2002-01-16  Paul Eggert  <eggert@twinsun.com>
60932
60933         * lib/backupfile.c (ISDIGIT): Comment fix.
60934         * lib/getdate.y (ISDIGIT): Likewise.
60935         * lib/posixtm.c (ISDIGIT, year): Likewise.
60936         * lib/strverscmp.c (ISDIGIT): Likewise.
60937         * lib/userspec.c (ISDIGIT): Likewise.
60938
60939 2002-01-16  Jim Meyering  <meyering@lucent.com>
60940
60941         * lib/getdate.y: Add three semicolons, each just before a closing
60942         brace. Bison (as of version 1.31) no longer papers over that mistake.
60943
60944 2002-01-05  Jim Meyering  <meyering@lucent.com>
60945
60946         * lib/version-etc.c (version_etc_copyright): Update copyright year.
60947
60948 2001-12-19  Paul Eggert  <eggert@twinsun.com>
60949
60950         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
60951         not silently exit merely because the output buffer happens to
60952         have nothing pending.
60953
60954 2001-12-18  Paul Eggert  <eggert@twinsun.com>
60955
60956         See the big note in ../ChangeLog.
60957         * lib/human.c (suffixes): Prefer K to k for 1024.
60958         (generate_suffix_backwards): New function.
60959         (human_readable_inexact): Use it.
60960         * lib/xstrtol.c (__xstrtol): If there is no number but there
60961         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
60962         Accept 'K' as well as 'k'.
60963
60964 2001-12-15  Jim Meyering  <meyering@lucent.com>
60965
60966         * lib/regex.h (__restrict_arr): Update from libc.
60967
60968         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
60969         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
60970         (STREQ): Define.
60971
60972 2001-12-14  Jim Meyering  <meyering@lucent.com>
60973
60974         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
60975         Suggestion from Bruno Haible.
60976
60977 2001-12-10  Jim Meyering  <meyering@lucent.com>
60978
60979         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
60980         xrealloc, Instead, include "xalloc.h".
60981         (initbuffer): Don't cast xmalloc return value to char*.
60982         (readline): Reword comment.
60983         Don't cast xrealloc return value to char*
60984         Return NULL, not 0.
60985
60986 2001-12-09  Jim Meyering  <meyering@lucent.com>
60987
60988         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
60989         about `signed and unsigned type in conditional expression'.
60990         * lib/posixtm.c (posix_time_parse): Likewise.
60991
60992         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
60993
60994         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
60995         to avoid a pedantic warning.
60996
60997         * lib/getstr.c: Don't include assert.h.
60998         (getstr): Remove warning-evoking assertions.
60999         Return -1 if offset parameter is out of bounds.
61000         Change the type of a local from int to size_t.
61001
61002         * lib/strftime.c (my_strftime_localtime_r): Include this function
61003         definition in the `#if ! HAVE_TM_GMTOFF' block.
61004
61005         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
61006         Include xalloc.h instead.
61007
61008 2001-12-02  Jim Meyering  <meyering@lucent.com>
61009
61010         * lib/tempname.c: Don't declare getenv, thus reverting the change of
61011         2001-11-18.  It's no longer necessary, now that stdlib.h is always
61012         included.
61013
61014         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
61015         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
61016
61017 2001-11-30  Akim Demaille  <akim@epita.fr>
61018
61019         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
61020         before being defined.
61021
61022 2001-11-27  Paul Eggert  <eggert@twinsun.com>
61023
61024         * lib/quotearg.h (quotearg_n, quotearg_n_style):
61025         First arg is int, not unsigned.
61026         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
61027         (SIZE_MAX, UINT_MAX): New macros.
61028         (quotearg_n_options): Abort if N is negative.
61029         Avoid overflow check on hosts where size_t is 64 bits and int
61030         is 32 bits, as overflow is impossible there.
61031         Fix off-by-one typo that caused unnecessary reallocation.
61032
61033 2001-11-27  Jim Meyering  <meyering@lucent.com>
61034
61035         * lib/tempname.c: Merge with version from libc.
61036         * lib/regex.c: Likewise.
61037
61038         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
61039         systems for which STDC_HEADERS is 0, it was not included, resulting in
61040         a warning about an integer-to-pointer conversion problem with getenv.
61041         Reported by Volker Borchert.
61042
61043 2001-11-26  Jim Meyering  <meyering@lucent.com>
61044
61045         * lib/gtod.h: Remove file.
61046         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
61047         * lib/gettimeofday.c: Don't include gtod.h.
61048         (GTOD_init): Remove function.
61049         (rpl_gettimeofday): Do its job here instead, rather than aborting.
61050         Suggestion from Volker Borchert.
61051
61052 2001-11-23  Jim Meyering  <meyering@lucent.com>
61053
61054         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
61055         it.
61056         * lib/hash.c (struct hash_table): Define it here instead.
61057
61058 2001-11-22  Jim Meyering  <meyering@lucent.com>
61059
61060         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
61061
61062 2001-11-20  Jim Meyering  <meyering@lucent.com>
61063
61064         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
61065         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
61066
61067 2001-11-19  Jim Meyering  <meyering@lucent.com>
61068
61069         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
61070         directory.  Use "conftestXXXXXX" as the template.
61071         Suggestion from Paul Eggert.
61072
61073         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
61074         immediately, so the test doesn't mistakenly hit the max-open-files
61075         limit.
61076
61077 2001-11-18  Paul Eggert  <eggert@twinsun.com>
61078
61079         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
61080         (TEMPORARIES): New macro.
61081         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
61082         removes an artificial limitation (e.g. HP-UX 10.20, where
61083         TMP_MAX is 17576).
61084
61085 2001-11-18  Jim Meyering  <meyering@lucent.com>
61086
61087         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
61088
61089 2001-11-18  Jim Meyering  <meyering@lucent.com>
61090
61091         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
61092         on SunOS 4.
61093
61094         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
61095         files will be created before anything else.
61096
61097 2001-11-17  Paul Eggert  <eggert@twinsun.com>
61098
61099         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
61100         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
61101
61102 2001-11-17  Jim Meyering  <meyering@lucent.com>
61103
61104         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
61105         Prompted by a report from Bob Proulx.
61106
61107         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
61108         Instead, require UTILS_FUNC_MKSTEMP.
61109
61110 2001-11-17  Jim Meyering  <meyering@lucent.com>
61111
61112         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
61113         Now, that's done as part of AC_FUNC_STRTOD.
61114
61115 2001-11-17  Jim Meyering  <meyering@lucent.com>
61116
61117         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
61118         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
61119         rather than group writable.  Patch by Juan F. Codagnone.
61120
61121         * lib/readtokens.c: Remove explicit declarations of xmalloc and
61122         xrealloc, Instead, include "xalloc.h".
61123
61124         * lib/mountlist.c: Include unlocked-io.h after all system headers.
61125         Remove explicit declarations of xmalloc, xrealloc,
61126         and xstrdup.  Instead, include "xalloc.h".
61127
61128         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
61129         unlocked-io.h.
61130         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
61131         Likewise.
61132         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
61133
61134         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
61135         Reported by Padraig Brady.
61136
61137         * lib/mkstemp.c: #undef mkstemp.
61138         Include config.h.
61139         (rpl_mkstemp): Rename from mkstemp.
61140         Protoize.
61141
61142 2001-11-16  Jim Meyering  <meyering@lucent.com>
61143
61144         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
61145         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
61146         determine the amount of total physical memory, use pstat_getstatic.
61147         HPUX-11 doesn't define _SC_PHYS_PAGES.
61148         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
61149         If sysconf couldn't be used to determine the amount of available
61150         physical memory, use both pstat_getstatic and pstat_getdynamic.
61151         Based on a patch from Bob Proulx.
61152
61153 2001-11-10  Jim Meyering  <meyering@lucent.com>
61154
61155         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
61156         (jm_PREREQ): Use it.
61157
61158 2001-11-09  Jim Meyering  <meyering@lucent.com>
61159
61160         * m4/jm-macros.m4: Require autoconf-2.52f.
61161         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
61162         Use these AC_-prefixed names, not the AM_-prefixed ones.
61163
61164         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
61165
61166 2001-11-05  Jim Meyering  <meyering@lucent.com>
61167
61168         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
61169
61170 2001-11-04  Jim Meyering  <meyering@lucent.com>
61171
61172         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
61173         $DEFS.
61174
61175 2001-11-03  Jim Meyering  <meyering@lucent.com>
61176
61177         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
61178         of AC_DEFUN.
61179
61180         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
61181         know the name of the variable in the macro definition.
61182
61183 2001-11-03  Jim Meyering  <meyering@lucent.com>
61184
61185         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
61186         in argmatch_to_argument call.
61187
61188         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
61189         argument.
61190
61191         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
61192         e.g., a fault due to an attempt to free a NULL pointer.
61193
61194 2001-11-01  Jim Meyering  <meyering@lucent.com>
61195
61196         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
61197         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
61198
61199 2001-11-01  Jim Meyering  <meyering@lucent.com>
61200
61201         * lib/dirfd.c, lib/dirfd.h: New files.
61202         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
61203
61204         * lib/hash.c (hash_print) [TESTING]: Clean up.
61205
61206 2001-10-22  Paul Eggert  <eggert@twinsun.com>
61207
61208         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
61209         to avoid a warning if -Wall.
61210
61211 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
61212
61213         * README: New file
61214         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
61215         (per RMS's instructions, this is now the canonical source)
61216         * lgpl/, gpl/: New directories.
61217
61218 2001-10-21  Paul Eggert  <eggert@twinsun.com>
61219
61220         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
61221
61222 2001-10-21  Jim Meyering  <meyering@lucent.com>
61223
61224         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
61225         this code would end up calling gettext even in packages built
61226         with --disable-nls.
61227         * lib/getopt.c (_): Likewise.
61228         * lib/regex.c (_): Likewise.
61229
61230 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61231
61232         * m4/error.m4 (jm_PREREQ_ERROR):
61233         Do not invoke AC_CHECK_FUNCS with strerror_r, as
61234         AC_FUNC_STRERROR_R does that.
61235         Check for strerror declaration.
61236
61237         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
61238         are supposed to have them these days.
61239         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
61240         Merge changes from latest Autoconf CVS.
61241         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
61242         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
61243         POSIX decided to standardize on the int flavor of strerror_r.
61244
61245 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61246
61247         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
61248         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
61249         Use strerror_r that is only a macro, even if it is not a function.
61250         (strerror): Check for HAVE_DECL_STRERROR before declaring.
61251         (private_strerror): Use prototypes, not old-style function definition.
61252         (print_errno_message): New function.
61253         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
61254         char*-flavored one.
61255         (error_tail, error, error_at_line): Use it.
61256
61257 2001-10-11  Jim Meyering  <meyering@lucent.com>
61258
61259         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
61260         and quote_n (1, ... to avoid clobbering a buffer.
61261
61262 2001-10-05  Jim Meyering  <meyering@lucent.com>
61263
61264         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
61265         hash-pjw.h.
61266         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
61267         * lib/hash-pjw.h: New file.
61268
61269 2001-09-30  Jim Meyering  <meyering@lucent.com>
61270
61271         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
61272         `struct fsstat' has the `f_fstypename' member.
61273         Use that to define FS_TYPE, which is now used to make
61274         the getfsstat link test tighter.
61275
61276 2001-09-30  Jim Meyering  <meyering@lucent.com>
61277
61278         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
61279         Include <sys/ucred.h>, for Apple Darwin.
61280         Include sys/mount.h and sys/fs_types.h only if available.
61281         (FS_TYPE): Define.
61282         (read_filesystem_list): Use FS_TYPE.
61283
61284 2001-09-29  Paul Eggert  <eggert@twinsun.com>
61285
61286         * lib/exclude.c (excluded_filename): 0 -> false, since it's
61287         a boolean context.
61288
61289 2001-09-29  Jim Meyering  <meyering@lucent.com>
61290
61291         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61292         [one-argument getmntent function]): Include stdio.h before mntent.h.
61293         SunOS 4.1.x needs it for the declaration of `FILE'.
61294         Patch by Volker Borchert.
61295
61296         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61297         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
61298         sys/fs_types.h, and make the link-test for getfsstat guard #include
61299         directives with appropriate #if HAVE_*_H tests so that we can
61300         detect getfsstat on Apple Darwin1.3.7 systems.
61301         Reported by Nelson Beebe.
61302         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
61303
61304 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61305
61306         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61307         #defines strtoimax.  Also treat the other strto* functions
61308         like strtoimax.
61309
61310         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
61311         Check for strtoul and strtoumax,
61312         as those declarations are made even in the signed case.
61313         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
61314         Likewise, for strtol and strtoimax.
61315
61316 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61317
61318         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61319         #defines strtoimax.  Also treat the other strto* functions
61320         like strtoimax.
61321
61322         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
61323         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
61324         (strtoimax, strtoumax): Do not declare if already defined as a macro.
61325
61326 2001-09-26  Jim Meyering  <meyering@lucent.com>
61327
61328         Most macros in unlocked-io.h had the wrong number of arguments.
61329         * lib/gen-uio: New script.
61330         (USE_UNLOCKED_IO): Define to 1 if not already defined.
61331         * lib/unlocked-io.hin: Remove file.
61332         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
61333         rather than trying to embed it here.
61334         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
61335         Reported by Padraig Brady.
61336
61337 2001-09-25  Volker Borchert  <bt@teknon.de>
61338
61339         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
61340         `result'.
61341
61342 2001-09-24  Jim Meyering  <meyering@lucent.com>
61343
61344         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
61345
61346 2001-09-23  Jim Meyering  <meyering@lucent.com>
61347
61348         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
61349         instead of the mere test for existence of mntent.h.  The latter
61350         would get a false-positive on AIX 3.4 systems.
61351         In the outer getmntent if-block, don't die if neither of the getmntent
61352         tests succeeds.  Instead, just fall through and continue with the
61353         remaining tests.
61354
61355 2001-09-23  Jim Meyering  <meyering@lucent.com>
61356
61357         * lib/mountlist.c: Remove useless parentheses in #if directives.
61358         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
61359         the deprecated MOUNTED symbol is no longer defined in mntent.h.
61360
61361 2001-09-22  Jim Meyering  <meyering@lucent.com>
61362
61363         * m4/gettext.m4: New file.  From gettext.
61364         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
61365         * m4/progtest.m4: Likewise
61366         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
61367         * m4/glibc21.m4: Likewise.
61368
61369         * m4/libintl.m4: Remove.  No longer used.
61370
61371 2001-09-22  Jim Meyering  <meyering@lucent.com>
61372
61373         * lib/localcharset.c: Update from latest gettext.
61374         * lib/config.charset: Likewise.
61375
61376 2001-09-20  Jim Meyering  <meyering@lucent.com>
61377
61378         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
61379         strtoimax.
61380         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
61381         strtoumax.
61382
61383 2001-09-20  Jim Meyering  <meyering@lucent.com>
61384
61385         * lib/xstrtol.c (strtoimax): Guard declaration with
61386         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
61387         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
61388         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
61389         (strtoumax): Likewise, for completeness (it wasn't necessary).
61390
61391 2001-09-17  Paul Eggert  <eggert@twinsun.com>
61392
61393         * lib/strtoimax.c (HAVE_LONG_LONG):
61394         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
61395         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
61396         to work around bug in IBM C compiler.
61397
61398 2001-09-17  Jim Meyering  <meyering@lucent.com>
61399
61400         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
61401         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
61402         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
61403         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
61404         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
61405         whenever the right hand side need not be expanded by the shell.
61406
61407 2001-09-16  Paul Eggert  <eggert@twinsun.com>
61408
61409         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
61410         library.  It's not correct, as some older glibcs are buggy.
61411         fnmatch wasn't fixed until glibc 2.2.
61412
61413         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
61414         special shell magic here.
61415
61416 2001-09-16  Jim Meyering  <meyering@lucent.com>
61417
61418         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
61419         * m4/jm-macros.m4: Require it.
61420
61421 2001-09-16  Jim Meyering  <meyering@lucent.com>
61422
61423         * lib/mkdir.c: New file.
61424
61425 2001-09-15  Jim Meyering  <meyering@lucent.com>
61426
61427         * m4/jm-macros.m4: Check for help2man.
61428
61429 2001-09-11  Jim Meyering  <meyering@lucent.com>
61430
61431         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
61432         The body, by Paul Eggert, was moved here from configure.in.
61433         * m4/jm-macros.m4: Require UTILS_HOST_OS.
61434
61435 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61436
61437         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
61438         (jm_PREREQ): Use it.
61439
61440 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61441
61442         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
61443         Use ssize_t, not int, to store result of readlink.
61444         Check for ssize_t overflow as well as size_t overflow,
61445         as POSIX says the result of readlink is implementation-defined
61446         when ssize_t overflows.
61447         Remove unnecessary cast to char*.
61448         Use free+malloc instead of realloc, as the storage doesn't need
61449         to be preserved and it's clearer and can be more efficient that way.
61450         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
61451         * lib/xreadlink.h (xreadlink): Update prototype.
61452
61453 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61454
61455         * lib/xgetcwd.c: Revert some of the previous change; intead,
61456         fix the HAVE_GETCWD_NULL code to behave more like the
61457         !HAVE_GETCWD_NULL code used to.
61458
61459         Include "xalloc.h".
61460         (xgetcwd): Do not return NULL when memory is exhausted; instead,
61461         invoke xalloc_die.
61462
61463 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61464
61465         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
61466         sys/param.h, as pathmax.h includes them.
61467
61468 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61469
61470         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
61471         (jm_PREREQ_XGETCWD): New macro.
61472
61473         * m4/getcwd.m4: New file.
61474
61475 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61476
61477         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
61478         like the HAVE_GETCWD_NULL code.
61479         Include pathmax.h if not HAVE_GETCWD.
61480         Do not include xalloc.h.
61481         (INITIAL_BUFFER_SIZE): New symbol.
61482         Do not use xmalloc / xrealloc, since the caller is responsible for
61483         handling errors.  Preserve errno around `free' during failure.
61484         Do not overrun buffer when using getwd.
61485
61486 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61487
61488         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
61489         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
61490         getcwd (NULL, 0).
61491
61492 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61493
61494         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
61495         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
61496         spotted by Jim Meyering.
61497
61498 2001-09-03  Jim Meyering  <meyering@lucent.com>
61499
61500         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
61501         failure.
61502
61503 2001-09-02  Jim Meyering  <meyering@lucent.com>
61504
61505         * lib/error.c: Update from GNU libc.
61506
61507 2001-09-01  Jim Meyering  <meyering@lucent.com>
61508
61509         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
61510         Used by df.
61511
61512 2001-09-01  Jim Meyering  <meyering@lucent.com>
61513
61514         * lib/xreadlink.c: New file.
61515         * lib/xreadlink.h: New file.
61516         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
61517         xreadlink.h.
61518
61519         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
61520         doesn't conflict with sparc Solaris 7's definition in
61521         /usr/include/sys/int_types.h.
61522
61523         * lib/exclude.c: Use `""', not `<>' to #include non-system header
61524         files.
61525         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
61526         and strncasecmp as r-values.  Unixware didn't have declarations.
61527
61528 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61529
61530         * lib/xstrtol.h: Add copyright notice.
61531         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
61532         LONGINT_INVALID_SUFFIX_CHAR.
61533
61534 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61535
61536         * lib/xstrtol.c (strtoimax): New decl.
61537
61538 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61539
61540         * lib/xgetcwd.c: Don't include pathmax.h.
61541         Include stdlib.h and unistd.h if available.
61542         Include xalloc.h.
61543         (xmalloc, xstrdup, free): Remove decls.
61544         (xgetcwd): Don't assume sizes fit in unsigned.
61545         Check for overflow when computing sizes.
61546         Simplify reallocation code.
61547
61548 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61549
61550         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
61551         a directory's st_size can have an arbitrary value, so the old
61552         usage could waste an arbitrary amount of memory.  All uses
61553         changed.
61554         * lib/savedir.h: Update prototype.
61555
61556 2001-08-31  Paul Eggert  <eggert@twinsun.com>
61557
61558         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
61559
61560         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
61561         old strtoimax.c.
61562
61563         Also, make the following further changes to make this file's
61564         configuration more similar to that of strtol.c:
61565         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
61566         (strtoumax, uintmax_t, strtoull, strtol): Remove.
61567         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
61568         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
61569         changed to signed values.
61570
61571         And make the following changes as well:
61572         Fix copyright notice, as 1999 was missing.
61573         (verify): New macro.
61574         (strtoimax): Check sizes at compile-time, not run-time.
61575         Prefer strtol to strtoll if both work.
61576         (main): Remove; it was not that useful and was a pain to maintain.
61577
61578         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
61579
61580 2001-08-31  Jim Meyering  <meyering@lucent.com>
61581
61582         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
61583         Use an initial, malloc'd, buffer of length 128 rather than
61584         a statically allocated one of length 1024.
61585
61586 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61587
61588         Simplify code, partly by assuming autoconf 2.52 semantics.
61589
61590         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
61591
61592         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
61593         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
61594         All uses removed.
61595         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
61596         Move AC_REQUIRE to next-to-top level, to avoid confusion.
61597         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
61598         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
61599         jm_AC_HEADER_INTTYPES_H.
61600         * m4/jm-macros.m4 (jm_MACROS): Likewise.
61601
61602         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
61603
61604         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
61605         Quote first arg of AC_DEFUN.
61606         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
61607         since they are needed to parse the include file even if we need
61608         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
61609         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
61610         but with opposite signedness.
61611
61612 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61613
61614         Merge 'exclude' changes from tar 1.13.22.
61615         This fixes one or two unlikely storage allocation overflow bugs,
61616         but doesn't change user-visible behavior otherwise.
61617
61618 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61619
61620         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
61621         (jm_PREREQ_EXCLUDE): New macro.
61622
61623 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61624
61625         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
61626         tm to be declared.
61627
61628 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61629
61630         * lib/hash.c: Remove '2001' from copyright notice.
61631
61632 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61633
61634         * lib/full-write.h: New file.
61635         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
61636         * lib/full-write.c: Correct credits, as cccp.c no longer
61637         exists and anyway it was so heavily changed from the old cccp
61638         code as to be unrecognizable.  Include full-write.h.
61639         (full_write) Return size_t, with short writes meaning failure.
61640         All callers changed.  This fixes a bug with large buffers
61641         on 64-bit hosts.
61642         * lib/utime.c: Include full-write.h.
61643
61644 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61645
61646         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
61647         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
61648         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
61649         Include if available.
61650         (<xalloc.h>): Include
61651         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
61652         (verify): New macro.  Use it to verify that EXCLUDE macros do not
61653         collide with FNM macros.
61654         (struct patopts): New struct.
61655         (struct exclude): Use it, as exclude patterns now come with options.
61656         (new_exclude): Support above changes.
61657         (new_exclude, add_exclude_file):
61658         Initial size must now be a power of two to simplify overflow checking.
61659         (free_exclude, fnmatch_no_wildcards): New function.
61660         (excluded_filename): No longer requires options arg, as the options
61661         are determined by add_exclude.  Now returns bool, not int.
61662         (excluded_filename, add_exclude):
61663         Add support for the fancy new exclusion options.
61664         (add_exclude, add_exclude_file): Now takes int options arg.
61665         Check for arithmetic overflow when computing sizes.
61666         (add_exclude_file): xrealloc might modify errno, so don't
61667         realloc until after errno might be used.
61668
61669         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
61670         New macros.
61671         (free_exclude): New decl.
61672         (add_exclude, add_exclude_file): Now takes int options arg.
61673         (excluded_filename): No longer requires options arg, as the options
61674         are determined by add_exclude.  Now returns bool, not int.
61675
61676 2001-08-30  Paul Eggert  <eggert@twinsun.com>
61677
61678         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
61679
61680 2001-08-27  Jim Meyering  <meyering@lucent.com>
61681
61682         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
61683
61684         * lib/version-etc.c (N_): Remove definition.
61685         Revert most of last change.
61686         Instead, simply don't mark the `Copyright...' string for translation.
61687         Based on advice from Paul Eggert.
61688
61689         * lib/strtoxmax.c: Tweak comment.
61690
61691 2001-08-26  Jim Meyering  <meyering@lucent.com>
61692
61693         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
61694
61695         * m4/xstrtoimax.m4: New file.
61696         * m4/xstrtoumax.m4: Add comments explaining why we
61697         AC_REPLACE_FUNCS(strtol).
61698
61699 2001-08-26  Jim Meyering  <meyering@lucent.com>
61700
61701         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
61702         of copyright with `%s' so translators don't get an untranslated
61703         message in 2002.
61704         (COPYRIGHT_YEAR): Define.
61705         (version_etc): Use fprintf rather than fputs.
61706         Suggestion from Ulrich Drepper.
61707
61708         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
61709
61710         * lib/strtoll.c: New file, from GNU libc.
61711         * lib/xstrtoimax.c: New file.
61712
61713         * lib/xstrtol.h: Add xstrtoimax.
61714         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
61715         * lib/strtoimax.c: New file.  Likewise, but first define
61716         STRTOUXMAX_SIGNED.
61717
61718         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
61719         ...
61720         * lib/strtoxmax.c: ... then renamed to this.
61721
61722 2001-08-18  Paul Eggert  <eggert@twinsun.com>
61723
61724         * m4/inttypes.m4: Add AC_PREREQ(2.13).
61725         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
61726         (jm_AC_TYPE_INTMAX_T): New macro.
61727         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
61728
61729         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
61730
61731         * m4/longlong.m4: Renamed from ulonglong.m4.
61732         * m4/inttypes.m4: Renamed from inttypes_h.m4.
61733         * m4/uintmax_t.m4: Removed.
61734
61735 2001-08-13  Paul Eggert  <eggert@twinsun.com>
61736
61737         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
61738         Port to Solaris 8, where 'sed' requires a space after the 'r'
61739         command, and where sh dislikes "$/".  Clean up the spacing a bit.
61740         Redirect output to $tmp just once.
61741
61742 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
61743
61744         * lib/addext.c (<errno.h>): Include.
61745         (errno): Declare if not defined.
61746         (addext): Work correctly when pathconf returns -1 and leaves
61747         errno alone because there is no limit.  Also, work even if
61748         pathconf returns a value greater than SIZE_MAX.
61749
61750 2001-08-12  Jim Meyering  <meyering@lucent.com>
61751
61752         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
61753         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
61754         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
61755         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
61756         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
61757         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
61758         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
61759         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
61760         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
61761         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
61762         utime.m4, utimes.m4, xstrtoumax.m4:
61763         Quote the first argument in each use of AC_DEFUN.
61764
61765 2001-08-12  Jim Meyering  <meyering@lucent.com>
61766
61767         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
61768         Simply `return getcwd (NULL, 0);'.
61769         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
61770         Use 1300 as initial value for length, not PATH_MAX.
61771
61772         * lib/pathmax.h: Clean up cpp syntax.
61773
61774 2001-08-12  Jim Meyering  <meyering@lucent.com>
61775
61776         * lib/gettimeofday.c: New file.
61777         * lib/gtod.h: New file.
61778         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
61779
61780 2001-08-05  Jim Meyering  <meyering@lucent.com>
61781
61782         * m4/jm-macros.m4: Require autoconf-2.52.
61783
61784 2001-08-04  Jim Meyering  <meyering@lucent.com>
61785
61786         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
61787         stmt, to get in sync with glibc.
61788
61789 2001-08-03  Paul Eggert  <eggert@twinsun.com>
61790
61791         The following changes are from gettext 0.10.39 as maintained by
61792         Bruno Haible.
61793
61794         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
61795         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
61796         with inverted sense.  All uses changed.
61797
61798         * lib/mbswidth.c: Don't include <limits.h>.
61799         Include <stdlib.h> and <string.h> unconditionally.
61800         (iswcntrl, mbsinit, ISCNTRL): New macros.
61801         (mbsnwidth): Use K&R style function declarations.
61802         Don't bother checking for MB_LEN_MAX == 1, since the compiler
61803         can optimize it when MB_CUR_MAX == 1.
61804         The width of control characters is zero, not 1.
61805
61806 2001-08-03  Paul Eggert  <eggert@twinsun.com>
61807
61808         The following changes are from gettext 0.10.39 as maintained by
61809         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
61810
61811         * m4/codeset.m4: Upgrade to serial AM1.
61812         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
61813         all uses changed.  Quote first arg of AC_DEFUN.
61814         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
61815
61816         * m4/iconv.m4: Upgrade to serial AM2.
61817         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
61818         Add --with-libconv-prefix.
61819         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
61820         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
61821         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
61822         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
61823         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
61824
61825         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
61826         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
61827         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
61828         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
61829         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
61830         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
61831         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
61832         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
61833         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
61834
61835         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
61836         string.h any more.
61837
61838         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
61839         not the default value.
61840
61841         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
61842         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
61843         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
61844         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
61845         Also check for iswcntrl, used for wcwidth fallback.
61846         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
61847         to Autoconf 2.13.
61848
61849 2001-08-03  Jim Meyering  <meyering@lucent.com>
61850
61851         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
61852         as it was in the original.  Reported by Paul Eggert.
61853
61854 2001-07-16  Jim Meyering  <meyering@lucent.com>
61855
61856         * m4/gettimeofday.m4: New file.
61857         Prompted by a report from Bernhard Baehr.
61858
61859 2001-07-15  Jim Meyering  <meyering@lucent.com>
61860
61861         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
61862         stuff. Now it's in ../Makefile.cfg.
61863
61864 2001-07-15  Jim Meyering  <meyering@lucent.com>
61865
61866         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
61867         (BUILT_SOURCES): Add unlocked-io.h.
61868         (io_functions): Define.
61869         (unlocked-io.h): New rule.
61870         (DISTCLEANFILES): Add unlocked-io.h.
61871         (all-local): Depend on unlocked-io.h, to ensure it is created.
61872
61873         * lib/unlocked-io.hin: New file
61874
61875         * lib/regex.c: Update from glibc.
61876
61877 2001-07-05  Jim Meyering  <meyering@lucent.com>
61878
61879         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
61880         recommendation.
61881         (libfetish_a_SOURCES): Put all .h files here instead.
61882         Remove a thus-exposed (better checks in automake) duplicate and
61883         two unnecessary .h files.
61884
61885 2001-07-04  Jim Meyering  <meyering@lucent.com>
61886
61887         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
61888         that generates jm-glibc-io.m4 so that it doesn't trigger any make
61889         distcheck failure.
61890
61891 2001-07-02  Jim Meyering  <meyering@lucent.com>
61892
61893         The following changes were prompted by suggestions from Bruno Haible.
61894
61895         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
61896         is now generated.
61897         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
61898         definition of EXTRA_DIST.
61899         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
61900         ensure that the generated file is created/updated whenever the list
61901         of $(unlocked_functions) is changed.
61902         (jm-glibc-io.m4): New rule.
61903         (unlocked-io.h): New rule -- currently unused.
61904
61905 2001-06-24  Jim Meyering  <meyering@lucent.com>
61906
61907         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
61908         unmatched right bracket, rather than kludging it with an extra,
61909         falsely-matching quote in a comment.  Patch by Akim Demaille.
61910
61911 2001-06-11  Jim Meyering  <meyering@lucent.com>
61912
61913         * lib/regex.c: Update from GNU libc.
61914
61915 2001-05-27  Jim Meyering  <meyering@lucent.com>
61916
61917         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
61918         Check for ut_type in struct utmp.
61919
61920 2001-05-27  Jim Meyering  <meyering@lucent.com>
61921
61922         * lib/readutmp.h (UT_TYPE): Define.
61923
61924 2001-05-24  Jim Meyering  <meyering@lucent.com>
61925
61926         * lib/argmatch.c: Include "quote.h".
61927         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
61928         quote function.  Reported by Göran Uddeborg.
61929
61930 2001-05-22  Jim Meyering  <meyering@lucent.com>
61931
61932         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
61933         now that we use the package-supplied version unconditionally.
61934         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
61935
61936 2001-05-21  Jim Meyering  <meyering@lucent.com>
61937
61938         * m4/regex.m4: Change a couple backticks to single quotes to avoid
61939         shell syntax errors.
61940
61941 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
61942
61943         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
61944
61945 2001-05-20  Paul Eggert  <eggert@twinsun.com>
61946
61947         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
61948         Don't bother to check library strftime, since
61949         we'll be using our own my_strftime function anyway.
61950         Define my_strftime instead of strftime.
61951
61952 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
61953
61954         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
61955         which is not yet declared.
61956
61957 2001-05-15  Jim Meyering  <meyering@lucent.com>
61958
61959         * m4/regex.m4: Use proper quoting so brackets appear in the test
61960         program.
61961         Reported by, and with help from, Bruno Haible.
61962
61963 2001-05-13  Jim Meyering  <meyering@lucent.com>
61964
61965         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
61966         undefined.
61967
61968 2001-05-11  Paul Eggert  <eggert@twinsun.com>
61969
61970         dirname code cleanup.  base_name now behaves more compatibly
61971         with POSIX basename when given file names that have trailing
61972         slashes, and similarly for dir_name.  Add new primitives
61973         base_len and dir_len.  Put the directory-name-related decls
61974         into dirname.h.
61975
61976         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
61977         * lib/backupfile.c (base_name): Likewise.
61978         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
61979         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
61980         * lib/makepath.c (strip_trailing_slashes): Likewise.
61981         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
61982         ISSLASH): Likewise.
61983         * lib/rename.c (strip_trailing_slashes): Likewise.
61984         * lib/same.c (base_name): Likewise.
61985         * lib/stripslash.c (ISSLASH): Likewise.
61986
61987         * lib/addext.c: Include <dirname.h> after size_t is defined.
61988         * lib/backupfile.c: Likewise.
61989
61990         * lib/addext.c (addext): Use base_len to trim redundant
61991         trailing slashes instead of doing it ourselves.
61992         But do not trim the last slash if it is not redundant.
61993
61994         * lib/backupfile.c (find_backup_file_name,
61995         max_backup_version): Use base_len instead of rolling it ourselves.
61996         Handle the case of "" and (on DOS) "C:" correctly.
61997
61998         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
61999         needed. Include <string.h>, <dirname.h>.
62000         (base_name): Allow file names ending in slashes, other than names
62001         that are all slashes.  In this case, return the basename followed
62002         by the slashes.  This is more general, and can be used in places
62003         where the original base_name purposely had an assertion failure.
62004         (base_len): New function.
62005
62006         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
62007         Do not include <assert.h>; no longer needed.
62008         Include xalloc.h.
62009         (memrchr): Remove decl.
62010         (dir_name_r): Remove.
62011         (dir_len): Renamed from dirlen.  All callers changed.
62012         Rewrite in terms of base_name, for simplicity and consistency.
62013         (dir_name): Never return NULL.  All callers changed.
62014         Do not include <stdlib.h> in test program; no longer needed.
62015         return 0; is fine for test program.
62016
62017         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
62018         New macros.
62019         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
62020
62021         * lib/path-concat.c (path_concat): Use base_len to compute
62022         base length, not strlen; this means we cannot rely on memcpy
62023         to null-terminate.
62024
62025         * lib/same.c (STREQ): Remove.
62026         (same_name): Handle the case where the basename ends in trailing '/'.
62027
62028         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
62029         a slash was stripped.  Do not strip the last slash after a
62030         file system prefix.
62031
62032 2001-05-11  Paul Eggert  <eggert@twinsun.com>
62033
62034         * lib/Makefile.am (libfetish_a_SOURCES):
62035         Add strftime.c, since we now compile it on all hosts.
62036
62037         * lib/strftime.c (my_strftime):
62038         Define to nstrftime if emacs, but only if my_strftime is not defined.
62039         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
62040         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
62041         Add one more extra argument: a nanoseconds value.
62042         All uses changed.
62043         (ns): New macro.
62044         (my_strftime function): Add %N format.
62045         (emacs_strftimeu): Renamed from emacs_strftime,
62046         with extra ut argument.
62047
62048 2001-05-09  Paul Eggert  <eggert@twinsun.com>
62049
62050         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
62051
62052 2001-04-21  Jim Meyering  <meyering@lucent.com>
62053
62054         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
62055         doesn't interfere.
62056
62057 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
62058
62059         * m4/ftruncate.m4: Check for chsize.
62060         Link with ftruncate.o unconditionally if ftruncate is missing.
62061         This was required when cross-compiling to i586-mingw32msvc.
62062
62063 2001-04-08  Jim Meyering  <meyering@lucent.com>
62064
62065         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
62066         recomputed; that's necessary when the offset spans a DST transition.
62067         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
62068
62069 2001-04-02  Jim Meyering  <meyering@lucent.com>
62070
62071         * lib/regex.h, regex.c: Update from GNU libc.
62072
62073 2001-03-24  Jim Meyering  <meyering@lucent.com>
62074
62075         * m4/jm-macros.m4: Require autoconf-2.49d.
62076
62077 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
62078
62079         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
62080
62081 2001-03-19  Paul Eggert  <eggert@twinsun.com>
62082
62083         * lib/version-etc.c (version_etc_copyright): Update to 2001.
62084
62085 2001-03-17  Jim Meyering  <meyering@lucent.com>
62086
62087         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
62088         now that the version in autoconf is equivalent.
62089         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
62090
62091         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
62092         Suggestion from Akim Demaille.
62093
62094         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
62095         (jm_PREREQ_TEMPNAME): New function.
62096
62097 2001-03-16  Paul Eggert  <eggert@twinsun.com>
62098
62099         * lib/tempname.c (uint64_t): Define to uintmax_t if
62100         not defined, and if UINT64_MAX is not defined.
62101         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
62102         Reported by John David Anglin.
62103
62104 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
62105
62106         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
62107         resolve alias if codeset is empty.
62108         * lib/config.charset (BeOS): Use wildcard syntax.
62109
62110 2001-03-13  Jim Meyering  <meyering@lucent.com>
62111
62112         * lib/path-concat.c (path_concat)
62113         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
62114         concatenating e.g., `C:' and `foo'.
62115         From Bruno Haible.
62116
62117 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62118
62119         * lib/localcharset.c (locale_charset): Don't use
62120         setlocale(LC_CTYPE,NULL). Don't return NULL.
62121         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
62122
62123 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62124
62125         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
62126         support for DOS/DJGPP.
62127
62128 2001-03-01  Paul Eggert  <eggert@twinsun.com>
62129
62130         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
62131         lacks mkstemp.  Compile our own tempname.c if we compile our own
62132         mkstemp.c, as mkstemp relies on tempname.
62133
62134 2001-03-01  Jim Meyering  <meyering@lucent.com>
62135
62136         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
62137         AH_VERBATIM really does output its argument verbatim.
62138
62139 2001-02-28  Paul Eggert  <eggert@twinsun.com>
62140
62141         * lib/Makefile.am (libfetish_a_SOURCES):
62142         Add dup-safer.c, fopen-safer.c.
62143         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
62144
62145         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
62146         * lib/unistd-safer.h: New files.
62147
62148 2001-02-25  Paul Eggert  <eggert@twinsun.com>
62149
62150         The mkstemp replacement is taken from glibc 2.2.2, with some
62151         portability fixes for use outside glibc, as follows:
62152
62153         * lib/tempname.c (struct_stat64): New macro.
62154         (direxists, __gen_tempname): Use it.
62155         This avoids a portability problem with Solaris 8.
62156
62157         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
62158         (<stddef.h>, <stdint.h>, <string.h>):
62159         Include only if STDC_HEADERS || _LIBC.
62160         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
62161         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
62162         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
62163         (__set_errno): Define this macro if <errno.h> doesn't.
62164         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
62165         Define these macros if <stdio.h> doesn't.
62166         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
62167         Define these macros if <sys/stat.h>
62168         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
62169         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
62170         __xstat64): Define if not _LIBC.
62171         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
62172         (__gen_tempname): Invoke gettimeofday only if
62173         HAVE_GETTIMEOFDAY || _LIBC;
62174         otherwise, fall back on plain "time".
62175         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
62176
62177         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
62178
62179         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
62180
62181 2001-02-18  Paul Eggert  <eggert@twinsun.com>
62182
62183         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
62184
62185 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62186
62187         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
62188         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
62189         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
62190         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
62191
62192 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62193
62194         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
62195         Remove workaround macros for hosts that have mbrtowc but not
62196         mbstate_t, as we now insist on proper declarations for both
62197         before using mbrtowc.
62198
62199 2001-02-17  Jim Meyering  <meyering@lucent.com>
62200
62201         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
62202         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
62203         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
62204         UnixWare 7.1.1.
62205
62206         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
62207         rather than AC_CACHE_VAL.
62208
62209 2001-02-17  Jim Meyering  <meyering@lucent.com>
62210
62211         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
62212         around included file name.
62213
62214         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
62215
62216         * lib/strftime.c: Update from GNU libc (the only changes were to
62217         comments).
62218
62219 2001-02-17  Jim Meyering  <meyering@lucent.com>
62220
62221         * lib/regex.c: Update from libc.
62222
62223 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
62224
62225         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
62226         clash.
62227
62228 2001-02-16  Paul Eggert  <eggert@twinsun.com>
62229
62230         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
62231         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
62232         Reported by Mark Hounschell via Paul Eggert.
62233
62234 2001-02-07  Jim Meyering  <meyering@lucent.com>
62235
62236         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
62237
62238 2001-02-05  Jim Meyering  <meyering@lucent.com>
62239
62240         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
62241         it includes the patch required for `large file' support with at least
62242         HP-UX's 10.20 /bin/cc.
62243
62244 2001-02-03  Jim Meyering  <meyering@lucent.com>
62245
62246         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
62247         AS_IF, now that it works once again (mysteriously).
62248         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62249
62250 2001-01-30  Jim Meyering  <meyering@lucent.com>
62251
62252         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
62253         * m4/chown.m4: Rename conftestchown to conftest.chown.
62254         * m4/rename.m4: s/conftestdir/conftest.d1/ and
62255         s/conftestdir2/conftest.d2/.
62256         * m4/utimes.m4: s/conftestdata/conftest.data/
62257         Inspired by Pavel Roskin's change in autoconf.
62258
62259 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
62260
62261         * lib/config.charset: Update for FreeBSD 4.2.
62262
62263 2001-01-27  Jim Meyering  <meyering@lucent.com>
62264
62265         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
62266         a use of AS_IF.
62267         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62268
62269 2001-01-26  Jim Meyering  <meyering@lucent.com>
62270
62271         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
62272         quotearg.c includes it.
62273
62274 2001-01-26  Jim Meyering  <meyering@lucent.com>
62275
62276         * lib/quotearg.c: Include stddef.h.
62277         * lib/quote.c: Include stddef.h.
62278         Reported by Axel Kittenberger.
62279
62280         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
62281         line in double quotes so that it evokes a better diagnostic.
62282         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
62283         Reported by Axel Kittenberger.
62284
62285 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
62286
62287         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
62288         as if it was a `charset'.
62289
62290 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62291
62292         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
62293         has const.
62294
62295 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62296
62297         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
62298         to avoid a warning.  Add back 'const' to inptr.
62299
62300 2001-01-20  Jim Meyering  <meyering@lucent.com>
62301
62302         Be sure that headers are checked before used in code compiled
62303         for the type checks.
62304         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
62305         In place of that, invoke jm_CHECK_ALL_TYPES.
62306         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
62307         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
62308         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
62309         The check for ssize_t was mistakenly run before the test for unistd.h.
62310
62311         The configure-time check for stdbool.h was missing.
62312         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
62313         (jm_PREREQ_HASH): New function.
62314
62315 2001-01-17  Jim Meyering  <meyering@lucent.com>
62316
62317         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
62318         for autoconf-2.49c.
62319         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
62320
62321 2001-01-16  Jim Meyering  <meyering@lucent.com>
62322
62323         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
62324         From Bruno Haible.
62325
62326 2001-01-14  Jim Meyering  <meyering@lucent.com>
62327
62328         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
62329         foo and bar.  Create conftestdir/ in the script, not in the C code.
62330         Remove directories in the script, not in the C code.
62331         Remove conftestdir{,2} before trying to create the directory.
62332         Make the entire configure script fail if the mkdir fails.
62333
62334 2001-01-14  Jim Meyering  <meyering@lucent.com>
62335
62336         * lib/rename.c: New file.  From Volker Borchert.
62337         Include stdlib.h, string.h or strings.h, and xalloc.h.
62338         Use strip_trailing_slashes rather than open-coding it.
62339
62340 2001-01-03  Paul Eggert  <eggert@twinsun.com>
62341
62342         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
62343
62344 2001-01-03  Jim Meyering  <meyering@lucent.com>
62345
62346         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
62347         of local `inptr' to avoid warning with some system declarations of
62348         iconv.
62349
62350 2001-01-02  Volker Borchert  <bt@teknon.de>
62351
62352         * m4/rename.m4: New file.
62353         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
62354
62355 2001-01-01  Jim Meyering  <meyering@lucent.com>
62356
62357         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
62358         even on systems with utmpx.h.  It's necessary for the declaration of
62359         utmp's ut_user member.  Reported by Andreas Jaeger.
62360
62361         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
62362         available. They are required for the declarations of getgrgid and
62363         getpwuid resp.
62364         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
62365         Reported by Andreas Jaeger.
62366
62367 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
62368
62369         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
62370         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
62371         so `make install' also works in VPATH builds.
62372
62373 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
62374
62375         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
62376         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
62377         can be used in subdirectories.
62378
62379 2000-12-29  Paul Eggert  <eggert@twinsun.com>
62380
62381         * lib/modechange.c: Do not assume that mode_t uses the
62382         traditional octal encoding.  E.g. "chmod 1 FOO" should set
62383         the other-execute bit of FOO even if S_IXOTH != 1.
62384
62385         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
62386         WOTH, XOTH, ALLM): New macros.
62387         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
62388          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
62389         Use them.
62390         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
62391         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
62392         (mode_compile):
62393         No need to use uintmax_t; unsigned long is long enough.
62394         Don't bother to get suffix since we don't use it.
62395
62396 2000-12-26  Jim Meyering  <meyering@lucent.com>
62397
62398         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
62399         better with autoheader.
62400
62401 2000-12-24  Jim Meyering  <meyering@lucent.com>
62402
62403         * lib/hash.c (is_prime): Return explicit boolean values.
62404         (hash_get_first): Return NULL to appease Irix5.6's 89.
62405         Reported by Nelson Beebe.
62406
62407 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
62408
62409         * lib/localcharset.c (locale_charset): Add support for Win32.
62410
62411 2000-12-18  Paul Eggert  <eggert@twinsun.com>
62412
62413         * lib/physmem.h, lib/physmem.c: New files.
62414
62415         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
62416         (noinst_HEADERS): Add physmem.h.
62417
62418         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
62419         't' for compatibility with Solaris 8 sort.
62420
62421 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
62422
62423         * lib/config.charset: Add support for BeOS.
62424
62425 2000-12-17  Jim Meyering  <meyering@lucent.com>
62426
62427         * m4/dos.m4 (jm_AC_DOS): New file and macro.
62428         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
62429
62430 2000-12-16  Jim Meyering  <meyering@lucent.com>
62431
62432         This bug had a serious impact on chown: `chown N:M FILE' (for integer
62433         N and M) would have treated it like `chown N:N FILE'.
62434
62435         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
62436
62437 2000-12-16  Jim Meyering  <meyering@lucent.com>
62438
62439         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
62440         SHELLS_FILE to a file name that's useful on djgpp systems.
62441         Include stdlib.h.
62442         (ADDITIONAL_DEFAULT_SHELLS): Define.
62443         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
62444         Based mostly on a patch from Prashant TR.
62445
62446 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
62447
62448         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
62449         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
62450         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
62451
62452 2000-12-08  Andreas Schwab  <schwab@suse.de>
62453
62454         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
62455         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
62456
62457 2000-12-07  Jim Meyering  <meyering@lucent.com>
62458
62459         * lib/stripslash.c (ISSLASH): Define.
62460         (strip_trailing_slashes): Use ISSLASH rather than comparing against
62461         `/'.
62462         From Prashant TR.
62463
62464         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
62465         (dir_name_r): Declare this function as static.
62466         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
62467         manifest itself on a name containing a mix of slashes and
62468         backslashes.
62469         Make this function work with names starting with a DOS-style
62470         drive letter and colon prefix.
62471         (dir_name): Append `.' if necessary.
62472         Based mostly on patches from Prashant TR and Eli Zaretskii.
62473
62474         * lib/dirname.h (dir_name_r): Remove prototype.
62475
62476 2000-12-06  Paul Eggert  <eggert@twinsun.com>
62477
62478         * m4/off_t-format.m4: Remove this file.
62479         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
62480
62481 2000-12-06  Jim Meyering  <meyering@lucent.com>
62482
62483         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
62484         replacement strtoull, we may well need the replacement strtoul, too.
62485         Check for declarations of strtoul and strtoull.
62486         Check for strtol.  Mainly as a cue to cause automake to include
62487         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
62488         Check for limits.h -- strtol.c needs it.
62489
62490 2000-12-05  Jim Meyering  <meyering@lucent.com>
62491
62492         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
62493
62494 2000-12-04  Jim Meyering  <meyering@lucent.com>
62495
62496         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
62497         Also include memory.h, stdlib.h, unistd.h if appropriate.
62498         Reported by Andreas Jaeger (conflicting declaration of malloc).
62499
62500 2000-12-02  Jim Meyering  <meyering@lucent.com>
62501
62502         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
62503         * m4/jm-macros.m4 (jm_MACROS): require it.
62504
62505 2000-12-02  Jim Meyering  <meyering@lucent.com>
62506
62507         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
62508
62509 2000-12-01  Paul Eggert  <eggert@twinsun.com>
62510
62511         * lib/memrchr.c: Include <config.h> before any system include file.
62512
62513 2000-11-30  Jim Meyering  <meyering@lucent.com>
62514
62515         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
62516
62517 2000-11-30  Jim Meyering  <meyering@lucent.com>
62518
62519         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
62520
62521 2000-11-29  Paul Eggert  <eggert@twinsun.com>
62522
62523         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
62524
62525 2000-11-26  Jim Meyering  <meyering@lucent.com>
62526
62527         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
62528
62529 2000-11-22  Paul Eggert  <eggert@twinsun.com>
62530
62531         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
62532         size of (size_t) -1; it's not portable.
62533
62534 2000-11-17  Jim Meyering  <meyering@lucent.com>
62535
62536         * lib/strstr.c: Update from GNU libc.
62537
62538 2000-11-17  Akim Demaille  <akim@epita.fr>
62539
62540         * lib/obstack.h: Formatting changes.
62541         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
62542         prevent type checking.
62543         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
62544         cast the value to (void *): assigning a `foo *' to a `void *'
62545         variable is valid.
62546         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
62547
62548 2000-11-16  Jim Meyering  <meyering@lucent.com>
62549
62550         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
62551
62552 2000-11-11  Jim Meyering  <meyering@lucent.com>
62553
62554         * lib/error.c: Add a couple #includes, merging from GNU libc version.
62555
62556 2000-11-10  Jim Meyering  <meyering@lucent.com>
62557
62558         * lib/obstack.h: Update from GNU libc.
62559         * lib/obstack.c: Likewise.
62560
62561 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
62562
62563         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
62564
62565 2000-11-06  Paul Eggert  <eggert@twinsun.com>
62566
62567         * lib/getusershell.c (setusershell): Use rewind rather than
62568         fseek/fseeko, to avoid configuration hassles with fseeko.
62569         Don't bother opening SHELLS_FILE if shellstream is NULL;
62570         it's not necessary.
62571
62572 2000-11-05  Jim Meyering  <meyering@lucent.com>
62573
62574         * lib/makepath.h (make_dir): Declare.
62575         * lib/makepath.c (make_dir): Remove `static' attribute.
62576         Tweak a comment.
62577
62578 2000-11-04  Jim Meyering  <meyering@lucent.com>
62579
62580         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
62581
62582 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
62583
62584         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
62585         last one in a bucket, advance to the next bucket.
62586
62587 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
62588
62589         * lib/fnmatch.c: Do not comment out all the code if we are using
62590         the GNU C library, because in some cases we are replacing buggy
62591         code in the GNU C library itself.
62592
62593 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
62594
62595         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
62596         (regex_compile): Catch bogus \(\1\).
62597
62598 2000-10-30  Paul Eggert  <eggert@twinsun.com>
62599
62600         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
62601         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
62602         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
62603
62604 2000-10-30  Paul Eggert  <eggert@twinsun.com>
62605
62606         * lib/error.h, getline.h, modechange.h:
62607         Remove "2000" from Copyright line, as the file hasn't been
62608         changed this year other than in the copyright notice.
62609
62610         * lib/xalloc.h: Add "2000" to Copyright line, as this file
62611         was changed this year.
62612
62613 2000-10-29  Jim Meyering  <meyering@lucent.com>
62614
62615         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
62616         renaming.
62617         * m4/ls-mntd-fs.m4: Likewise
62618
62619 2000-10-29  Jim Meyering  <meyering@lucent.com>
62620
62621         * lib/xstat.in: Fix grammar in comment.
62622
62623 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
62624
62625         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
62626         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
62627         doesn't define __restrict_arr.
62628
62629 2000-10-28  Jim Meyering  <meyering@lucent.com>
62630
62631         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
62632         (jm_PREREQ_MEMCHR): New function.
62633
62634 2000-10-28  Jim Meyering  <meyering@lucent.com>
62635
62636         * lib/memchr.c: Update from libc.
62637         Adjust for portability:
62638         [HAVE_STDLIB_H]: Include stdlib.h.
62639         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
62640         Undef __memchr, too.
62641         [!weak_alias]: Define __memchr to memchr.
62642
62643         * lib/regex.c: Update from libc.
62644         * lib/regex.h: Likewise.
62645         * lib/getopt1.c: Likewise.
62646         * lib/memcmp.c: Likewise.
62647
62648         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
62649         Avoid using fseek, when possible -- it's broken by design.
62650         Patch by Ulrich Drepper.
62651
62652 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
62653
62654         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
62655         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
62656         Giving in to popular pressure to shut up the compiler with casts.
62657
62658 2000-10-26  Jim Meyering  <meyering@lucent.com>
62659
62660         * lib/strftime.c: Update from libc.
62661
62662 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
62663
62664         * regex.c: More `unsigned char' -> `re_char' changes.
62665         Also change several `int' into `re_wchar_t'.
62666         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
62667         (PUSH_FAILURE_POINTER): Don't cast any more.
62668         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
62669         We want GCC to complain, since this piece of code makes
62670         re_match non-reentrant, which *should* be fixed.
62671         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
62672         (EXTEND_BUFFER): Use RETALLOC.
62673         (SET_LIST_BIT): Don't cast.
62674         (re_wchar_t): New type.
62675         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
62676         that those two functions will always properly return.
62677         (IMMEDIATE_QUIT_CHECK): Cast to void.
62678         (analyse_first): Use recursion rather than an explicit stack.
62679         (re_compile_fastmap): Can't fail anymore.
62680         (re_search_2): Don't check re_compile_fastmap for failure.
62681         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
62682         Now also sets the new value (passed in a new argument).
62683         (re_match_2_internal): Use it.
62684         Also, use a new var `reg' of type size_t when looping through regs
62685         rather than reuse the inappropriate `mcnt'.
62686
62687 2000-10-25  Jim Meyering  <meyering@lucent.com>
62688
62689         * lib/obstack.c: Update from libc.
62690
62691 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
62692
62693         * regex.c (regex_compile): Change the way of handling a range from
62694         a char less than 256 to a char not less than 256.
62695
62696 2000-10-24  Andrew Innes  <andrewi@gnu.org>
62697
62698         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
62699         NT-Emacs only.
62700         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
62701         so that re_search functions only quit when callers expect them to.
62702
62703 2000-10-23  Jim Meyering  <meyering@lucent.com>
62704
62705         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
62706         wrong.  That set_locale call must not have any side effects.
62707         From Paul Eggert.
62708
62709 2000-10-22  Jim Meyering  <meyering@lucent.com>
62710
62711         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
62712         [CYCLIC]: Remove now-unused definition.
62713
62714         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
62715         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
62716         Suggestion from Ulrich Drepper.
62717
62718 2000-10-21  Jim Meyering  <meyering@lucent.com>
62719
62720         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
62721         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
62722         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
62723
62724 2000-10-21  Jim Meyering  <meyering@lucent.com>
62725
62726         * lib/dirname.c (memrchr): Declare if necessary.
62727         (dir_name): Remove the restriction that there be no
62728         trailing slashes.  Now, this code skips past them, effectively
62729         ignoring them.
62730         [TEST_DIRNAME] (main): New unit tests.
62731
62732         * lib/memrchr.c: New file from GNU libc.
62733         Undef __memrchr, too.
62734         [!weak_alias]: Define __memrchr to memrchr.
62735         Guard weak_alias use with `#ifdef weak_alias'.
62736
62737 2000-10-21  Jim Meyering  <meyering@lucent.com>
62738
62739         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
62740         (dir_name): Use dir_name_r.
62741         * lib/dirname.h (dir_name_r): Declare it.
62742
62743 2000-10-17  Jim Meyering  <meyering@lucent.com>
62744
62745         * lib/quote.h (PARAMS): Define and use.
62746         Reported by Akim Demaille.
62747
62748         * lib/getopt.c: Update from libc.
62749
62750 2000-10-16  Jim Meyering  <meyering@lucent.com>
62751
62752         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
62753         setlocale.
62754         From Jan Fedak.
62755
62756 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
62757
62758         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
62759
62760 2000-09-25  Jim Meyering  <meyering@lucent.com>
62761
62762         * lib/md5.h (rol): Define (from GnuPG).
62763
62764         * lib/sha.c: Give credit (GnuPG) where due.
62765         (M): Use rol rather than open-coding it.
62766         Add a FIXME comment.
62767
62768 2000-09-21  Jim Meyering  <meyering@lucent.com>
62769
62770         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
62771         Reported by Michael Stone.
62772
62773 2000-09-20  Jim Meyering  <meyering@lucent.com>
62774
62775         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
62776         (noinst_HEADERS): Add sha.h.
62777         Based on code from Scott G. Miller and from GnuPG.
62778
62779 2000-09-18  Jim Meyering  <meyering@lucent.com>
62780
62781         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
62782         LIBS. Otherwise, everyone ends up linking with -lelf for some
62783         configurations.
62784         Reported by Mike Stone.
62785
62786 2000-09-15  Jim Meyering  <meyering@lucent.com>
62787
62788         * lib/regex.c: Update from libc.
62789
62790 2000-09-10  Jim Meyering  <meyering@lucent.com>
62791
62792         * lib/getopt.c (_getopt_internal): Update from glibc.
62793
62794 2000-09-09  Jim Meyering  <meyering@lucent.com>
62795
62796         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
62797         think it should be used as a general replacement for isascii.
62798         * lib/fnmatch.c: Likewise.
62799         * lib/mbswidth.c: Likewise
62800         * lib/regex.c: Likewise.
62801
62802         Don't use atoi.
62803         * lib/userspec.c: Include sys/param.h and limits.h.
62804         Include xstrtol.h.
62805         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
62806         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
62807         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
62808         UID, GID.  Check range.
62809
62810 2000-09-06  Jim Meyering  <meyering@lucent.com>
62811
62812         * lib/getopt.c (_getopt_internal): Update from glibc.
62813
62814 2000-08-30  Jim Meyering  <meyering@lucent.com>
62815
62816         * lib/strftime.c: Merge in changes from GNU libc.
62817
62818 2000-08-26  Jim Meyering  <meyering@lucent.com>
62819
62820         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
62821         * m4/fpending.m4: New file.
62822
62823 2000-08-26  Jim Meyering  <meyering@lucent.com>
62824
62825         * lib/closeout.c: Include "__fpending.h".
62826         (close_stdout_status): Return right away if there's nothing to flush.
62827
62828         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
62829         * lib/__fpending.c: New file.
62830         * lib/__fpending.h: New file.
62831
62832 2000-08-20  Jim Meyering  <meyering@lucent.com>
62833
62834         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
62835         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
62836         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
62837
62838 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
62839
62840         Improve fileutils installation on systems where running
62841         programs (like install) can't be unlinked.
62842         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
62843         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
62844
62845 2000-08-07  Paul Eggert  <eggert@twinsun.com>
62846
62847         Standardize on "memory exhausted" instead of "Memory exhausted"
62848         or "virtual memory exhausted".
62849         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
62850         "virtual memory exhausted".
62851         * lib/same.c (same_name): Invoke xalloc_die instead of printing
62852         our own message.
62853         * lib/userspec.c (parse_user_spec): Likewise.
62854         * lib/bumpalloc.h: comment fix
62855         * lib/same.c, userspec.c: Include xalloc.h.
62856
62857         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
62858         not char *const and pointing to a constant array.
62859         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
62860         (xrealloc): Comment fix.
62861
62862         * lib/userspec.c (parse_user_spec):
62863         Don't translate a message until just before returning,
62864         to avoid unnecessary translation.
62865
62866 2000-08-07  Jim Meyering  <meyering@lucent.com>
62867
62868         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
62869         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
62870         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
62871         getgroups.c, gethostname.c, getopt.h, group-member.c,
62872         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
62873         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
62874         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
62875         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
62876         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
62877         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
62878         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
62879         yesno.c: Back out Copyright date changes for each file with no change
62880         this year.  This eases coordination with other programs using the same
62881         source code modules.  From Paul Eggert.
62882
62883 2000-08-06  Paul Eggert  <eggert@twinsun.com>
62884
62885         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
62886         not char, for compatibility with glibc 2.1.3 strftime.c.
62887
62888 2000-08-03  Greg McGary  <greg@mcgary.org>
62889
62890         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
62891         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
62892         (EXTEND_BUFFER): Use them.
62893
62894 2000-08-01  Jim Meyering  <meyering@lucent.com>
62895
62896         * lib/dirname.c (ISSLASH): Define.
62897         (BACKSLASH_IS_PATH_SEPARATOR): Define.
62898         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
62899         both `\' and `/' may be use as path separators.
62900         Based on a patch from Prashant TR.
62901
62902 2000-07-31  Paul Eggert  <eggert@twinsun.com>
62903
62904         * lib/quotearg.c (quotearg_n_options): Don't make the initial
62905         slot vector a constant, since it might get modified.
62906
62907 2000-07-31  Jim Meyering  <meyering@lucent.com>
62908
62909         * lib/xmalloc.c: Use `virtual memory exhausted', not
62910         `Memory exhausted'.
62911         * lib/obstack.c (print_and_abort): Likewise.
62912
62913 2000-07-30  Paul Eggert  <eggert@twinsun.com>
62914
62915         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
62916         buffer, so that the caller can always quote one small
62917         component of a "memory exhausted" message in slot 0.
62918         From a suggestion by Jim Meyering.
62919
62920 2000-07-30  Jim Meyering  <meyering@lucent.com>
62921
62922         * lib/makepath.c (make_path): Quote the other instance, too.
62923
62924         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
62925         (STATIC_BUF_SIZE): Define.
62926         (quotearg_n_options): Use only statically allocated storage when
62927         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
62928         than STATIC_BUF_SIZE.
62929
62930 2000-07-29  Jim Meyering  <meyering@lucent.com>
62931
62932         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
62933         * lib/dirname.c (dir_name): Likewise.
62934
62935         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
62936         `/'.
62937
62938         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
62939         (dir_name): Assert that there are no trailing slashes.
62940
62941 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
62942
62943         * lib/mbswidth.h (mbswidth): Add a flags argument.
62944         (mbswidth): New declaration.
62945         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
62946         * lib/mbswidth.c (mbswidth): Add a flags argument.
62947         (mbsnwidth): New function.
62948
62949 2000-07-24  Jim Meyering  <meyering@lucent.com>
62950
62951         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
62952
62953 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62954
62955         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
62956
62957 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62958
62959         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
62960         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
62961         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
62962         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
62963         invoke multibyte primitives.
62964
62965 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62966
62967         * lib/quotearg.c:
62968         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
62969         so that mbstate_t is always defined.
62970
62971         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
62972         be 1 in at least one GCC installation, and this configuration
62973         error is likely to be common.  Ignoring MB_LEN_MAX hurts
62974         performance on hosts that have mbrtowc but have only unibyte
62975         locales, but I assume these hosts are rare.
62976
62977 2000-07-23  Paul Eggert  <eggert@twinsun.com>
62978
62979         * lib/mbswidth.c (_XOPEN_SOURCE):
62980         Don't define; this causes problems on Solaris 7.
62981         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
62982
62983 2000-07-23  Jim Meyering  <meyering@lucent.com>
62984
62985         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
62986         too: getgrgid, getpwuid, getuid.
62987
62988 2000-07-23  Jim Meyering  <meyering@lucent.com>
62989
62990         * lib/basename.c (base_name): Add an assertion.
62991
62992 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
62993
62994         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
62995         shadow its mbsinit function.
62996
62997 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
62998
62999         * lib/mbswidth.h: New file.
63000         * lib/mbswidth.c: New file.
63001         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
63002         (noinst_HEADERS): Add mbswidth.h.
63003
63004 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
63005
63006         * lib/config.charset: Add support for FreeBSD. Improve support for
63007         HP-UX and IRIX 6.
63008
63009 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
63010
63011         * m4/mbswidth.m4: New file.
63012         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
63013
63014 2000-07-15  Jim Meyering  <meyering@lucent.com>
63015
63016         * lib/makepath.c: Include quote.h.
63017         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
63018         corresponding argument in a `quote (...)' call.
63019         Give better diagnostics.
63020
63021         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
63022         (noinst_HEADERS): Add quote.h.
63023
63024         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
63025         from tar's src/misc.c.
63026         * lib/quote.h: New file.  Prototypes for same.
63027
63028 2000-07-14  Paul Eggert  <eggert@twinsun.com>
63029
63030         From a suggestion by Bruno Haible.
63031         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
63032         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
63033         to decide whether to define the BeOS workaround macro;
63034         this adjusts to the change to AC_MBSTATE_T.
63035
63036 2000-07-14  Jim Meyering  <meyering@lucent.com>
63037
63038         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
63039         jm_AC_TYPE_UINTMAX_T.
63040
63041 2000-07-13  Paul Eggert  <eggert@twinsun.com>
63042
63043         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
63044
63045         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
63046         quotearg_buffer_restyled): Add support for
63047         clocale_quoting_style.  Undo previous change to
63048         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
63049         and "{RIGHT QUOTATION MARK}" msgids.
63050
63051 2000-07-10  Paul Eggert  <eggert@twinsun.com>
63052
63053         From a suggestion by Bruno Haible.
63054         * m4/mbstate_t.m4 (AC_MBSTATE_T):
63055         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
63056         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
63057         and mbstate_t, to a single-part test that simply defines mbstate_t.
63058         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
63059         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
63060
63061 2000-07-10  Jim Meyering  <meyering@lucent.com>
63062
63063         * m4/strerror_r.m4: Mirror the correction made in autoconf.
63064
63065         * m4/gnu-source.m4: Output to confdefs.h directly.
63066         Suggestion from Akim Demaille.
63067
63068 2000-07-09  Paul Eggert  <eggert@twinsun.com>
63069
63070         The old behavior of quoting `like this' doesn't look good with
63071         newer, ISO-style fonts.  See:
63072         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
63073
63074         Instead, quote "like this" by default.  Let the translator
63075         tailor the locale-specific quoting behavior by providing
63076         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
63077
63078         * lib/quotearg.c (N_): New macro.
63079         (gettext_default): New function.
63080         (quotearg_buffer_restyled): Use
63081         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
63082         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
63083
63084 2000-07-09  Jim Meyering  <meyering@lucent.com>
63085
63086         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
63087         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
63088
63089         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
63090         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
63091
63092 2000-07-09  Jim Meyering  <meyering@lucent.com>
63093
63094         * lib/Most files: Update copyright dates to include 2000.
63095
63096 2000-07-08  Jim Meyering  <meyering@lucent.com>
63097
63098         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
63099         if not defined.
63100         (xgethostname): Remove now-unnecessary #ifdef.
63101         Move declaration of `err' into loop where it's used.
63102
63103 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63104         and Bruno Haible  <haible@clisp.cons.org>
63105
63106         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
63107         only if the test for an object-type mbstate_t fails.  This
63108         prevents us from mistakenly reporting that mbstate_t is a
63109         system object type after we "#define mbstate_t int" to work
63110         around its lack.
63111
63112 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63113         and Bruno Haible  <haible@clisp.cons.org>
63114
63115         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
63116
63117 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63118
63119         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
63120         to strerror_r.
63121         Include <ctype.h> for use of isalpha.
63122
63123 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63124
63125         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
63126         by allocating a larger buffer. Test the gethostname return value for
63127         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
63128         returns an error and ENAMETOOLONG isn't defined.
63129
63130 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63131
63132         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
63133         dimension.
63134
63135 2000-07-04  Jim Meyering  <meyering@lucent.com>
63136
63137         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
63138         of the deprecated AC_CHECKING.
63139
63140 2000-07-04  Jim Meyering  <meyering@lucent.com>
63141
63142         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
63143         Reported by Bruno Haible.
63144
63145 2000-07-04  Jim Meyering  <meyering@lucent.com>
63146
63147         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
63148         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
63149         lacks mbrtowc.
63150
63151 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63152
63153         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
63154         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
63155
63156 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63157         and Bruno Haible  <haible@clisp.cons.org>
63158
63159         * lib/quotearg.c (mbrtowc):
63160         Assign to *pwc, and return 1 only if result is nonzero.
63161         (iswprint): Use ISPRINT when substituting our own mbrtowc.
63162
63163 2000-07-03  Jim Meyering  <meyering@lucent.com>
63164
63165         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
63166
63167 2000-07-03  Jim Meyering  <meyering@lucent.com>
63168
63169         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
63170         This is necessary to get a definition of e.g., UTMP_FILE on
63171         HP-UX 10.20.
63172         From Bob Proulx.
63173
63174 2000-07-02  Jim Meyering  <meyering@lucent.com>
63175
63176         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
63177
63178         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
63179         AC_LIBOBJ(function_name).
63180         * m4/chown.m4: Likewise.
63181         * m4/fnmatch.m4: Likewise.
63182         * m4/ftruncate.m4: Likewise.
63183         * m4/getgroups.m4: Likewise.
63184         * m4/getline.m4: Likewise.
63185         * m4/group-member.m4: Likewise.
63186         * m4/jm-macros.m4: Likewise.
63187         * m4/lstat.m4: Likewise.
63188         * m4/malloc.m4: Likewise.
63189         * m4/memcmp.m4: Likewise.
63190         * m4/nanosleep.m4: Likewise.
63191         * m4/putenv.m4: Likewise.
63192         * m4/realloc.m4: Likewise.
63193         * m4/regex.m4: Likewise.
63194         * m4/stat.m4: Likewise.
63195         * m4/strftime.m4: Likewise.
63196
63197 2000-07-02  Jim Meyering  <meyering@lucent.com>
63198
63199         * lib/quotearg.c (mbstate_t): Don't define here.
63200
63201 2000-07-02  Jim Meyering  <meyering@lucent.com>
63202
63203         * lib/nanosleep.c (SIGCONT): Define if not already defined.
63204
63205 2000-07-01  Jim Meyering  <meyering@lucent.com>
63206
63207         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
63208
63209 2000-07-01  Jim Meyering  <meyering@lucent.com>
63210
63211         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
63212         problem.
63213
63214 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63215
63216         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
63217         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
63218
63219 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63220
63221         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
63222         per change in ../m4/ls-mntd-fs.m4.
63223         (read_filesystem_list): Ignore symbolic links.
63224
63225 2000-06-29  Jim Meyering  <meyering@lucent.com>
63226
63227         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
63228         for declaration of strcmp.
63229
63230         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
63231
63232         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
63233         Avoid warning by casting result to `char *' to remove `const'.
63234
63235 2000-06-28  Jim Meyering  <meyering@lucent.com>
63236
63237         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
63238         included by quotearg.c, for which we perform this test.  From
63239         Bruno Haible.
63240
63241 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63242
63243         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
63244         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
63245         <utmpx.h> exists, put readutmp.o into LIBOBJS.
63246
63247 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63248
63249         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
63250
63251 2000-06-26  Paul Eggert  <eggert@twinsun.com>
63252
63253         savedir now sets errno on failure and invokes xmalloc to get memory.
63254         Fix a couple of other minor bugs while we're at it.
63255
63256         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
63257         (NAMLEN): Remove macro.
63258         (malloc, realloc): Remove decls.
63259         (stpcpy): Likewise.
63260         ("xalloc.h"): Include.
63261         (NAME_SIZE_DEFAULT): New macro.
63262         (savedir): Use xmalloc / xrealloc to allocate memory.
63263         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
63264         Skip "" directory entries.
63265         Use strlen to calculate directory entry length, since the old method
63266         is rarely used these days and isn't worth supporting.
63267         Don't use a pointer after freeing it.
63268         Check for integer overflow when calculating allocation size.
63269         Use memcpy to copy entries, instead of stpcpy.
63270         Set errno properly when returning NULL.
63271         Check for readdir error.
63272
63273 2000-06-26  Jim Meyering  <meyering@lucent.com>
63274
63275         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
63276
63277 2000-06-25  Jim Meyering  <meyering@lucent.com>
63278
63279         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
63280         Linux header bug when _XOPEN_SOURCE is defined to 500.
63281
63282 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63283
63284         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
63285         deficiency.
63286
63287 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63288
63289         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
63290         Include xalloc.h.
63291         Don't include <stdlib.h>.  Don't declare malloc, realloc.
63292
63293 2000-06-24  Jim Meyering  <meyering@lucent.com>
63294
63295         * m4/strerror_r.m4: Revive this file -- to try out an experimental
63296         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
63297         for which strerror does return char*, but which lacks a conveniently
63298         accessible declaration of the function.  If the compile-test says
63299         strerror_r doesn't work, then resort to a `run'-test that works on
63300         BeOS and segfaults on DEC Unix.
63301
63302 2000-06-24  Jim Meyering  <meyering@lucent.com>
63303
63304         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
63305
63306 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63307
63308         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
63309         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
63310
63311 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63312
63313         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
63314         (mbrtowc, mbstate_t): Define substitutes if
63315         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
63316         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
63317         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
63318
63319 2000-06-23  Jim Meyering  <meyering@lucent.com>
63320
63321         * m4/afs.m4: Add missing AC_MSG_RESULT.
63322         Reported by Bruno Haible.
63323
63324         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
63325         Suggestion from Bruno Haible.
63326
63327 2000-06-23  Jim Meyering  <meyering@lucent.com>
63328
63329         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
63330
63331 2000-06-21  Jim Meyering  <meyering@lucent.com>
63332
63333         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
63334
63335 2000-06-21  Jim Meyering  <meyering@lucent.com>
63336
63337         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
63338         (noinst_HEADERS): Add getstr.h.
63339
63340         * lib/getline.c (getstr): Move into a separate file.
63341         * lib/getstr.c (getstr): New file, extracted from getline.c, with
63342         the following changes: new parameter, delim2; both delim[12]
63343         parameters have type `int', not `char'.  The latter would lose
63344         with 8-bit delimiters.
63345         * lib/getstr.h: New file.
63346
63347 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63348
63349         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
63350         than 1024, return a memory chunk of least possible size, instead
63351         of size PATH_MAX + 2. In the loop, increment the size proportionally.
63352         Use free/xmalloc instead of xrealloc to avoid copying for very long
63353         paths.
63354
63355 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63356
63357         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
63358         the empty string.
63359
63360 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63361
63362         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
63363         address, not strdup.  Include <stdlib.h> and don't declare free().
63364
63365 2000-06-19  Jim Meyering  <meyering@lucent.com>
63366
63367         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
63368
63369 2000-06-18  Jim Meyering  <meyering@lucent.com>
63370
63371         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
63372
63373         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
63374         `checking whether...' message to be consistent with that of the
63375         lstat test.
63376
63377 2000-06-18  Jim Meyering  <meyering@lucent.com>
63378
63379         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
63380         Besides, these days every porting target provides a mkdir function.
63381
63382         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
63383         needed. (this snippet comes from src/system.h).
63384
63385 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
63386
63387         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
63388
63389 2000-06-15  Paul Eggert  <eggert@twinsun.com>
63390
63391         * lib/human.c (adjust_value): New function.
63392         (human_readable_inexact): Apply rounding style even when
63393         printing approximate values.
63394
63395 2000-06-14  Paul Eggert  <eggert@twinsun.com>
63396
63397         * lib/human.c (human_readable_inexact): Allow an input block
63398         size that is not a multiple of the output block size, and vice versa.
63399         Reported by Piergiorgio Sartor.
63400
63401 2000-06-14  Paul Eggert  <eggert@twinsun.com>
63402
63403         * lib/getdate.y (get_date): Apply relative times after time
63404         zone indicator, not before.  Reported by Todd A. Jacobs.
63405
63406 2000-06-13  Jim Meyering  <meyering@lucent.com>
63407
63408         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
63409
63410         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
63411
63412 2000-06-12  Paul Eggert  <eggert@twinsun.com>
63413
63414         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
63415
63416 2000-06-12  Jim Meyering  <meyering@lucent.com>
63417
63418         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
63419         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
63420         optional argument.
63421         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
63422         the optional argument, `lib'.
63423
63424 2000-06-08  Jim Meyering  <meyering@lucent.com>
63425
63426         * m4/largefile.m4: Remove file (now that it's part of autoconf).
63427
63428 2000-06-04  Paul Eggert  <eggert@twinsun.com>
63429
63430         Rewrite largefile configuration so that we don't need to run
63431         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
63432         AC_CANONICAL_HOST in configure.in -- jmm]
63433
63434         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
63435         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
63436         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
63437         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
63438         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
63439         All uses changed.
63440         Instead of inspecting the output of getconf, try to compile the
63441         test program without and with the macro definition.
63442         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
63443         for getconf.  Instead, check for the needed flags by compiling
63444         test programs.
63445
63446 2000-06-04  Paul Eggert  <eggert@twinsun.com>
63447
63448         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
63449
63450 2000-06-04  Jim Meyering  <meyering@lucent.com>
63451
63452         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
63453         SunOS 4.1.4 for which gid_t is an unsigned type.
63454
63455 2000-06-03  Jim Meyering  <meyering@lucent.com>
63456
63457         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
63458         now that autoconf requires that.
63459
63460         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
63461         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
63462         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
63463
63464 2000-06-03  Jim Meyering  <meyering@lucent.com>
63465
63466         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
63467
63468 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
63469
63470         * m4/glibc21.m4: New file.
63471         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
63472
63473 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
63474
63475         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
63476         newer, don't install charset.alias.
63477         * lib/config.charset: Change the Linux/glibc rules so they become empty
63478         on glibc-2.1 or newer.
63479
63480 2000-06-02  Jim Meyering  <meyering@lucent.com>
63481
63482         * lib/mountlist.c: Back out last change.  Instead, do this...
63483         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
63484         me_dummy member using the same `ignore'-testing code.
63485         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
63486         fs_type strings.
63487         From Mark D. Roth.
63488
63489 2000-05-29  Jim Meyering  <meyering@lucent.com>
63490
63491         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
63492         mounts with the `ignore' attribute.  Based on a patch from
63493         Mark D. Roth.
63494
63495 2000-05-28  Jim Meyering  <meyering@lucent.com>
63496
63497         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
63498         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
63499         * m4/stat.m4: Likewise.
63500         * m4/lstat.m4: Likewise.
63501         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
63502
63503         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
63504         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
63505
63506 2000-05-26  Jim Meyering  <meyering@lucent.com>
63507
63508         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
63509
63510 2000-05-24  Jim Meyering  <meyering@lucent.com>
63511
63512         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
63513         autoconf requires that.
63514         * m4/lib-check.m4: Likewise.
63515         * m4/jm-macros.m4: Likewise.
63516         * m4/strftime.m4: Likewise.
63517
63518         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
63519         AC_CHECK_DECLS, now that autoconf requires that.
63520
63521 2000-05-22  Jim Meyering  <meyering@lucent.com>
63522
63523         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
63524         * m4/lstat.m4: Likewise.
63525
63526 2000-05-22  Jim Meyering  <meyering@lucent.com>
63527
63528         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
63529
63530 2000-05-20  Jim Meyering  <meyering@lucent.com>
63531
63532         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
63533         (jm_PREREQ): Use it.
63534
63535 2000-05-18  Jim Meyering  <meyering@lucent.com>
63536
63537         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
63538         back, too, since it may have been modified by allocate_entry.
63539         (hash_delete): Rewrite to use neither the assignment operator
63540         nor the comma operator in an if-expression.
63541
63542 2000-05-15  Paul Eggert  <eggert@twinsun.com>
63543
63544         * lib/closeout.c:
63545         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
63546         Remove; no longer needed.
63547         "quotearg.h": Add include.
63548         (file_name): Do not bother to explicitly initialize to NULL; it's less
63549         efficient on some hosts.
63550         (close_stdout_status): Remove test as to whether stdout was already
63551         closed; it breaks for the case "echo x | sort >&-".
63552         Quote file name colons.
63553         Do not assume that _("write error") lacks format strings.
63554
63555 2000-05-15  Jim Meyering  <meyering@lucent.com>
63556
63557         * lib/version-etc.c (version_etc_copyright): Update the copyright
63558         string used in all --version output.
63559
63560 2000-05-14  Jim Meyering  <meyering@lucent.com>
63561
63562         * lib/closeout.c (close_stdout_set_file_name): New function.
63563         (close_stdout_status): Use new file-scoped global.
63564         Return right away if fstat says the stdout file descriptor is invalid.
63565         * lib/closeout.h (close_stdout_set_file_name): Declare.
63566
63567 2000-05-10  Jim Meyering  <meyering@lucent.com>
63568
63569         * lib/closeout.c [default_exit_status]: New file-scoped variable.
63570         (close_stdout_set_status): New function.
63571         * lib/closeout.h (close_stdout_set_status): Declare.
63572
63573 2000-05-09  Jim Meyering  <meyering@lucent.com>
63574
63575         * m4/gettext.m4: Rename this...
63576         * m4/libintl.m4: ...to this.
63577
63578 2000-05-08  Jim Meyering  <meyering@lucent.com>
63579
63580         * lib/long-options.c: Don't include closeout.h.
63581         (parse_long_options): Don't call close_stdout for --version.
63582
63583 2000-05-06  Paul Eggert  <eggert@twinsun.com>
63584
63585         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
63586         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
63587         2.1.3 bug.  This avoids a clash when files like regex.c define
63588         _GNU_SOURCE.
63589
63590 2000-05-06  Jim Meyering  <meyering@lucent.com>
63591
63592         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
63593         (AC_REPLACE_FUNCS): Add strnlen.
63594
63595         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
63596         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
63597
63598         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
63599         AC_SEARCH_LIBS call for nanosleep.
63600         (LIB_NANOSLEEP): Set and AC_SUBST.
63601
63602 2000-05-06  Jim Meyering  <meyering@lucent.com>
63603
63604         * lib/strnlen.c: Undefine __strnlen and strnlen.
63605         [!weak_alias]: Define __strnlen to strnlen.
63606
63607         * lib/atexit.c: New file, from libiberty.
63608
63609 2000-05-06  Jim Meyering  <meyering@lucent.com>
63610
63611         * lib/closeout.c (close_stdout_status): Also check for errors on the
63612         stderr stream.
63613
63614 2000-05-05  Jim Meyering  <meyering@lucent.com>
63615
63616         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
63617         AC_SEARCH_LIBS call for clock_gettime.
63618         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
63619
63620         * m4/search-libs.m4: Update from autoconf.
63621
63622         su doesn't work on Solaris 2.6.
63623         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
63624         <shadow.h>.  Reported by Dragos Harabor.
63625
63626 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
63627
63628         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
63629         memcpy instead of xmalloc, xrealloc, path_concat.
63630         (locale_charset): Treat empty environment variables as absent.
63631         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
63632
63633 2000-05-04  Jim Meyering  <meyering@lucent.com>
63634
63635         * lib/getopt.c: Update from glibc.
63636         * lib/obstack.c: Likewise.
63637         * lib/obstack.h: Likewise.
63638         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
63639         file
63640
63641         * lib/regex.h: Likewise.
63642         * lib/strndup.c: Likewise.
63643         * lib/strnlen.c: New file, from glibc.
63644
63645 2000-05-03  Jim Meyering  <meyering@lucent.com>
63646
63647         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
63648
63649 2000-05-02  Paul Eggert  <eggert@twinsun.com>
63650
63651         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
63652         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
63653         compile-time test, rather than inspecting host and OS, to
63654         decide whether to define _LARGEFILE_SOURCE.
63655
63656 2000-05-01  Jim Meyering  <meyering@lucent.com>
63657
63658         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
63659
63660         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
63661         Based on a patch from Bruno Haible.
63662
63663 2000-05-01  Jim Meyering  <meyering@lucent.com>
63664
63665         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
63666
63667 2000-04-29  Jim Meyering  <meyering@lucent.com>
63668
63669         * lib/path-concat.c: Declare strdup only if it's not defined.
63670         * lib/canon-host.c: Likewise.
63671
63672 2000-04-28  Jim Meyering  <meyering@lucent.com>
63673
63674         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
63675         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
63676         is included first, then limits.h is included by locale.h by libintl.h.
63677         From John David Anglin.
63678
63679 2000-04-25  Jim Meyering  <meyering@lucent.com>
63680
63681         * lib/makepath.c (S_IRWXUGO): Define.
63682         (make_path): Always perform explicit chmod if MODE specifies any
63683         of the `special' permission bits.  Prompted by a bug report against
63684         install from Mate Wierdl and Joost van Baal.
63685
63686 2000-04-18  Jim Meyering  <meyering@lucent.com>
63687
63688         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
63689         (jm_PREREQ): Use it.
63690
63691 2000-04-18  Jim Meyering  <meyering@lucent.com>
63692
63693         * lib/README: New file.
63694
63695         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
63696         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
63697
63698 2000-04-17  Jim Meyering  <meyering@lucent.com>
63699
63700         Get it right :-)
63701         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
63702         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
63703         Suggestion from Akim Demaille.
63704
63705 2000-04-17  Jim Meyering  <meyering@lucent.com>
63706
63707         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
63708         the definition of it to rpl_strftime also defined-away the system's
63709         declaration.
63710
63711 2000-04-15  Jim Meyering  <meyering@lucent.com>
63712
63713         Use `C' to denote so-called `contiguous' files, the same way
63714         that tar does.
63715         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
63716         (ftypelet): Use S_ISCTG.
63717         From Michael Deutschmann.
63718
63719 2000-04-14  Jim Meyering  <meyering@lucent.com>
63720
63721         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
63722         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
63723         clobbered.
63724
63725 2000-04-14  Jim Meyering  <meyering@lucent.com>
63726
63727         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
63728
63729 2000-04-13  Jim Meyering  <meyering@lucent.com>
63730
63731         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
63732         AH_VERBATIM to insert required #ifndef into config.h.in.
63733         Suggestion from Akim Demaille.
63734
63735 2000-04-12  Jim Meyering  <meyering@lucent.com>
63736
63737         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
63738         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
63739         Christian Krackowizer.
63740
63741         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
63742         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
63743         (AC_SYS_LARGEFILE): Require.
63744         (AM_C_PROTOTYPES): Require.
63745
63746 2000-04-08  Jim Meyering  <meyering@lucent.com>
63747
63748         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
63749         names don't conflict.  Reported by Eli Zaretskii.
63750
63751 2000-04-07  Jim Meyering  <meyering@lucent.com>
63752
63753         * lib/putenv.c: Move inclusion of errno.h so it follows that of
63754         sys/types.h, to work around system header problems on AIX 3.2.5.
63755         From Bruno Haible.
63756
63757 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
63758
63759         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
63760         bug.  Deal with the different error behavior of Irix iconv.
63761
63762 2000-04-05  Paul Eggert  <eggert@twinsun.com>
63763
63764         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
63765         IRIX if the installer said otherwise.
63766
63767 2000-04-05  Jim Meyering  <meyering@lucent.com>
63768
63769         Portability tweaks required for ultrix4.3.
63770         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
63771         (jm_CHECK_DECLS): Add getutent to the list of functions.
63772         (_jm_DECL_HEADERS): Add utmpx.h.
63773         From John David Anglin.
63774
63775         * m4/strftime.m4: Back out the 2000-04-02 change.
63776         Instead of that change, simply undefine putenv in the test program.
63777
63778 2000-04-05  Jim Meyering  <meyering@lucent.com>
63779
63780         Portability tweaks required for ultrix4.3.
63781         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
63782         getutent.
63783         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
63784         * lib/canon-host.c: Declare strdup.
63785         * lib/path-concat.c: Likewise.
63786         From John David Anglin.
63787
63788 2000-04-04  Jim Meyering  <meyering@lucent.com>
63789
63790         Be more DOS 8.3-friendly.
63791         * lib/ref-add.sin: Renamed from ref-add.sed.in.
63792         * lib/ref-del.sin: Renamed from ref-del.sed.in.
63793         * lib/Makefile.am: Reflect renaming.
63794         Reported by Eli Zaretskii.
63795
63796         Use a temporary file name that won't clash with `charset.alias'
63797         in the DOS 8.3 name space.
63798         * lib/Makefile.am (charset_tmp): Define.
63799         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
63800         (uninstall-local): Likewise.
63801         Reported by Eli Zaretskii.
63802
63803 2000-04-03  Jim Meyering  <meyering@lucent.com>
63804
63805         * m4/gettext.m4: Fix typo in comment.
63806
63807         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
63808         textutils/configure.in).  Suggestion from Paul Eggert.
63809         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
63810
63811 2000-04-02  Paul Eggert  <eggert@twinsun.com>
63812
63813         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
63814         variable in the shell rather than using putenv, which isn't
63815         portable.  This avoids the configure-time inter-test dependency
63816         on the potentially-renamed putenv function.
63817
63818 2000-03-30  Paul Eggert  <eggert@twinsun.com>
63819
63820         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
63821         before checking struct stat.st_blksize, so that
63822         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
63823
63824 2000-03-29  Paul Eggert  <eggert@twinsun.com>
63825
63826         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
63827         since strftime.c uses HAVE_STRFTIME to decide whether to use
63828         the underlying strftime.
63829
63830 2000-03-29  Paul Eggert  <eggert@twinsun.com>
63831
63832         * lib/time/strftime.c (my_strftime): Make sure we call the system
63833         strftime, not ourselves, when invoking the underlying strftime.
63834
63835 2000-03-24  Jim Meyering  <meyering@lucent.com>
63836
63837         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
63838         (charset_alias): Define.
63839         (install-exec-local): Factor out common code.
63840         (uninstall-local): Split lines longer than 80.
63841         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
63842         (SUFFIXES): Define.
63843         (.sed.in.sed): New rule.  Don't redirect directly to $@.
63844         (CLEANFILES): Add ref-add.sed and ref-del.sed.
63845
63846 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
63847
63848         * lib/config.charset: Output a line containing "Packages using this
63849         file".
63850         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
63851         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
63852         ref-del.sed): New rules.
63853
63854 2000-03-17  Jim Meyering  <meyering@lucent.com>
63855
63856         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
63857         Otherwise, include <strings.h>
63858
63859 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
63860
63861         * lib/unicodeio.c (utf8_wctomb): New function.
63862         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
63863         format instead of in UCS-4 with platform dependent endianness.
63864
63865 2000-03-10  Jim Meyering  <meyering@lucent.com>
63866
63867         * m4/lib-check.m4: Look for getspnam in -lgen, too.
63868         From Marco Franzen.
63869
63870 2000-03-07  Paul Eggert  <eggert@twinsun.com>
63871
63872         * lib/savedir.c (savedir): Work even if directory size is
63873         negative; this can happen with some screwy NFS configurations.
63874
63875 2000-03-06  Jim Meyering  <meyering@lucent.com>
63876
63877         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
63878         if it's NULL (because we ran out of memory).  From Bruno Haible.
63879
63880 2000-03-05  Jim Meyering  <meyering@lucent.com>
63881
63882         * lib/localcharset.c ("path-concat.h"): Include.
63883         (get_charset_aliases): Use path_concat instead of ANSI string
63884         concatenation.
63885
63886         * lib/unicodeio.h (PARAMS): Define.
63887         Use it to guard prototype.
63888
63889 2000-03-04  Jim Meyering  <meyering@lucent.com>
63890
63891         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
63892         for lib/localcharset.c.
63893
63894 2000-03-04  Jim Meyering  <meyering@lucent.com>
63895
63896         * lib/Makefile.am (install-exec-local): Create $(libdir) before
63897         installing into it.
63898         (uninstall-local): Uncomment this rule so `make distcheck' works
63899         once again.
63900
63901         * lib/unicodeio.c (<errno.h>): Include it.
63902         (errno): Declare if not defined.
63903
63904         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
63905
63906         * lib/config.charset: New version, incorporating remarks from a linux
63907         i18n mailing list.  From Bruno Haible.
63908
63909 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
63910
63911         * m4/codeset.m4: New file.
63912         * m4/iconv.m4: New file.
63913         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
63914
63915 2000-03-03  Jim Meyering  <meyering@lucent.com>
63916
63917         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
63918
63919 2000-03-02  Jim Meyering  <meyering@lucent.com>
63920
63921         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
63922         the messages come out on separate lines.
63923
63924         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
63925         rather than jm_CHECK_DECLARATIONS.
63926         * m4/decl.m4: Remove now-unused file.
63927
63928         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
63929         geteuid.
63930
63931 2000-03-02  Jim Meyering  <meyering@lucent.com>
63932
63933         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
63934
63935 2000-03-01  Jim Meyering  <meyering@lucent.com>
63936
63937         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
63938         * lib/unicodeio.c: Likewise.
63939
63940 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
63941
63942         * lib/config.charset: New file.
63943         * lib/localcharset.c: New file.
63944         * lib/unicodeio.h, lib/unicodeio.c: New files.
63945         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
63946         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
63947         (noinst_HEADERS): Add unicodeio.h.
63948         (all-local, install-exec-local, charset.alias): New targets.
63949
63950 2000-02-28  Paul Eggert  <eggert@twinsun.com>
63951
63952         * lib/quotearg.c (ALERT_CHAR): New macro.
63953         (quotearg_buffer_restyled): Use it.
63954
63955 2000-02-27  Jim Meyering  <meyering@lucent.com>
63956
63957         * m4/check-decl.m4: Add getenv to the list.
63958
63959 2000-02-27  Jim Meyering  <meyering@lucent.com>
63960
63961         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
63962         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
63963
63964         * lib/backupfile.c: Guard inclusion of stdlib.h with
63965         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
63966         Declare malloc if needed.
63967
63968         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
63969         `#ifndef HAVE_DECL..'
63970         now that autoconf always defines the HAVE_DECL_ symbols.
63971         * lib/human.c: Likewise.
63972         * lib/same.c: Likewise.
63973         * lib/strtoumax.c: Likewise.
63974
63975         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
63976         declaration check was not run.
63977         * lib/hash.c: Likewise.
63978         * lib/human.c: Likewise.
63979         * lib/same.c: Likewise.
63980         * lib/strtoumax.c: Likewise.
63981
63982         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
63983         `.', then first look up the entire `.'-containing string as a login
63984         name.
63985
63986 2000-02-23  Jim Meyering  <meyering@lucent.com>
63987
63988         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
63989         in place of my hack.
63990
63991 2000-02-18  Paul Eggert  <eggert@twinsun.com>
63992
63993         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
63994         (textint): New typedef.
63995         (parser_control): Member year changed from int to textint.
63996         All uses changed.
63997         (YYSTYPE): Removed; replaced by %union with int and textint members.
63998         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
63999         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
64000         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
64001         (tSNUMBER, tUNUMBER): Now of type <textintval>.
64002         (date, number, to_year): Use width of number in digits, not its value,
64003         to determine whether it's a 2-digit year, or a 2-digit time.
64004         (yylex): Store number of digits of numeric tokens.
64005         Reported by John Kendall.
64006
64007         (parser_control): Changed from struct parser_control to typedef (for
64008         consistency).  All uses changed.
64009
64010         (tID): Removed; not used.
64011         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
64012
64013 2000-02-14  Paul Eggert  <eggert@twinsun.com>
64014
64015         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
64016         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
64017
64018 2000-02-12  Jim Meyering  <meyering@lucent.com>
64019
64020         * lib/userspec.c (ISDIGIT): Define it.
64021         (isdigit): Remove definition.
64022         (is_number): Use ISDIGIT, not isdigit.
64023         <libintl.h>: Include.
64024         (_ and N_): Define.
64025         (parse_user_spec): Mark translatable strings.
64026
64027 2000-02-10  Jim Meyering  <meyering@lucent.com>
64028
64029         With these changes, nanosleep.[ch] are finally enough like the other
64030         lib/* replacement files to compile on a few more losing systems.
64031
64032         * lib/nanosleep.h: Don't include config.h.
64033         Remove prototype from declaration of nanosleep.
64034         (PARAMS): Remove now-unneeded definition.
64035         * lib/nanosleep.c: #undef nanosleep.
64036         (rpl_nanosleep): Rename from nanosleep.
64037
64038 2000-02-10  Jim Meyering  <meyering@lucent.com>
64039
64040         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
64041         gnu_nanosleep to rpl_nanosleep.
64042
64043 2000-02-09  Jim Meyering  <meyering@lucent.com>
64044
64045         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
64046         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
64047
64048 2000-02-08  Akim Demaille  <akim@epita.fr>
64049
64050         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
64051         `[' and `]' and remove uses of `changequote'.
64052         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
64053         (AC_SYS_LARGEFILE): Likewise.
64054         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
64055         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
64056         of changequote.
64057         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
64058         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
64059         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
64060         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
64061
64062 2000-02-05  Jim Meyering  <meyering@lucent.com>
64063
64064         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
64065         Remove explicit use of AC_HEADER_TIME.  It is required by
64066         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
64067         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
64068         in autoconf whereby the expansion of the latter ended up preceding
64069         the expansion of its prerequisite, AC_HEADER_TIME.
64070         Reported by Volker Borchert.
64071
64072 2000-02-03  Jim Meyering  <meyering@lucent.com>
64073
64074         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
64075
64076 2000-02-03  Jim Meyering  <meyering@lucent.com>
64077
64078         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
64079         rather than with `#if HAVE_UTMPNAME'.
64080
64081 2000-02-02  Jim Meyering  <meyering@lucent.com>
64082
64083         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
64084         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
64085         Reported by Eli Zaretskii.
64086
64087 2000-02-01  Jim Meyering  <meyering@lucent.com>
64088
64089         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
64090
64091 2000-01-31  Jim Meyering  <meyering@lucent.com>
64092
64093         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
64094         functions.  Add the time.h and sys/time.h headers along with the
64095         AC_REQUIRE'ment of AC_HEADER_TIME.
64096
64097 2000-01-31  Jim Meyering  <meyering@lucent.com>
64098
64099         * lib/nanosleep.h (nanosleep): Guard declaration with
64100         `#if ! HAVE_DECL_NANOSLEEP'.
64101         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
64102         the declaration in that vendor's sys/timers.h.
64103         Reported by Christian Krackowizer.
64104
64105         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
64106         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
64107         (ISPRINT): Likewise.
64108         Reported by Tom Tromey.
64109
64110 2000-01-30  Jim Meyering  <meyering@lucent.com>
64111
64112         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
64113
64114         * m4/prereq.m4 (utmp_includes): Define.
64115         Check for ut_user and ut_name members in both struct utmpx
64116         and struct utmp.
64117
64118 2000-01-30  Jim Meyering  <meyering@lucent.com>
64119
64120         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
64121         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
64122         header files where only utmpx.ut_user is declared.
64123
64124         * lib/readutmp.h (UT_USER): Define.
64125
64126 2000-01-29  Jim Meyering  <meyering@lucent.com>
64127
64128         * m4/lib-check.m4: New file containing library-related checks from
64129         fileutils and sh-utils (textutils had none).
64130
64131 2000-01-28  Jim Meyering  <meyering@lucent.com>
64132
64133         * m4/perl.m4: Change format of warning message to look more like that
64134         from the missing script.  Suggestion from François Pinard.
64135
64136 2000-01-25  Jim Meyering  <meyering@lucent.com>
64137
64138         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
64139         well as time.h in the compile check.
64140         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
64141         Fix typo in cross-compiling case: s/yes/no/.
64142
64143 2000-01-23  Jim Meyering  <meyering@lucent.com>
64144
64145         * m4/jm-macros.m4: Move df-related tests here from
64146         fileutils/configure.in
64147
64148         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
64149         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
64150
64151         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
64152         s/space/ac_fsusage_space/.
64153         (jm_FILE_SYSTEM_USAGE): Take two parameters.
64154
64155         * m4/ftruncate.m4: New file (derived from part of
64156         fileutils/configure.in).
64157         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
64158         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
64159
64160         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
64161         AC_SUBST these here, rather than just in sh-util/configure.in, so
64162         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
64163         all the same.
64164         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
64165         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
64166         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
64167         (AC_SUBST(POW_LIBM)): Likewise.
64168         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
64169
64170 2000-01-23  Jim Meyering  <meyering@lucent.com>
64171
64172         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
64173         obstack.c.
64174
64175 2000-01-22  Jim Meyering  <meyering@lucent.com>
64176
64177         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
64178
64179         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
64180
64181         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
64182         configure.in
64183         (AC_CHECK_HEADERS): Likewise for sh-utils.
64184         (AC_CHECK_HEADERS): Likewise for textutils.
64185         Merge the three lists of headers.
64186
64187         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
64188         from fileutils' configure.in.
64189
64190         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
64191         code. Moved tests into their own function (_jm_DECL_HEADERS) in
64192         check-decl.m4.
64193
64194         * m4/check-decl.m4: Use #if rather than #ifdef.
64195         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
64196         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
64197         (_jm_DECL_HEADERS): Define new function.
64198         (jm_CHECK_DECLARATIONS): Require it.
64199
64200 2000-01-22  Jim Meyering  <meyering@lucent.com>
64201
64202         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
64203         [! HAVE_DECL_STRTOULL]: Declare strtoull.
64204         Required for some AIX systems.  Reported by Christian Krackowizer.
64205         [TESTING] (main): New function.
64206
64207         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
64208         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
64209         letters.
64210
64211         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
64212         iswprint.
64213
64214         * lib/strverscmp.c (ISDIGIT): Define.
64215         (strverscmp): Use ISDIGIT, not isdigit.
64216
64217 2000-01-19  Jim Meyering  <meyering@lucent.com>
64218
64219         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
64220         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
64221         defines `struct timespec' in <sys/time.h>
64222
64223         * m4/c-bs-a.m4: Remove uses of changequote altogether.
64224         Thanks to Akim for explaining.
64225
64226 2000-01-17  Paul Eggert  <eggert@twinsun.com>
64227
64228         * lib/nanosleep.c (nanosleep):
64229         Don't use SA_INTERRUPT to decide whether to call sigaction, as
64230         POSIX.1 doesn't require SA_INTERRUPT and some systems
64231         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
64232         it's been part of POSIX.1 since day 1 (in 1988).
64233
64234 2000-01-17  Jim Meyering  <meyering@lucent.com>
64235
64236         * lib/interlock: Remove unused file.  Reported by François Pinard.
64237
64238 2000-01-16  Paul Eggert  <eggert@twinsun.com>
64239
64240         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
64241         alert, backslash, formfeed, and vertical tab unnecessarily in
64242         shell quoting style.
64243
64244 2000-01-16  Jim Meyering  <meyering@lucent.com>
64245
64246         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
64247         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
64248         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
64249         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
64250
64251 2000-01-16  Jim Meyering  <meyering@lucent.com>
64252
64253         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
64254         because the latter didn't work.
64255
64256 2000-01-15  Jim Meyering  <meyering@lucent.com>
64257
64258         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
64259         (AC_REPLACE_FUNCS): Add memcpy and memset.
64260         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
64261         Add strpbrk.
64262         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
64263
64264 2000-01-12  Jim Meyering  <meyering@lucent.com>
64265
64266         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
64267         (jm_PREREQ): Use it.
64268         (jm_PREREQ_READUTMP): New macro.
64269         (jm_PREREQ): Use it.
64270
64271 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64272
64273         Quote multibyte characters correctly.
64274         * m4/c-bs-a.m4: New file.
64275         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
64276         (jm_PREREQ): Use it.
64277
64278 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64279
64280         * m4/uintmax_t.m4: Port to autoconf 2.13.
64281
64282 2000-01-08  Jim Meyering  <meyering@ascend.com>
64283
64284         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
64285         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
64286
64287 2000-01-04  Jim Meyering  <meyering@ascend.com>
64288
64289         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
64290         jm_STRUCT_DIRENT_D_TYPE.
64291         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
64292         jm_STRUCT_DIRENT_D_INO.
64293         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
64294         jm_STRUCT_UTIMBUF.
64295         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
64296         renamings.
64297         * m4/utime.m4: Likewise.
64298
64299         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
64300         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
64301
64302 2000-01-03  Paul Eggert  <eggert@twinsun.com>
64303
64304         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
64305         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
64306
64307 2000-01-02  Jim Meyering  <meyering@ascend.com>
64308
64309         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
64310         remember if this is necessary.
64311
64312 1999-12-26  Jim Meyering  <meyering@ascend.com>
64313
64314         * m4/jm-macros.m4: Use it here.
64315         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
64316
64317 1999-12-23  Jim Meyering  <meyering@ascend.com>
64318
64319         * m4/jm-macros.m4: Check for clock_gettime (moved from
64320         fileutils/configure.in)
64321         Check for gettimeofday.
64322
64323 1999-12-20  Jim Meyering  <meyering@ascend.com>
64324
64325         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
64326         autoconf-2.14a-1999-12-20.
64327
64328 1999-12-19  Jim Meyering  <meyering@ascend.com>
64329
64330         * m4/lstat-slash.m4: New file.
64331         * m4/jm-macros.m4: Use the new macro:
64332         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64333
64334 1999-12-07  Jim Meyering  <meyering@ascend.com>
64335
64336         * m4/perl.m4: Require that File::Compare be available, too.
64337         Too many systems seem to lack it.
64338
64339         * m4/strftime.m4: Add checks for most of the cpp macros tested in
64340         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
64341
64342 1999-11-18  Paul Eggert  <eggert@twinsun.com>
64343
64344         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
64345         problem with the QNX 4.25 shell, which doesn't propagate exit
64346         status of failed commands inside shell assignments.
64347
64348 1999-11-17  Jim Meyering  <meyering@ascend.com>
64349
64350         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
64351
64352 1999-11-07  Jim Meyering  <meyering@ascend.com>
64353
64354         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
64355
64356 1999-11-06  Jim Meyering  <meyering@ascend.com>
64357
64358         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
64359         * m4/jm-macros.m4 (jm_MACROS): Use it here.
64360
64361 1999-11-05  Jim Meyering  <meyering@ascend.com>
64362
64363         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
64364         configure.in of textutils, fileutils, and sh-utils into this one
64365         (shared between those packages) file.
64366         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
64367         AC_STRUCT_ST_BLKSIZE.
64368
64369 1999-11-03  Jim Meyering  <meyering@ascend.com>
64370
64371         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
64372         of AC_CHECK_TYPE checks includes unistd.h.
64373         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
64374         Suggestion from Akim Demaille.
64375
64376 1999-10-30  Jim Meyering  <meyering@ascend.com>
64377
64378         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
64379         m4-quoted string.
64380         * m4/ls-mntd-fs.m4: Likewise.
64381         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
64382         * m4/jm-winsz1.m4: Likewise.
64383
64384         * m4/const.m4: Remove file, since the fix made it into the experimental
64385         version of autoconf.
64386         * m4/mktime.m4: Likewise.
64387
64388         * m4/check-type.m4: Remove file, now that the latest version of
64389         AC_CHECK_TYPE takes a third arg to specify additional #includes.
64390
64391         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
64392         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
64393         AC_CHECK_TYPE.
64394
64395 1999-10-04  Jim Meyering  <meyering@ascend.com>
64396
64397         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
64398
64399 1999-09-22  Paul Eggert  <eggert@twinsun.com>
64400
64401         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
64402         2.95.1 bug with HP-UX 10.20.
64403
64404 1999-09-17  Jim Meyering  <meyering@ascend.com>
64405
64406         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
64407         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
64408         due to missing strdup (against sh-utils-2.0).
64409
64410 1999-08-29  Jim Meyering  <meyering@ascend.com>
64411
64412         * m4/jm-macros.m4: Require jm_BISON.
64413         * m4/bison.m4: New file.
64414
64415 1999-08-17  Paul Eggert  <eggert@twinsun.com>
64416
64417         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
64418         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
64419
64420 1999-08-05  Jim Meyering  <meyering@ascend.com>
64421
64422         * m4/getline.m4: Rename test file from conftestdata to conftest.data
64423         to avoid conflicts with `conftest' on 8+3 filesystems.
64424         Suggestion from Eli Zaretskii.
64425
64426 1999-08-04  Jim Meyering  <meyering@ascend.com>
64427
64428         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
64429         fileutils and sh-utils (textutils's getline test was inadequate).
64430         (AM_FUNC_GETLINE): Run this test.
64431         (AC_CHECK_FUNCS): Check for getdelim.
64432         Reported by Bob Proulx.
64433
64434 1999-08-02  Jim Meyering  <meyering@ascend.com>
64435
64436         * m4/jm-macros.m4: Add a comment.
64437
64438 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64439
64440         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
64441         <inttypes.h> defines strtoumax as a macro (and not as a
64442         function).
64443
64444 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64445
64446         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
64447         that we can shift, multiply and divide unsigned long long
64448         values; Ultrix cc can't do it.
64449
64450 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64451
64452         * m4/mktime.m4: New file, which is a preview of what should appear
64453         in the next public autoconf release.
64454
64455 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64456
64457         * m4/lfs.m4: Remove this file.
64458         * m4/largefile.m4: New file.  It contains the old contents of
64459         lfs.m4, except that all names with prefix AC_LFS have been
64460         changed to use the prefix AC_SYS_LARGEFILE instead, to be
64461         compatible with future autoconf versions.  Also, some minor m4
64462         quoting problems have been fixed.
64463
64464 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64465
64466         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
64467         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
64468         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
64469         and simplify the shell code.
64470
64471 1999-08-01  Jim Meyering  <meyering@ascend.com>
64472
64473         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
64474         m4.
64475
64476 1999-07-20  Jim Meyering  <meyering@ascend.com>
64477
64478         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
64479
64480 1999-07-15  Jim Meyering  <meyering@ascend.com>
64481
64482         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
64483
64484 1999-05-22  Jim Meyering  <meyering@ascend.com>
64485
64486         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
64487
64488 1999-05-20  Jim Meyering  <meyering@ascend.com>
64489
64490         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
64491         Add a colon after each `then' in case $4 is empty.
64492
64493 1999-05-16  Jim Meyering  <meyering@ascend.com>
64494
64495         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
64496
64497 1999-05-10  Jim Meyering  <meyering@ascend.com>
64498
64499         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
64500
64501         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
64502         AC_FUNC_MKTIME.
64503
64504 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
64505
64506         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
64507
64508 1999-05-04  Paul Eggert  <eggert@twinsun.com>
64509
64510         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
64511         not CPPFLAGS, so that linking works correctly in IRIX.
64512
64513 1999-04-30  Paul Eggert  <eggert@twinsun.com>
64514
64515         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
64516
64517 1999-04-20  Paul Eggert  <eggert@twinsun.com>
64518
64519         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
64520         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
64521         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
64522         jm_AC_TYPE_UNSIGNED_LONG_LONG.
64523         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
64524
64525         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
64526
64527 1999-04-20  Jim Meyering  <meyering@ascend.com>
64528
64529         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
64530         AC_REPLACE xstroull if necessary.  From Paul Eggert.
64531         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
64532
64533 1999-04-18  Jim Meyering  <meyering@ascend.com>
64534
64535         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
64536         * m4/jm-macros.m4: Use it.
64537
64538 1999-04-06  Jim Meyering  <meyering@ascend.com>
64539
64540         * m4/strftime.m4: Remove test for %f.
64541
64542 1999-03-29  Jim Meyering  <meyering@ascend.com>
64543
64544         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
64545         superset of the AC_TYPE_* checks in the textutils, fileutils,
64546         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
64547         AC_TYPE_PID_T.
64548
64549 1999-03-28  Jim Meyering  <meyering@ascend.com>
64550
64551         * m4/jm-macros.m4: Define GNU_PACKAGE here.
64552         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
64553         replaced e.g., in the *.sh files of the sh-utils.
64554
64555 1999-03-20  Jim Meyering  <meyering@ascend.com>
64556
64557         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
64558         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
64559         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
64560
64561 1999-03-19  Jim Meyering  <meyering@ascend.com>
64562
64563         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
64564
64565 1999-03-12  Jim Meyering  <meyering@ascend.com>
64566
64567         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
64568
64569 1999-03-07  Jim Meyering  <meyering@ascend.com>
64570
64571         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
64572         declared.
64573
64574 1999-02-17  Jim Meyering  <meyering@ascend.com>
64575
64576         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
64577         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
64578
64579 1999-02-07  Jim Meyering  <meyering@ascend.com>
64580
64581         * m4/group-member.m4: New file -- extracted from sh-utils'
64582         configure.in.
64583
64584         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
64585         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
64586
64587 1999-02-06  Jim Meyering  <meyering@ascend.com>
64588
64589         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
64590         * m4/fnmatch.m4: Likewise.
64591         * m4/getgroups.m4: Likewise.
64592         * m4/lstat.m4: Likewise.
64593         * m4/malloc.m4: Likewise.
64594         * m4/putenv.m4: Likewise.
64595         * m4/realloc.m4: Likewise.
64596         * m4/regex.m4: Likewise.
64597         * m4/stat.m4: Likewise.
64598         * m4/strftime.m4: Likewise.
64599         Suggestion from Alain Magloire.
64600
64601         * m4/chown.m4: Use `.$ac_objext', not `.o'.
64602         * m4/fnmatch.m4: Likewise.
64603         * m4/getgroups.m4: Likewise.
64604         * m4/getline.m4: Likewise.
64605         * m4/lstat.m4: Likewise.
64606         * m4/malloc.m4: Likewise.
64607         * m4/memcmp.m4: Likewise.
64608         * m4/putenv.m4: Likewise.
64609         * m4/realloc.m4: Likewise.
64610         * m4/regex.m4: Likewise.
64611         * m4/stat.m4: Likewise.
64612         * m4/strftime.m4: Likewise.
64613         Suggestion from Alain Magloire.
64614
64615         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
64616         an argument.
64617
64618         * m4/regex.m4: Add a run-time Test for proper operation of
64619         re_compile_pattern.
64620
64621 1999-01-31  Jim Meyering  <meyering@ascend.com>
64622
64623         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
64624
64625 1999-01-30  Jim Meyering  <meyering@ascend.com>
64626
64627         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
64628
64629         * m4/jm-mktime.m4: Make this a wrapper around the official
64630         AM_FUNC_MKTIME rather than my private copy, now that the official one
64631         is up to date.
64632         * m4/mktime.m4: Remove file.
64633
64634         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
64635         * m4/uptime.m4: Likewise.
64636         * m4/uintmax_t.m4: Likewise.
64637
64638 1999-01-28  Jim Meyering  <meyering@ascend.com>
64639
64640         * m4/jm-macros.m4: Use jm_AFS.
64641         * m4/afs.m4: New file (from fileutils' configure.in).
64642
64643         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
64644         * m4/chown.m4: Likewise.
64645         * m4/d-ino.m4: Likewise.
64646         * m4/d-type.m4: Likewise.
64647         * m4/fnmatch.m4: Likewise.
64648         * m4/getgroups.m4: Likewise.
64649         * m4/gettext.m4: Likewise.
64650         * m4/jm-mktime.m4: Likewise.
64651         * m4/jm-winsz2.m4: Likewise.
64652         * m4/lcmessage.m4: Likewise.
64653         * m4/ls-mntd-fs.m4: Likewise.
64654         * m4/malloc.m4: Likewise.
64655         * m4/memcmp.m4: Likewise.
64656         * m4/putenv.m4: Likewise.
64657         * m4/realloc.m4: Likewise.
64658         * m4/st_mtim.m4: Likewise.
64659         * m4/strftime.m4: Likewise.
64660
64661 1999-01-16  Jim Meyering  <meyering@ascend.com>
64662
64663         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
64664         (ARGMATCH_DIE_DECL): Define.
64665
64666 1999-01-12  Jim Meyering  <meyering@ascend.com>
64667
64668         * m4/Makefile.am.in: Rewrite to avoid using fmt.
64669         Reported by Lars Hecking.
64670
64671 1999-01-10  Jim Meyering  <meyering@ascend.com>
64672
64673         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
64674         gross kludge.
64675         * m4/inttypes_h.m4: Likewise.
64676         * m4/lstat.m4: Likewise.
64677         * m4/malloc.m4: Likewise.
64678         * m4/readdir.m4: Likewise.
64679         * m4/realloc.m4: Likewise.
64680         * m4/st_dm_mode.m4: Likewise.
64681         * m4/stat.m4: Likewise.
64682         * m4/utimbuf.m4: Likewise.
64683         * m4/utimes.m4: Likewise.
64684
64685         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
64686         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
64687         comments in config.h.in are meaningful.
64688
64689         * m4/jm-macros.m4: Require autoconf-2.13 here.
64690
64691         * m4/regex.m4: By default, don't use the included regex.c on systems
64692         with glibc 2.  Suggestion from Uli Drepper.
64693
64694 1999-01-02  Jim Meyering  <meyering@ascend.com>
64695
64696         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
64697
64698 1998-12-18  Jim Meyering  <meyering@ascend.com>
64699
64700         * m4/Makefile.am.in (Makefile.am): Simplify rule.
64701         Based on a suggestion from Lars Hecking.
64702
64703 1998-11-16  Paul Eggert  <eggert@twinsun.com>
64704
64705         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
64706
64707 1998-11-16  Jim Meyering  <meyering@ascend.com>
64708
64709         * m4/lfs.m4: Double-quote the `uname...` expression.
64710
64711 1998-11-14  Jim Meyering  <meyering@ascend.com>
64712
64713         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
64714         * m4/stat.m4: Likewise.
64715
64716 1998-11-03  Jim Meyering  <meyering@ascend.com>
64717
64718         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
64719         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
64720
64721 1998-10-18  Jim Meyering  <meyering@ascend.com>
64722
64723         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
64724
64725 1998-10-17  Jim Meyering  <meyering@ascend.com>
64726
64727         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
64728         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
64729         calls for those previously hard-coded headers.  Instead, take a new
64730         parameter.
64731         (jm_CHECK_DECLARATIONS): Reflect interface change.
64732         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
64733         (jm_CHECK_DECL_LOCALTIME_R): New macro.
64734
64735         * m4/mktime.m4: Test for spring-forward gap before long-running test.
64736
64737 1998-10-14  Jim Meyering  <meyering@ascend.com>
64738
64739         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
64740         instead of "TZ=America/Vancouver".  From Paul Eggert.
64741
64742 1998-10-11  Jim Meyering  <meyering@ascend.com>
64743
64744         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
64745         This adds a test for a recently added compatibility fix for mktime.c.
64746         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
64747
64748 1998-09-27  Jim Meyering  <meyering@ascend.com>
64749
64750         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
64751
64752         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
64753         ../configure.in, including a change from Gordon Matzigkeit to allow
64754         cross-compiling for the Hurd.
64755
64756         * m4/glibc.m4: New file/macro to test for the GNU C Library
64757         versions 1 and 2.  From Gordon Matzigkeit.
64758         Indent.
64759
64760 1998-09-21  Jim Meyering  <meyering@ascend.com>
64761
64762         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
64763
64764 1998-08-18  Paul Eggert  <eggert@twinsun.com>
64765
64766         Port nanosecond-resolution times to UnixWare 2.1.2 and
64767         pedantic Solaris 2.6.
64768
64769         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
64770         AC_STRUCT_ST_MTIM.
64771         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
64772         Generate name of ns member, instead of just 1 or undef.
64773         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
64774
64775 1998-08-15  Jim Meyering  <meyering@ascend.com>
64776
64777         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
64778         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
64779         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
64780         instead of jm_TYPE_SSIZE_T.
64781
64782 1998-08-12  Jim Meyering  <meyering@ascend.com>
64783
64784         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
64785
64786 1998-08-02  Jim Meyering  <meyering@ascend.com>
64787
64788         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
64789         in acconfig.h manually.
64790
64791 1998-07-31  Paul Eggert  <eggert@twinsun.com>
64792
64793         * m4/st_mtim.m4: New file.
64794
64795 1998-07-28  Jim Meyering  <meyering@ascend.com>
64796
64797         * m4/utimes.m4: Undef stat.
64798
64799 1998-07-25  Jim Meyering  <meyering@ascend.com>
64800
64801         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
64802         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
64803
64804 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
64805
64806         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
64807         uid and gid actually remain unchanged.
64808
64809 1998-07-07  Jim Meyering  <meyering@ascend.com>
64810
64811         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
64812
64813 1998-07-04  Jim Meyering  <meyering@ascend.com>
64814
64815         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
64816         to prove that this macro can be used in packages without regex.c.
64817
64818 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
64819
64820         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
64821         is to be used.
64822
64823 1998-07-03  Jim Meyering  <meyering@ascend.com>
64824
64825         * m4/gettext.m4: Add -lintl if it's found to be necessary.
64826
64827         * m4/gettext.m4: New file -- from gettext-0.10.35.
64828         * m4/lcmessage.m4: Likewise.
64829         * m4/progtest.m4: Likewise.
64830
64831         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
64832         * m4/jm-macros.m4: Require the new macro.
64833
64834 1998-06-29  Jim Meyering  <meyering@ascend.com>
64835
64836         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
64837         for the definition of NGROUPS (used in a system header included
64838         by sys/mount.h).
64839
64840 1998-06-28  Jim Meyering  <meyering@ascend.com>
64841
64842         * m4/ls-mntd-fs.m4: New file.
64843         * m4/fstypename.m4: New file.
64844
64845         * m4/jm-macros.m4: Require the new macro.
64846         * m4/jm-glibc-io.m4: New file.
64847
64848 1998-05-19  Jim Meyering  <meyering@ascend.com>
64849
64850         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
64851         * m4/lchown.m4: New file.
64852
64853         * m4/Makefile.am.in: New file.
64854         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
64855
64856 1998-05-14  Jim Meyering  <meyering@ascend.com>
64857
64858         * m4/Makefile.am (EXTRA_DIST): Add them.
64859         * m4/jm-macros.m4: New file.
64860         * m4/utimbuf.m4: New file.
64861
64862 1998-05-12  Jim Meyering  <meyering@ascend.com>
64863
64864         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
64865
64866 1998-05-11  Jim Meyering  <meyering@ascend.com>
64867
64868         * m4/isc-posix.m4: New file.
64869
64870 1998-05-10  Jim Meyering  <meyering@ascend.com>
64871
64872         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
64873
64874 1998-05-09  Jim Meyering  <meyering@ascend.com>
64875
64876         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
64877         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
64878         with automake.
64879
64880         * m4/ssize_t.m4: New file.
64881         * m4/mktime.m4: Remove file -- the new automake has this now.
64882
64883 1998-04-26  Jim Meyering  <meyering@ascend.com>
64884
64885         * m4/assert.m4: New file.
64886         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
64887
64888 1998-04-05  Jim Meyering  <meyering@ascend.com>
64889
64890         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
64891         (jm_PREREQ): Use it here.
64892
64893 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
64894
64895         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
64896         in acconfig.h.
64897
64898 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
64899
64900         * m4/prereq.m4: New file.
64901         * m4/error.m4: New file.
64902         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
64903
64904 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
64905
64906         * m4/getline.m4: Don't set am_cv_func_working_getline before the
64907         cache-check for the same variable -- that defeated the purpose of
64908         the test; the test program was never run.  This was a problem only
64909         on systems with losing getline functions -- HP-UX 10.20 is one.
64910         Reported by Bjorn Helgaas.
64911
64912 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
64913
64914         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
64915
64916 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
64917
64918         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
64919
64920         * m4/const.m4: New file.  Use an initializer in this declaration
64921         typedef int charset[2]; const charset x;
64922         Reported by Bob Glickstein.
64923
64924 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
64925
64926         * m4/chown.m4: Fix reversed types on -1 args to chown.
64927         From Kaveh Ghazi.
64928
64929 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
64930
64931         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
64932         Add lseek and memchr.
64933
64934         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
64935         T.E.Dickey <dickey@clark.net> said that some older preprocessors
64936         have a 20-character limit on names.
64937
64938 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
64939
64940         * m4/inttypes_h.m4: New file.
64941         * m4/uintmax_t.m4: New file.
64942         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
64943
64944
64945         -----
64946
64947         Local Variables:
64948         coding: utf-8
64949         End:
64950
64951         Copyright (C) 1997-2010 Free Software Foundation, Inc.
64952
64953         Copying and distribution of this file, with or without
64954         modification, are permitted provided the copyright notice
64955         and this notice are preserved.