init.sh: make it easier for a test script to write to the tty, ...
[gnulib.git] / ChangeLog
1 2010-04-05  Jim Meyering  <meyering@redhat.com>
2
3         init.sh: make it easier for a test script to write to the tty, ...
4         when using automake's parallel-tests mode.
5         * tests/init.sh (stderr_fileno_): Define overridable variable.
6         (warn_): New function, to use it.
7         (fail_, skip_, framework_failure_): Use warn_.
8
9 2010-04-04  Bruno Haible  <bruno@clisp.org>
10
11         btowc: Avoid warning.
12         * lib/btowc.c: Include <stdlib.h>.
13         Reported by Hauke Fath <hauke@espresso.rhein-neckar.de>.
14
15 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
16             Bruno Haible  <bruno@clisp.org>
17
18         wchar: Port to NetBSD 1.5.
19         * lib/wchar.in.h (WEOF): Provide fallback also when wint_t exists.
20         * lib/wctype.in.h (WEOF): Likewise.
21
22 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
23             Bruno Haible  <bruno@clisp.org>
24
25         Port extended stdio to NetBSD 1.5.
26         * lib/stdio-impl.h [NetBSD]: Include <sys/param.h>.
27         (struct __sfileext, fp_ub): Define the "old way" for NetBSD 1.5Z and
28         older.
29
30 2010-04-04  Bruno Haible  <bruno@clisp.org>
31
32         string: Remove unused substitution.
33         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
34         HAVE_DECL_STRERROR.
35         * modules/string (Makefile.am): Don't substitute HAVE_DECL_STRERROR.
36
37 2010-04-04  Bruno Haible  <bruno@clisp.org>
38
39         strtod: Avoid a possible C++ test error.
40         * m4/strtod.m4 (gl_FUNC_STRTOD): When setting HAVE_STRTOD to 0, don't
41         set REPLACE_STRTOD.
42
43 2010-04-04  Bruno Haible  <bruno@clisp.org>
44
45         strerror: Update documentation.
46         * doc/posix-functions/strerror.texi: Remove mention of old platforms.
47
48 2010-04-04  Bruno Haible  <bruno@clisp.org>
49
50         stdio: Fix some C++ test errors on Solaris 8 with GCC.
51         * lib/stdio.in.h (vdprintf, vfprintf, vprintf, vsprintf): Use
52         _GL_CXXALIAS_SYS_CAST.
53
54 2010-04-04  Bruno Haible  <bruno@clisp.org>
55
56         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
57         * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): When the
58         function is not declared, set HAVE_DECL_FREXPL to 0, instead of setting
59         REPLACE_FREXPL to 1.
60         * doc/posix-functions/frexpl.texi: Update documentation.
61
62 2010-04-04  Bruno Haible  <bruno@clisp.org>
63
64         math: Fix some C++ test errors on Solaris 8 and Cygwin.
65         * lib/math.in.h (cosl, logl, sinl): Use simpler idiom.
66
67 2010-04-04  Bruno Haible  <bruno@clisp.org>
68
69         Implement nanosleep for native Windows.
70         * lib/nanosleep.c (nanosleep): New implementation for native Windows.
71
72 2010-04-04  Bruno Haible  <bruno@clisp.org>
73
74         math: Fix some C++ test errors on Solaris 8.
75         * lib/math.in.h (truncf, trunc): Use simpler idiom.
76
77 2010-04-04  Bruno Haible  <bruno@clisp.org>
78
79         math: Fix some C++ test errors on Cygwin.
80         * lib/math.in.h (ceilf, ceill, floorf, floorl, roundf, round, roundl,
81         truncl): Provide declaration if the system does not have it.
82         * m4/ceilf.m4 (gl_FUNC_CEILF): If the function is not declared, set
83         HAVE_DECL_CEILF to 0, not REPLACE_CEILF to 1.
84         * m4/ceill.m4 (gl_FUNC_CEILL): If the function is not declared, set
85         HAVE_DECL_CEILL to 0, not REPLACE_CEILL to 1.
86         * m4/floorf.m4 (gl_FUNC_FLOORF): If the function is not declared, set
87         HAVE_DECL_FLOORF to 0, not REPLACE_FLOORF to 1.
88         * m4/floorl.m4 (gl_FUNC_FLOORL): If the function is not declared, set
89         HAVE_DECL_FLOORL to 0, not REPLACE_FLOORL to 1.
90         * m4/round.m4 (gl_FUNC_ROUND): If the function is not declared, set
91         HAVE_DECL_ROUND to 0, not REPLACE_ROUND to 1.
92         * m4/roundf.m4 (gl_FUNC_ROUNDF): If the function is not declared, set
93         HAVE_DECL_ROUNDF to 0, not REPLACE_ROUNDF to 1.
94         * m4/roundl.m4 (gl_FUNC_ROUNDL): If the function is not declared, set
95         HAVE_DECL_ROUNDL to 0, not REPLACE_ROUNDL to 1.
96         * m4/truncl.m4 (gl_FUNC_TRUNCL): If the function is not declared, set
97         HAVE_DECL_TRUNCL to 0, not REPLACE_TRUNCL to 1.
98         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize HAVE_DECL_CEILF,
99         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
100         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
101         * modules/math (Makefile.am): Substitute HAVE_DECL_CEILF,
102         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
103         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
104
105 2010-04-04  Bruno Haible  <bruno@clisp.org>
106
107         * m4/ceilf.m4 (gl_FUNC_CEILF): Remove redundant AC_SUBST invocation.
108         * m4/ceill.m4 (gl_FUNC_CEILL): Likewise.
109         * m4/floorf.m4 (gl_FUNC_FLOORF): Likewise.
110         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
111         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
112         * m4/isinf.m4 (gl_ISINF): Likewise.
113         * m4/truncl.m4 (gl_FUNC_TRUNCL): Likewise.
114
115 2010-04-04  Bruno Haible  <bruno@clisp.org>
116
117         * m4/trunc.m4 (gl_FUNC_TRUNC): Remove redundant AC_SUBST invocation.
118         * m4/truncf.m4 (gl_FUNC_TRUNCF): Likewise.
119
120 2010-04-04  Bruno Haible  <bruno@clisp.org>
121
122         * m4/tmpfile.m4 (gl_FUNC_TMPFILE): Renamed from gl_TMPFILE.
123         * modules/tmpfile (configure.ac): Update.
124
125         tmpfile: Fix C++ test error on mingw.
126         * lib/stdio.in.h (tmpfile): New declaration.
127         * m4/tmpfile.m4 (gl_TMPFILE): Require gl_STDIO_H_DEFAULTS. Set
128         REPLACE_TMPFILE instead of defining tmpfile as a macro in config.h.
129         * modules/tmpfile (Depends-on): Add stdio.
130         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
131         * m4/stdio_h.m4 (gl_STDIO_H): Also check whether tmpfile is declared.
132         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_TMPFILE and REPLACE_TMPFILE.
133         * modules/stdio (Makefile.am): Substitute GNULIB_TMPFILE and
134         REPLACE_TMPFILE.
135         * tests/test-stdio-c++.cc (tmpfile): Verify signature.
136
137 2010-04-04  Bruno Haible  <bruno@clisp.org>
138
139         ioctl: Fix C++ test error on mingw.
140         * lib/ioctl.c (ioctl): Renamed from rpl_ioctl.
141         * lib/sys_ioctl.in.h (ioctl): When SYS_IOCTL_H_HAVE_WINSOCK2_H is 1,
142         use _GL_FUNCDECL_SYS, not _GL_FUNCDECL_RPL.
143
144 2010-04-03  Bruno Haible  <bruno@clisp.org>
145
146         wcwidth: Fix C++ test error on mingw.
147         * lib/wcwidth.c (wcwidth): Renamed from rpl_wcwidth.
148         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): If the wcwidth function does not
149         exist, don't set REPLACE_WCWIDTH. Instead, rely on HAVE_DECL_WCWIDTH.
150
151 2010-04-03  Bruno Haible  <bruno@clisp.org>
152
153         nanosleep: Fix C++ test error on mingw.
154         * lib/nanosleep.c (nanosleep): Renamed from rpl_nanosleep.
155         * lib/time.in.h (nanosleep): Use modern idiom.
156         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): When the system does not have a
157         nanosleep function, set HAVE_NANOSLEEP to 0, instead of setting
158         REPLACE_NANOSLEEP to 1.
159         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_NANOSLEEP.
160         * modules/time (Makefile.am): Substitute HAVE_NANOSLEEP.
161
162 2010-04-03  Bruno Haible  <bruno@clisp.org>
163
164         strptime: Fix C++ test error on mingw.
165         * lib/time.in.h (strptime): Use HAVE_STRPTIME, not REPLACE_STRPTIME.
166         * m4/strptime.m4 (gl_FUNC_STRPTIME): Set HAVE_STRPTIME, not
167         REPLACE_STRPTIME. Invoke gl_PREREQ_STRPTIME.
168         (gl_PREREQ_STRPTIME): New macro, extracted from gl_FUNC_STRPTIME.
169         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_STRPTIME,
170         not REPLACE_STRPTIME.
171         * modules/time (Makefile.am): Substitute HAVE_STRPTIME, not
172         REPLACE_STRPTIME.
173
174 2010-04-03  Bruno Haible  <bruno@clisp.org>
175
176         timegm: Fix C++ test error on mingw.
177         * lib/time.in.h (timegm): Use modern idiom.
178         * m4/timegm.m4 (gl_FUNC_TIMEGM): When timegm does not exist, set
179         HAVE_TIMEGM to 0, not REPLACE_TIMEGM to 1.
180         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_TIMEGM.
181         * modules/time (Makefile.am): Substitute HAVE_TIMEGM.
182
183 2010-04-03  Bruno Haible  <bruno@clisp.org>
184
185         timegm: Assume declaration if function exists.
186         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume timegm is declared if and only
187         if it exists. Don't clobber ac_cv_func_timegm.
188
189 2010-04-03  Bruno Haible  <bruno@clisp.org>
190
191         time_r: Fix C++ test error on mingw.
192         * lib/time.in.h (localtime_r, gmtime_r): Use modern idiom.
193         * m4/time_r.m4 (gl_TIME_R): When localtime_r does not exist, set
194         HAVE_LOCALTIME_R to 0, not REPLACE_LOCALTIME_R to 1.
195         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_LOCALTIME_R.
196         * modules/time (Makefile.am): Substitute HAVE_LOCALTIME_R.
197
198 2010-04-03  Bruno Haible  <bruno@clisp.org>
199
200         time_r: Minor updates.
201         * modules/time_r (Description): Mention the provided functions.
202         * lib/time_r.c: Don't include <string.h>.
203         * doc/posix-functions/gmtime_r.texi: Mention the 'time_r' module.
204         * doc/posix-functions/localtime_r.texi: Likewise.
205
206 2010-04-03  Bruno Haible  <bruno@clisp.org>
207
208         time: Fix regression introduced on 2010-03-08.
209         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Require
210         gl_HEADER_TIME_H_DEFAULTS, not gl_HEADER_STRING_H_DEFAULTS.
211
212 2010-04-03  Jim Meyering  <meyering@redhat.com>
213
214         maint.mk: don't silently disable project-specific syntax-check rules
215         * top/maint.mk (_prohibit_regexp): Define, to help people realize
216         that they need to convert their project-specific syntax-check rules
217         to use the new _sc_search_regexp.
218
219 2010-04-03  Bruno Haible  <bruno@clisp.org>
220
221         fchdir: Fix regression introduced on 2010-03-08.
222         * lib/unistd.in.h (fchdir): Fix declaration.
223         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set HAVE_FCHDIR, not REPLACE_FCHDIR.
224         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize HAVE_FCHDIR, not
225         REPLACE_FCHDIR.
226         * modules/unistd (Makefile.am): Substitute HAVE_FCHDIR, not
227         REPLACE_FCHDIR.
228
229 2010-04-03  Bruno Haible  <bruno@clisp.org>
230
231         getpagesize: Fix C++ test error on mingw.
232         * lib/unistd.in.h (getpagesize): Don't use _GL_CXXALIASWARN if the
233         system does not declare the function.
234         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Also check whether it's
235         declared.
236         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
237         HAVE_DECL_GETPAGESIZE.
238         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETPAGESIZE.
239
240 2010-04-03  Bruno Haible  <bruno@clisp.org>
241
242         stdio: Make C++ tests work on mingw.
243         * lib/stdio.in.h (getline): Don't use _GL_CXXALIASWARN if the system
244         does not declare the function.
245
246 2010-04-03  Bruno Haible  <bruno@clisp.org>
247
248         ftello: Fix C++ test error on mingw.
249         * lib/stdio.in.h (ftello): Use modern idiom.
250         * lib/ftello.c (ftello): Renamed from rpl_ftello.
251         * m4/ftello.m4 (gl_FUNC_FTELLO): Distinguish the case that the function
252         is missing and that it needs to be replaced.
253         (gl_REPLACE_FTELLO): Don't set REPLACE_FTELLO here.
254         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FTELLO.
255         * modules/stdio (Makefile.am): Substitute HAVE_FTELLO.
256
257 2010-04-03  Bruno Haible  <bruno@clisp.org>
258
259         fseeko: Fix C++ test error on mingw.
260         * lib/stdio.in.h (fseeko): Use modern idiom.
261         * lib/fseeko.c (fseeko): Renamed from rpl_fseeko.
262         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Distinguish the case that the function
263         is missing and that it needs to be replaced.
264         (gl_REPLACE_FSEEKO): Don't set REPLACE_FSEEKO here.
265         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FSEEKO.
266         * modules/stdio (Makefile.am): Substitute HAVE_FSEEKO.
267
268 2010-04-03  Bruno Haible  <bruno@clisp.org>
269
270         mkstemp: Fix C++ test error on mingw.
271         * lib/stdlib.in.h (mkstemp): Use modern idiom.
272         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Distinguish the case that the
273         function is missing and that it needs to be replaced.
274         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize HAVE_MKSTEMP.
275         * modules/stdlib (Makefile.am): Substitute HAVE_MKSTEMP.
276
277 2010-04-03  Bruno Haible  <bruno@clisp.org>
278
279         stpncpy: Fix C++ test error on mingw.
280         * lib/string.in.h (stpncpy): Use modern idiom.
281         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Distinguish the case that the
282         function is missing and that it needs to be replaced.
283         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
284         REPLACE_STPNCPY.
285         * modules/string (Makefile.am): Substitute REPLACE_STPNCPY.
286
287 2010-04-03  Bruno Haible  <bruno@clisp.org>
288
289         sys_stat: Fix C++ test error on mingw.
290         * build-aux/c++defs.h (_GL_CXXALIAS_RPL_CAST_1): New macro.
291         * lib/sys_stat.in.h (lchmod): Use it instead of _GL_CXXALIAS_RPL_1.
292
293 2010-04-03  Bruno Haible  <bruno@clisp.org>
294
295         pty: Update doc.
296         * doc/glibc-headers/pty.texi: Mention changes done since 2010-03-18.
297
298 2010-04-03  Bruno Haible  <bruno@clisp.org>
299
300         unistd: Fix C++ test error on mingw.
301         * lib/unistd.in.h (getcwd): Use _GL_CXXALIAS_SYS_CAST.
302
303 2010-04-03  Bruno Haible  <bruno@clisp.org>
304
305         Update doc regarding mingw.
306         * doc/glibc-functions/openpty.texi: Update regarding mingw.
307         * doc/glibc-functions/login_tty.texi: Likewise.
308         * doc/glibc-functions/forkpty.texi: Likewise.
309
310 2010-04-03  Bruno Haible  <bruno@clisp.org>
311
312         stdlib: Avoid compilation failure of c-strtold on mingw.
313         * lib/stdlib.in.h: Don't include <unistd.h> on native Windows systems.
314
315 2010-04-03  Bruno Haible  <bruno@clisp.org>
316
317         locale: Make C++ tests work on Cygwin and mingw.
318         * lib/locale.in.h (duplocale): Don't use _GL_CXXALIASWARN if gnulib
319         cannot provide the function.
320         Reported by Simon Josefsson.
321
322 2010-04-03  Bruno Haible  <bruno@clisp.org>
323
324         localename: Port to MacOS X 10.6.
325         * lib/localename.c (gl_locale_name_thread_unsafe): On MacOS X, try the
326         memory layout of the locales in MacOS X 10.6 as well.
327         Reported by Panu Kekäläinen <panu@kekalainen.eu>.
328
329 2010-04-02  Bruno Haible  <bruno@clisp.org>
330
331         gnulib-tool: Ensure that long-running tests are executed last.
332         * gnulib-tool (func_emit_tests_Makefile_am): Emit the code for long-
333         running tests after the one for the other tests.
334
335 2010-04-02  Bruno Haible  <bruno@clisp.org>
336
337         gnulib-tool: Ensure the tests in the main directory are executed first.
338         * gnulib-tool (func_emit_tests_Makefile_am): Initialize SUBDIRS to
339         start with the current directory.
340
341 2010-04-02  Bruno Haible  <bruno@clisp.org>
342
343         Tests for module 'havelib', moved here from GNU gettext.
344         * modules/havelib-tests: New file, from gettext/autoconf-lib-link with
345         modifications.
346         * tests/havelib/README: New file, from gettext/autoconf-lib-link.
347         * tests/havelib/Makefile.am: New file, from gettext/autoconf-lib-link
348         with modifications.
349         * tests/havelib/rpath-1: New file, from gettext/autoconf-lib-link with
350         modifications.
351         * tests/havelib/rpath-1a: New file, from gettext/autoconf-lib-link.
352         * tests/havelib/rpath-1b: New file, from gettext/autoconf-lib-link.
353         * tests/havelib/rpath-2_a: New file, from gettext/autoconf-lib-link
354         with modifications.
355         * tests/havelib/rpath-2_b: New file, from gettext/autoconf-lib-link
356         with modifications.
357         * tests/havelib/rpath-2aaa: New file, from gettext/autoconf-lib-link.
358         * tests/havelib/rpath-2aab: New file, from gettext/autoconf-lib-link.
359         * tests/havelib/rpath-2aac: New file, from gettext/autoconf-lib-link.
360         * tests/havelib/rpath-2aad: New file, from gettext/autoconf-lib-link.
361         * tests/havelib/rpath-2aba: New file, from gettext/autoconf-lib-link.
362         * tests/havelib/rpath-2abb: New file, from gettext/autoconf-lib-link.
363         * tests/havelib/rpath-2abc: New file, from gettext/autoconf-lib-link.
364         * tests/havelib/rpath-2abd: New file, from gettext/autoconf-lib-link.
365         * tests/havelib/rpath-2baa: New file, from gettext/autoconf-lib-link.
366         * tests/havelib/rpath-2bab: New file, from gettext/autoconf-lib-link.
367         * tests/havelib/rpath-2bac: New file, from gettext/autoconf-lib-link.
368         * tests/havelib/rpath-2bad: New file, from gettext/autoconf-lib-link.
369         * tests/havelib/rpath-2bba: New file, from gettext/autoconf-lib-link.
370         * tests/havelib/rpath-2bbb: New file, from gettext/autoconf-lib-link.
371         * tests/havelib/rpath-2bbc: New file, from gettext/autoconf-lib-link.
372         * tests/havelib/rpath-2bbd: New file, from gettext/autoconf-lib-link.
373         * tests/havelib/rpath-3_a: New file, from gettext/autoconf-lib-link
374         with modifications.
375         * tests/havelib/rpath-3_b: New file, from gettext/autoconf-lib-link
376         with modifications.
377         * tests/havelib/rpath-3aaa: New file, from gettext/autoconf-lib-link.
378         * tests/havelib/rpath-3aab: New file, from gettext/autoconf-lib-link.
379         * tests/havelib/rpath-3aac: New file, from gettext/autoconf-lib-link.
380         * tests/havelib/rpath-3aad: New file, from gettext/autoconf-lib-link.
381         * tests/havelib/rpath-3aae: New file, from gettext/autoconf-lib-link.
382         * tests/havelib/rpath-3aaf: New file, from gettext/autoconf-lib-link.
383         * tests/havelib/rpath-3aag: New file, from gettext/autoconf-lib-link.
384         * tests/havelib/rpath-3aah: New file, from gettext/autoconf-lib-link.
385         * tests/havelib/rpath-3aba: New file, from gettext/autoconf-lib-link.
386         * tests/havelib/rpath-3abb: New file, from gettext/autoconf-lib-link.
387         * tests/havelib/rpath-3abc: New file, from gettext/autoconf-lib-link.
388         * tests/havelib/rpath-3abd: New file, from gettext/autoconf-lib-link.
389         * tests/havelib/rpath-3abe: New file, from gettext/autoconf-lib-link.
390         * tests/havelib/rpath-3abf: New file, from gettext/autoconf-lib-link.
391         * tests/havelib/rpath-3abg: New file, from gettext/autoconf-lib-link.
392         * tests/havelib/rpath-3abh: New file, from gettext/autoconf-lib-link.
393         * tests/havelib/rpath-3baa: New file, from gettext/autoconf-lib-link.
394         * tests/havelib/rpath-3bab: New file, from gettext/autoconf-lib-link.
395         * tests/havelib/rpath-3bac: New file, from gettext/autoconf-lib-link.
396         * tests/havelib/rpath-3bad: New file, from gettext/autoconf-lib-link.
397         * tests/havelib/rpath-3bae: New file, from gettext/autoconf-lib-link.
398         * tests/havelib/rpath-3baf: New file, from gettext/autoconf-lib-link.
399         * tests/havelib/rpath-3bag: New file, from gettext/autoconf-lib-link.
400         * tests/havelib/rpath-3bah: New file, from gettext/autoconf-lib-link.
401         * tests/havelib/rpath-3bba: New file, from gettext/autoconf-lib-link.
402         * tests/havelib/rpath-3bbb: New file, from gettext/autoconf-lib-link.
403         * tests/havelib/rpath-3bbc: New file, from gettext/autoconf-lib-link.
404         * tests/havelib/rpath-3bbd: New file, from gettext/autoconf-lib-link.
405         * tests/havelib/rpath-3bbe: New file, from gettext/autoconf-lib-link.
406         * tests/havelib/rpath-3bbf: New file, from gettext/autoconf-lib-link.
407         * tests/havelib/rpath-3bbg: New file, from gettext/autoconf-lib-link.
408         * tests/havelib/rpath-3bbh: New file, from gettext/autoconf-lib-link.
409         * tests/havelib/rpathx/rpathx.c: New file, from
410         gettext/autoconf-lib-link.
411         * tests/havelib/rpathx/Makefile.am: New file, from
412         gettext/autoconf-lib-link.
413         * tests/havelib/rpathx/configure.ac: New file, from
414         gettext/autoconf-lib-link with modifications.
415         * tests/havelib/rpathy/rpathy.c: New file, from
416         gettext/autoconf-lib-link.
417         * tests/havelib/rpathy/Makefile.am: New file, from
418         gettext/autoconf-lib-link.
419         * tests/havelib/rpathy/configure.ac: New file, from
420         gettext/autoconf-lib-link with modifications.
421         * tests/havelib/rpathz/rpathz.c: New file, from
422         gettext/autoconf-lib-link.
423         * tests/havelib/rpathz/Makefile.am: New file, from
424         gettext/autoconf-lib-link.
425         * tests/havelib/rpathz/configure.ac: New file, from
426         gettext/autoconf-lib-link with modifications.
427         * tests/havelib/rpathlx/usex.c: New file, from
428         gettext/autoconf-lib-link.
429         * tests/havelib/rpathlx/Makefile.am: New file, from
430         gettext/autoconf-lib-link.
431         * tests/havelib/rpathlx/configure.ac: New file, from
432         gettext/autoconf-lib-link with modifications.
433         * tests/havelib/rpathly/usey.c: New file, from
434         gettext/autoconf-lib-link.
435         * tests/havelib/rpathly/Makefile.am: New file, from
436         gettext/autoconf-lib-link.
437         * tests/havelib/rpathly/configure.ac: New file, from
438         gettext/autoconf-lib-link with modifications.
439         * tests/havelib/rpathlz/usez.c: New file, from
440         gettext/autoconf-lib-link.
441         * tests/havelib/rpathlz/Makefile.am: New file, from
442         gettext/autoconf-lib-link.
443         * tests/havelib/rpathlz/configure.ac: New file, from
444         gettext/autoconf-lib-link with modifications.
445         * tests/havelib/rpathlyx/usey.c: New file, from
446         gettext/autoconf-lib-link.
447         * tests/havelib/rpathlyx/Makefile.am: New file, from
448         gettext/autoconf-lib-link.
449         * tests/havelib/rpathlyx/configure.ac: New file, from
450         gettext/autoconf-lib-link with modifications.
451         * tests/havelib/rpathlzyx/usez.c: New file, from
452         gettext/autoconf-lib-link.
453         * tests/havelib/rpathlzyx/Makefile.am: New file, from
454         gettext/autoconf-lib-link.
455         * tests/havelib/rpathlzyx/configure.ac: New file, from
456         gettext/autoconf-lib-link with modifications.
457         * tests/havelib/rpathcfg.sh: New file, from gettext/autoconf-lib-link
458         with modifications.
459
460 2010-04-02  Bruno Haible  <bruno@clisp.org>
461
462         gnulib-tool: Create distributed built sources also for the tests.
463         * gnulib-tool (func_create_testdir): Also generate distributed built
464         sources in the tests directory.
465
466 2010-04-02  Bruno Haible  <bruno@clisp.org>
467
468         gnulib-tool: Obey user's environment variables.
469         * gnulib-tool (func_create_testdir): When creating built sources,
470         respect the environment variables for autoconf, automake, etc. given by
471         the user.
472
473 2010-04-02  Bruno Haible  <bruno@clisp.org>
474
475         gnulib-tool: Provide the value of --m4-base to modules.
476         * gnulib-tool (func_import, func_create_testdir): Emit a definition
477         of gl_m4_base.
478
479 2010-04-02  Eric Blake  <eblake@redhat.com>
480
481         maint.mk: fix some fallout
482         * NEWS: Document the incompatible change, and its effect on cfg.mk.
483         * top/maint.mk (sc_prohibit_test_minus_ao): Update.
484
485 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
486
487         maint.mk: _sc_search_regexp: generalize and rename from _prohibit_regexp
488         * top/maint.mk (_sc_search_regexp): Rename from _prohibit_regexp.
489         (sc_cast_of_argument_to_free): Adapt to use _sc_search_regexp.
490         (sc_cast_of_x_alloc_return_value): Likewise.
491         (sc_cast_of_alloca_return_value): Likewise.
492         (sc_space_tab): Likewise.
493         (sc_prohibit_atoi_atof): Likewise.
494         (sc_prohibit_magic_number_exit): Likewise.
495         (sc_error_exit_success): Likewise.
496         (sc_file_system): Likewise.
497         (sc_prohibit_have_config_h): Likewise.
498         (sc_require_config_h): Likewise.
499         (sc_prohibit_HAVE_MBRTOWC): Likewise.
500         (sc_obsolete_symbols): Likewise.
501         (sc_changelog): Likewise.
502         (sc_program_name): Likewise.
503         (sc_the_the): Likewise.
504         (sc_trailing_blank): Likewise.
505         (sc_two_space_separator_in_usage): Likewise.
506         (sc_useless_cpp_parens): Likewise.
507         (sc_GPL_version): Likewise.
508         (sc_GFDL_version): Likewise.
509         (sc_texinfo_acronym): Likewise.
510         (sc_prohibit_cvs_keyword): Likewise.
511         (sc_prohibit_stat_st_blocks): Likewise.
512         (sc_prohibit_S_IS_definition): Likewise.
513         (sc_redundant_const): Likewise.
514         (sc_makefile_TAB_only_indentation): Likewise.
515         (sc_m4_quote_check): Likewise.
516         (sc_makefile_path_separator_check): Likewise.
517         (sc_copyright_check): Likewise.
518         (sc_Wundef_boolean): Likewise.
519         (sc_vulnerable_makefile_CVE-2009-4029): Likewise.
520
521         maint.mk: match 0 or more whitespace-before-function-call '('
522         * top/maint.mk (sc_error_exit_success): Relax regexp to match uses
523         that have zero or two-and-more spaces between the function name
524         and the open parenthesis.
525         (sc_error_message_warn_fatal): Likewise.
526         (sc_error_message_uppercase): Likewise.
527         (sc_error_message_period): Likewise.
528
529 2010-03-31  Eric Blake  <eblake@redhat.com>
530
531         maint.mk: check for [ as well as test
532         * top/maint.mk (sc_prohibit_test_minus_ao): Extend test.
533         Based on a libvirt report by Matthias Bolte.
534
535         gnumakefile: don't squelch _version output
536         * top/GNUmakefile (_version): Create one-shot dependency rather
537         than using $(shell) when version must be regenerated.
538         (_autoreconf): Run verbosely, by default.
539
540         sys_time: avoid compiler warnings
541         * lib/sys_time.in.h (includes): Ensure gcc pragma is
542         unconditional, fixing regression from 2010-03-29.
543         Reported by Simon Josefsson.
544
545 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
546
547         maint.mk: s/_header_without_use/_sc_header_without_use/
548         * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
549         (sc_prohibit_assert_without_use): Use the new name.
550         (sc_prohibit_close_stream_without_use): Likewise.
551         (sc_prohibit_getopt_without_use): Likewise.
552         (sc_prohibit_quotearg_without_use): Likewise.
553         (sc_prohibit_quote_without_use): Likewise.
554         (sc_prohibit_long_options_without_use): Likewise.
555         (sc_prohibit_inttostr_without_use): Likewise.
556         (sc_prohibit_ignore_value_without_use): Likewise.
557         (sc_prohibit_error_without_use): Likewise.
558         (sc_prohibit_xalloc_without_use): Likewise.
559         (sc_prohibit_hash_without_use): Likewise.
560         (sc_prohibit_hash_pjw_without_use): Likewise.
561         (sc_prohibit_safe_read_without_use): Likewise.
562         (sc_prohibit_argmatch_without_use): Likewise.
563         (sc_prohibit_canonicalize_without_use): Likewise.
564         (sc_prohibit_root_dev_ino_without_use): Likewise.
565         (sc_prohibit_openat_without_use): Likewise.
566         (sc_prohibit_c_ctype_without_use): Likewise.
567         (sc_prohibit_signal_without_use): Likewise.
568         (sc_prohibit_intprops_without_use): Likewise.
569
570 2010-03-30  Eric Blake  <eblake@redhat.com>
571
572         maint: improve module indicators
573         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
574         (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
575         columns, and avoid extra macro expansion.
576
577         fdopendir: work around FreeBSD bug
578         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
579         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
580         * modules/dirent (Makefile.am): Substitute it.
581         * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
582         declaration.
583         * doc/posix-functions/fdopendir.texi (fdopendir): Document the
584         fix.
585         Reported by Christian Weisgerber <naddy@mips.inka.de>.
586
587 2010-03-29  Bruno Haible  <bruno@clisp.org>
588
589         Emit #pragma system_header after the inclusion guard, not before.
590         * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
591         guard that spans the entire file, not before. This enables an
592         optimization in GCC's preprocessor.
593         * lib/ctype.in.h: Likewise.
594         * lib/dirent.in.h: Likewise.
595         * lib/errno.in.h: Likewise.
596         * lib/float.in.h: Likewise.
597         * lib/getopt.in.h: Likewise.
598         * lib/iconv.in.h: Likewise.
599         * lib/langinfo.in.h: Likewise.
600         * lib/locale.in.h: Likewise.
601         * lib/math.in.h: Likewise.
602         * lib/netdb.in.h: Likewise.
603         * lib/netinet_in.in.h: Likewise.
604         * lib/pty.in.h: Likewise.
605         * lib/sched.in.h: Likewise.
606         * lib/se-selinux.in.h: Likewise.
607         * lib/search.in.h: Likewise.
608         * lib/spawn.in.h: Likewise.
609         * lib/stdarg.in.h: Likewise.
610         * lib/stdint.in.h: Likewise.
611         * lib/string.in.h: Likewise.
612         * lib/strings.in.h: Likewise.
613         * lib/sys_file.in.h: Likewise.
614         * lib/sys_ioctl.in.h: Likewise.
615         * lib/sys_time.in.h: Likewise.
616         * lib/sys_times.in.h: Likewise.
617         * lib/sys_utsname.in.h: Likewise.
618         * lib/sys_wait.in.h: Likewise.
619         * lib/sysexits.in.h: Likewise.
620         * lib/wctype.in.h: Likewise.
621
622 2010-03-28  James Youngman  <jay@gnu.org>
623
624         save-cwd: don't leak a file descriptor when the caller execs.
625         * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
626         saved file descriptor.
627         * modules/save-cwd (Depends-on): Depend on cloexec.
628
629 2010-03-29  Bruno Haible  <bruno@clisp.org>
630
631         Remove vestiges of fts-lgpl module.
632         * lib/fts_.h: Assume GNULIB_FTS is 1.
633         * lib/fts.c: Likewise.
634         * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
635
636 2010-03-28  Bruno Haible  <bruno@clisp.org>
637
638         Fix definition of tests witness macro.
639         * gnulib-tool (func_import): Fix definition of witness macro.
640
641 2010-03-28  Bruno Haible  <bruno@clisp.org>
642
643         Fix ioctl's protoype on glibc systems.
644         * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
645         _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
646         * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
647         * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
648         signature. If not, arrange to replace the ioctl function.
649         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
650         REPLACE_IOCTL.
651         * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
652         * doc/posix-functions/ioctl.texi: Mention the glibc problem.
653         Reported by Ludovic Courtès <ludo@gnu.org>.
654
655 2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
656
657         exclude: fix the case of globs vs. EXCLUDE_INCLUDE
658         * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
659         made it so grep -r --include=GLOB* ... did not work.
660
661 2010-03-26  Jim Meyering  <meyering@redhat.com>
662             Eric Blake  <eblake@redhat.com>
663
664         maint.mk: prohibit use of test's -o and -a operators
665         * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
666
667 2010-03-28  Bruno Haible  <bruno@clisp.org>
668
669         Remove unused GNULIB_XYZ macro definitions.
670         * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
671         invocation.
672
673 2010-03-28  Bruno Haible  <bruno@clisp.org>
674
675         Mark privileged tests modules.
676         * modules/idpriv-drop-tests (Status): New section.
677         * modules/idpriv-droptemp-tests (Status): New section.
678
679 2010-03-28  Bruno Haible  <bruno@clisp.org>
680
681         Split C++ tests into separate tests modules.
682         * modules/dirent-c++-tests: New file, extracted from
683         modules/dirent-tests.
684         * modules/dirent-tests: Depend on it.
685         * modules/fcntl-h-c++-tests: New file, extracted from
686         modules/fcntl-h-tests.
687         * modules/fcntl-h-tests: Depend on it.
688         * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
689         * modules/glob-tests: Depend on it.
690         * modules/iconv-h-c++-tests: New file, extracted from
691         modules/iconv-h-tests.
692         * modules/iconv-h-tests: Depend on it.
693         * modules/langinfo-c++-tests: New file, extracted from
694         modules/langinfo-tests.
695         * modules/langinfo-tests: Depend on it.
696         * modules/locale-c++-tests: New file, extracted from
697         modules/locale-tests.
698         * modules/locale-tests: Depend on it.
699         * modules/math-c++-tests: New file, extracted from modules/math-tests.
700         * modules/math-tests: Depend on it.
701         * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
702         * modules/pty-tests: Depend on it.
703         * modules/search-c++-tests: New file, extracted from
704         modules/search-tests.
705         * modules/search-tests: Depend on it.
706         * modules/signal-c++-tests: New file, extracted from
707         modules/signal-tests.
708         * modules/signal-tests: Depend on it.
709         * modules/spawn-c++-tests: New file, extracted from
710         modules/spawn-tests.
711         * modules/spawn-tests: Depend on it.
712         * modules/stdio-c++-tests: New file, extracted from
713         modules/stdio-tests.
714         * modules/stdio-tests: Depend on it.
715         * modules/stdlib-c++-tests: New file, extracted from
716         modules/stdlib-tests.
717         * modules/stdlib-tests: Depend on it.
718         * modules/string-c++-tests: New file, extracted from
719         modules/string-tests.
720         * modules/string-tests: Depend on it.
721         * modules/sys_ioctl-c++-tests: New file, extracted from
722         modules/sys_ioctl-tests.
723         * modules/sys_ioctl-tests: Depend on it.
724         * modules/sys_select-c++-tests: New file, extracted from
725         modules/sys_select-tests.
726         * modules/sys_select-tests: Depend on it.
727         * modules/sys_socket-c++-tests: New file, extracted from
728         modules/sys_socket-tests.
729         * modules/sys_socket-tests: Depend on it.
730         * modules/sys_stat-c++-tests: New file, extracted from
731         modules/sys_stat-tests.
732         * modules/sys_stat-tests: Depend on it.
733         * modules/sys_time-c++-tests: New file, extracted from
734         modules/sys_time-tests.
735         * modules/sys_time-tests: Depend on it.
736         * modules/time-c++-tests: New file, extracted from modules/time-tests.
737         * modules/time-tests: Depend on it.
738         * modules/unistd-c++-tests: New file, extracted from
739         modules/unistd-tests.
740         * modules/unistd-tests: Depend on it.
741         * modules/wchar-c++-tests: New file, extracted from
742         modules/wchar-tests.
743         * modules/wchar-tests: Depend on it.
744         * modules/wctype-c++-tests: New file, extracted from
745         modules/wctype-tests.
746         * modules/wctype-tests: Depend on it.
747         Reported by Simon Josefsson.
748
749 2010-03-28  Bruno Haible  <bruno@clisp.org>
750
751         gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
752         * gnulib-tool (func_exists_module): New function, extracted from
753         func_verify_module.
754         (func_verify_module): Use it.
755         (func_get_dependencies): Synthetize a dependency from 'foo-tests' to
756         'foo' only if 'foo' exists.
757         * doc/gnulib.texi (Extra tests modules): Explain how to split a tests
758         module.
759
760 2010-03-28  Bruno Haible  <bruno@clisp.org>
761
762         gnulib-tool: Add support for special categories of tests.
763         * gnulib-tool: New options --with-c++-tests, --with-longrunning-tests,
764         --with-privileged-tests, --with-unportable-tests, --with-all-tests.
765         (func_usage): Document them.
766         (inc_cxx_tests, inc_longrunning_tests, inc_privileged_tests,
767         inc_unportable_tests, inc_all_tests): New variables.
768         (func_acceptable): Consider these variables.
769         (func_modules_transitive_closure): Make it work when the 'Status' field
770         consists of multiple words.
771         (func_import): Store and restore the values of inc_cxx_tests,
772         inc_longrunning_tests, inc_privileged_tests, inc_unportable_tests,
773         inc_all_tests in gnulib-comp.m4.
774         (func_create_testdir): Set inc_all_tests to true.
775         * doc/gnulib.texi (Extra tests modules): New section.
776         Suggested by Jim Meyering.
777
778 2010-03-28  Bruno Haible  <bruno@clisp.org>
779
780         ansi-c++-opt: Allow turning off the C++ build by default.
781         * m4/ansi-c++.m4 (gl_CXX_CHOICE): Let CXX_CHOICE default to 'no' if
782         gl_CXX_CHOICE_DEFAULT_NO is defined.
783         Requested by Eric Blake.
784
785 2010-03-28  Bruno Haible  <bruno@clisp.org>
786
787         unistd: Avoid #define replacements in C++ mode.
788         * lib/unistd.in.h (socket, connect, accept, bind, getpeername,
789         getsockname, getsockopt, listen, recv, send, recvfrom, sendto,
790         setsockopt, shutdown, select): In C++, attach a warning to the function
791         if possible, rather than #defining the symbol to a dysfunctional alias.
792         Reported by John W. Eaton <jwe@gnu.org>.
793
794 2010-03-28  Bruno Haible  <bruno@clisp.org>
795
796         Fix link errors on mingw.
797         * lib/sys_ioctl.in.h (ioctl): Fix declaration idiom.
798         * modules/sys_ioctl-tests (Makefile.am): Link test-sys_ioctl-c++ with
799         $(LIBSOCKET).
800         * modules/sys_select-tests (Makefile.am): Link test-sys_select-c++ with
801         $(LIBSOCKET).
802
803 2010-03-28  Bruno Haible  <bruno@clisp.org>
804             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
805
806         lib-ignore: Determine different options for different compilers.
807         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Set a variable which
808         depends on the current language (C/C++/Fortran). Don't set LDFLAGS.
809         Add comments.
810         (_gl_IGNORE_UNUSED_LIBRARIES_OPTIONS): New macro.
811         * NEWS: Mention the change.
812
813 2010-03-27  Bruno Haible  <bruno@clisp.org>
814
815         Remove unused GNULIB_XYZ macro definitions.
816         * modules/dup3 (configure.ac): Remove gl_MODULE_INDICATOR invocation.
817         * modules/fseek (configure.ac): Likewise.
818         * modules/ioctl (configure.ac): Likewise.
819         * modules/open (configure.ac): Likewise.
820         * modules/stdlib-safer (configure.ac): Likewise.
821
822 2010-03-27  Bruno Haible  <bruno@clisp.org>
823
824         Add a remark about certain modules.
825         * modules/malloc (Comment): New section.
826         * modules/realloc (Comment): Likewise.
827         * modules/sigpipe (Comment): Likewise.
828
829 2010-03-27  Bruno Haible  <bruno@clisp.org>
830
831         Resolve conflict between the two kinds of module indicators.
832         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Define
833         GNULIB_TEST_XYZ instead of GNULIB_XYZ.
834         * modules/canonicalize (configure.ac): Invoke
835         gl_MODULE_INDICATOR_FOR_TESTS.
836         * tests/test-canonicalize-lgpl.c: Test GNULIB_TEST_XYZ instead of
837         GNULIB_XYZ.
838         * tests/test-dirent-c++.cc: Likewise.
839         * tests/test-dirent-safer.c: Likewise.
840         * tests/test-dup2.c: Likewise.
841         * tests/test-fchdir.c: Likewise.
842         * tests/test-fcntl-h-c++.cc: Likewise.
843         * tests/test-getopt.c: Likewise.
844         * tests/test-getopt.h: Likewise.
845         * tests/test-langinfo-c++.cc: Likewise.
846         * tests/test-locale-c++.cc: Likewise.
847         * tests/test-math-c++.cc: Likewise.
848         * tests/test-pty-c++.cc: Likewise.
849         * tests/test-search-c++.cc: Likewise.
850         * tests/test-signal-c++.cc: Likewise.
851         * tests/test-spawn-c++.cc: Likewise.
852         * tests/test-stdio-c++.cc: Likewise.
853         * tests/test-stdlib-c++.cc: Likewise.
854         * tests/test-string-c++.cc: Likewise.
855         * tests/test-sys_ioctl-c++.cc: Likewise.
856         * tests/test-sys_select-c++.cc: Likewise.
857         * tests/test-sys_socket-c++.cc: Likewise.
858         * tests/test-sys_stat-c++.cc: Likewise.
859         * tests/test-sys_time-c++.cc: Likewise.
860         * tests/test-time-c++.cc: Likewise.
861         * tests/test-unistd-c++.cc: Likewise.
862         * tests/test-wchar-c++.cc: Likewise.
863         * tests/uninorm/test-u8-nfc.c: Likewise.
864         * tests/uninorm/test-u8-nfd.c: Likewise.
865         * tests/uninorm/test-u8-nfkc.c: Likewise.
866         * tests/uninorm/test-u8-nfkd.c: Likewise.
867         * tests/uninorm/test-u16-nfc.c: Likewise.
868         * tests/uninorm/test-u16-nfd.c: Likewise.
869         * tests/uninorm/test-u16-nfkc.c: Likewise.
870         * tests/uninorm/test-u16-nfkd.c: Likewise.
871         * tests/uninorm/test-u32-nfc.c: Likewise.
872         * tests/uninorm/test-u32-nfc-big.c: Likewise.
873         * tests/uninorm/test-u32-nfd.c: Likewise.
874         * tests/uninorm/test-u32-nfd-big.c: Likewise.
875         * tests/uninorm/test-u32-nfkc.c: Likewise.
876         * tests/uninorm/test-u32-nfkc-big.c: Likewise.
877         * tests/uninorm/test-u32-nfkd.c: Likewise.
878         * tests/uninorm/test-u32-nfkd-big.c: Likewise.
879         * tests/uninorm/test-u32-normalize-big.c: Likewise.
880
881 2010-03-27  Bruno Haible  <bruno@clisp.org>
882
883         Distinguish two kinds of module indicators.
884         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Renamed from
885         gl_MODULE_INDICATOR.
886         (gl_MODULE_INDICATOR): New macro.
887         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
888         gl_MODULE_INDICATOR_FOR_TESTS instead of gl_MODULE_INDICATOR.
889         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
890         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
891         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
892         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
893         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
894         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
895         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
896         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
897         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
898         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
899         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
900         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
901         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
902         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
903         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
904         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
905         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
906         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
907         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
908         * modules/cloexec (configure.ac): Likewise.
909         * modules/getopt-gnu (configure.ac): Likewise.
910         * modules/uninorm/u8-normalize (configure.ac): Likewise.
911         * modules/uninorm/u16-normalize (configure.ac): Likewise.
912         * modules/uninorm/u32-normalize (configure.ac): Likewise.
913         * modules/fdopendir (configure.ac): Invoke gl_MODULE_INDICATOR.
914
915 2010-03-27  Bruno Haible  <bruno@clisp.org>
916
917         New module description field 'Comment'.
918         * gnulib-tool: New option --extract-comment.
919         (func_usage): Document it.
920         (sed_extract_prog, sed_extract_field_header): Support 'Comment' field.
921         (func_get_comment): New function.
922         * modules/TEMPLATE-EXTENDED: Add a blank Comment field.
923
924 2010-03-27  Bruno Haible  <bruno@clisp.org>
925
926         Addendum to 2010-02-07 commit.
927         * gnulib-tool (func_usage): Document --extract-applicability option.
928
929 2010-03-27  Bruno Haible  <bruno@clisp.org>
930
931         Use GNULIB_POSIXCHECK instead of GNULIB_PORTCHECK.
932         * lib/time.in.h (asctime, asctime_r, ctime, ctime_r): Test
933         GNULIB_POSIXCHECK, not GNULIB_PORTCHECK. Provide compile-time warnings
934         rather than link errors.
935
936 2010-03-27  Bruno Haible  <bruno@clisp.org>
937
938         Avoid side effects from tests-related modules on the compilation of lib.
939         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_CONDITION): New macro.
940         (gl_MODULE_INDICATOR_SET_VARIABLE): Use its expansion as a value.
941         * gnulib-tool (func_emit_tests_Makefile_am): Accept a witness_macro
942         parameter. Emit into AM_CPPFLAGS a definition of the designated C
943         macro.
944         (func_import): Define a witness macro. Assign it a value that depends
945         on the current package. Override gl_MODULE_INDICATOR_CONDITION for the
946         tests-related modules.
947         (func_create_testdir): Update func_emit_tests_Makefile_am invocation.
948         Reported by Jim Meyering.
949
950 2010-03-27  Bruno Haible  <bruno@clisp.org>
951
952         Factorize common .m4 code.
953         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE): New macro.
954         * m4/arpa_inet_h.m4 (gl_ARPA_INET_MODULE_INDICATOR): Use it.
955         * m4/ctype.m4 (gl_CTYPE_MODULE_INDICATOR): Likewise.
956         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Likewise.
957         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
958         * m4/iconv_h.m4 (gl_ICONV_MODULE_INDICATOR): Likewise.
959         * m4/inttypes.m4 (gl_INTTYPES_MODULE_INDICATOR): Likewise.
960         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
961         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
962         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
963         * m4/netdb_h.m4 (gl_NETDB_MODULE_INDICATOR): Likewise.
964         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
965         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
966         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
967         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
968         * m4/stddef_h.m4 (gl_STDDEF_MODULE_INDICATOR): Likewise.
969         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
970         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
971         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
972         * m4/strings_h.m4 (gl_STRINGS_MODULE_INDICATOR): Likewise.
973         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_MODULE_INDICATOR): Likewise.
974         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
975         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
976         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
977         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
978         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
979         * m4/sys_times_h.m4 (gl_SYS_TIMES_MODULE_INDICATOR): Likewise.
980         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_MODULE_INDICATOR): Likewise.
981         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Likewise.
982         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
983         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
984         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
985
986 2010-03-27  Bruno Haible  <bruno@clisp.org>
987
988         Fix a compilation error on Cygwin with g++ >= 4.3.
989         * lib/sys_stat.in.h (lchmod): Don't warn about the use of this function
990         if it is undefined or if we alias it to chmod.
991         (lstat): Don't warn about the use of this function if it is undefined
992         or if we alias it to stat.
993         Reported by Simon Josefsson.
994
995 2010-03-27  Bruno Haible  <bruno@clisp.org>
996
997         * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Renamed from gl_GETLOGIN.
998         * modules/getlogin (configure.ac): Update.
999
1000         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Renamed from gl_GETLOGIN_R.
1001         * modules/getlogin_r (configure.ac): Update.
1002
1003         * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Renamed from gl_INET_NTOP.
1004         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Update.
1005         * modules/inet_ntop (configure.ac): Update.
1006
1007         * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Renamed from gl_INET_PTON.
1008         * modules/inet_pton (configure.ac): Update.
1009
1010         * m4/mbslen.m4 (gl_FUNC_MBSLEN): Renamed from gl_MBSLEN.
1011         * modules/mbslen (configure.ac): Update.
1012
1013         * m4/pty.m4 (gl_FUNC_FORKPTY): Renamed from gl_FORKPTY.
1014         (gl_FUNC_OPENPTY): Renamed from gl_OPENPTY.
1015         * modules/forkpty (configure.ac): Update.
1016         * modules/openpty (configure.ac): Update.
1017
1018 2010-03-26  Simon Josefsson  <simon@josefsson.org>
1019
1020         * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is
1021         no *.texi files.  Reported by Eric Blake <eblake@redhat.com>.
1022
1023 2010-03-25  Eric Blake  <eblake@redhat.com>
1024
1025         maint: use pragma consistently across replacement headers
1026         * lib/ctype.in.h (system_header): Hoist for consistent placement.
1027         * lib/dirent.in.h (system_header): Likewise.
1028         * lib/errno.in.h (system_header): Likewise.
1029         * lib/float.in.h (system_header): Likewise.
1030         * lib/getopt.in.h (system_header): Likewise.
1031         * lib/iconv.in.h (system_header): Likewise.
1032         * lib/inttypes.in.h (system_header): Likewise.
1033         * lib/langinfo.in.h (system_header): Likewise.
1034         * lib/locale.in.h (system_header): Likewise.
1035         * lib/math.in.h (system_header): Likewise.
1036         * lib/netdb.in.h (system_header): Likewise.
1037         * lib/netinet_in.in.h (system_header): Likewise.
1038         * lib/pty.in.h (system_header): Likewise.
1039         * lib/sched.in.h (system_header): Likewise.
1040         * lib/se-selinux.in.h (system_header): Likewise.
1041         * lib/search.in.h (system_header): Likewise.
1042         * lib/spawn.in.h (system_header): Likewise.
1043         * lib/stdarg.in.h (system_header): Likewise.
1044         * lib/stdint.in.h (system_header): Likewise.
1045         * lib/string.in.h (system_header): Likewise.
1046         * lib/strings.in.h (system_header): Likewise.
1047         * lib/sys_file.in.h (system_header): Likewise.
1048         * lib/sys_ioctl.in.h (system_header): Likewise.
1049         * lib/sys_socket.in.h (system_header): Likewise.
1050         * lib/sys_times.in.h (system_header): Likewise.
1051         * lib/sys_utsname.in.h (system_header): Likewise.
1052         * lib/sys_wait.in.h (system_header): Likewise.
1053         * lib/sysexits.in.h (system_header): Likewise.
1054         * lib/unistd.in.h (system_header): Likewise.
1055         * lib/wctype.in.h (system_header): Likewise.
1056
1057         arpa/inet: fix mingw compilation warning
1058         * lib/arpa_inet.in.h (system_header): Hoist to be unconditional.
1059         Reported by Matthew Bolte.
1060
1061 2010-03-25  Bruno Haible  <bruno@clisp.org>
1062
1063         Avoid collision between gnulib wrapper and libintl wrapper.
1064         * lib/printf.c (printf): Don't define if a printf wrapper is already
1065         defined in intl/printf.c.
1066         Reported by Michel Boaventura <michel@michelboaventura.com>.
1067
1068 2010-03-25  Bruno Haible  <bruno@clisp.org>
1069
1070         Use ANSI C.
1071         * lib/readutmp.h (getutent): Provide ANSI C prototype.
1072
1073 2010-03-25  Bruno Haible  <bruno@clisp.org>
1074
1075         Minor formatting changes.
1076         * lib/acosl.c: Insert space before function argument list.
1077         * lib/argz.c: Likewise.
1078         * lib/asinl.c: Likewise.
1079         * lib/expl.c: Likewise.
1080         * lib/gen-uni-tables.c: Likewise.
1081         * lib/gettext.h: Likewise.
1082         * lib/glthread/lock.h: Likewise.
1083         * lib/tanl.c: Likewise.
1084         * lib/uniname/uniname.c: Likewise.
1085         * tests/test-idpriv-drop.c: Likewise.
1086         * tests/test-idpriv-droptemp.c: Likewise.
1087         * tests/test-lock.c: Likewise.
1088         * tests/test-tls.c: Likewise.
1089         * lib/argp-help.c: Insert space before function-like macro argument
1090         list.
1091         * lib/memcmp.c: Likewise.
1092         * tests/test-base64.c: Likewise.
1093         * lib/localename.c: Insert space before sizeof's argument list.
1094         * lib/safe-alloc.h: Likewise.
1095         * lib/file-set.h: Insert space before macro argument list.
1096         * tests/test-argp.c: Likewise.
1097         * lib/argp-namefrob.h: Insert space before function parameter list.
1098         * lib/getaddrinfo.c: Likewise.
1099         * lib/netdb.in.h: Likewise.
1100         * lib/parse-duration.h: Likewise.
1101         * lib/parse-duration.c: Likewise.
1102         * lib/poll.c: Likewise.
1103         * lib/select.c: Likewise.
1104         * lib/trim.h: Likewise.
1105         * tests/test-usleep.c: Likewise.
1106         * lib/ldexpl.c: Insert space before function parameter list and before
1107         function argument list.
1108         * lib/logl.c: Likewise.
1109         * lib/sqrtl.c: Likewise.
1110         * lib/trim.c: Likewise.
1111         * lib/cosl.c: Use GNU style indentation. Insert space before function
1112         argument list.
1113         * lib/sinl.c: Likewise.
1114         * lib/tsearch.c: Insert space after 'for'.
1115         Reported by Jim Meyering.
1116
1117 2010-03-23  Pádraig Brady  <P@draigBrady.com>  (tiny change)
1118
1119         * maint.mk (sc_Wundef_boolean): Check for the presence of the
1120         config header before grepping, as it's not present before
1121         autoreconf/configure are run.  Reported by Simon Josefsson.
1122
1123 2010-03-23  Bruno Haible  <bruno@clisp.org>
1124
1125         pt_chown: Make it work with automake < 1.11.
1126         * modules/pt_chown (Makefile.am): Define pkglibexecdir.
1127         Reported by Simon Josefsson.
1128
1129 2010-03-23  Bruno Haible  <bruno@clisp.org>
1130
1131         pt_chown: Don't depend on GPLed modules.
1132         * lib/pt_chown.c: Don't include idpriv.h.
1133         (main): Don't drop privileges.
1134         * modules/pt_chown (Depends-on): Remove idpriv-drop.
1135         Reported by Simon Josefsson.
1136
1137 2010-03-24  Simon Josefsson  <simon@josefsson.org>
1138
1139         * top/maint.mk (sc_texinfo_acronym): Add rule, based on
1140         suggestions from karl@freefriends.org (Karl Berry).
1141
1142 2010-03-22  Eric Blake  <eblake@redhat.com>
1143
1144         gethostname: further tweaks
1145         * lib/unistd.in.h (includes): Only worry about <winsock2.h> if we
1146         are overriding gethostname.
1147         Suggested by Bruno Haible.
1148
1149 2010-03-21  Bruno Haible  <bruno@clisp.org>
1150
1151         Fix comments.
1152         * lib/forkpty.c (rpl_forkpty): Fix comment.
1153         * lib/openpty.c (rpl_openpty): Likewise.
1154         Reported by Eric Blake.
1155
1156 2010-03-22  Eric Blake  <eblake@redhat.com>
1157
1158         gethostname: fix build on mingw
1159         * lib/unistd.in.h (includes): Work around fact that mingw
1160         <winsock2.h> re-includes <unistd.h>, by avoiding any
1161         redeclarations if we are being included by <winsock2.h>.
1162         Reported by Matthias Bolte.
1163
1164 2010-03-21  Bruno Haible  <bruno@clisp.org>
1165
1166         forkpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
1167         * lib/forkpty.c (forkpty): New replacement function, from glibc with
1168         modifications.
1169         * lib/pty.in.h (forkpty): Update declaration. Add comments.
1170         * m4/pty.m4 (gl_FORKPTY): If forkpty is not declared, arrange to
1171         provide the replacement.
1172         * modules/forkpty (Depends-on): Add openpty, login_tty.
1173         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_FORKPTY.
1174         * modules/pty (Makefile.am): Substitute HAVE_FORKPTY.
1175         * doc/glibc-functions/forkpty.texi: More supported platforms.
1176         * config/srclist.txt: Add forkpty.c (commented).
1177
1178 2010-03-21  Bruno Haible  <bruno@clisp.org>
1179
1180         * modules/forkpty-tests: Use the common TEMPLATE-TESTS.
1181         (Makefile.am): Verify that PTY_LIB is defined.
1182
1183         * modules/openpty-tests: Use the common TEMPLATE-TESTS.
1184
1185 2010-03-21  Bruno Haible  <bruno@clisp.org>
1186
1187         Tests for module 'login_tty'.
1188         * modules/login_tty-tests: New file.
1189         * tests/test-login_tty.c: New file.
1190
1191         New module 'login_tty'.
1192         * lib/login_tty.c: New file.
1193         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): New macro.
1194         * modules/login_tty: New file.
1195         * doc/glibc-functions/login_tty.texi: Mention the new module.
1196
1197 2010-03-21  Bruno Haible  <bruno@clisp.org>
1198
1199         login_tty: Documentation.
1200         * doc/glibc-functions/login_tty.texi: New file.
1201         * doc/gnulib.texi (Glibc <utmp.h>): Include it.
1202
1203 2010-03-21  Bruno Haible  <bruno@clisp.org>
1204
1205         pty: Consistent macro naming.
1206         * m4/pty_h.m4 (gl_PTY_H): Renamed from gl_PTY.
1207         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): Update.
1208         * modules/pty (configure.ac): Update.
1209
1210 2010-03-21  Bruno Haible  <bruno@clisp.org>
1211
1212         Tests for openpty: Make stricter.
1213         * tests/test-openpty.c (main): Add test of canonical processing and
1214         erase.
1215         * modules/openpty-tests (Makefile.am): Verify that PTY_LIB is defined.
1216
1217         openpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
1218         * lib/openpty.c (openpty): New replacement function.
1219         * lib/pty.in.h: Include <termios.h>.
1220         (openpty): Update declaration. Add comments.
1221         * m4/pty.m4 (gl_OPENPTY): Require AC_USE_SYSTEM_EXTENSIONS. If openpty
1222         is not declared, arrange to provide the replacement. Check for _getpty
1223         and posix_openpt.
1224         * modules/openpty (Depends-on): Add extensions, fcntl-h, ioctl.
1225         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_OPENPTY.
1226         * modules/pty (Makefile.am): Substitute HAVE_OPENPTY.
1227         * modules/pty-tests (test_pty_c___LDADD): New variable.
1228         * doc/glibc-functions/openpty.texi: More supported platforms.
1229
1230 2010-03-21  Bruno Haible  <bruno@clisp.org>
1231
1232         setenv: Tweaks.
1233         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Include necessary headers in
1234         the test program.
1235         * doc/posix-functions/setenv.texi: Update platforms list.
1236
1237 2010-03-21  Bruno Haible  <bruno@clisp.org>
1238
1239         New module 'unlockpt'.
1240         * lib/unlockpt.c: New file, from glibc with modifications.
1241         * m4/unlockpt.m4: New file.
1242         * modules/unlockpt: New file.
1243         * lib/stdlib.in.h (unlockpt): New declaration.
1244         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether unlockpt is declared.
1245         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_UNLOCKPT, HAVE_UNLOCKPT.
1246         * modules/stdlib (Makefile.am): Substitute GNULIB_UNLOCKPT,
1247         HAVE_UNLOCKPT.
1248         * doc/posix-functions/unlockpt.texi: Mention the new module.
1249         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::unlockpt.
1250         * config/srclist.txt: Add unlockpt.c (commented).
1251
1252 2010-03-21  Jim Meyering  <meyering@redhat.com>
1253
1254         maint.mk: prohibit inclusion of "intprops.h" without use
1255         * top/maint.mk (sc_prohibit_intprops_without_use): New rule.
1256
1257 2010-03-21  Bruno Haible  <bruno@clisp.org>
1258
1259         New module 'grantpt'.
1260         * lib/grantpt.c: New file, from glibc with modifications.
1261         * m4/grantpt.m4: New file.
1262         * modules/grantpt: New file.
1263         * lib/stdlib.in.h (grantpt): New declaration.
1264         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether grantpt is declared.
1265         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GRANTPT, HAVE_GRANTPT.
1266         * modules/stdlib (Makefile.am): Substitute GNULIB_GRANTPT,
1267         HAVE_GRANTPT.
1268         * doc/posix-functions/grantpt.texi: Mention the new module.
1269         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::grantpt.
1270         * config/srclist.txt: Add grantpt.c (commented).
1271
1272 2010-03-21  Bruno Haible  <bruno@clisp.org>
1273
1274         New module 'pt_chown'.
1275         * lib/pt_chown.c: New file, from glibc with modifications.
1276         * lib/pty-private.h: New file, from glibc with modifications.
1277         * modules/pt_chown: New file.
1278         * config/srclist.txt: Add pt_chown.c, pty-private.h (commented).
1279
1280 2010-03-21  Bruno Haible  <bruno@clisp.org>
1281
1282         Tests for module 'ptsname'.
1283         * modules/ptsname-tests: New file.
1284         * tests/test-ptsname.c: New file.
1285
1286         New module 'ptsname'.
1287         * lib/ptsname.c: New file, from glibc with modifications.
1288         * m4/ptsname.m4: New file.
1289         * modules/ptsname: New file.
1290         * lib/stdlib.in.h (ptsname): New declaration.
1291         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether ptsname is declared.
1292         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PTSNAME, HAVE_PTSNAME.
1293         * modules/stdlib (Makefile.am): Substitute GNULIB_PTSNAME,
1294         HAVE_PTSNAME.
1295         * doc/posix-functions/ptsname.texi: Mention the new module.
1296         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::ptsname.
1297         * config/srclist.txt: Add ptsname.c (commented).
1298
1299 2010-03-21  Bruno Haible  <bruno@clisp.org>
1300
1301         Tests for module 'ttyname_r'.
1302         * modules/ttyname_r-tests: New file.
1303         * tests/test-ttyname_r.c: New file.
1304
1305         New module 'ttyname_r'.
1306         * lib/ttyname_r.c: New file.
1307         * m4/ttyname_r.m4: New file.
1308         * modules/ttyname_r: New file.
1309         * lib/unistd.in.h (ttyname_r): New declaration.
1310         * m4/unistd_h.m4 (gl_UNISTD_H): Check whether ttyname_r is declared.
1311         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_TTYNAME_R, HAVE_TTYNAME_R.
1312         * modules/unistd (Makefile.am): Substitute GNULIB_TTYNAME_R,
1313         HAVE_TTYNAME_R.
1314         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::ttyname_r.
1315         * doc/posix-functions/ttyname_r.texi: Mention the new module.
1316
1317 2010-03-20  Bruno Haible  <bruno@clisp.org>
1318
1319         signal: Undefine macro definitions in C++ mode.
1320         * lib/signal.in.h (sigismember, sigemptyset, sigaddset, sigdelset,
1321         sigfillset): Undefine macro definitions from the system header in C++
1322         mode.
1323         Reported by John W. Eaton <jwe@gnu.org>.
1324
1325 2010-03-20  Bruno Haible  <bruno@clisp.org>
1326
1327         Ensure no #include statements inside extern "C" { ... }.
1328         * lib/obstack.h: Shrink extern "C" { ... } region so that it does not
1329         contain #include statements.
1330         * lib/time.in.h: Likewise.
1331
1332 2010-03-20  Bruno Haible  <bruno@clisp.org>
1333
1334         Make _GL_WARN_ON_USE usable in C++ and C mode in the same compilation.
1335         * build-aux/warn-on-use.h (_GL_WARN_EXTERN_C): New macro.
1336         (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Likewise.
1337         Reported by John W. Eaton <jwe@gnu.org>.
1338
1339 2010-03-20  Bruno Haible  <bruno@clisp.org>
1340
1341         * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit.
1342         Reported by Jim Meyering.
1343
1344 2010-03-20  Bruno Haible  <bruno@clisp.org>
1345
1346         pipe: Set errno upon failure.
1347         * lib/pipe.h: Specify that when -1 is returned, errno is set.
1348         * lib/pipe.c (create_pipe): Set errno when returning -1. Use the right
1349         errno value in error message.
1350
1351 2010-03-20  Bruno Haible  <bruno@clisp.org>
1352             Jim Meyering  <meyering@redhat.com>
1353
1354         lchown: Avoid "unused variable" warning.
1355         * lib/lchown.c (rpl_lchown): Move variable 'st' into #if block.
1356
1357 2010-03-20  Bruno Haible  <bruno@clisp.org>
1358
1359         Work around unlink() bug on MacOS X 10.5.6.
1360         * lib/unlink.c (rpl_unlink): If UNLINK_PARENT_BUG is defined, fail when
1361         attempting to unlink a parent directory.
1362         * m4/unlink.m4 (gl_FUNC_UNLINK): Require AC_CANONICAL_HOST. Test for
1363         MacOS X 10.5 bug. If the bug is present, define UNLINK_PARENT_BUG and
1364         activate for the replacement function.
1365         * doc/posix-functions/unlink.texi: Mention the MacOS X 10.5 bug.
1366
1367 2010-03-20  Bruno Haible  <bruno@clisp.org>
1368
1369         Fix link errors on Solaris 8.
1370         * modules/dirent-tests (test_dirent_c___LDADD): Add LIB_NANOSLEEP.
1371         * modules/wctype-tests (test_wctype_c___LDADD): Likewise.
1372
1373 2010-03-19  Jim Meyering  <meyering@redhat.com>
1374
1375         regcomp.c: make non-_LIBC implementation of build_range_exp consistent
1376         The _LIBC implementation of build_range_exp correctly honors the
1377         RE_NO_EMPTY_RANGES flag when checking for reversed range endpoints.
1378         However, the non-_LIBC implementation would ignore that syntax-bit
1379         flag and return REG_ERANGE unconditionally.
1380         This change makes it honor that flag.
1381         * lib/regcomp.c (build_range_exp) [!_LIBC]: Add a parameter: "syntax".
1382         Make two pointer parameters "const".
1383         Use "syntax" bits in order to honor RE_NO_EMPTY_RANGES.
1384         (parse_bracket_exp): Update caller.
1385
1386         regex.m4: correct the reversed range endpoint ([b-a]) test
1387         * m4/regex.m4: When requiring that [b-a] evoke failure,
1388         use RE_NO_EMPTY_RANGES.  This makes this entire configure-time
1389         test pass once again for x86-based systems.
1390
1391 2010-03-19  Bruno Haible  <bruno@clisp.org>
1392
1393         scandir: Fix link error on Solaris 8.
1394         * lib/scandir.c (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New fallback
1395         macros.
1396
1397 2010-03-19  Bruno Haible  <bruno@clisp.org>
1398
1399         getusershell: Fix documentation.
1400         * doc/glibc-functions/endusershell.texi: Refer to the getusershell
1401         module.
1402         * doc/glibc-functions/setusershell.texi: Likewise.
1403
1404         getusershell: Provide declaration, missing on Solaris 9.
1405         * lib/unistd.in.h (getusershell, setusershell, endusershell): Declare
1406         also if HAVE_GETUSERSHELL && !HAVE_DECL_GETUSERSHELL.
1407         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): When the function exists,
1408         check whether it is declared. Set HAVE_DECL_GETUSERSHELL.
1409         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
1410         HAVE_DECL_GETUSERSHELL, not HAVE_GETUSERSHELL.
1411         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETUSERSHELL, not
1412         HAVE_GETUSERSHELL.
1413         * doc/glibc-functions/getusershell.texi: Mention the Solaris problem.
1414
1415 2010-03-19  Bruno Haible  <bruno@clisp.org>
1416
1417         wctype: Provide iswblank function.
1418         * lib/wctype.in.h (iswblank): Provide a replacement also when iswcntrl
1419         exists and is fine.
1420         * m4/wctype_h.m4 (gl_WCTYPE_H): Also check whether iswcntrl exists.
1421         * modules/wctype (Makefile.am): Substitute HAVE_ISWBLANK.
1422         * tests/test-wctype.c (main): Re-enable the iswblank tests.
1423         * doc/posix-functions/iswblank.texi: Update.
1424
1425 2010-03-19  Bruno Haible  <bruno@clisp.org>
1426
1427         Tests of module 'pty' in C++ mode.
1428         * modules/pty-tests: New file.
1429         * tests/test-pty-c++.cc: New file.
1430         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1431
1432 2010-03-19  Eric Blake  <eblake@redhat.com>
1433
1434         logb: fix documentation
1435         * doc/posix-functions/logb.texi (logb): Gnulib fixes the cygwin
1436         1.5 declaration bug.
1437
1438         forkpty, openpty: prefer glibc's const-safe prototype
1439         * lib/forkpty.c (rpl_forkpty): New file.
1440         * lib/openpty.c (rpl_openpty): Likewise.
1441         * modules/forkpty (Files): Distribute it.
1442         * modules/openpty (Files): Likewise.
1443         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.  Move decl
1444         check...
1445         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): ...here.  Request
1446         replacement for for non-const BSD signature.
1447         * modules/pty (Makefile.am): Substitute witnesses.
1448         * lib/pty.in.h (forkpty, openpty): Declare replacements.
1449         * tests/test-forkpty.c: Update signature check.
1450         * tests/test-openpty.c: Likewise.
1451         * doc/glibc-functions/forkpty.texi (forkpty): Document the fix.
1452         * doc/glibc-functions/openpty.texi (openpty): Likewise.
1453
1454         forkpty, openpty: split functions into new modules
1455         * modules/pty (Makefile.am): Substitute new witnesses.
1456         (Libraries): Move library detection...
1457         * modules/forkpty: ...into new module.
1458         * modules/openpty: Another new module.
1459         * modules/pty-tests: Rename and split...
1460         * modules/forkpty-tests: ...to this...
1461         * modules/openpty-tests: ...and this.
1462         * tests/test-pty.c: Rename and split...
1463         * tests/test-forkpty.c: ...to this...
1464         * tests/test-openpty.c: ...and this.
1465         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.
1466         (gl_PTY): Split library searching...
1467         * m4/pty.m4 (gl_PTY_LIB): ...into new file.
1468         (gl_FORKPTY, gl_OPENPTY): New macros.
1469         * lib/pty.in.h (forkpty, openpty): Honor new witnesses.
1470         * NEWS: Mention the split.
1471         * MODULES.html.sh (Misc): Document the modules.
1472         * doc/glibc-functions/forkpty.texi (forkpty): Likewise.
1473         * doc/glibc-functions/openpty.texi (openpty): Likewise.
1474
1475         pty: improve replacement header
1476         * lib/pty.in.h: New file.
1477         * modules/pty (Files): Ship it.
1478         (Makefile.am): Always build replacement.
1479         * m4/pty.m4: Rename...
1480         * m4/pty_h.m4: ...to this.
1481         (gl_PTY): Modernize setting of witness macros; update check of
1482         forkpty to take proper advantage of cache.
1483         (gl_PTY_MODULE_INDICATOR, gl_PTY_H_DEFAULTS): New macros.
1484
1485         getopt: avoid compiler warning
1486         * lib/getopt.c (attribute_hidden): Remove unused macro.
1487
1488 2010-03-18  Bruno Haible  <bruno@clisp.org>
1489
1490         Fix link errors on Solaris 8.
1491         * modules/iconv-h-tests (test_iconv_h_c___LDADD): Add LIB_NANOSLEEP.
1492         * modules/search-tests (test_search_c___LDADD): Likewise.
1493         * modules/signal-tests (test_signal_c___LDADD): Likewise.
1494         * modules/spawn-tests (test_spawn_c___LDADD): Likewise.
1495         * modules/stdio-tests (test_stdio_c___LDADD): Likewise.
1496         * modules/sys_select-tests (test_sys_select_c___LDADD): Likewise.
1497         * modules/sys_socket-tests (test_sys_socket_c___LDADD): Likewise.
1498         * modules/sys_time-tests (test_sys_time_c___LDADD): Likewise.
1499         * modules/wchar-tests (test_wchar_c___LDADD): Likewise.
1500
1501 2010-03-18  Bruno Haible  <bruno@clisp.org>
1502
1503         Fix bug introduced on 2010-03-14.
1504         * m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): New macro.
1505         (gl_SPAWN_H): Require it.
1506         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Likewise.
1507         Reported by Simon Josefsson.
1508
1509 2010-03-18  Bruno Haible  <bruno@clisp.org>
1510
1511         Fix typo introduced on 2009-12-31.
1512         * m4/spawn_h.m4 (gl_SPAWN_H): Check for the declaration of
1513         posix_spawn_file_actions_adddup2.
1514
1515 2010-03-17  Bert Wesarg  <bert.wesarg@googlemail.com>  (tiny change)
1516         and Eric Blake  <eblake@redhat.com>
1517
1518         test-vc-list-files-git: make more robust
1519         * tests/test-vc-list-files-git.sh: Unset problematic environment
1520         variables.  Chain commands together.
1521
1522 2010-03-17  Ludovic Courtès <ludo@gnu.org>  (tiny change)
1523
1524         * m4/pty.m4: Unset $ac_cv_have_decl_forkpty before the second
1525         `AC_CHECK_DECL' invocation.
1526
1527 2010-03-15  Sergey Poznyakoff  <gray@gnu.org.ua>
1528
1529         * lib/inttostr.c (inttostr): Make sure the invocation of verify
1530         appears before executable statements. Suggested by Petr Sumbera
1531         <Petr.Sumbera@Sun.COM>.
1532
1533 2010-03-14  Bruno Haible  <bruno@clisp.org>
1534
1535         * tests/test-flock.c (test_exclusive): Comment out a test that causes
1536         portability problems. Instead use a simpler test.
1537         (main): Check that invalid arguments are rejected only on Linux.
1538
1539 2010-03-14  Bruno Haible  <bruno@clisp.org>
1540
1541         Fix bug introduced on 2009-12-31.
1542         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
1543         gl_PREREQ_SYS_H_WINSOCK2 always.
1544         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise. Remove
1545         SYS_SOCKET_H variable.
1546         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Remove test for flock.
1547         Update comments.
1548         * m4/ctype.m4 (gl_CTYPE_H): Update comments.
1549         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
1550         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
1551         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
1552         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Likewise.
1553
1554 2010-03-14  Bruno Haible  <bruno@clisp.org>
1555
1556         Fix values returned by sinl, cosl.
1557         * lib/trigl.h: Add specification comments.
1558         * lib/sincosl.c (kernel_sinl, kernel_cosl): Fix comments and formula
1559         that combines the values from the precomputed table with the values of
1560         the Chebyshev polynomials.
1561
1562 2010-03-14  Bruno Haible  <bruno@clisp.org>
1563
1564         Fix compilation error when modules 'posix_spawn[p]' are not used.
1565         * m4/spawn_h.m4 (gl_SPAWN_H): Set HAVE_POSIX_SPAWN here.
1566         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): ... not here.
1567
1568 2010-03-14  Bruno Haible  <bruno@clisp.org>
1569
1570         Fix compilation error on mingw when module 'time_r' is not used.
1571         * lib/time.in.h (localtime_r, gmtime_r): Declare only if GNULIB_TIME_R
1572         is 1.
1573         * tests/test-time-c++.cc (localtime_r, gmtime_r): Likewise.
1574         * modules/time_r (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1575         * modules/time (Makefile.am): Substitute GNULIB_TIME_R.
1576         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_TIME_R.
1577
1578 2010-03-14  Bruno Haible  <bruno@clisp.org>
1579
1580         Fix compilation error with Sun C.
1581         * lib/strtol.c: Use LLONG_MIN instead of GCC specific LONG_LONG_MIN.
1582         Use LLONG_MAX instead of GCC specific LONG_LONG_MAX. Use ULLONG_MAX
1583         instead of GCC specific ULONG_LONG_MAX.
1584         * lib/xstrtoll.c: Likewise.
1585         * lib/xstrtoull.c: Likewise.
1586
1587 2010-03-13  Bruno Haible  <bruno@clisp.org>
1588
1589         Allow the user to disable C++ code and tests.
1590         * m4/ansi-c++.m4 (gl_CXX_CHOICE): New macro.
1591         (gl_PROG_ANSI_CXX): Require it.
1592
1593 2010-03-13  Bruno Haible  <bruno@clisp.org>
1594
1595         * DEPENDENCIES (libtool): Mention libtool 2.2.x requirement in special
1596         cases.
1597
1598 2010-03-13  Bruno Haible  <bruno@clisp.org>
1599
1600         Test that gnulib does not break the standard C++ headers.
1601         * tests/test-locale-c++2.cc: New file.
1602         * modules/locale-tests (Files): Add it.
1603         (Makefile.am): Compile it for test-locale-c++.
1604         * tests/test-math-c++2.cc: New file.
1605         * modules/math-tests (Files): Add it.
1606         (Makefile.am): Compile it for test-math-c++.
1607         * tests/test-signal-c++2.cc: New file.
1608         * modules/signal-tests (Files): Add it.
1609         (Makefile.am): Compile it for test-signal-c++.
1610         * tests/test-stdio-c++2.cc: New file.
1611         * modules/stdio-tests (Files): Add it.
1612         (Makefile.am): Compile it for test-stdio-c++.
1613         * tests/test-stdlib-c++2.cc: New file.
1614         * modules/stdlib-tests (Files): Add it.
1615         (Makefile.am): Compile it for test-stdlib-c++.
1616         * tests/test-string-c++2.cc: New file.
1617         * modules/string-tests (Files): Add it.
1618         (Makefile.am): Compile it for test-string-c++.
1619         * tests/test-time-c++2.cc: New file.
1620         * modules/time-tests (Files): Add it.
1621         (Makefile.am): Compile it for test-time-c++.
1622         Reported by John W. Eaton <jwe@gnu.org>.
1623
1624 2010-03-13  Bruno Haible  <bruno@clisp.org>
1625
1626         * gnulib-tool (func_usage): Clarify which options are available for
1627         --create-testdir and --create-megatestdir.
1628
1629 2010-03-13  Bruno Haible  <bruno@clisp.org>
1630
1631         Fix compilation error with glibc >= 2.10 and g++ >= 4.4.
1632         * build-aux/warn-on-use.h (_GL_WARN_ON_USE_CXX): New macro.
1633         * build-aux/c++defs.h (_GL_CXXALIASWARN1): New macro.
1634         * lib/string.in.h (memchr, memrchr, rawmemchr, strchrnul, strpbrk,
1635         strstr, strcasestr): Use _GL_CXXALIASWARN1 instead of _GL_CXXALIASWARN
1636         when appropriate.
1637         Reported by Jim Meyering.
1638
1639 2010-03-12  Simon Josefsson  <simon@josefsson.org>
1640
1641         * gnulib-tool (func_import): Explain origin of code.
1642
1643 2010-03-12  Bruno Haible  <bruno@clisp.org>
1644
1645         Fix problem with automake's definition of CXXLINK.
1646         * gnulib-tool (func_create_testdir): After LT_INIT, also use LT_LANG.
1647         Reported by Simon Josefsson and Ludovic Courtès.
1648
1649 2010-03-12  Bruno Haible  <bruno@clisp.org>
1650
1651         * doc/gnulib-intro.texi (Steady Development): Mention Ian Beckwith's
1652         stable releases.
1653
1654 2010-03-11  Bruno Haible  <bruno@clisp.org>
1655
1656         Fix problems with overloaded C++ definitions of memchr, strpbrk, etc.
1657         * build-aux/c++defs.h (_GL_CXXALIAS_SYS_CAST2): Make it work regardless
1658         whether the system provides one variant or multiple variants of the
1659         function.
1660         * lib/string.in.h (memchr, strpbrk): Use _GL_CXXALIAS_SYS_CAST2 for all
1661         C++ compilers.
1662         (memrchr, rawmemchr, strchrnul, strstr, strcasestr): Use
1663         _GL_CXXALIAS_SYS_CAST2 instead of _GL_CXXALIAS_SYS.
1664         Reported by Jim Meyering.
1665
1666 2010-03-09  Simon Josefsson  <simon@josefsson.org>
1667
1668         * gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
1669
1670 2010-03-08  Bruno Haible  <bruno@clisp.org>
1671
1672         gnulib-tool: Add support for --libtool in --create-testdir.
1673         * gnulib-tool (LIBTOOLPATH, LIBTOOLIZE): New variables.
1674         (func_create_testdir): Emit LT_INIT invocations. Invoke LIBTOOLIZE.
1675
1676 2010-03-08  Eric Blake  <eblake@redhat.com>
1677
1678         gnulib-tool.texi: mention possibility of git submodule
1679         * doc/gnulib-tool.texi (VCS Issues): Add details about using git
1680         submodules.
1681         * doc/.gitignore: Ignore another generated file.
1682
1683 2010-03-08  Karl Berry  <karl@gnu.org>
1684
1685         * doc/gnulib-tool.texi (VCS Issues): Mention third option
1686         of committing gnulib files while skipping others.
1687
1688 2010-03-07  Bruno Haible  <bruno@clisp.org>
1689
1690         Tests of module 'wctype' in C++ mode.
1691         * tests/test-wctype-c++.cc: New file.
1692         * modules/wctype-tests (Files): Add it and tests/signature.h.
1693         (Depends-on): Add ansi-c++-opt.
1694         (Makefile.am): Arrange to compile and run test-wctype-c++.
1695
1696         Tests of module 'wchar' in C++ mode.
1697         * tests/test-wchar-c++.cc: New file.
1698         * modules/wchar-tests (Files): Add it and tests/signature.h.
1699         (Depends-on): Add ansi-c++-opt.
1700         (Makefile.am): Arrange to compile and run test-wchar-c++.
1701         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Invoke
1702         gl_MODULE_INDICATOR.
1703
1704         Tests of module 'unistd' in C++ mode.
1705         * tests/test-unistd-c++.cc: New file.
1706         * modules/unistd-tests (Files): Add it and tests/signature.h.
1707         (Depends-on): Add ansi-c++-opt.
1708         (Makefile.am): Arrange to compile and run test-unistd-c++.
1709         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Invoke
1710         gl_MODULE_INDICATOR.
1711
1712         Tests of module 'time' in C++ mode.
1713         * tests/test-time-c++.cc: New file.
1714         * modules/time-tests (Files): Add it and tests/signature.h.
1715         (Depends-on): Add ansi-c++-opt.
1716         (Makefile.am): Arrange to compile and run test-time-c++.
1717         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1718
1719         Tests of module 'sys_time' in C++ mode.
1720         * tests/test-sys_time-c++.cc: New file.
1721         * modules/sys_time-tests (Files): Add it and tests/signature.h.
1722         (Depends-on): Add ansi-c++-opt.
1723         (Makefile.am): Arrange to compile and run test-sys_time-c++.
1724         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Invoke
1725         gl_MODULE_INDICATOR.
1726
1727         Tests of module 'sys_stat' in C++ mode.
1728         * tests/test-sys_stat-c++.cc: New file.
1729         * modules/sys_stat-tests (Files): Add it and tests/signature.h.
1730         (Depends-on): Add ansi-c++-opt.
1731         (Makefile.am): Arrange to compile and run test-sys_stat-c++.
1732         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Invoke
1733         gl_MODULE_INDICATOR.
1734
1735         Tests of module 'sys_socket' in C++ mode.
1736         * tests/test-sys_socket-c++.cc: New file.
1737         * modules/sys_socket-tests (Files): Add it and tests/signature.h.
1738         (Depends-on): Add ansi-c++-opt.
1739         (Makefile.am): Arrange to compile and run test-sys_socket-c++.
1740         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Invoke
1741         gl_MODULE_INDICATOR.
1742
1743         Tests of module 'sys_select' in C++ mode.
1744         * tests/test-sys_select-c++.cc: New file.
1745         * modules/sys_select-tests (Files): Add it and tests/signature.h.
1746         (Depends-on): Add ansi-c++-opt.
1747         (Makefile.am): Arrange to compile and run test-sys_select-c++.
1748         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Invoke
1749         gl_MODULE_INDICATOR.
1750
1751         Tests of module 'sys_ioctl' in C++ mode.
1752         * tests/test-sys_ioctl-c++.cc: New file.
1753         * modules/sys_ioctl-tests (Files): Add it and tests/signature.h.
1754         (Depends-on): Add ansi-c++-opt.
1755         (Makefile.am): Arrange to compile and run test-sys_ioctl-c++.
1756         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Invoke
1757         gl_MODULE_INDICATOR.
1758
1759         Tests of module 'string' in C++ mode.
1760         * tests/test-string-c++.cc: New file.
1761         * modules/string-tests (Files): Add it and tests/signature.h.
1762         (Depends-on): Add ansi-c++-opt.
1763         (Makefile.am): Arrange to compile and run test-string-c++.
1764         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Invoke
1765         gl_MODULE_INDICATOR.
1766
1767         Tests of module 'stdlib' in C++ mode.
1768         * tests/test-stdlib-c++.cc: New file.
1769         * modules/stdlib-tests (Files): Add it and tests/signature.h.
1770         (Depends-on): Add ansi-c++-opt.
1771         (Makefile.am): Arrange to compile and run test-stdlib-c++.
1772         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Invoke
1773         gl_MODULE_INDICATOR.
1774
1775         Tests of module 'stdio' in C++ mode.
1776         * tests/test-stdio-c++.cc: New file.
1777         * modules/stdio-tests (Files): Add it and tests/signature.h.
1778         (Depends-on): Add ansi-c++-opt.
1779         (Makefile.am): Arrange to compile and run test-stdio-c++.
1780         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Invoke
1781         gl_MODULE_INDICATOR.
1782
1783         Tests of module 'spawn' in C++ mode.
1784         * tests/test-spawn-c++.cc: New file.
1785         * modules/spawn-tests (Files): Add it and tests/signature.h.
1786         (Depends-on): Add ansi-c++-opt.
1787         (Makefile.am): Arrange to compile and run test-spawn-c++.
1788         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Invoke
1789         gl_MODULE_INDICATOR.
1790
1791         Tests of module 'signal' in C++ mode.
1792         * tests/test-signal-c++.cc: New file.
1793         * modules/signal-tests (Files): Add it and tests/signature.h.
1794         (Depends-on): Add ansi-c++-opt.
1795         (Makefile.am): Arrange to compile and run test-signal-c++.
1796         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Invoke
1797         gl_MODULE_INDICATOR.
1798
1799         Tests of module 'search' in C++ mode.
1800         * tests/test-search-c++.cc: New file.
1801         * modules/search-tests (Files): Add it and tests/signature.h.
1802         (Depends-on): Add ansi-c++-opt.
1803         (Makefile.am): Arrange to compile and run test-search-c++.
1804         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Invoke
1805         gl_MODULE_INDICATOR.
1806
1807         Tests of module 'math' in C++ mode.
1808         * tests/test-math-c++.cc: New file.
1809         * modules/math-tests (Files): Add it and tests/signature.h.
1810         (Depends-on): Add ansi-c++-opt.
1811         (Makefile.am): Arrange to compile and run test-math-c++.
1812         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
1813
1814         Tests of module 'locale' in C++ mode.
1815         * tests/test-locale-c++.cc: New file.
1816         * modules/locale-tests (Files): Add it and tests/signature.h.
1817         (Depends-on): Add ansi-c++-opt.
1818         (Makefile.am): Arrange to compile and run test-locale-c++.
1819         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Invoke
1820         gl_MODULE_INDICATOR.
1821
1822         Tests of module 'langinfo' in C++ mode.
1823         * tests/test-langinfo-c++.cc: New file.
1824         * modules/langinfo-tests (Files): Add it and tests/signature.h.
1825         (Depends-on): Add ansi-c++-opt.
1826         (Makefile.am): Arrange to compile and run test-langinfo-c++.
1827         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Invoke
1828         gl_MODULE_INDICATOR.
1829
1830         Tests of module 'iconv-h' in C++ mode.
1831         * tests/test-iconv-h-c++.cc: New file.
1832         * modules/iconv-h-tests (Files): Add it and tests/signature.h.
1833         (Depends-on): Add ansi-c++-opt.
1834         (Makefile.am): Arrange to compile and run test-iconv-h-c++.
1835
1836         Tests of module 'glob' in C++ mode.
1837         * tests/test-glob-c++.cc: New file.
1838         * modules/glob-tests (Files): Add it.
1839         (Depends-on): Add ansi-c++-opt.
1840         (Makefile.am): Arrange to compile and run test-glob-c++.
1841
1842         Tests of module 'fcntl-h' in C++ mode.
1843         * tests/test-fcntl-h-c++.cc: New file.
1844         * modules/fcntl-h-tests (Files): Add it and tests/signature.h.
1845         (Depends-on): Add ansi-c++-opt.
1846         (Makefile.am): Arrange to compile and run test-fcntl-h-c++.
1847         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Invoke
1848         gl_MODULE_INDICATOR.
1849
1850         Tests of module 'dirent' in C++ mode.
1851         * tests/test-dirent-c++.cc: New file.
1852         * modules/dirent-tests (Files): Add it and tests/signature.h.
1853         (Depends-on): Add ansi-c++-opt.
1854         (Makefile.am): Arrange to compile and run test-dirent-c++.
1855         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
1856         gl_MODULE_INDICATOR.
1857
1858         New module 'ansi-c++-opt'.
1859         * modules/ansi-c++-opt: New file.
1860         * m4/ansi-c++.m4: New file, from GNU gettext with modifications.
1861
1862         Document C++ namespace mode.
1863         * doc/gnulib.texi (A C++ namespace for gnulib): New section.
1864
1865         wctype: Avoid #define replacements in C++ mode.
1866         * lib/wctype.in.h: Include c++defs.h, warn-on-use.h.
1867         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
1868         iswprint, iswpunct, iswspace, iswupper, iswxdigit, towlower, towupper):
1869         In C++, define a namespaced alias symbol.
1870         * m4/wctype_h.m4 (gl_WCTYPE_H): Don't set WCTYPE_H.
1871         * modules/wctype (Depends-on): Add c++defs, warn-on-use.
1872         (Makefile.am): Provide a wctype.h replacement always. Update wctype.h
1873         rule.
1874
1875         wchar: Avoid #define replacements in C++ mode.
1876         * lib/wchar.in.h: Include c++defs.h.
1877         (btowc, wctob, mbsinit, mbrtowc, mbrlen, mbsrtowcs, mbsnrtowcs,
1878         wcrtomb, wcsrtombs, wcsnrtombs): In C++, define a namespaced alias
1879         symbol.
1880         (wcwidth): Likewise. Fix prototype to be POSIX compliant.
1881         * modules/wchar (Depends-on): Add c++defs.
1882         (Makefile.am): Update wchar.h rule.
1883
1884         unistd: Avoid #define replacements in C++ mode.
1885         * lib/unistd.in.h: Include c++defs.h.
1886         (chown, close, dup, dup2, dup3, euidaccess, faccessat, fchdir,
1887         fchownat, fsync, ftruncate, getcwd, getdomainname, getdtablesize,
1888         getgroups, gethostname, getlogin, getlogin_r, getpagesize,
1889         getusershell, setusershell, endusershell, lchown, link, linkat, lseek,
1890         pipe2, pread, readlink, readlinkat, rmdir, sleep, symlink, symlinkat,
1891         unlink, unlinkat, usleep, write): In C++, define a namespaced alias
1892         symbol.
1893         (environ): Update.
1894         * modules/unistd (Depends-on): Add c++defs.
1895         (Makefile.am): Update unistd.h rule.
1896
1897         time: Avoid #define replacements in C++ mode.
1898         * lib/time.in.h: Include c++defs.h, warn-on-use.h.
1899         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): In C++,
1900         define a namespaced alias symbol.
1901         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): New macro.
1902         (gl_HEADER_TIME_H_DEFAULTS): Initialize also GNULIB_MKTIME,
1903         GNULIB_NANOSLEEP, GNULIB_STRPTIME, GNULIB_TIMEGM.
1904         * modules/time (Depends-on): Add c++defs, warn-on-use.
1905         (Makefile.am): Update time.h rule.
1906         * modules/mktime (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
1907         * modules/nanosleep (configure.ac): Likewise.
1908         * modules/strptime (configure.ac): Likewise.
1909         * modules/timegm (configure.ac): Likewise.
1910
1911         sys_time: Avoid #define replacements in C++ mode.
1912         * lib/sys_time.in.h: Include c++defs.h.
1913         (gettimeofday): In C++, define a namespaced alias symbol.
1914         * modules/sys_time (Depends-on): Add c++defs.
1915         (Makefile.am): Update sys/time.h rule.
1916
1917         sys_stat: Avoid #define replacements in C++ mode.
1918         * lib/sys_stat.in.h: Include c++defs.h.
1919         (fchmodat, fstat, fstatat, futimens, lchmod, lstat, mkdir, mkdirat,
1920         mkfifo, mkfifoat, mknod, mknodat, utimensat): In C++, define a
1921         namespaced alias symbol.
1922         In C++, define a namespaced alias symbol.
1923         * modules/sys_stat (Depends-on): Add c++defs.
1924         (Makefile.am): Update sys/stat.h rule.
1925
1926         sys_socket: Avoid #define replacements in C++ mode.
1927         * lib/sys_socket.in.h: Handle the case of recursive include on Cygwin.
1928         Include c++defs.h. Include warn-on-use.h earlier. Enable the function
1929         definitions also when the system has a <sys/socket.h>.
1930         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
1931         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, accept4):
1932         In C++, define a namespaced alias symbol.
1933         * modules/sys_socket (Depends-on): Add c++defs.
1934         (Makefile.am): Update sys/socket.h rule.
1935
1936         sys_select: Avoid #define replacements in C++ mode.
1937         * lib/sys_select.in.h: Include c++defs.h. Enable the function
1938         definitions also when the system has a <sys/select.h>.
1939         (select): In C++, define a namespaced alias symbol.
1940         * modules/sys_select (Depends-on): Add c++defs.
1941         (Makefile.am): Update sys/select.h rule.
1942
1943         sys_ioctl: Avoid #define replacements in C++ mode.
1944         * lib/sys_ioctl.in.h: Include c++defs.h.
1945         (ioctl): In C++, define a namespaced alias symbol.
1946         * modules/sys_ioctl (Depends-on): Add c++defs.
1947         (Makefile.am): Update sys/ioctl.h rule.
1948
1949         string: Avoid #define replacements in C++ mode.
1950         * lib/string.in.h: Include c++defs.h.
1951         (stpncpy): Define to rpl_stpncpy, not gnu_stpncpy.
1952         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
1953         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
1954         strcasestr, strtok_r, mbslen, mbschr, mbsrchr, mbspbrk, strerror,
1955         strsignal, strverscmp): In C++, define a namespaced alias symbol.
1956         * modules/string (Depends-on): Add c++defs.
1957         (Makefile.am): Update string.h rule.
1958
1959         stdlib: Avoid #define replacements in C++ mode.
1960         * lib/stdlib.in.h: Include c++defs.h.
1961         (atoll, calloc, canonicalize_file_name, getloadavg, getsubopt, malloc,
1962         mkdtemp, mkostemp, mkostemps, mkstemp, mkstemps, putenv, random_r,
1963         srandom_r, initstate_r, setstate_r, realloc, realpath, rpmatch, setenv,
1964         strtod, strtoll, strtoull, unsetenv): In C++, define a namespaced alias
1965         symbol.
1966         * modules/stdlib (Depends-on): Add c++defs.
1967         (Makefile.am): Update stdlib.h rule.
1968
1969         stdio: Avoid #define replacements in C++ mode.
1970         * lib/stdio.in.h: Include c++defs.h.
1971         (dprintf, fclose, fflush, fopen, fprintf, fpurge, fputc, fputs,
1972         freopen, fseek, fseeko, ftell, ftello, fwrite, getdelim, getline,
1973         obstack_printf, obstack_vprintf, perror, popen, printf, fputc, putchar,
1974         puts, remove, rename, renameat, snprintf, sprintf, asprintf, vasprintf,
1975         vdprintf, vfprintf, vprintf, vsnprintf, vsprintf): In C++, define a
1976         namespaced alias symbol.
1977         * modules/stdio (Depends-on): Add c++defs.
1978         (Makefile.am): Update stdio.h rule.
1979
1980         spawn: Avoid #define replacements in C++ mode.
1981         * lib/spawn.in.h: Include c++defs.h.
1982         (posix_spawn, posix_spawnp, posix_spawnattr_init,
1983         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
1984         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
1985         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
1986         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
1987         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
1988         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
1989         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
1990         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
1991         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
1992         In C++, define a namespaced alias symbol.
1993         * modules/spawn (Depends-on): Add c++defs.
1994         (Makefile.am): Update spawn.h rule.
1995
1996         signal: Avoid #define replacements in C++ mode.
1997         * lib/signal.in.h: Include c++defs.h.
1998         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
1999         sigpending, sigprocmask, signal, raise, sigaction): In C++, define a
2000         namespaced alias symbol.
2001         * modules/signal (Depends-on): Add c++defs.
2002         (Makefile.am): Update signal.h rule.
2003
2004         search: Avoid #define replacements in C++ mode.
2005         * lib/search.in.h: Include c++defs.h.
2006         (_gl_search_compar_fn, _gl_search_action_fn): New types.
2007         (tsearch, tfind, tdelete, twalk): In C++, define a namespaced alias
2008         symbol.
2009         * modules/search (Depends-on): Add c++defs.
2010         (Makefile.am): Update search.h rule.
2011
2012         math: Avoid #define replacements in C++ mode.
2013         * lib/math.in.h: Include c++defs.h.
2014         (frexp, acosl, asinl, atanl, ceilf, ceill, cosl, expl, floorf, floorl,
2015         frexpl, ldexpl, logl, roundf, round, roundl, sinl, sqrtl, tanl, truncf,
2016         trunc, truncl): In C++, define a namespaced alias symbol.
2017         * modules/math (Depends-on): Add c++defs.
2018         (Makefile.am): Update math.h rule.
2019
2020         locale: Avoid #define replacements in C++ mode.
2021         * lib/locale.in.h: Include c++defs.h.
2022         (duplocale): In C++, define a namespaced alias symbol.
2023         * m4/locale_h.m4 (gl_LOCALE_H_DEFAULTS): Initialize HAVE_DUPLOCALE.
2024         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Set HAVE_DUPLOCALE.
2025         * modules/locale (Depends-on): Add c++defs.
2026         (Makefile.am): Update locale.h rule. Substitute HAVE_DUPLOCALE.
2027
2028         langinfo: Avoid #define replacements in C++ mode.
2029         * lib/langinfo.in.h: Include c++defs.h.
2030         (nl_langinfo): In C++, define a namespaced alias symbol.
2031         * modules/langinfo (Depends-on): Add c++defs.
2032         (Makefile.am): Update langinfo.h rule.
2033
2034         iconv-h: Avoid #define replacements in C++ mode.
2035         * lib/iconv.in.h: Include c++defs.h, warn-on-use.h.
2036         (iconv_open, iconv, iconv_close): In C++, define a namespaced alias
2037         symbol.
2038         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
2039         whenever iconv is present.
2040         * modules/iconv-h (Depends-on): Add c++defs, warn-on-use.
2041         (Makefile.am): Update iconv.h rule.
2042
2043         glob: Avoid #define replacements in C++ mode.
2044         * lib/glob.in.h: Include c++defs.h, warn-on-use.h.
2045         (_gl_glob_errfunc_fn): New type.
2046         (glob, globfree, glob_pattern_p): In C++, define a namespaced alias
2047         symbol.
2048         * modules/glob (Depends-on): Add c++defs, warn-on-use.
2049         (Makefile.am): Update glob.h rule.
2050
2051         fcntl-h: Avoid #define replacements in C++ mode.
2052         * lib/fcntl.in.h: Include c++defs.h.
2053         (fcntl, open, openat): In C++, define a namespaced alias symbol.
2054         * modules/fcntl-h (Depends-on): Add c++defs.
2055         (Makefile.am): Update fcntl.h rule.
2056
2057         dirent: Avoid #define replacements in C++ mode.
2058         * lib/dirent.in.h: Include c++defs.h.
2059         (closedir, fdopendir, opendir, scandir, alphasort): In C++, define a
2060         namespaced alias symbol.
2061         (dirfd): Update declaration.
2062         * modules/dirent (Depends-on): Add c++defs.
2063         (Makefile.am): Update dirent.h rule.
2064
2065         ctype: Make it usable in C++ code.
2066         * lib/ctype.in.h: Include c++defs.h.
2067         (isblank): Declare as extern "C".
2068         * modules/ctype (Depends-on): Add c++defs.
2069         (Makefile.am): Update ctype.h rule.
2070
2071         New module 'c++defs'.
2072         * modules/c++defs: New file.
2073         * build-aux/c++defs.h: New file.
2074         Reported by John W. Eaton <jwe@gnu.org>.
2075
2076 2010-03-07  Bruno Haible  <bruno@clisp.org>
2077
2078         logb: Provide missing declaration for Cygwin.
2079         * lib/math.in.h (logb): New declaration.
2080         * m4/logb.m4: New file.
2081         * modules/logb (Files): Add m4/logb.m4.
2082         (Depends-on): Add math.
2083         (configure.ac): Invoke gl_FUNC_LOGB, gl_MATH_MODULE_INDICATOR.
2084         * m4/math_h.m4 (gl_MATH_H): Check also for logb declaration.
2085         (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOGB, HAVE_DECL_LOGB.
2086         * modules/math (Makefile.am): Substitute GNULIB_LOGB, HAVE_DECL_LOGB.
2087         * doc/posix-functions/logb.texi: Mention the Cygwin bug.
2088
2089 2010-03-07  Bruno Haible  <bruno@clisp.org>
2090
2091         Fix test-cond link error.
2092         * tests/test-cond.c: Include <stdio.h>.
2093
2094 2010-03-07  Bruno Haible  <bruno@clisp.org>
2095
2096         Fix test-dirent-safer link error.
2097         * modules/dirent-safer-tests (Makefile.am): Define
2098         test_dirent_safer_LDADD.
2099
2100 2010-03-07  Bruno Haible  <bruno@clisp.org>
2101
2102         * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
2103         among default module list.
2104
2105 2010-03-07  Bruno Haible  <bruno@clisp.org>
2106
2107         Fix link error on platforms with GNU libiconv.
2108         * modules/unistr/u8-strcoll-tests (Makefile): Define
2109         test_u8_strcoll_LDADD.
2110         * modules/unistr/u16-strcoll-tests (Makefile): Define
2111         test_u16_strcoll_LDADD.
2112         * modules/unistr/u32-strcoll-tests (Makefile): Define
2113         test_u32_strcoll_LDADD.
2114
2115 2010-03-07  Bruno Haible  <bruno@clisp.org>
2116
2117         Use POSIX declarations for socket functions.
2118         * lib/sys_socket.in.h (rpl_connect, rpl_accept, rpl_bind,
2119         rpl_getpeername, rpl_getsockname, rpl_recv, rpl_send, rpl_recvfrom,
2120         rpl_sendto): Change declaration to match POSIX.
2121         * lib/connect.c (rpl_connect): Likewise.
2122         * lib/accept.c (rpl_accept): Likewise.
2123         * lib/bind.c (rpl_bind): Likewise.
2124         * lib/getpeername.c (rpl_getpeername): Likewise.
2125         * lib/getsockname.c (rpl_getsockname): Likewise.
2126         * lib/recv.c (rpl_recv): Likewise.
2127         * lib/send.c (rpl_send): Likewise.
2128         * lib/recvfrom.c (rpl_recvfrom): Likewise.
2129         * lib/sendto.c (rpl_sendto): Likewise.
2130
2131 2010-03-06  Bruno Haible  <bruno@clisp.org>
2132
2133         Clarify access, euidaccess, faccessat.
2134         * doc/posix-functions/faccessat.texi: Mention security problem under
2135         "Other problems", not "Portability problems".
2136         * doc/posix-functions/access.texi: Likewise. Mention a related security
2137         problem.
2138         * doc/glibc-functions/euidaccess.texi: Mention security problems.
2139         * lib/euidaccess.c: Add comments about platforms.
2140         * lib/unistd.in.h (access, euidaccess): Add warnings.
2141
2142 2010-03-07  Bruno Haible  <bruno@clisp.org>
2143
2144         Ensure posix_spawnattr_{get,set}sched{policy,param} are defined.
2145         * lib/spawn.in.h (POSIX_SPAWN_SETSCHEDPARAM): Define fallback.
2146         (POSIX_SPAWN_SETSCHEDULER): Likewise.
2147         (POSIX_SPAWN_USEVFORK): Define in a way that works when
2148         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
2149         (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy): Also
2150         declare when POSIX_SPAWN_SETSCHEDULER is zero.
2151         (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam): Also
2152         declare when POSIX_SPAWN_SETSCHEDPARAM is zero.
2153         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Test whether
2154         POSIX_SPAWN_SETSCHEDULER or POSIX_SPAWN_SETSCHEDPARAM are zero.
2155         * modules/posix_spawnattr_getschedparam (configure.ac): Enable the
2156         replacement also when POSIX_SPAWN_SETSCHEDPARAM is zero.
2157         * modules/posix_spawnattr_setschedparam (configure.ac): Likewise.
2158         * modules/posix_spawnattr_getschedpolicy (configure.ac): Enable the
2159         replacement also when POSIX_SPAWN_SETSCHEDULER is zero.
2160         * modules/posix_spawnattr_setschedpolicy (configure.ac): Likewise.
2161         * lib/spawnattr_getschedparam.c (posix_spawnattr_getschedparam): Do
2162         nothing if POSIX_SPAWN_SETSCHEDPARAM is zero.
2163         * lib/spawnattr_setschedparam.c (posix_spawnattr_setschedparam):
2164         Likewise.
2165         * lib/spawnattr_getschedpolicy.c (posix_spawnattr_getschedpolicy): Do
2166         nothing if POSIX_SPAWN_SETSCHEDULER is zero.
2167         * lib/spawnattr_setschedpolicy.c (posix_spawnattr_setschedpolicy):
2168         Likewise.
2169         * tests/test-spawn.c (main): Make it work when
2170         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
2171
2172 2010-03-07  Bruno Haible  <bruno@clisp.org>
2173
2174         Fix incorrect Makefile.am generation in German locale.
2175         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2176         Execute sed command with character range in C locale.
2177
2178 2010-03-06  Bruno Haible  <bruno@clisp.org>
2179
2180         Tests for module 'iconv-h'.
2181         * modules/iconv-h-tests: New file.
2182         * tests/test-iconv-h.c: New file.
2183
2184         New module 'iconv-h'.
2185         * modules/iconv-h: New file.
2186         * modules/iconv_open (Files): Remove lib/iconv.in.h, m4/iconv_h.m4.
2187         (Depends-on): Add iconv-h. Remove include_next, arg-nonnull.
2188         (configure.ac): Remove gl_ICONV_H.
2189         (Makefile.am): Remove rule for iconv.h.
2190
2191 2010-03-06  Bruno Haible  <bruno@clisp.org>
2192
2193         More consistent naming of *.m4 files.
2194         * m4/wctype_h.m4: Renamed from m4/wctype.m4.
2195         * modules/wctype (Files): Update.
2196
2197         More consistent naming of *.m4 files.
2198         * m4/wchar_h.m4: Renamed from m4/wchar.m4.
2199         * modules/wchar (Files): Update.
2200
2201 2010-03-06  Jim Meyering  <meyering@redhat.com>
2202
2203         euidaccess: relax license to LGPLv2+
2204         * modules/euidaccess (License): Relax to LGPLv2+.
2205
2206 2010-03-06  Bruno Haible  <bruno@clisp.org>
2207
2208         Prefer lib_SOURCES over unconditional AC_LIBOBJ.
2209         * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation.
2210         (Makefile.am): Augment lib_SOURCES instead.
2211
2212 2010-03-04  Jim Meyering  <meyering@redhat.com>
2213
2214         utime: remove obsolete module
2215         This module, like autoconf's AC_FUNC_UTIME_NULL macro, has been
2216         unnecessary for years, and has been marked as obsolete for 10 months.
2217         * modules/utime: Remove file.
2218         * lib/utime.c: Remove file.
2219         * m4/utime.m4: Remove file.
2220         * m4/utimes-null.m4: Remove file.
2221         * doc/posix-functions/utime.texi (utime): Remove reference to
2222         the module.  Move the sole "fixed by gnulib" item into the
2223         "problems not fixed by Gnulib" list.
2224         * MODULES.html.sh (func_all_modules): Remove reference to "utime".
2225
2226 2010-03-05  Simon Josefsson  <simon@josefsson.org>
2227
2228         * modules/exit (License): Relax license to LGPLv2+.
2229         (Status): Mark as obsolete.
2230         * NEWS: Mention deprecated 'exit' module.
2231         * doc/posix-functions/exit.texi: Recommend 'stdlib' module instead
2232         of now obsolete 'exit'.
2233
2234 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2235
2236         fts-lgpl: remove unused module
2237         * modules/fts-lgpl: Remove.
2238         * MODULES.html.sh (func_all_modules): Adjust.
2239         * check-module (find_included_lib_files): Adjust.
2240         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove.
2241
2242 2010-03-02  Ben Walton  <bwalton@artsci.utoronto.ca>  (tiny change)
2243
2244         copy-acl: enhance Solaris ACL error handling
2245         * lib/copy-acl.c (qcopy_acl): Also ignore EOPNOTSUPP.
2246         * lib/set-mode-acl.c (qset_acl): Likewise.
2247
2248 2010-03-02  Bruno Haible  <bruno@clisp.org>
2249
2250         spawn: Don't override the system defined values on FreeBSD 8.
2251         * lib/spawn.in.h (POSIX_SPAWN_RESETIDS, POSIX_SPAWN_SETPGROUP,
2252         POSIX_SPAWN_SETSIGDEF, POSIX_SPAWN_SETSIGMASK,
2253         POSIX_SPAWN_SETSCHEDPARAM, POSIX_SPAWN_SETSCHEDULER): Don't redefine
2254         if HAVE_POSIX_SPAWN is 1.
2255         Reported by Johan van Selst <johans@stack.nl> via Eric Blake.
2256
2257 2010-03-01  Bruno Haible  <bruno@clisp.org>
2258
2259         * doc/gnulib-tool.texi (Initial import): Clarify the requirements
2260         regarding Automake.
2261
2262 2010-02-25  Bruno Haible  <bruno@clisp.org>
2263
2264         Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
2265         * gnulib-tool: Define 'echo' as a function only before the ksh alias
2266         setting, not afterwards.
2267         Reported by Ben Walton <bwalton@artsci.utoronto.ca>.
2268
2269 2010-02-24  Eric Blake  <eblake@redhat.com>
2270
2271         bootstrap, git-version-gen: use timestamp
2272         * build-aux/git-version-gen (scriptversion): Force UTC.
2273         * build-aux/bootstrap (scriptversion): New variable.
2274
2275         bootstrap: allow older git
2276         * build-aux/bootstrap (GNULIB_SRCDIR): Add fallback if git is
2277         older than 1.6.4.  Requested by the libvirt project.
2278
2279 2010-02-23  Eric Blake  <eblake@redhat.com>
2280
2281         warn-on-use: work with old autoconf
2282         * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Accomodate older
2283         AS_VAR semantics of autoconf 2.60.
2284         Reported by Bruno Haible.
2285
2286         bootstrap: improve some comments
2287         * build-aux/bootstrap: Drop unneeded emacs hint.  Add some
2288         clarification comments.
2289
2290         gettimeofday: provide correct function
2291         * lib/gettimeofday.c (gettimeofday): Provide rpl_gettimeofday only
2292         when replacement is declared, otherwise provide gettimeofday.
2293         Reported by Michael Goffioul.
2294
2295 2010-02-23  Jim Meyering  <meyering@redhat.com>
2296
2297         lib-ignore: relax license to "unlimited", not LGPLv2+
2298         * modules/lib-ignore (License): Relax to "unlimited".
2299
2300 2010-02-23  Jim Meyering  <meyering@redhat.com>
2301
2302         lib-ignore: relax license to LGPLv2+
2303         * modules/lib-ignore (License): Relax to LGPLv2+.
2304
2305 2010-02-22  Eric Blake  <eblake@redhat.com>
2306
2307         lseek: avoid bash 3.2 broken pipe bug
2308         * m4/lseek.m4 (gl_FUNC_LSEEK): Drain pipe, to avoid spurious
2309         warning from bash 3.2.
2310         Reported by Ben Pfaff, with analysis from Bruno Haible.
2311
2312         bootstrap: support non-FSF copyright holder
2313         * build-aux/bootstrap (COPYRIGHT_HOLDER, with_gettext): Allow
2314         bootstrap.conf override of COPYRIGHT_HOLDER.
2315         (MSGID_BUGS_ADDRESS): Allow URL rather than email.
2316
2317         bootstrap: interoperate with gettext 0.14.1
2318         * build-aux/bootstrap (slurp): Fix typo when using older gettext.
2319
2320         bootstrap: allow for alternate submodule location
2321         * build-aux/bootstrap (gnulib_path): New variable; use instead of
2322         hardcoding submodule location.
2323         (gnulib_mk): Allow direct use of Makefile.am.
2324
2325         bootstrap: use GNULIB_SRCDIR to reduce disk usage
2326         * build-aux/bootstrap (GNULIB_SRCDIR): If set, use as a reference,
2327         rather than reconfiguring where the submodule points.
2328
2329         gettimeofday: restore support for platforms that lack function
2330         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Also compile
2331         replacement if function is missing.
2332         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_DEFAULTS): New witness.
2333         * modules/sys_time (Makefile.am): Substitute it.
2334         * lib/sys_time.in.h (gettimeofday): Check it.
2335         Reported by Michael Goffioul.
2336
2337 2010-02-21  Bruno Haible  <bruno@clisp.org>
2338
2339         * lib/stdio.in.h (obstack_printf): Fix typo.
2340
2341 2010-02-21  Jose E. Marchesi  <jemarch@gnu.org>
2342
2343         vc-list-files: use bzr ls's -R option
2344         * build-aux/vc-list-files: Invoke bazaar to generate a recursive
2345         list of versioned files based on 'dir' (usage of -R in 'bzr ls').
2346
2347 2010-02-21  Jim Meyering  <meyering@redhat.com>
2348
2349         init.sh: fix EXEEXT shims to work also for names like test-prog
2350         * tests/init.sh: Re-exec a better shell, when needed.
2351         If the current shell lacks support for posix $(...), an init.sh-using
2352         test will now try to find a shell that supports that.  If EXEEXT is
2353         nonempty, we also require support for hyphen-in-alias-name and shell
2354         substitutions like ${var#glob}.  Failure to find such a shell results
2355         in a skipped test.
2356
2357 2010-02-21  Bruno Haible  <bruno@clisp.org>
2358
2359         Really work around around "broken pipe" error message from bash 3.2.
2360         * gnulib-tool (func_reset_sigpipe): Remove function.
2361         (echo): In bash 3.2, define to a function that uses printf.
2362         Analyzed by Ralf Wildenhues, Chet Ramey, Ben Pfaff.
2363
2364 2010-02-20  Bruno Haible  <bruno@clisp.org>
2365
2366         Restore support for automake 1.9.6 with autoconf 2.61.
2367         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Ensure MKDIR_P is AC_SUBSTed.
2368         Reported by James Youngman <jay@gnu.org>.
2369
2370 2010-02-20  Bruno Haible  <bruno@clisp.org>
2371
2372         Improve *printf warning condition.
2373         * lib/stdio.in.h (fprintf, printf, vfprintf, vprintf): Emit warning
2374         also if GNULIB_POSIXCHECK is defined, the *-posix module is not used,
2375         and the function is overridden due to SIGPIPE emulation.
2376
2377 2010-02-20  Bruno Haible  <bruno@clisp.org>
2378
2379         * lib/stdio.in.h: Tweak comments.
2380
2381 2010-02-19  Bruno Haible  <bruno@clisp.org>
2382
2383         Make it easier to find modules. New gnulib-tool option '--find'.
2384         * gnulib-tool: New option --find.
2385         (func_usage): Document it.
2386         (func_sanitize_modulelist): New function, extracted from
2387         func_all_modules.
2388         (func_all_modules): Invoke it.
2389         * doc/gnulib-tool.texi (Which modules?): New node.
2390
2391 2010-02-18  Markus Duft <mduft@gentoo.org>  (tiny change)
2392
2393         * lib/sys_select.in.h: Provide select replacement even if
2394         sys/select.h exists on a system, for Interix.
2395
2396 2010-02-18  Jim Meyering  <meyering@redhat.com>
2397
2398         init.sh: don't use $(...) just yet
2399         * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...),
2400         to accommodate e.g., Solaris' /bin/sh.
2401
2402 2010-02-17  Bruno Haible  <bruno@clisp.org>
2403
2404         * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem.
2405         Reported by Ludovic Courtès <ludo@gnu.org>.
2406
2407 2010-02-16  Simon Josefsson  <simon@josefsson.org>
2408
2409         * modules/userspec-tests (test_userspec_LDADD): Add variable, for
2410         linking with -lintl.
2411
2412 2010-02-17  Simon Josefsson  <simon@josefsson.org>
2413
2414         * lib/netdb.in.h (AI_V4MAPPED, AI_ALL, AI_ADDRCONFIG): Define to 0
2415         if not provided by the system's netdb.h.  Reported by
2416         ludo@gnu.org (Ludovic Courtès).
2417
2418 2010-02-15  Jim Meyering  <meyering@redhat.com>
2419
2420         init.sh: improve portability and efficiency
2421         * tests/init.sh (find_exe_basenames_): Remove unnecessary use of
2422         "dummy" in a for loop.
2423         Use '!', not '^' to select the complement of a character set used
2424         in a "case" statement.
2425         Use shell variable manipulation, a la ${...%.exe}, rather than sed.
2426         Suggestions from Eric Blake.
2427
2428         init.sh: automatically accommodate programs with the .exe suffix
2429         Automatically arrange for an invocation of "prog" to execute the
2430         program named "prog$EXEEXT" (usually prog.exe).  Thus, all invocations
2431         may use the simpler "prog", yet still work when built on a system
2432         that requires specifying the added suffix.
2433         Do this by constructing a function named "prog" that invokes
2434         "prog.exe" for each .exe file in selected directories.
2435         * tests/init.sh (find_exe_basenames_): New function.
2436         (create_exe_shim_functions_): New function.
2437         (path_prepend_): Use it.
2438
2439         maint.mk: mark syntax-check sc_*.m rules as .PHONY
2440         * top/maint.mk ($(syntax-check-rules)): Add .PHONY, so that
2441         "make -t syntax-check" doesn't create a ton of sc_*.m files.
2442
2443 2010-02-14  Jim Meyering  <meyering@redhat.com>
2444
2445         maint.mk: prohibit inclusion of "hash-pjw.h" without_use
2446         * top/maint.mk (sc_prohibit_hash_without_use): Re-add "@".
2447         (sc_prohibit_hash_pjw_without_use): New rule.
2448
2449         maint.mk: allow the default upload destination dir to be overridden
2450         * top/maint.mk (upload_dest_dir_): Define with a default that
2451         preserves the status quo.
2452         (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
2453         Reported by Peter Simons.
2454
2455         maint.mk: prohibit inclusion of "hash.h" without_use
2456         * top/maint.mk (sc_prohibit_hash_without_use): New rule.
2457
2458 2010-02-10  Jim Meyering  <meyering@redhat.com>
2459
2460         maint.mk: prohibit inclusion of "ignore-value.h" without_use
2461         * top/maint.mk (sc_prohibit_ignore_value_without_use): New rule.
2462
2463 2010-02-09  Eric Blake  <ebb9@byu.net>
2464         and Bruno Haible  <bruno@clisp.org>
2465
2466         obstack-printf-posix: ensure declaration
2467         * m4/obstack-printf.m4 (gl_DECL_OBSTACK_PRINTF): New macro,
2468         extracted from gl_FUNC_OBSTACK_PRINTF.
2469         (gl_FUNC_OBSTACK_PRINTF): Invoke it.
2470         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
2471         Likewise.
2472         * lib/stdio.in.h (obstack_printf, obstack_vprintf): Declare also
2473         if GNULIB_OBSTACK_PRINTF_POSIX is 1 and GNULIB_OBSTACK_PRINTF is
2474         0.
2475
2476 2010-02-08  Bruno Haible  <bruno@clisp.org>
2477
2478         gnulib-tool: Fix typo in 2010-02-07 commit.
2479         * gnulib-tool (func_get_dependencies): Fix typo in last commit.
2480         Reported by Eric Blake.
2481
2482 2010-02-07  Bruno Haible  <bruno@clisp.org>
2483
2484         gnulib-tool: Fix up caching patches.
2485         * gnulib-tool: New options --cache-modules, --no-cache-modules. Remove
2486         option --no-cache. Use associative arrays when supported by the shell.
2487         (sed_comments): New variable.
2488         (modcache): Renamed from do_cache.
2489         (sed_extract_field_header): Renamed from sed_extract_cache_prog. Don't
2490         abbreviate unnecessarily.
2491         (have_associative): New variable.
2492         (func_cache_var): Define correctly for bash 1.x. Define in an optimized
2493         way also for ksh and zsh.
2494         (func_init_sed_convert_to_cache_statements): New function, extracted
2495         from func_cache_lookup_module. Add support for associative arrays.
2496         Don't set the c_MODULE_cached variable here. Ignore all lines before
2497         the first field header. Remove only the final newline, not all trailing
2498         newlines. Support empty fields correctly. Limit the use of 'eval' to
2499         assignments.
2500         (func_get_description, func_get_status, func_get_notice,
2501         func_get_applicability, func_get_filelist, func_get_dependencies,
2502         func_get_autoconf_early_snippet, func_get_autoconf_snippet,
2503         func_get_automake_snippet, func_get_include_directive,
2504         func_get_link_directive, func_get_license, func_get_maintainer):
2505         Update documentation. List the unoptimized code first. Add support for
2506         associative arrays. Limit the use of 'eval' to assignments.
2507         (func_get_applicability): Undo stylistic pessimisations.
2508         (func_get_automake_snippet, func_get_include_directive): Reduce code
2509         duplication.
2510         (func_modules_transitive_closure, func_modules_add_dummy,
2511         func_modules_notice, func_modules_to_filelist, func_add_file,
2512         func_update_file, func_emit_lib_Makefile_am, func_emit_po_Makevars,
2513         func_emit_po_POTFILES_in, func_emit_tests_Makefile_am, func_import,
2514         func_create_testdir, func_create_megatestdir): Update documentation.
2515
2516 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2517
2518         * gnulib-tool (func_cache_lookup_module): Store the module name
2519         belonging to the cache variable; error out if two different
2520         module names map to the same cache variable name.
2521
2522 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2523
2524         gnulib-tool: Make caching optional.
2525         * gnulib-tool: Accept option --no-cache, turning off $do_cache.
2526         Update matching short versions of --no-changelog.
2527         (func_usage): Update.
2528         (sed_extract_cache_prog): Renamed from ...
2529         (sed_extract_prog): ... this; revert to old extraction script.
2530         (func_get_description, func_get_status)
2531         (func_get_notice, func_get_applicability, func_get_filelist)
2532         (func_get_dependencies, func_get_autoconf_early_snippet)
2533         (func_get_autoconf_snippet, func_get_automake_snippet)
2534         (func_get_include_directive, func_get_link_directive)
2535         (func_get_license, func_get_maintainer): If $do_cache is false,
2536         use old, non-caching extraction scripts.
2537         Suggestion by Bruno Haible.
2538
2539 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2540
2541         gnulib-tool: cache module metainformation.
2542         * gnulib-tool (sed_extract_prog): Match newline before each
2543         header, and rewrite header to a shell variable suffix.
2544         (func_cache_var, func_cache_lookup_module): New functions,
2545         to turn a module name into a cache variable prefix, and to
2546         look up and cache module metainformation.
2547         (func_get_description, func_get_status)
2548         (func_get_notice, func_get_applicability, func_get_filelist)
2549         (func_get_dependencies, func_get_autoconf_early_snippet)
2550         (func_get_autoconf_snippet, func_get_automake_snippet)
2551         (func_get_include_directive, func_get_link_directive)
2552         (func_get_license, func_get_maintainer): Use
2553         func_cache_lookup_module.
2554
2555 2010-02-07  Bruno Haible  <bruno@clisp.org>
2556
2557         fnctl: Fix missing dependency.
2558         * modules/fcntl (Depends-on): Add getdtablesize.
2559         Reported by John W. Eaton <jwe@gnu.org>.
2560
2561 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2562
2563         Argp: fix recognition of short alias options.
2564
2565         * lib/argp-parse.c (convert_options): Fix improper use of
2566         `|' between character values.
2567         * tests/test-argp.c (group1_option): New alias option
2568         --read (-r).
2569         (group1_parser): Special handling for 'r'.
2570         (test15): New test case.
2571         (test_fun): Add test15.
2572         * tests/test-argp-2.sh: Update expected --help and --usage
2573         outputs.
2574
2575 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
2576
2577         * tests/test-argp.c: Fix indentation.
2578
2579 2010-02-04  Eric Blake  <ebb9@byu.net>
2580
2581         gettimeofday: expose type of second argument
2582         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Do better detection
2583         of glibc extension signature, and define GETTIMEOFDAY_TIMEZONE.
2584         * tests/test-gettimeofday.c: Use it to silence warning.
2585         * doc/posix-functions/gettimeofday.texi (gettimeofday): Document
2586         the issue.
2587
2588 2010-02-03  Jim Meyering  <meyering@redhat.com>
2589
2590         regcomp.c: avoid the sole warning from gcc's -Wtype-limits
2591         * lib/regcomp.c (TYPE_SIGNED): Define.
2592         (parse_dup_op): Use it to avoid the sole warning from -Wtype-limits.
2593
2594         regcomp.c: avoid a new -Wshadow warning
2595         * lib/regcomp.c (create_initial_state): Do not shadow local "err".
2596
2597 2010-02-01  Jim Meyering  <meyering@redhat.com>
2598
2599         removing useless parentheses in cpp #define directives
2600         For motivation, see commit c0221df4, "define STREQ(a,b)
2601         consistently, removing useless parentheses"
2602         * lib/memcmp.c (CMP_LT_OR_GT): Remove useless parentheses.
2603         * lib/mountlist.c (MNT_IGNORE): Likewise.
2604         * lib/trim.h (trim, trim_trailing, trim_leading): Likewise.
2605
2606 2010-02-01  Eric Blake  <ebb9@byu.net>
2607
2608         sys_time: use link-warning
2609         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Split defaults...
2610         (gl_HEADER_SYS_TIME_H_DEFAULTS): ...into new macro.
2611         (gl_SYS_TIME_MODULE_INDICATOR): New macro.
2612         * modules/sys_time (Depends-on): Add warn-on-use.
2613         (Makefile.am): Always build replacement.
2614         (configure.ac): Update substitutions.
2615         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY)
2616         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Include defaults, and no longer
2617         bother with SYS_TIME_H.
2618         * modules/gettimeofday (configure.ac): Declare indicator.
2619         * lib/sys_time.in.h (gettimeofday): Warn if gnulib module is not
2620         in use.
2621
2622         closein-tests: silence compiler warning
2623         * tests/test-closein.c (main): Ignore fread result.
2624         * modules/closein-tests (Depends-on): Add ignore-value.
2625
2626         tests: silence warning about system return
2627         * tests/test-areadlink-with-size.c (main): Ignore system result.
2628         * tests/test-areadlink.c (main): Likewise.
2629         * tests/test-areadlinkat-with-size.c (main): Likewise.
2630         * tests/test-areadlinkat.c (main): Likewise.
2631         * tests/test-canonicalize-lgpl.c (main): Likewise.
2632         * tests/test-canonicalize.c (main): Likewise.
2633         * tests/test-chown.c (main): Likewise.
2634         * tests/test-fchownat.c (main): Likewise.
2635         * tests/test-fdutimensat.c (main): Likewise.
2636         * tests/test-fstatat.c (main): Likewise.
2637         * tests/test-futimens.c (main): Likewise.
2638         * tests/test-lchown.c (main): Likewise.
2639         * tests/test-link.c (main): Likewise.
2640         * tests/test-linkat.c (main): Likewise.
2641         * tests/test-lstat.c (main): Likewise.
2642         * tests/test-mkdir.c (main): Likewise.
2643         * tests/test-mkdirat.c (main): Likewise.
2644         * tests/test-mkfifo.c (main): Likewise.
2645         * tests/test-mkfifoat.c (main): Likewise.
2646         * tests/test-mknod.c (main): Likewise.
2647         * tests/test-readlink.c (main): Likewise.
2648         * tests/test-remove.c (main): Likewise.
2649         * tests/test-rename.c (main): Likewise.
2650         * tests/test-renameat.c (main): Likewise.
2651         * tests/test-rmdir.c (main): Likewise.
2652         * tests/test-symlink.c (main): Likewise.
2653         * tests/test-symlinkat.c (main): Likewise.
2654         * tests/test-unlink.c (main): Likewise.
2655         * tests/test-unlinkat.c (main): Likewise.
2656         * tests/test-utimens.c (main): Likewise.
2657         * tests/test-utimensat.c (main): Likewise.
2658         * modules/areadlink-tests (Depends-on): Add ignore-value.
2659         * modules/areadlink-with-size-tests (Depends-on): Likewise.
2660         * modules/areadlinkat-tests (Depends-on): Likewise.
2661         * modules/areadlinkat-with-size-tests (Depends-on): Likewise.
2662         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
2663         * modules/canonicalize-tests (Depends-on): Likewise.
2664         * modules/chown-tests (Depends-on): Likewise.
2665         * modules/fdutimensat-tests (Depends-on): Likewise.
2666         * modules/futimens-tests (Depends-on): Likewise.
2667         * modules/lchown-tests (Depends-on): Likewise.
2668         * modules/link-tests (Depends-on): Likewise.
2669         * modules/linkat-tests (Depends-on): Likewise.
2670         * modules/lstat-tests (Depends-on): Likewise.
2671         * modules/mkdir-tests (Depends-on): Likewise.
2672         * modules/mkfifo-tests (Depends-on): Likewise.
2673         * modules/mkfifoat-tests (Depends-on): Likewise.
2674         * modules/mknod-tests (Depends-on): Likewise.
2675         * modules/openat-tests (Depends-on): Likewise.
2676         * modules/readlink-tests (Depends-on): Likewise.
2677         * modules/remove-tests (Depends-on): Likewise.
2678         * modules/rename-tests (Depends-on): Likewise.
2679         * modules/renameat-tests (Depends-on): Likewise.
2680         * modules/rmdir-tests (Depends-on): Likewise.
2681         * modules/symlink-tests (Depends-on): Likewise.
2682         * modules/symlinkat-tests (Depends-on): Likewise.
2683         * modules/unlink-tests (Depends-on): Likewise.
2684         * modules/utimens-tests (Depends-on): Likewise.
2685         * modules/utimensat-tests (Depends-on): Likewise.
2686
2687 2010-01-31  Bruno Haible  <bruno@clisp.org>
2688
2689         Perform the same test for many <math.h> functions.
2690         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC,
2691         gl_COMMON_DOUBLE_MATHFUNC_TEST): New macros.
2692         * m4/sqrt.m4 (gl_FUNC_SQRT): Invoke gl_COMMON_DOUBLE_MATHFUNC instead
2693         of gl_MATHFUNC.
2694         * modules/acos (configure.ac): Likewise.
2695         * modules/asin (configure.ac): Likewise.
2696         * modules/atan (configure.ac): Likewise.
2697         * modules/atan2 (configure.ac): Likewise.
2698         * modules/cbrt (configure.ac): Likewise.
2699         * modules/copysign (configure.ac): Likewise.
2700         * modules/cos (configure.ac): Likewise.
2701         * modules/cosh (configure.ac): Likewise.
2702         * modules/erf (configure.ac): Likewise.
2703         * modules/erfc (configure.ac): Likewise.
2704         * modules/exp (configure.ac): Likewise.
2705         * modules/fmod (configure.ac): Likewise.
2706         * modules/hypot (configure.ac): Likewise.
2707         * modules/j0 (configure.ac): Likewise.
2708         * modules/j1 (configure.ac): Likewise.
2709         * modules/jn (configure.ac): Likewise.
2710         * modules/lgamma (configure.ac): Likewise.
2711         * modules/log (configure.ac): Likewise.
2712         * modules/log10 (configure.ac): Likewise.
2713         * modules/log1p (configure.ac): Likewise.
2714         * modules/pow (configure.ac): Likewise.
2715         * modules/remainder (configure.ac): Likewise.
2716         * modules/sin (configure.ac): Likewise.
2717         * modules/sinh (configure.ac): Likewise.
2718         * modules/tan (configure.ac): Likewise.
2719         * modules/tanh (configure.ac): Likewise.
2720         * modules/y0 (configure.ac): Likewise.
2721         * modules/y1 (configure.ac): Likewise.
2722         * modules/yn (configure.ac): Likewise.
2723         Suggested by Paolo Bonzini.
2724
2725 2010-01-31  Bruno Haible  <bruno@clisp.org>
2726
2727         * m4/getline.m4 (gl_FUNC_GETLINE): Add comment about REPLACE_GETLINE.
2728
2729 2010-01-31  Bruno Haible  <bruno@clisp.org>
2730
2731         Work around getdelim() bug on FreeBSD 8.0.
2732         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Test whether getdelim supports an
2733         initially NULL line. Set REPLACE_GETDELIM if getdelim exists but does
2734         not work.
2735         * lib/stdio.in.h (getdelim): Define as an alias if REPLACE_GETDELIM
2736         is 1.
2737         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize REPLACE_GETDELIM.
2738         * modules/stdio (Makefile.am): Also substitute REPLACE_GETDELIM.
2739         * tests/test-getdelim.c (main): Also test result for a NULL buffer and
2740         a non-zero size.
2741         * doc/posix-functions/getdelim.texi: Mention the FreeBSD bug.
2742
2743 2010-01-31  Bruno Haible  <bruno@clisp.org>
2744
2745         Work around getline() bug on FreeBSD 8.0.
2746         * m4/getline.m4 (gl_FUNC_GETLINE): Also test result for a NULL buffer
2747         and a non-zero size.
2748         * tests/test-getline.c (main): Likewise.
2749         * doc/posix-functions/getline.texi: Mention the FreeBSD bug.
2750         Reported by Dennis <noordsij@cs.helsinki.fi> via Eric Blake.
2751
2752 2010-01-28  Eric Blake  <ebb9@byu.net>
2753
2754         regex: fix build failure
2755         * lib/regex_internal.h (__GNUC_PREREQ): Define for non-glibc
2756         platforms.
2757
2758 2010-01-28  Jim Meyering  <meyering@redhat.com>
2759
2760         regex: do not ignore memory allocation failure
2761         * lib/regex_internal.c (create_cd_newstate): Detect
2762         re_node_set_init_copy failure.   Extracted from glibc commit
2763         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2764
2765         regex: sync more white-space changes from libc
2766         * lib/regex_internal.c: White-space only changes.
2767         * lib/regexec.c: Likewise.
2768
2769         regex: add many uses of __attribute_warn_unused_result__
2770         * lib/regex_internal.c: Use __attribute_warn_unused_result__.
2771         * lib/regexec.c: Likewise.
2772         Extracted from a messy glibc commit.
2773
2774         regcomp.c: spelling and merge-artifact from glibc
2775         * lib/regcomp.c: Merge remainder of glibc's
2776         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2777
2778         regcomp.c: sync white-space changes from glibc
2779         * lib/regcomp.c: Merge to accommodate white space
2780         changes from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
2781
2782         regcomp.c: do not ignore internal return values
2783         * lib/regcomp.c: Do not ignore internal return values.
2784         This is from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c,
2785         but without its white-space changes and spelling fixes.
2786
2787         regex_internal.h: define __attribute_warn_unused_result__
2788         * lib/regex_internal.h (__attribute_warn_unused_result__): Define.
2789
2790         maint: add a syntax-check rule to check for vulnerable Makefile.in
2791         * top/maint.mk (sc_vulnerable_makefile_CVE-2009-4029): New rule.
2792
2793 2010-01-27  Jim Meyering  <meyering@redhat.com>
2794
2795         ncftpput-ftp: clean up spaces
2796         * build-aux/ncftpput-ftp: Make Copyright line consistent.
2797         Remove trailing blanks.
2798
2799 2010-01-27  Simon Josefsson  <simon@josefsson.org>
2800
2801         * build-aux/git-version-gen: Fix copyright statement.
2802         * build-aux/gnupload: Likewise.
2803         * tests/test-arcfour.c: Likewise.
2804         * tests/test-arctwo.c: Likewise.
2805         * tests/test-count-one-bits.c: Likewise.
2806         * tests/test-crc.c: Likewise.
2807         * tests/test-des.c: Likewise.
2808         * tests/test-gc-arcfour.c: Likewise.
2809         * tests/test-gc-arctwo.c: Likewise.
2810         * tests/test-gc-des.c: Likewise.
2811         * tests/test-gc-hmac-md5.c: Likewise.
2812         * tests/test-gc-hmac-sha1.c: Likewise.
2813         * tests/test-gc-md2.c: Likewise.
2814         * tests/test-gc-md4.c: Likewise.
2815         * tests/test-gc-md5.c: Likewise.
2816         * tests/test-gc-pbkdf2-sha1.c: Likewise.
2817         * tests/test-gc-rijndael.c: Likewise.
2818         * tests/test-gc-sha1.c: Likewise.
2819         * tests/test-gc.c: Likewise.
2820         * tests/test-gethostname.c: Likewise.
2821         * tests/test-gettimeofday.c: Likewise.
2822         * tests/test-hash.c: Likewise.
2823         * tests/test-hmac-md5.c: Likewise.
2824         * tests/test-hmac-sha1.c: Likewise.
2825         * tests/test-md2.c: Likewise.
2826         * tests/test-md4.c: Likewise.
2827         * tests/test-md5.c: Likewise.
2828         * tests/test-memchr.c: Likewise.
2829         * tests/test-memchr2.c: Likewise.
2830         * tests/test-memcmp.c: Likewise.
2831         * tests/test-memmem.c: Likewise.
2832         * tests/test-memrchr.c: Likewise.
2833         * tests/test-rawmemchr.c: Likewise.
2834         * tests/test-read-file.c: Likewise.
2835         * tests/test-rijndael.c: Likewise.
2836         * tests/test-sockets.c: Likewise.
2837         * tests/test-strchrnul.c: Likewise.
2838         * tests/test-strstr.c: Likewise.
2839         * tests/test-strtod.c: Likewise.
2840         * build-aux/ncftpput-ftp: Likewise.
2841
2842 2010-01-26  Eric Blake  <ebb9@byu.net>
2843
2844         ignore-value: update recommended header name
2845         * modules/ignore-value (Include): Only use <> for headers that
2846         exist in glibc.
2847
2848 2010-01-26  Jim Meyering  <meyering@redhat.com>
2849
2850         test-userspec.c: avoid compiler warnings
2851         * tests/test-userspec.c (main): Avoid shadowing ("uid"),
2852         and "initialization discards qualifiers..." warnings.
2853         Put the first "uid" in its own scope, and make char* members "const".
2854
2855 2010-01-25  Bruno Haible  <bruno@clisp.org>
2856
2857         gnulib-tool: Make warning diagnostics consistent.
2858         * gnulib-tool (func_warning): New function.
2859         Use it everywhere where gnulib-tool produces output to stderr and it is
2860         not a fatal error.
2861
2862 2010-01-25  Bruno Haible  <bruno@clisp.org>
2863
2864         Fix test dependencies.
2865         * modules/xstrtol-tests (Depends-on): Add inttypes.
2866         * modules/xstrtoll-tests (Depends-on): Likewise. Remove xstrtoll.
2867
2868 2010-01-25 Pádraig Brady <P@draigBrady.com>
2869
2870         syntax-check: detect incorrect boolean macro values in config.h
2871         * modules/maintainer-makefile (configure.ac): Parameterize the location
2872         of config.h which will be available to makefiles as $(CONFIG_INCLUDE).
2873         The logic is from Eric Blake and the location indicated by Jim Meyering.
2874         Note the more natural CONFIG_HEADER name is prohibited by automake
2875         for backwards compatibility reasons.
2876         * top/maint.mk (sc_Wundef_boolean): New rule.
2877
2878 2010-01-25  Jim Meyering  <meyering@redhat.com>
2879
2880         bootstrap: detect MacOS 10.6's shasum, too
2881         * build-aux/bootstrap: Also recognize MacOS 10.6's shasum.
2882         Suggested by Thomas Treichl <Thomas.Treichl@gmx.net>.
2883
2884 2010-01-23  Jim Meyering  <meyering@redhat.com>
2885
2886         xstrtoll: new module
2887         * modules/xstrtoll: New file.
2888         * MODULES.html.sh (Numeric conversion functions): Add xstrtoll.
2889         * lib/xstrtol.h [HAVE_LONG_LONG_INT]: Declare xstrtoll and xstrtoull.
2890         * lib/xstrtoll.c, lib/xstrtoull.c: New files.
2891         ./configure fails if you use this module and lack "long long".
2892         * modules/xstrtoll-tests: New module.
2893         * tests/test-xstrtoll.c, tests/test-xstrtoull.c: New files.
2894         * tests/test-xstrtoll.sh: Like test-xstrtol.c, but use the
2895         new init.sh-based test framework.
2896
2897 2010-01-24  Bruno Haible  <bruno@clisp.org>
2898
2899         Tests for module 'yn'.
2900         * modules/yn-tests: New file.
2901         * tests/test-yn.c: New file.
2902
2903         Tests for module 'y1'.
2904         * modules/y1-tests: New file.
2905         * tests/test-y1.c: New file.
2906
2907         Tests for module 'y0'.
2908         * modules/y0-tests: New file.
2909         * tests/test-y0.c: New file.
2910
2911         Tests for module 'tanh'.
2912         * modules/tanh-tests: New file.
2913         * tests/test-tanh.c: New file.
2914
2915         Tests for module 'tan'.
2916         * modules/tan-tests: New file.
2917         * tests/test-tan.c: New file.
2918
2919         Tests for module 'sqrt'.
2920         * modules/sqrt-tests: New file.
2921         * tests/test-sqrt.c: New file.
2922
2923         Tests for module 'sinh'.
2924         * modules/sinh-tests: New file.
2925         * tests/test-sinh.c: New file.
2926
2927         Tests for module 'sin'.
2928         * modules/sin-tests: New file.
2929         * tests/test-sin.c: New file.
2930
2931         Tests for module 'rint'.
2932         * modules/rint-tests: New file.
2933         * tests/test-rint.c: New file.
2934
2935         Tests for module 'remainder'.
2936         * modules/remainder-tests: New file.
2937         * tests/test-remainder.c: New file.
2938
2939         Tests for module 'pow'.
2940         * modules/pow-tests: New file.
2941         * tests/test-pow.c: New file.
2942
2943         Tests for module 'nextafter'.
2944         * modules/nextafter-tests: New file.
2945         * tests/test-nextafter.c: New file.
2946
2947         Tests for module 'modf'.
2948         * modules/modf-tests: New file.
2949         * tests/test-modf.c: New file.
2950
2951         Tests for module 'logb'.
2952         * modules/logb-tests: New file.
2953         * tests/test-logb.c: New file.
2954
2955         Tests for module 'log1p'.
2956         * modules/log1p-tests: New file.
2957         * tests/test-log1p.c: New file.
2958
2959         Tests for module 'log10'.
2960         * modules/log10-tests: New file.
2961         * tests/test-log10.c: New file.
2962
2963         Tests for module 'log'.
2964         * modules/log-tests: New file.
2965         * tests/test-log.c: New file.
2966
2967         Tests for module 'lgamma'.
2968         * modules/lgamma-tests: New file.
2969         * tests/test-lgamma.c: New file.
2970
2971         Tests for module 'ldexp'.
2972         * modules/ldexp-tests: New file.
2973         * tests/test-ldexp.c: New file.
2974
2975         Tests for module 'jn'.
2976         * modules/jn-tests: New file.
2977         * tests/test-jn.c: New file.
2978
2979         Tests for module 'j1'.
2980         * modules/j1-tests: New file.
2981         * tests/test-j1.c: New file.
2982
2983         Tests for module 'j0'.
2984         * modules/j0-tests: New file.
2985         * tests/test-j0.c: New file.
2986
2987         Tests for module 'hypot'.
2988         * modules/hypot-tests: New file.
2989         * tests/test-hypot.c: New file.
2990
2991         Tests for module 'fmod'.
2992         * modules/fmod-tests: New file.
2993         * tests/test-fmod.c: New file.
2994
2995         Tests for module 'fabs'.
2996         * modules/fabs-tests: New file.
2997         * tests/test-fabs.c: New file.
2998
2999         Tests for module 'exp'.
3000         * modules/exp-tests: New file.
3001         * tests/test-exp.c: New file.
3002
3003         Tests for module 'erfc'.
3004         * modules/erfc-tests: New file.
3005         * tests/test-erfc.c: New file.
3006
3007         Tests for module 'erf'.
3008         * modules/erf-tests: New file.
3009         * tests/test-erf.c: New file.
3010
3011         Tests for module 'cosh'.
3012         * modules/cosh-tests: New file.
3013         * tests/test-cosh.c: New file.
3014
3015         Tests for module 'cos'.
3016         * modules/cos-tests: New file.
3017         * tests/test-cos.c: New file.
3018
3019         Tests for module 'copysign'.
3020         * modules/copysign-tests: New file.
3021         * tests/test-copysign.c: New file.
3022
3023         Tests for module 'cbrt'.
3024         * modules/cbrt-tests: New file.
3025         * tests/test-cbrt.c: New file.
3026
3027         Tests for module 'atan2'.
3028         * modules/atan2-tests: New file.
3029         * tests/test-atan2.c: New file.
3030
3031         Tests for module 'atan'.
3032         * modules/atan-tests: New file.
3033         * tests/test-atan.c: New file.
3034
3035         Tests for module 'asin'.
3036         * modules/asin-tests: New file.
3037         * tests/test-asin.c: New file.
3038
3039         Tests for module 'acos'.
3040         * modules/acos-tests: New file.
3041         * tests/test-acos.c: New file.
3042
3043 2010-01-24  Bruno Haible  <bruno@clisp.org>
3044
3045         Fix tests for common <math.h> functions.
3046         * m4/mathfunc.m4 (gl_MATHFUNC): Take two additional parameters. Use a
3047         code snippet that references the function pointer, rather than merely
3048         calling the function. Substitute the FUNC_LIBM variable.
3049         * m4/sqrt.m4 (gl_FUNC_SQRT): Update gl_MATHFUNC invocation.
3050         * modules/acos (configure.ac): Likewise.
3051         * modules/asin (configure.ac): Likewise.
3052         * modules/atan (configure.ac): Likewise.
3053         * modules/atan2 (configure.ac): Likewise.
3054         * modules/cbrt (configure.ac): Likewise.
3055         * modules/copysign (configure.ac): Likewise.
3056         * modules/cos (configure.ac): Likewise.
3057         * modules/cosh (configure.ac): Likewise.
3058         * modules/erf (configure.ac): Likewise.
3059         * modules/erfc (configure.ac): Likewise.
3060         * modules/exp (configure.ac): Likewise.
3061         * modules/fabs (configure.ac): Likewise.
3062         * modules/fmod (configure.ac): Likewise.
3063         * modules/hypot (configure.ac): Likewise.
3064         * modules/j0 (configure.ac): Likewise.
3065         * modules/j1 (configure.ac): Likewise.
3066         * modules/jn (configure.ac): Likewise.
3067         * modules/ldexp (configure.ac): Likewise.
3068         * modules/lgamma (configure.ac): Likewise.
3069         * modules/log (configure.ac): Likewise.
3070         * modules/log10 (configure.ac): Likewise.
3071         * modules/log1p (configure.ac): Likewise.
3072         * modules/logb (configure.ac): Likewise.
3073         * modules/modf (configure.ac): Likewise.
3074         * modules/nextafter (configure.ac): Likewise.
3075         * modules/pow (configure.ac): Likewise.
3076         * modules/remainder (configure.ac): Likewise.
3077         * modules/rint (configure.ac): Likewise.
3078         * modules/sin (configure.ac): Likewise.
3079         * modules/sinh (configure.ac): Likewise.
3080         * modules/tan (configure.ac): Likewise.
3081         * modules/tanh (configure.ac): Likewise.
3082         * modules/y0 (configure.ac): Likewise.
3083         * modules/y1 (configure.ac): Likewise.
3084         * modules/yn (configure.ac): Likewise.
3085
3086 2010-01-24  Bruno Haible  <bruno@clisp.org>
3087
3088         Tests: Defeat inlining of math functions by GCC >= 4.3.0.
3089         * tests/test-acosl.c (x): New variable.
3090         (main): Store argument in x and fetch it from x.
3091         * tests/test-asinl.c (x): New variable.
3092         (main): Store argument in x and fetch it from x.
3093         * tests/test-atanl.c (x): New variable.
3094         (main): Store argument in x and fetch it from x.
3095         * tests/test-cosl.c (x): New variable.
3096         (main): Store argument in x and fetch it from x.
3097         * tests/test-expl.c (x): New variable.
3098         (main): Store argument in x and fetch it from x.
3099         * tests/test-logl.c (x): New variable.
3100         (main): Store argument in x and fetch it from x.
3101         * tests/test-sinl.c (x): New variable.
3102         (main): Store argument in x and fetch it from x.
3103         * tests/test-sqrtl.c (x): New variable.
3104         (main): Store argument in x and fetch it from x.
3105         * tests/test-tanl.c (x): New variable.
3106         (main): Store argument in x and fetch it from x.
3107
3108 2010-01-24  Bruno Haible  <bruno@clisp.org>
3109
3110         Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
3111         * gnulib-tool (func_emit_tests_Makefile_am): Add EXEEXT and srcdir
3112         assignments to the initial TESTS_ENVIRONMENT.
3113         * doc/gnulib.texi (Unit test modules): Document it.
3114         * modules/acl-tests (Makefile.am): Drop EXEEXT assignment from
3115         TESTS_ENVIRONMENT.
3116         * modules/btowc-tests (Makefile.am): Likewise.
3117         * modules/c-stack-tests (Makefile.am): Likewise.
3118         * modules/c-strcase-tests (Makefile.am): Likewise.
3119         * modules/copy-file-tests (Makefile.am): Likewise.
3120         * modules/mbmemcasecmp-tests (Makefile.am): Likewise.
3121         * modules/mbmemcasecoll-tests (Makefile.am): Likewise.
3122         * modules/mbrtowc-tests (Makefile.am): Likewise.
3123         * modules/mbscasecmp-tests (Makefile.am): Likewise.
3124         * modules/mbscasestr-tests (Makefile.am): Likewise.
3125         * modules/mbschr-tests (Makefile.am): Likewise.
3126         * modules/mbscspn-tests (Makefile.am): Likewise.
3127         * modules/mbsinit-tests (Makefile.am): Likewise.
3128         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
3129         * modules/mbsnrtowcs-tests (Makefile.am): Likewise.
3130         * modules/mbspbrk-tests (Makefile.am): Likewise.
3131         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
3132         * modules/mbsrchr-tests (Makefile.am): Likewise.
3133         * modules/mbsrtowcs-tests (Makefile.am): Likewise.
3134         * modules/mbsspn-tests (Makefile.am): Likewise.
3135         * modules/mbsstr-tests (Makefile.am): Likewise.
3136         * modules/nl_langinfo-tests (Makefile.am): Likewise.
3137         * modules/unicase/locale-language-tests (Makefile.am): Likewise.
3138         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
3139         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
3140         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
3141         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
3142         * modules/uniwbrk/ulc-wordbreaks-tests (Makefile.am): Likewise.
3143         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
3144         * modules/wcrtomb-tests (Makefile.am): Likewise.
3145         * modules/wcsnrtombs-tests (Makefile.am): Likewise.
3146         * modules/wcsrtombs-tests (Makefile.am): Likewise.
3147         * modules/quotearg-tests (Makefile.am): Drop EXEEXT and srcdir
3148         assignments from TESTS_ENVIRONMENT.
3149         * modules/argp-tests (Makefile.am): Drop TESTS_ENVIRONMENT
3150         augmentation.
3151         * modules/argp-version-etc-tests (Makefile.am): Likewise.
3152         * modules/atexit-tests (Makefile.am): Likewise.
3153         * modules/binary-io-tests (Makefile.am): Likewise.
3154         * modules/closein-tests (Makefile.am): Likewise.
3155         * modules/dprintf-posix-tests (Makefile.am): Likewise.
3156         * modules/exclude-tests (Makefile.am): Likewise.
3157         * modules/fflush-tests (Makefile.am): Likewise.
3158         * modules/fpending-tests (Makefile.am): Likewise.
3159         * modules/fprintf-posix-tests (Makefile.am): Likewise.
3160         * modules/freadahead-tests (Makefile.am): Likewise.
3161         * modules/freadptr-tests (Makefile.am): Likewise.
3162         * modules/freadseek-tests (Makefile.am): Likewise.
3163         * modules/fseek-tests (Makefile.am): Likewise.
3164         * modules/fseeko-tests (Makefile.am): Likewise.
3165         * modules/ftell-tests (Makefile.am): Likewise.
3166         * modules/ftello-tests (Makefile.am): Likewise.
3167         * modules/idpriv-drop-tests (Makefile.am): Likewise.
3168         * modules/idpriv-droptemp-tests (Makefile.am): Likewise.
3169         * modules/lseek-tests (Makefile.am): Likewise.
3170         * modules/parse-duration-tests (Makefile.am): Likewise.
3171         * modules/perror-tests (Makefile.am): Likewise.
3172         * modules/pipe-filter-gi-tests (Makefile.am): Likewise.
3173         * modules/pipe-filter-ii-tests (Makefile.am): Likewise.
3174         * modules/pipe-tests (Makefile.am): Likewise.
3175         * modules/pread-tests (Makefile.am): Likewise.
3176         * modules/printf-posix-tests (Makefile.am): Likewise.
3177         * modules/select-tests (Makefile.am): Likewise.
3178         * modules/sigpipe-tests (Makefile.am): Likewise.
3179         * modules/tsearch-tests (Makefile.am): Likewise.
3180         * modules/unicase/ulc-casecmp-tests (Makefile.am): Likewise.
3181         * modules/unicase/ulc-casecoll-tests (Makefile.am): Likewise.
3182         * modules/uniname/uniname-tests (Makefile.am): Likewise.
3183         * modules/uniwidth/width-tests (Makefile.am): Likewise.
3184         * modules/vdprintf-posix-tests (Makefile.am): Likewise.
3185         * modules/version-etc-tests (Makefile.am): Likewise.
3186         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
3187         * modules/vprintf-posix-tests (Makefile.am): Likewise.
3188         * modules/xalloc-die-tests (Makefile.am): Likewise.
3189         * modules/xprintf-posix-tests (Makefile.am): Likewise.
3190         * modules/xstrtoimax-tests (Makefile.am): Likewise.
3191         * modules/xstrtol-tests (Makefile.am): Likewise.
3192         * modules/xstrtoumax-tests (Makefile.am): Likewise.
3193         * modules/yesno-tests (Makefile.am): Likewise.
3194         Suggested by Jim Meyering.
3195
3196 2010-01-24  Bruno Haible  <bruno@clisp.org>
3197
3198         More documentation.
3199         * doc/gnulib.texi (Writing modules): New chapter.
3200         (Miscellaneous Notes): Move sections "Comments" and "Header files" to
3201         the new chapter.
3202
3203 2010-01-24  Jim Meyering  <meyering@redhat.com>
3204
3205         maint.mk: do not prepend "./" after filtering
3206         * top/maint.mk (_prepend_srcdir_prefix): New variable
3207         (VC_LIST_EXCEPT): Use it to avoid prepending (post-filter)
3208         "./" when $(srcdir) is ".".
3209
3210         define STREQ(a,b) consistently, removing useless parentheses
3211         #define STREQ(a, b) (strcmp ((a), (b)) == 0) is over-parenthesized,
3212         since the only risk is that "a" or "b" contains an unparenthesized
3213         comma, but if either did that, STREQ would have 3 or more arguments.
3214         Hence, #define STREQ(a, b) (strcmp (a, b) == 0) is better.
3215         * lib/fts.c (STREQ): Remove unnecessary parentheses.
3216         * lib/hash-triple.c (STREQ): Likewise.
3217         * tests/test-argv-iter.c (STREQ): Use a and b, not s1 and s2.
3218         * lib/getugroups.c (STREQ): Likewise.
3219
3220 2010-01-23  Jim Meyering  <meyering@redhat.com>
3221
3222         maint.mk: fix syntax-check in a non-srcdir build directory
3223         * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash,
3224         introduced in my 2010-01-21 commit, a6da6c45.  Reported by Eric Blake.
3225
3226 2010-01-22  Jim Meyering  <meyering@redhat.com>
3227
3228         userspec: add unit tests
3229         * tests/test-userspec.c: New file.
3230         * modules/userspec-tests: Likewise.
3231
3232 2010-01-21  Jim Meyering  <meyering@redhat.com>
3233
3234         maint.mk: handle source file names containing "." robustly
3235         * top/maint.mk (_dot_escaped_srcdir): Define.
3236         (VC_LIST): Use it in LHS of sed substitution.
3237
3238 2010-01-21  Jiri Denemark  <jdenemar@redhat.com>
3239
3240         maint.mk: fix VC_LIST_EXCEPT for srcdir != builddir
3241         * top/maint.mk (VC_LIST_EXCEPT): Preprocess the output of
3242         $(VC_LIST) to remove a prefix of '$(srcdir)/', so that it works
3243         from a non-srcdir build.
3244
3245 2010-01-20  Eric Blake  <ebb9@byu.net>
3246
3247         warn-on-use: use instead of link-warning
3248         * modules/stdio (Depends-on, Makefile.am): Drop link-warning.
3249         * modules/unistd (Depends-on, Makefile.am): Likewise.
3250         * modules/arpa_inet (Depends-on): Replace link-warning with
3251         warn-on-use.
3252         (Makefile.am): Update rules accordingly.
3253         * modules/ctype (Depends-on, Makefile.am): Likewise.
3254         * modules/dirent (Depends-on, Makefile.am): Likewise.
3255         * modules/fcntl-h (Depends-on, Makefile.am): Likewise.
3256         * modules/inttypes (Depends-on, Makefile.am): Likewise.
3257         * modules/langinfo (Depends-on, Makefile.am): Likewise.
3258         * modules/locale (Depends-on, Makefile.am): Likewise.
3259         * modules/math (Depends-on, Makefile.am): Likewise.
3260         * modules/search (Depends-on, Makefile.am): Likewise.
3261         * modules/signal (Depends-on, Makefile.am): Likewise.
3262         * modules/spawn (Depends-on, Makefile.am): Likewise.
3263         * modules/stdlib (Depends-on, Makefile.am): Likewise.
3264         * modules/string (Depends-on, Makefile.am): Likewise.
3265         * modules/strings (Depends-on, Makefile.am): Likewise.
3266         * modules/sys_file (Depends-on, Makefile.am): Likewise.
3267         * modules/sys_ioctl (Depends-on, Makefile.am): Likewise.
3268         * modules/sys_select (Depends-on, Makefile.am): Likewise.
3269         * modules/sys_socket (Depends-on, Makefile.am): Likewise.
3270         * modules/sys_stat (Depends-on, Makefile.am): Likewise.
3271         * modules/sys_times (Depends-on, Makefile.am): Likewise.
3272         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
3273         * modules/wchar (Depends-on, Makefile.am): Likewise.
3274         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Check which functions
3275         should be poisoned.
3276         * m4/ctype.m4 (gl_CTYPE_H): Likewise.
3277         * m4/dirent_h.m4 (gl_DIRENT_H): Likewise.
3278         * m4/fcntl_h.m4 (gl_FCNTL_H): Likewise.
3279         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
3280         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
3281         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
3282         * m4/math_h.m4 (gl_MATH_H): Likewise.
3283         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
3284         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
3285         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
3286         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
3287         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
3288         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
3289         * m4/strings_h.m4 (gl_HEADER_STRINGS_H_BODY): Likewise.
3290         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H_DEFAULTS): Likewise.
3291         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise.
3292         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
3293         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
3294         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
3295         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
3296         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
3297         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
3298         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
3299         * lib/arpa_inet.in.h: Use _GL_WARN_ON_USE instead of
3300         GL_LINK_WARNING.
3301         * lib/ctype.in.h: Likewise.
3302         * lib/dirent.in.h: Likewise.
3303         * lib/fcntl.in.h: Likewise.
3304         * lib/inttypes.in.h: Likewise.
3305         * lib/langinfo.in.h: Likewise.
3306         * lib/locale.in.h: Likewise.
3307         * lib/math.in.h: Likewise.
3308         * lib/search.in.h: Likewise.
3309         * lib/signal.in.h: Likewise.
3310         * lib/spawn.in.h: Likewise.
3311         * lib/stdio.in.h: Likewise.
3312         * lib/stdlib.in.h: Likewise.
3313         * lib/string.in.h: Likewise.
3314         * lib/strings.in.h: Likewise.
3315         * lib/sys_file.in.h: Likewise.
3316         * lib/sys_ioctl.in.h: Likewise.
3317         * lib/sys_select.in.h: Likewise.
3318         * lib/sys_socket.in.h: Likewise.
3319         * lib/sys_stat.in.h: Likewise.
3320         * lib/sys_times.in.h: Likewise.
3321         * lib/sys_utsname.in.h: Likewise.
3322         * lib/unistd.in.h: Likewise.
3323         * lib/wchar.in.h: Likewise.
3324
3325 2010-01-20  Bruno Haible  <bruno@clisp.org>
3326
3327         Avoid duplicate -lm.
3328         * m4/isnan.m4 (gl_ISNAN): Avoid duplicate -lm in $ISNAN_LIBM.
3329         * m4/round.m4 (gl_FUNC_ROUND): Avoid duplicate -lm in $ROUND_LIBM.
3330         * m4/roundf.m4 (gl_FUNC_ROUNDF): Avoid duplicate -lm in $ROUNDF_LIBM.
3331         * m4/roundl.m4 (gl_FUNC_ROUNDL): Avoid duplicate -lm in $ROUNDL_LIBM.
3332         * m4/acosl.m4 (gl_FUNC_ACOSL): Avoid duplicate -lm in $ACOSL_LIBM.
3333         * m4/cosl.m4 (gl_FUNC_COSL): Avoid duplicate -lm in $COSL_LIBM.
3334         * m4/logl.m4 (gl_FUNC_LOGL): Avoid duplicate -lm in $LOGL_LIBM.
3335         * m4/sinl.m4 (gl_FUNC_SINL): Avoid duplicate -lm in $SINL_LIBM.
3336         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Avoid duplicate -lm in $SQRTL_LIBM.
3337         * m4/tanl.m4 (gl_FUNC_TANL): Avoid duplicate -lm in $TANL_LIBM.
3338         * m4/asinl.m4 (gl_FUNC_ASINL): Same change, for consistency.
3339         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
3340         Reported by Paolo Bonzini.
3341
3342 2010-01-19  Bruno Haible  <bruno@clisp.org>
3343
3344         langinfo, nl_langinfo: Relicense under LGPLv2+.
3345         * modules/langinfo (License): Change to LGPLv2+.
3346         * modules/nl_langinfo (License): Likewise.
3347         Patch by David Lutterkort <lutter@redhat.com>.
3348
3349 2010-01-19  Bruno Haible  <bruno@clisp.org>
3350
3351         Avoid compilation error with cc on OSF/1 5.1.
3352         * lib/fcntl.in.h: Include <unistd.h> after the #include_next <fcntl.h>
3353         statement, not before.
3354         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3355
3356 2010-01-18  Bruno Haible  <bruno@clisp.org>
3357
3358         Avoid a link error due to the __printf__ symbol.
3359         * lib/stdio.in.h (__attribute__): Define to empty also for gcc 2.5.x
3360         and 2.6.x.
3361         (__format__, __printf__): Remove definitions.
3362         * lib/argp-fmtstream.h: Likewise.
3363         * lib/argp.h: Likewise.
3364         * lib/error.h: Likewise.
3365         * lib/vasnprintf.h: Likewise.
3366         * lib/xprintf.h: Likewise.
3367         * lib/xvasprintf.h: Likewise.
3368         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3369
3370 2010-01-18  Bruno Haible  <bruno@clisp.org>
3371
3372         Tests for module 'tanl'.
3373         * modules/tanl-tests: New file.
3374         * tests/test-tanl.c: New file.
3375
3376         Tests for module 'sqrtl'.
3377         * modules/sqrtl-tests: New file.
3378         * tests/test-sqrtl.c: New file.
3379
3380         Tests for module 'sinl'.
3381         * modules/sinl-tests: New file.
3382         * tests/test-sinl.c: New file.
3383
3384         Tests for module 'logl'.
3385         * modules/logl-tests: New file.
3386         * tests/test-logl.c: New file.
3387
3388         Tests for module 'expl'.
3389         * modules/expl-tests: New file.
3390         * tests/test-expl.c: New file.
3391
3392         Tests for module 'cosl'.
3393         * modules/cosl-tests: New file.
3394         * tests/test-cosl.c: New file.
3395
3396         Tests for module 'atanl'.
3397         * modules/atanl-tests: New file.
3398         * tests/test-atanl.c: New file.
3399
3400         Tests for module 'asinl'.
3401         * modules/asinl-tests: New file.
3402         * tests/test-asinl.c: New file.
3403
3404         Tests for module 'acosl'.
3405         * modules/acosl-tests: New file.
3406         * tests/test-acosl.c: New file.
3407
3408         New modules acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
3409         * lib/math.in.h (acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl,
3410         tanl): Use the standard gnulib idiom.
3411         * lib/cosl.c: Don't include trigl.c and sincosl.c.
3412         * lib/sinl.c: Likewise.
3413         * lib/tanl.c: Don't include trigl.c.
3414         (kernel_tanl): Make static.
3415         * lib/sincosl.c: Include trigl.h first.
3416         * lib/trigl.c: Likewise.
3417         * m4/acosl.m4: New file.
3418         * m4/asinl.m4: New file.
3419         * m4/atanl.m4: New file.
3420         * m4/cosl.m4: New file.
3421         * m4/expl.m4: New file.
3422         * m4/logl.m4: New file.
3423         * m4/sinl.m4: New file.
3424         * m4/sqrtl.m4: New file.
3425         * m4/tanl.m4: New file.
3426         * m4/mathl.m4: Remove file.
3427         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_* and HAVE_*
3428         variables for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
3429         Don't initialize GNULIB_MATHL.
3430         * modules/acosl: New file.
3431         * modules/asinl: New file.
3432         * modules/atanl: New file.
3433         * modules/cosl: New file.
3434         * modules/expl: New file.
3435         * modules/logl: New file.
3436         * modules/sinl: New file.
3437         * modules/sqrtl: New file.
3438         * modules/tanl: New file.
3439         * modules/math (Makefile.am): Substitute GNULIB_* and HAVE_* variables
3440         for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl. Don't
3441         substitute GNULIB_MATHL.
3442         * modules/mathl: Rewritten.
3443         * doc/posix-functions/acosl.texi: Mention the 'acosl' module.
3444         * doc/posix-functions/asinl.texi: Mention the 'asinl' module.
3445         * doc/posix-functions/atanl.texi: Mention the 'atanl' module.
3446         * doc/posix-functions/cosl.texi: Mention the 'cosl' module.
3447         * doc/posix-functions/expl.texi: Mention the 'expl' module.
3448         * doc/posix-functions/logl.texi: Mention the 'logl' module.
3449         * doc/posix-functions/sinl.texi: Mention the 'sinl' module.
3450         * doc/posix-functions/sqrtl.texi: Mention the 'sqrtl' module.
3451         * doc/posix-functions/tanl.texi: Mention the 'tanl' module.
3452
3453 2010-01-18  Bruno Haible  <bruno@clisp.org>
3454
3455         sqrt: Make gl_FUNC_SQRT requirable.
3456         * m4/sqrt.m4: New file.
3457         * modules/sqrt (Files): Add it.
3458         (configure.ac): Invoke gl_FUNC_SQRT.
3459
3460 2010-01-18  Bruno Haible  <bruno@clisp.org>
3461
3462         New modules for common <math.h> functions.
3463         * m4/mathfunc.m4: New file.
3464         * modules/acos: New file.
3465         * modules/asin: New file.
3466         * modules/atan: New file.
3467         * modules/atan2: New file.
3468         * modules/cbrt: New file.
3469         * modules/copysign: New file.
3470         * modules/cos: New file.
3471         * modules/cosh: New file.
3472         * modules/erf: New file.
3473         * modules/erfc: New file.
3474         * modules/exp: New file.
3475         * modules/fabs: New file.
3476         * modules/fmod: New file.
3477         * modules/hypot: New file.
3478         * modules/j0: New file.
3479         * modules/j1: New file.
3480         * modules/jn: New file.
3481         * modules/ldexp: New file.
3482         * modules/lgamma: New file.
3483         * modules/log: New file.
3484         * modules/log10: New file.
3485         * modules/log1p: New file.
3486         * modules/logb: New file.
3487         * modules/modf: New file.
3488         * modules/nextafter: New file.
3489         * modules/pow: New file.
3490         * modules/remainder: New file.
3491         * modules/rint: New file.
3492         * modules/sin: New file.
3493         * modules/sinh: New file.
3494         * modules/sqrt: New file.
3495         * modules/tan: New file.
3496         * modules/tanh: New file.
3497         * modules/y0: New file.
3498         * modules/y1: New file.
3499         * modules/yn: New file.
3500         * doc/posix-functions/acos.texi: Mention the 'acos' module.
3501         * doc/posix-functions/asin.texi: Mention the 'asin' module.
3502         * doc/posix-functions/atan.texi: Mention the 'atan' module.
3503         * doc/posix-functions/atan2.texi: Mention the 'atan2' module.
3504         * doc/posix-functions/cbrt.texi: Mention the 'cbrt' module.
3505         * doc/posix-functions/copysign.texi: Mention the 'copysign' module.
3506         * doc/posix-functions/cos.texi: Mention the 'cos' module.
3507         * doc/posix-functions/cosh.texi: Mention the 'cosh' module.
3508         * doc/posix-functions/erf.texi: Mention the 'erf' module.
3509         * doc/posix-functions/erfc.texi: Mention the 'erfc' module.
3510         * doc/posix-functions/exp.texi: Mention the 'exp' module.
3511         * doc/posix-functions/fabs.texi: Mention the 'fabs' module.
3512         * doc/posix-functions/fmod.texi: Mention the 'fmod' module.
3513         * doc/posix-functions/hypot.texi: Mention the 'hypot' module.
3514         * doc/posix-functions/j0.texi: Mention the 'j0' module.
3515         * doc/posix-functions/j1.texi: Mention the 'j1' module.
3516         * doc/posix-functions/jn.texi: Mention the 'jn' module.
3517         * doc/posix-functions/ldexp.texi: Mention the 'ldexp' module.
3518         * doc/posix-functions/lgamma.texi: Mention the 'lgamma' module.
3519         * doc/posix-functions/log.texi: Mention the 'log' module.
3520         * doc/posix-functions/log10.texi: Mention the 'log10' module.
3521         * doc/posix-functions/log1p.texi: Mention the 'log1p' module.
3522         * doc/posix-functions/logb.texi: Mention the 'logb' module.
3523         * doc/posix-functions/modf.texi: Mention the 'modf' module.
3524         * doc/posix-functions/nextafter.texi: Mention the 'nextafter' module.
3525         * doc/posix-functions/pow.texi: Mention the 'pow' module.
3526         * doc/posix-functions/remainder.texi: Mention the 'remainder' module.
3527         * doc/posix-functions/rint.texi: Mention the 'rint' module.
3528         * doc/posix-functions/sin.texi: Mention the 'sin' module.
3529         * doc/posix-functions/sinh.texi: Mention the 'sinh' module.
3530         * doc/posix-functions/sqrt.texi: Mention the 'sqrt' module.
3531         * doc/posix-functions/tan.texi: Mention the 'tan' module.
3532         * doc/posix-functions/tanh.texi: Mention the 'tanh' module.
3533         * doc/posix-functions/y0.texi: Mention the 'y0' module.
3534         * doc/posix-functions/y1.texi: Mention the 'y1' module.
3535         * doc/posix-functions/yn.texi: Mention the 'yn' module.
3536
3537 2010-01-18  Jim Meyering  <meyering@redhat.com>
3538
3539         ignore-value: relax license to LGPLv2+
3540         * modules/ignore-value (License): Relax to LGPLv2+.
3541
3542         getdate: don't leak when TZ contains two or more '"'s
3543         * lib/getdate.y (get_date): Don't leak a copy of TZ for each
3544         double quote in TZ after the first one.
3545
3546         readtokens: do not leak internal token_lengths buffer
3547         * lib/readtokens.c (readtokens): Free the local, lengths,
3548         when the supplied "token_lengths" parameter is NULL.
3549
3550 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3551
3552         Fix a couple of missing LIBTHREAD link failures on AIX.
3553         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add
3554         $(LIBTHREAD).
3555         * modules/strsignal-tests (test_strsignal_LDADD): Likewise.
3556
3557         Link test-poll against INET_PTON_LIB.
3558         * modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
3559         for inet_pton on Solaris 10.
3560
3561 2010-01-17  Bruno Haible  <bruno@clisp.org>
3562
3563         unistdio/*-sprintf: Fix typo in module description.
3564         * modules/unistdio/u8-sprintf (Depends-on): Fix typo.
3565         * modules/unistdio/u8-u8-sprintf (Depends-on): Likewise.
3566         * modules/unistdio/u16-sprintf (Depends-on): Likewise.
3567         * modules/unistdio/u16-u16-sprintf (Depends-on): Likewise.
3568         * modules/unistdio/u32-sprintf (Depends-on): Likewise.
3569         * modules/unistdio/u32-u32-sprintf (Depends-on): Likewise.
3570         * modules/unistdio/ulc-sprintf (Depends-on): Likewise.
3571         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3572
3573 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3574
3575         gnulib-tool: fix filelist for AIX, HP-UX ksh.
3576         * gnulib-tool (func_filter_filelist): Do not quote possibly-empty
3577         variables in shell case patterns, for AIX and HP-UX ksh.
3578
3579         Split large sed scripts, for HP-UX sed.
3580         * modules/stdio: Split sed scripts around 50 sed commands,
3581         to avoid HP-UX limit of 99 commands, in the near future.
3582         * modules/string: Likewise.
3583         * modules/unistd: Likewise.
3584
3585         gnulib-tool: avoid writing in the current directory.
3586         * gnulib-tool (func_emit_lib_Makefile_am)
3587         (func_emit_tests_Makefile_am): Put temporary files in $tmp,
3588         not in the current directory, so concurrent gnulib-tool
3589         instances do not interfere.
3590
3591 2010-01-16  Jim Meyering  <meyering@redhat.com>
3592
3593         doc: update users.txt
3594         * users.txt: Add grep.
3595         (diffutils, gzip): Update URLs.
3596
3597 2010-01-12  Bruno Haible  <bruno@clisp.org>
3598
3599         posix_spawn: Avoid test failure on Cygwin.
3600         * tests/test-posix_spawn3.c (DATA_FILENAME) [CYGWIN]: Use less risky
3601         characters.
3602         Reported by Simon Josefsson.
3603
3604 2010-01-12  Bruno Haible  <bruno@clisp.org>
3605
3606         * tests/test-cond.c (main): When skipping the test, show the reason.
3607
3608 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3609
3610         * lib/striconv.c (str_cd_iconv): Avoid if before free.
3611
3612 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3613
3614         * top/maint.mk (VC_LIST_EXCEPT): Filter list through
3615         VC_LIST_ALWAYS_EXCLUDE_REGEX.
3616
3617 2010-01-12  Eric Blake  <ebb9@byu.net>
3618
3619         build: guarantee AS_VAR_IF
3620         * m4/warnings.m4 (gl_WARN_ADD): Use autoconf name.
3621         (gl_AS_VAR_IF): Move...
3622         * m4/gnulib-common.m4 (AS_VAR_IF): ...here.
3623         Reported by Simon Josefsson.
3624
3625 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3626
3627         * lib/stdio.in.h: Fix typo.
3628
3629 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3630
3631         * m4/gc.m4: Check if linking to libgcrypt also needs linking to
3632         libgpg-error.
3633
3634 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3635
3636         * tests/test-xalloc-die.sh: Use $EXEEXT.
3637
3638 2010-01-12  Simon Josefsson  <simon@josefsson.org>
3639             Bruno Haible  <bruno@clisp.org>
3640
3641         getlogin, getlogin_r: Avoid test failure.
3642         * tests/test-getlogin.c: Include <stdio.h>.
3643         (main): Skip the test when the function fails because stdin is not a
3644         tty.
3645         * tests/test-getlogin_r.c: Include <stdio.h>.
3646         (main): Skip the test when the function fails because stdin is not a
3647         tty.
3648
3649 2010-01-11  Eric Blake  <ebb9@byu.net>
3650
3651         tests: avoid more large file warnings
3652         * tests/test-fflush.c: Avoid warning about ftell use.
3653         * tests/test-fseek.c: Avoid warning about fseek use.
3654
3655 2010-01-10  Bruno Haible  <bruno@clisp.org>
3656
3657         nproc: Work better on Linux when /proc and /sys are not mounted.
3658         * lib/nproc.c (num_processors): Use num_processors_via_affinity_mask ()
3659         as lower bound when, on glibc/Linux systems,
3660         sysconf (_SC_NPROCESSORS_CONF) returns 1.
3661         Suggested by Pádraig Brady <P@draigbrady.com>.
3662         Reported by Dmitry V. Levin <ldv@altlinux.org>.
3663
3664         nproc: Refactor.
3665         * lib/nproc.c (num_processors_via_affinity_mask): New function,
3666         extracted from num_processors.
3667         (num_processors): Call it.
3668
3669 2010-01-11  Jim Meyering  <meyering@redhat.com>
3670
3671         utimecmp: avoid new warning from upcoming gcc-4.5.0
3672         * lib/utimecmp.c (BILLION): Define using #define rather than an
3673         anonymous enum, to placate upcoming gcc-4.5.0's -Wenum-compare.
3674
3675 2010-01-11  Eric Blake  <ebb9@byu.net>
3676
3677         math: add portability warnings for classification macros
3678         * modules/math (Depends-on): Add warn-on-use.
3679         (Makefile.am): Provide new substitutions.
3680         * m4/math_h.m4 (gl_MATH_H): Require inline.
3681         * lib/math.in.h (_GL_WARN_REAL_FLOATING_DECL)
3682         (_GL_WARN_REAL_FLOATING_IMPL): New helper macros.
3683         (isfinite, isinf, isnan, signbit) [GNULIB_POSIXCHECK]: Use them to
3684         implement warnings.
3685
3686         unistd: warn on use of environ without module
3687         * modules/unistd (Depends-on): Add warn-on-use.
3688         (Makefile.am): Provide new substitutions.
3689         * m4/unistd_h.m4 (gl_UNISTD_H): Check for inline and environ.
3690         * lib/unistd.in.h (environ): Wrap with a warning helper function.
3691
3692         stdio: warn on suspicious uses
3693         * modules/stdio (Depends-on): Add warn-on-use.
3694         (Makefile.am): Provide new substitutions.
3695         * m4/stdio_h.m4 (gl_STDIO_H): Check for inline, ftello, and
3696         fseeko.
3697         * lib/stdio.in.h (gets): Always warn on use.
3698         (fseek, ftell): Adjust when warnings are issued, and honor
3699         _GL_NO_LARGE_FILES as a way to silence the warning.
3700         * tests/test-fpurge.c [!GNULIB_FSEEK]: Use new means to squelch
3701         any warning about large file offsets.
3702         * tests/test-freadable.c [!GNULIB_FSEEK]: Likewise.
3703         * tests/test-freading.c [!GNULIB_FSEEK]: Likewise.
3704         * tests/test-fseeko.c [!GNULIB_FSEEK]: Likewise.
3705         * tests/test-ftell.c [!GNULIB_FSEEK]: Likewise.
3706         * tests/test-ftello.c [!GNULIB_FSEEK]: Likewise.
3707         * tests/test-fwritable.c [!GNULIB_FSEEK]: Likewise.
3708         * tests/test-fwriting.c [!GNULIB_FSEEK]: Likewise.
3709         * tests/test-getopt.c [!GNULIB_FTELL]: Likewise.
3710
3711         warn-on-use: new module
3712         * modules/warn-on-use: New file.
3713         * build-aux/warn-on-use.h: Likewise.
3714         * m4/warn-on-use.m4: Likewise.
3715         * MODULES.html.sh (Support for building): Mention it.
3716
3717 2010-01-10  Bruno Haible  <bruno@clisp.org>
3718
3719         Tests for module 'unistr/u32-strdup'.
3720         * modules/unistr/u32-strdup-tests: New file.
3721         * tests/unistr/test-u32-strdup.c: New file.
3722
3723         Tests for module 'unistr/u16-strdup'.
3724         * modules/unistr/u16-strdup-tests: New file.
3725         * tests/unistr/test-u16-strdup.c: New file.
3726
3727         Tests for module 'unistr/u8-strdup'.
3728         * modules/unistr/u8-strdup-tests: New file.
3729         * tests/unistr/test-u8-strdup.c: New file.
3730         * tests/unistr/test-strdup.h: New file.
3731
3732         Tests for module 'unistr/u32-strncmp'.
3733         * modules/unistr/u32-strncmp-tests: New file.
3734         * tests/unistr/test-u32-strncmp.c: New file.
3735
3736         Tests for module 'unistr/u16-strncmp'.
3737         * modules/unistr/u16-strncmp-tests: New file.
3738         * tests/unistr/test-u16-strncmp.c: New file.
3739
3740         Tests for module 'unistr/u8-strncmp'.
3741         * modules/unistr/u8-strncmp-tests: New file.
3742         * tests/unistr/test-u8-strncmp.c: New file.
3743         * tests/unistr/test-strncmp.h: New file.
3744
3745         Tests for module 'unistr/u32-strcoll'.
3746         * modules/unistr/u32-strcoll-tests: New file.
3747         * tests/unistr/test-u32-strcoll.c: New file.
3748
3749         Tests for module 'unistr/u16-strcoll'.
3750         * modules/unistr/u16-strcoll-tests: New file.
3751         * tests/unistr/test-u16-strcoll.c: New file.
3752
3753         Tests for module 'unistr/u8-strcoll'.
3754         * modules/unistr/u8-strcoll-tests: New file.
3755         * tests/unistr/test-u8-strcoll.c: New file.
3756
3757         Tests for module 'unistr/u32-strcmp'.
3758         * modules/unistr/u32-strcmp-tests: New file.
3759         * tests/unistr/test-u32-strcmp.c: New file.
3760         * tests/unistr/test-u32-strcmp.h: New file.
3761
3762         Tests for module 'unistr/u16-strcmp'.
3763         * modules/unistr/u16-strcmp-tests: New file.
3764         * tests/unistr/test-u16-strcmp.c: New file.
3765         * tests/unistr/test-u16-strcmp.h: New file.
3766
3767         Tests for module 'unistr/u8-strcmp'.
3768         * modules/unistr/u8-strcmp-tests: New file.
3769         * tests/unistr/test-u8-strcmp.c: New file.
3770         * tests/unistr/test-u8-strcmp.h: New file.
3771         * tests/unistr/test-strcmp.h: New file.
3772
3773         Tests for module 'unistr/u32-strncat'.
3774         * modules/unistr/u32-strncat-tests: New file.
3775         * tests/unistr/test-u32-strncat.c: New file.
3776
3777         Tests for module 'unistr/u16-strncat'.
3778         * modules/unistr/u16-strncat-tests: New file.
3779         * tests/unistr/test-u16-strncat.c: New file.
3780
3781         Tests for module 'unistr/u8-strncat'.
3782         * modules/unistr/u8-strncat-tests: New file.
3783         * tests/unistr/test-u8-strncat.c: New file.
3784         * tests/unistr/test-strncat.h: New file.
3785
3786         Tests for module 'unistr/u32-strcat'.
3787         * modules/unistr/u32-strcat-tests: New file.
3788         * tests/unistr/test-u32-strcat.c: New file.
3789
3790         Tests for module 'unistr/u16-strcat'.
3791         * modules/unistr/u16-strcat-tests: New file.
3792         * tests/unistr/test-u16-strcat.c: New file.
3793
3794         Tests for module 'unistr/u8-strcat'.
3795         * modules/unistr/u8-strcat-tests: New file.
3796         * tests/unistr/test-u8-strcat.c: New file.
3797         * tests/unistr/test-strcat.h: New file.
3798
3799         Tests for module 'unistr/u32-stpncpy'.
3800         * modules/unistr/u32-stpncpy-tests: New file.
3801         * tests/unistr/test-u32-stpncpy.c: New file.
3802
3803         Tests for module 'unistr/u16-stpncpy'.
3804         * modules/unistr/u16-stpncpy-tests: New file.
3805         * tests/unistr/test-u16-stpncpy.c: New file.
3806
3807         Tests for module 'unistr/u8-stpncpy'.
3808         * modules/unistr/u8-stpncpy-tests: New file.
3809         * tests/unistr/test-u8-stpncpy.c: New file.
3810         * tests/unistr/test-stpncpy.h: New file.
3811
3812         Tests for module 'unistr/u32-strncpy'.
3813         * modules/unistr/u32-strncpy-tests: New file.
3814         * tests/unistr/test-u32-strncpy.c: New file.
3815
3816         Tests for module 'unistr/u16-strncpy'.
3817         * modules/unistr/u16-strncpy-tests: New file.
3818         * tests/unistr/test-u16-strncpy.c: New file.
3819
3820         Tests for module 'unistr/u8-strncpy'.
3821         * modules/unistr/u8-strncpy-tests: New file.
3822         * tests/unistr/test-u8-strncpy.c: New file.
3823         * tests/unistr/test-strncpy.h: New file.
3824
3825         Tests for module 'unistr/u32-stpcpy'.
3826         * modules/unistr/u32-stpcpy-tests: New file.
3827         * tests/unistr/test-u32-stpcpy.c: New file.
3828
3829         Tests for module 'unistr/u16-stpcpy'.
3830         * modules/unistr/u16-stpcpy-tests: New file.
3831         * tests/unistr/test-u16-stpcpy.c: New file.
3832
3833         Tests for module 'unistr/u8-stpcpy'.
3834         * modules/unistr/u8-stpcpy-tests: New file.
3835         * tests/unistr/test-u8-stpcpy.c: New file.
3836         * tests/unistr/test-stpcpy.h: New file.
3837
3838         Tests for module 'unistr/u32-strcpy'.
3839         * modules/unistr/u32-strcpy-tests: New file.
3840         * tests/unistr/test-u32-strcpy.c: New file.
3841
3842         Tests for module 'unistr/u16-strcpy'.
3843         * modules/unistr/u16-strcpy-tests: New file.
3844         * tests/unistr/test-u16-strcpy.c: New file.
3845
3846         Tests for module 'unistr/u8-strcpy'.
3847         * modules/unistr/u8-strcpy-tests: New file.
3848         * tests/unistr/test-u8-strcpy.c: New file.
3849         * tests/unistr/test-strcpy.h: New file.
3850
3851         Tests for module 'unistr/u32-strnlen'.
3852         * modules/unistr/u32-strnlen-tests: New file.
3853         * tests/unistr/test-u32-strnlen.c: New file.
3854
3855         Tests for module 'unistr/u16-strnlen'.
3856         * modules/unistr/u16-strnlen-tests: New file.
3857         * tests/unistr/test-u16-strnlen.c: New file.
3858
3859         Tests for module 'unistr/u8-strnlen'.
3860         * modules/unistr/u8-strnlen-tests: New file.
3861         * tests/unistr/test-u8-strnlen.c: New file.
3862         * tests/unistr/test-strnlen.h: New file.
3863
3864         Tests for module 'unistr/u32-strlen'.
3865         * modules/unistr/u32-strlen-tests: New file.
3866         * tests/unistr/test-u32-strlen.c: New file.
3867
3868         Tests for module 'unistr/u16-strlen'.
3869         * modules/unistr/u16-strlen-tests: New file.
3870         * tests/unistr/test-u16-strlen.c: New file.
3871
3872         Tests for module 'unistr/u8-strlen'.
3873         * modules/unistr/u8-strlen-tests: New file.
3874         * tests/unistr/test-u8-strlen.c: New file.
3875
3876         Tests for module 'unistr/u32-prev'.
3877         * modules/unistr/u32-prev-tests: New file.
3878         * tests/unistr/test-u32-prev.c: New file.
3879
3880         Tests for module 'unistr/u16-prev'.
3881         * modules/unistr/u16-prev-tests: New file.
3882         * tests/unistr/test-u16-prev.c: New file.
3883
3884         Tests for module 'unistr/u8-prev'.
3885         * modules/unistr/u8-prev-tests: New file.
3886         * tests/unistr/test-u8-prev.c: New file.
3887
3888         Tests for module 'unistr/u32-next'.
3889         * modules/unistr/u32-next-tests: New file.
3890         * tests/unistr/test-u32-next.c: New file.
3891
3892         Tests for module 'unistr/u16-next'.
3893         * modules/unistr/u16-next-tests: New file.
3894         * tests/unistr/test-u16-next.c: New file.
3895
3896         Tests for module 'unistr/u8-next'.
3897         * modules/unistr/u8-next-tests: New file.
3898         * tests/unistr/test-u8-next.c: New file.
3899
3900         Tests for module 'unistr/u32-strmbtouc'.
3901         * modules/unistr/u32-strmbtouc-tests: New file.
3902         * tests/unistr/test-u32-strmbtouc.c: New file.
3903
3904         Tests for module 'unistr/u16-strmbtouc'.
3905         * modules/unistr/u16-strmbtouc-tests: New file.
3906         * tests/unistr/test-u16-strmbtouc.c: New file.
3907
3908         Tests for module 'unistr/u8-strmbtouc'.
3909         * modules/unistr/u8-strmbtouc-tests: New file.
3910         * tests/unistr/test-u8-strmbtouc.c: New file.
3911
3912         Tests for module 'unistr/u32-strmblen'.
3913         * modules/unistr/u32-strmblen-tests: New file.
3914         * tests/unistr/test-u32-strmblen.c: New file.
3915
3916         Tests for module 'unistr/u16-strmblen'.
3917         * modules/unistr/u16-strmblen-tests: New file.
3918         * tests/unistr/test-u16-strmblen.c: New file.
3919
3920         Tests for module 'unistr/u8-strmblen'.
3921         * modules/unistr/u8-strmblen-tests: New file.
3922         * tests/unistr/test-u8-strmblen.c: New file.
3923
3924         Tests for module 'unistr/u32-cpy-alloc'.
3925         * modules/unistr/u32-cpy-alloc-tests: New file.
3926         * tests/unistr/test-u32-cpy-alloc.c: New file.
3927
3928         Tests for module 'unistr/u16-cpy-alloc'.
3929         * modules/unistr/u16-cpy-alloc-tests: New file.
3930         * tests/unistr/test-u16-cpy-alloc.c: New file.
3931
3932         Tests for module 'unistr/u8-cpy-alloc'.
3933         * modules/unistr/u8-cpy-alloc-tests: New file.
3934         * tests/unistr/test-u8-cpy-alloc.c: New file.
3935         * tests/unistr/test-cpy-alloc.h: New file.
3936
3937         Tests for module 'unistr/u32-mbsnlen'.
3938         * modules/unistr/u32-mbsnlen-tests: New file.
3939         * tests/unistr/test-u32-mbsnlen.c: New file.
3940
3941         Tests for module 'unistr/u16-mbsnlen'.
3942         * modules/unistr/u16-mbsnlen-tests: New file.
3943         * tests/unistr/test-u16-mbsnlen.c: New file.
3944
3945         Tests for module 'unistr/u8-mbsnlen'.
3946         * modules/unistr/u8-mbsnlen-tests: New file.
3947         * tests/unistr/test-u8-mbsnlen.c: New file.
3948
3949         Tests for module 'unistr/u32-chr'.
3950         * modules/unistr/u32-chr-tests: New file.
3951         * tests/unistr/test-u32-chr.c: New file.
3952
3953         Tests for module 'unistr/u16-chr'.
3954         * modules/unistr/u16-chr-tests: New file.
3955         * tests/unistr/test-u16-chr.c: New file.
3956
3957         Tests for module 'unistr/u8-chr'.
3958         * modules/unistr/u8-chr-tests: New file.
3959         * tests/unistr/test-u8-chr.c: New file.
3960         * tests/unistr/test-chr.h: New file, based on tests/test-memchr.c.
3961
3962         Tests for module 'unistr/u32-cmp2'.
3963         * modules/unistr/u32-cmp2-tests: New file.
3964         * tests/unistr/test-u32-cmp2.c: New file.
3965
3966         Tests for module 'unistr/u16-cmp2'.
3967         * modules/unistr/u16-cmp2-tests: New file.
3968         * tests/unistr/test-u16-cmp2.c: New file.
3969
3970         Tests for module 'unistr/u8-cmp2'.
3971         * modules/unistr/u8-cmp2-tests: New file.
3972         * tests/unistr/test-u8-cmp2.c: New file.
3973         * tests/unistr/test-cmp2.h: New file, based on tests/unistr/test-cmp.h.
3974
3975         Tests for module 'unistr/u32-cmp'.
3976         * modules/unistr/u32-cmp-tests: New file.
3977         * tests/unistr/test-u32-cmp.c: New file.
3978
3979         Tests for module 'unistr/u16-cmp'.
3980         * modules/unistr/u16-cmp-tests: New file.
3981         * tests/unistr/test-u16-cmp.c: New file.
3982
3983         Tests for module 'unistr/u8-cmp'.
3984         * modules/unistr/u8-cmp-tests: New file.
3985         * tests/unistr/test-u8-cmp.c: New file.
3986         * tests/unistr/test-cmp.h: New file, based on tests/test-memcmp.c.
3987
3988         Tests for module 'unistr/u32-set'.
3989         * modules/unistr/u32-set-tests: New file.
3990         * tests/unistr/test-u32-set.c: New file.
3991
3992         Tests for module 'unistr/u16-set'.
3993         * modules/unistr/u16-set-tests: New file.
3994         * tests/unistr/test-u16-set.c: New file.
3995
3996         Tests for module 'unistr/u8-set'.
3997         * modules/unistr/u8-set-tests: New file.
3998         * tests/unistr/test-u8-set.c: New file.
3999         * tests/unistr/test-set.h: New file.
4000
4001         Tests for module 'unistr/u32-move'.
4002         * modules/unistr/u32-move-tests: New file.
4003         * tests/unistr/test-u32-move.c: New file.
4004
4005         Tests for module 'unistr/u16-move'.
4006         * modules/unistr/u16-move-tests: New file.
4007         * tests/unistr/test-u16-move.c: New file.
4008
4009         Tests for module 'unistr/u8-move'.
4010         * modules/unistr/u8-move-tests: New file.
4011         * tests/unistr/test-u8-move.c: New file.
4012         * tests/unistr/test-move.h: New file.
4013
4014         Tests for module 'unistr/u32-cpy'.
4015         * modules/unistr/u32-cpy-tests: New file.
4016         * tests/unistr/test-u32-cpy.c: New file.
4017
4018         Tests for module 'unistr/u16-cpy'.
4019         * modules/unistr/u16-cpy-tests: New file.
4020         * tests/unistr/test-u16-cpy.c: New file.
4021
4022         Tests for module 'unistr/u8-cpy'.
4023         * modules/unistr/u8-cpy-tests: New file.
4024         * tests/unistr/test-u8-cpy.c: New file.
4025         * tests/unistr/test-cpy.h: New file.
4026
4027 2010-01-09  Bruno Haible  <bruno@clisp.org>
4028
4029         Tests for module 'unistr/u32-uctomb'.
4030         * modules/unistr/u32-uctomb-tests: New file.
4031         * tests/unistr/test-u32-uctomb.c: New file.
4032
4033         Tests for module 'unistr/u16-uctomb'.
4034         * modules/unistr/u16-uctomb-tests: New file.
4035         * tests/unistr/test-u16-uctomb.c: New file.
4036
4037         Tests for module 'unistr/u8-uctomb'.
4038         * modules/unistr/u8-uctomb-tests: New file.
4039         * tests/unistr/test-u8-uctomb.c: New file.
4040
4041         Tests for module 'unistr/u32-mbtoucr'.
4042         * modules/unistr/u32-mbtoucr-tests: New file.
4043         * tests/unistr/test-u32-mbtoucr.c: New file.
4044
4045         Tests for module 'unistr/u16-mbtoucr'.
4046         * modules/unistr/u16-mbtoucr-tests: New file.
4047         * tests/unistr/test-u16-mbtoucr.c: New file.
4048
4049         Tests for module 'unistr/u8-mbtoucr'.
4050         * modules/unistr/u8-mbtoucr-tests: New file.
4051         * tests/unistr/test-u8-mbtoucr.c: New file.
4052
4053         Tests for module 'unistr/u32-mbtouc'.
4054         * modules/unistr/u32-mbtouc-tests: New file.
4055         * tests/unistr/test-u32-mbtouc.c: New file.
4056
4057         Tests for module 'unistr/u16-mbtouc'.
4058         * modules/unistr/u16-mbtouc-tests: New file.
4059         * tests/unistr/test-u16-mbtouc.c: New file.
4060
4061         Tests for module 'unistr/u8-mbtouc'.
4062         * modules/unistr/u8-mbtouc-tests: New file.
4063         * tests/unistr/test-u8-mbtouc.c: New file.
4064
4065         Tests for module 'unistr/u32-mbtouc-unsafe'.
4066         * modules/unistr/u32-mbtouc-unsafe-tests: New file.
4067         * tests/unistr/test-u32-mbtouc-unsafe.c: New file.
4068         * tests/unistr/test-u32-mbtouc.h: New file.
4069
4070         Tests for module 'unistr/u16-mbtouc-unsafe'.
4071         * modules/unistr/u16-mbtouc-unsafe-tests: New file.
4072         * tests/unistr/test-u16-mbtouc-unsafe.c: New file.
4073         * tests/unistr/test-u16-mbtouc.h: New file.
4074
4075         Tests for module 'unistr/u8-mbtouc-unsafe'.
4076         * modules/unistr/u8-mbtouc-unsafe-tests: New file.
4077         * tests/unistr/test-u8-mbtouc-unsafe.c: New file.
4078         * tests/unistr/test-u8-mbtouc.h: New file.
4079
4080         Tests for module 'unistr/u32-mblen'.
4081         * modules/unistr/u32-mblen-tests: New file.
4082         * tests/unistr/test-u32-mblen.c: New file.
4083
4084         Tests for module 'unistr/u16-mblen'.
4085         * modules/unistr/u16-mblen-tests: New file.
4086         * tests/unistr/test-u16-mblen.c: New file.
4087
4088         Tests for module 'unistr/u8-mblen'.
4089         * modules/unistr/u8-mblen-tests: New file.
4090         * tests/unistr/test-u8-mblen.c: New file.
4091
4092         Tests for module 'unistr/u32-to-u16'.
4093         * modules/unistr/u32-to-u16-tests: New file.
4094         * tests/unistr/test-u32-to-u16.c: New file.
4095
4096         Tests for module 'unistr/u32-to-u8'.
4097         * modules/unistr/u32-to-u8-tests: New file.
4098         * tests/unistr/test-u32-to-u8.c: New file.
4099
4100         Tests for module 'unistr/u16-to-u32'.
4101         * modules/unistr/u16-to-u32-tests: New file.
4102         * tests/unistr/test-u16-to-u32.c: New file.
4103
4104         Tests for module 'unistr/u16-to-u8'.
4105         * modules/unistr/u16-to-u8-tests: New file.
4106         * tests/unistr/test-u16-to-u8.c: New file.
4107
4108         Tests for module 'unistr/u8-to-u32'.
4109         * modules/unistr/u8-to-u32-tests: New file.
4110         * tests/unistr/test-u8-to-u32.c: New file.
4111
4112         Tests for module 'unistr/u8-to-u16'.
4113         * modules/unistr/u8-to-u16-tests: New file.
4114         * tests/unistr/test-u8-to-u16.c: New file.
4115
4116         Tests for module 'unistr/u32-check'.
4117         * modules/unistr/u32-check-tests: New file.
4118         * tests/unistr/test-u32-check.c: New file.
4119
4120         Tests for module 'unistr/u16-check'.
4121         * modules/unistr/u16-check-tests: New file.
4122         * tests/unistr/test-u16-check.c: New file.
4123
4124         Tests for module 'unistr/u8-check'.
4125         * modules/unistr/u8-check-tests: New file.
4126         * tests/unistr/test-u8-check.c: New file.
4127
4128         * tests/unictype/test-categ_byname.c: Include <stdbool.h>.
4129         (category_equals): New function.
4130         (main): Add more tests.
4131         * modules/unictype/category-byname-tests (Depends-on): Add stdbool.
4132
4133         * tests/unictype/test-bidi_byname.c (main): Add more tests.
4134
4135 2010-01-10  Bruno Haible  <bruno@clisp.org>
4136
4137         unistr/u*-strcoll: Try harder to distinguish different strings.
4138         * lib/unistr/u-strcoll.h (FUNC): When sl1 and sl2 are the same,
4139         compare s1 and s2 to see if they are different.
4140
4141 2010-01-10  Bruno Haible  <bruno@clisp.org>
4142
4143         unistr/u*-stpncpy: Fix the return value.
4144         * lib/unistr.h (u8_stpncpy, u16_stpncpy, u32_stpncpy): Make the
4145         description of the return value consistent with stpncpy in glibc.
4146         * lib/unistr/u-stpncpy.h (FUNC): Return the pointer past the last
4147         written non-NUL unit.
4148
4149 2010-01-10  Bruno Haible  <bruno@clisp.org>
4150
4151         unistr/u*-next: Add missing dependencies.
4152         * modules/unistr/u8-next (Depends-on): Add unistr/u8-strmbtouc.
4153         * modules/unistr/u16-next (Depends-on): Add unistr/u16-strmbtouc.
4154         * modules/unistr/u32-next (Depends-on): Add unistr/u32-strmbtouc.
4155
4156 2010-01-10  Bruno Haible  <bruno@clisp.org>
4157
4158         unistr/u8-mbsnlen: Fix return value for incomplete character.
4159         * lib/unistr/u8-mbsnlen.c (u8_mbsnlen): Use u8_mbtoucr instead of
4160         u8_mblen.
4161         * modules/unistr/u8-mbsnlen (Depends-on): Add unistr/u8-mbtoucr.
4162         Remove unistr/u8-mblen.
4163         * lib/unistr/u16-mbsnlen.c (u16_mbsnlen): Use u16_mbtoucr instead of
4164         u16_mblen.
4165         * modules/unistr/u16-mbsnlen (Depends-on): Add unistr/u16-mbtoucr.
4166         Remove unistr/u16-mblen.
4167
4168 2010-01-10  Bruno Haible  <bruno@clisp.org>
4169
4170         wchar: Fix compilation error when <wchar.h> is used from coreutils.
4171         * lib/wchar.in.h: Treat __need_wint_t like __need_mbstate_t.
4172         Reported by Brian Gough <bjg@gnu.org> and
4173         Chris Clayton <chris2553@googlemail.com> via
4174         Mike Frysinger <vapier@gentoo.org> and Jim Meyering <jim@meyering.net>.
4175
4176 2010-01-09  Bruno Haible  <bruno@clisp.org>
4177
4178         unistr/u16-to-u32: Reject invalid input.
4179         * lib/unistr/u16-to-u32.c (u16_to_u32): Call u16_mbtoucr instead of
4180         u16_mbtouc.
4181         * modules/unistr/u16-to-u32 (Depends-on): Add unistr/u16-mbtoucr.
4182         Remove unistr/u16-mbtouc.
4183
4184         unistr/u16-to-u8: Reject invalid input.
4185         * lib/unistr/u16-to-u8.c (u16_to_u8): Call u16_mbtoucr instead of
4186         u16_mbtouc.
4187         * modules/unistr/u16-to-u8 (Depends-on): Add unistr/u16-mbtoucr.
4188         Remove unistr/u16-mbtouc.
4189
4190         unistr/u8-to-u32: Reject invalid input.
4191         * lib/unistr/u8-to-u32.c (u8_to_u32): Call u8_mbtoucr instead of
4192         u8_mbtouc.
4193         * modules/unistr/u8-to-u32 (Depends-on): Add unistr/u8-mbtoucr.
4194         Remove unistr/u8-mbtouc.
4195
4196         unistr/u8-to-u16: Reject invalid input.
4197         * lib/unistr/u8-to-u16.c (u8_to_u16): Call u8_mbtoucr instead of
4198         u8_mbtouc.
4199         * modules/unistr/u8-to-u16 (Depends-on): Add unistr/u8-mbtoucr.
4200         Remove unistr/u8-mbtouc.
4201
4202 2010-01-09  Bruno Haible  <bruno@clisp.org>
4203
4204         Tests for module 'getlogin'.
4205         * modules/getlogin-tests: New file.
4206         * tests/test-getlogin.c: New file.
4207
4208         New module 'getlogin'.
4209         * lib/unistd.in.h (getlogin): New declaration.
4210         * lib/getlogin.c: New file.
4211         * m4/getlogin.m4: New file.
4212         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETLOGIN,
4213         HAVE_GETLOGIN.
4214         * modules/unistd (Makefile.am): Substitute GNULIB_GETLOGIN,
4215         HAVE_GETLOGIN.
4216         * modules/getlogin: New file.
4217         * doc/posix-functions/getlogin.texi: Mention the new module.
4218         Reported by John W. Eaton <jwe@gnu.org>.
4219
4220 2010-01-09  Bruno Haible  <bruno@clisp.org>
4221
4222         getlogin_r: Support for native Windows.
4223         * lib/getlogin_r.c: Include <windows.h>
4224         (getlogin_r): Implement for native Windows.
4225         * tests/test-getlogin_r.c (main): Also test with a huge buffer.
4226         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>
4227         via John W. Eaton <jwe@gnu.org>.
4228
4229 2010-01-09  Bruno Haible  <bruno@clisp.org>
4230
4231         getlogin_r: Small fixes.
4232         * lib/getlogin_r.c (getlogin_r): Don't set errno if the function
4233         succeeds.
4234         * m4/getlogin_r.m4 (gl_GETLOGIN_R): Require gl_USE_SYSTEM_EXTENSIONS
4235         before testing whether getlogin_r is declared. No need to set
4236         HAVE_DECL_GETLOGIN_R to 1.
4237         (gl_PREREQ_GETLOGIN_R): Don't check for the getlogin_r declaration.
4238
4239 2010-01-09  Bruno Haible  <bruno@clisp.org>
4240
4241         * lib/unistd.in.h (getlogin_r): Add comment.
4242
4243 2010-01-09  Bruno Haible  <bruno@clisp.org>
4244
4245         Tests for module 'getlogin_r'.
4246         * modules/getlogin_r-tests: New file.
4247         * tests/test-getlogin_r.c: New file.
4248
4249 2010-01-09  Jim Meyering  <meyering@redhat.com>
4250
4251         maint.mk: extend proper_name_utf8-vs-LIBICONV-checking rule
4252         * top/maint.mk (sc_proper_name_utf8_requires_ICONV): Adapt to work
4253         also when $(LIBICONV) is part of LDADD, rather than ${prog}_LDADD.
4254
4255 2010-01-08  Simon Josefsson  <simon@josefsson.org>
4256
4257         * lib/dup2.c (rpl_dup2): Improve comment.
4258
4259 2010-01-08  Eric Blake  <ebb9@byu.net>
4260
4261         maint.mk: allow packages to add makefile @@ exceptions
4262         * top/maint.mk (_makefile_at_at_check_exceptions): New hook.
4263         (sc_makefile_check): Rename...
4264         (sc_makefile_at_at_check): ...to this, and use hook.
4265
4266         dup2: work around mingw bug
4267         * lib/dup2.c (rpl_dup2): Sanitize return value on mingw.
4268         Reported by Simon Josefsson.
4269
4270 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
4271
4272         glob: Fix C++ compilation.
4273         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
4274         C++.
4275
4276 2010-01-07  Bruno Haible  <bruno@clisp.org>
4277
4278         Fix indentation of wctype.in.h, broken since 2007-01-06.
4279         * lib/wctype.in.h: Fix indentation of preprocessor directives.
4280
4281 2010-01-07  Bruno Haible  <bruno@clisp.org>
4282
4283         mbslen: Avoid collision with system function.
4284         * lib/string.in.h [MirBSD]: Include <wchar.h>.
4285         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
4286         * m4/mbslen.m4: New file.
4287         * modules/mbslen (Files): Add it.
4288         (configure.ac): Invoke gl_MBSLEN.
4289         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
4290         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
4291         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
4292         via Ian Beckwith <ianb@erislabs.net>.
4293
4294 2010-01-07  Bruno Haible  <bruno@clisp.org>
4295
4296         dirent: Document the last fix.
4297         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
4298
4299 2010-01-07  Bruno Haible  <bruno@clisp.org>
4300
4301         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
4302         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
4303         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
4304         va_list are defined.
4305         * doc/posix-headers/stdio.texi: Document the bug of missing types.
4306         Reported by Eric Blake.
4307
4308 2010-01-07  Bruno Haible  <bruno@clisp.org>
4309
4310         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
4311         * modules/xlist (Depends-on): Add 'list',
4312         * modules/xoset (Depends-on): Add 'oset'.
4313         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4314
4315 2010-01-07  Bruno Haible  <bruno@clisp.org>
4316
4317         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
4318         * doc/posix-functions/strncasecmp.texi: Likewise.
4319
4320 2010-01-07  Bruno Haible  <bruno@clisp.org>
4321
4322         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
4323
4324 2010-01-07  John W. Eaton  <jwe@octave.org>
4325
4326         wctype: allow C++ use
4327         * lib/wctype.in.h: Add extern "C" block for C++.
4328
4329 2010-01-06  Eric Blake  <ebb9@byu.net>
4330
4331         maint.mk: detect incorrect GFDL usage
4332         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
4333
4334 2010-01-06  Jim Meyering  <meyering@redhat.com>
4335         and Eric Blake  <ebb9@byu.net>
4336
4337         maint.mk: ignore multi-line copyright in NEWS
4338         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
4339
4340 2010-01-06  Eric Blake  <ebb9@byu.net>
4341
4342         select: add missing dependency
4343         * modules/select-tests (Depends-on): Move sockets dependency...
4344         * modules/select (Depends-on): ...here.
4345         Reported by Ian Beckwith.
4346
4347         doc: regenerate INSTALL
4348         * doc/INSTALL: Reflect recent autoconf update.
4349         * doc/INSTALL.ISO: Likewise.
4350         * doc/INSTALL.UTF-8: Likewise.
4351
4352         pread: fix compilation on glibc
4353         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
4354         Reported by Ralf Wildenhues.
4355
4356         dirent: fix test failure
4357         * lib/dirent.in.h (includes): Guarantee ino_t.
4358         Reported by Ralf Wildenhues.
4359
4360 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
4361
4362         linkat, renameat: avoid bad free
4363         * lib/at-func2.c (at_func2): Fix typo.
4364         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
4365
4366 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4367
4368         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
4369         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
4370         to avoid failure of symlink test later.
4371
4372 2010-01-06  Eric Blake  <ebb9@byu.net>
4373
4374         stdio, unistd: guarantee ssize_t
4375         * lib/unistd.in.h (includes): Ensure that types required by POSIX
4376         2008 are exposed when needed.
4377         * lib/stdio.in.h (includes): Likewise.
4378         Reported by Ralf Wildenhues.
4379
4380 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
4381
4382         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
4383         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
4384         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
4385
4386 2010-01-06  Jim Meyering  <meyering@redhat.com>
4387
4388         readtokens: this module *does* require xalloc.h
4389         It uses only functions that were omitted by the old syntax-check rule.
4390         * lib/readtokens.c: Include "xalloc.h" once again.
4391         * modules/readtokens (Depends-on): Add xalloc.
4392         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
4393
4394 2010-01-05  Eric Blake  <ebb9@byu.net>
4395
4396         maint: support 'make announcement' from a VPATH build
4397         * top/maint.mk (announcement): Look for correct NEWS file.
4398
4399 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
4400
4401         utimens (fdutimens): ignore a negative FD, per contract
4402         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
4403         when we have a valid file descriptor.  Otherwise, using a brand
4404         new glibc (with just-patched futimens that now fails with EBADF)
4405         would cause this function to fail with ENOSYS.
4406         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
4407         See also http://bugzilla.redhat.com/552320.
4408
4409 2010-01-05  Eric Blake  <ebb9@byu.net>
4410
4411         strcase: document what it provides
4412         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
4413         gnulib module.
4414         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
4415         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
4416
4417 2010-01-05  Jim Meyering  <meyering@redhat.com>
4418
4419         maint: remove useless inclusions of "xalloc.h"
4420         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
4421         * lib/readtokens.c: Likewise.
4422         * lib/same.c: Likewise.
4423         * modules/getloadavg (Depends-on): Remove xalloc.
4424         * modules/readtokens: Likewise.
4425         * modules/same: Likewise.
4426
4427         maint.mk: include 4 more function names in alloca.h-checking regexp
4428         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
4429         regexp.  Before, we would give a false-positive (saying alloca.h
4430         is included unnecessarily) when the only uses involved omitted symbols.
4431
4432         xalloc.h: use consistent formatting
4433         * lib/xalloc.h: Move declarations to start in the first column.
4434
4435 2010-01-05  Eric Blake  <ebb9@byu.net>
4436
4437         mkdir: avoid xalloc
4438         * lib/mkdir.c (includes): Drop unused header.
4439         Reported by John W. Eaton.
4440
4441 2010-01-04  Jim Meyering  <meyering@redhat.com>
4442
4443         nl_langinfo: avoid configure-time syntax error
4444         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
4445         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
4446         the empty string.  Don't let that provoke a shell syntax error.
4447
4448         regcomp, regexec, fnmatch: avoid array bounds read error
4449         * lib/regcomp.c (build_equiv_class): From glibc:
4450         Use only the low 24 bits of a findidx return value as an index
4451         into the weights array.  Patch by Ulrich Drepper:
4452         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
4453         * lib/regexec.c (check_node_accept_bytes): Likewise.
4454         * lib/fnmatch_loop.c (FCT): Likewise.
4455
4456         regcomp: skip collseq lookup when there are no rules
4457         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
4458         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
4459
4460         regcomp: recognize ill-formed { } expressions
4461         * lib/regcomp.c (parse_dup_op): From glibc:
4462         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
4463
4464         regcomp: fix typo in comment
4465         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
4466         s/satisfy/satisfies/.
4467
4468         regcomp: sync from glibc: remove dead store
4469         * lib/regcomp.c (duplicate_node_closure): Remove useless
4470         search_duplicated_node call and dead store.
4471
4472         regcomp: sync from glibc; always use nl_langinfo
4473         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
4474         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
4475         * modules/regex (Depends-on): Add nl_langinfo.
4476
4477 2010-01-04  Eric Blake  <ebb9@byu.net>
4478
4479         fdopendir: fix configure test
4480         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
4481
4482 2010-01-01  Bruno Haible  <bruno@clisp.org>
4483
4484         wchar: Remove unused configure check.
4485         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
4486
4487 2010-01-01  Eric Blake  <ebb9@byu.net>
4488
4489         headers: make check of system header explicit
4490         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
4491         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
4492         ourselves.
4493         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
4494         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4495         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
4496         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
4497         internals.
4498         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
4499         missing.
4500         Suggested by Bruno Haible.
4501
4502 2010-01-01  Jim Meyering  <meyering@redhat.com>
4503
4504         ChangeLog: tweak to eliminate unnecessary copyright line
4505         * ChangeLog: Remove a copyright line that was mistakenly updated
4506         by today's update-copyright run.  Reported by Eric Blake.
4507
4508         test-update-copyright: don't let envvar setting cause test failure
4509         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
4510
4511 2010-01-01  Bruno Haible  <bruno@clisp.org>
4512
4513         localename: Avoid gcc warning.
4514         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
4515         function if it is not used.
4516
4517 2010-01-01  Jim Meyering  <meyering@redhat.com>
4518
4519         update nearly all FSF copyright year lists to include 2010
4520         Use the same procedure as for 2009, outlined in
4521         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
4522
4523         version-etc: set COPYRIGHT_YEAR to 2010
4524         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
4525
4526 2009-12-31  Eric Blake  <ebb9@byu.net>
4527
4528         doc: correct availability of cygwin 1.5.x getopt
4529         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
4530         variables.
4531         * doc/posix-functions/opterr.texi (opterr): Likewise.
4532         * doc/posix-functions/optind.texi (optind): Likewise.
4533         * doc/posix-functions/optopt.texi (optopt): Likewise.
4534         * doc/posix-functions/tzname.texi (tzname): Likewise.
4535
4536         openat: update maintainer
4537         * modules/openat (Maintainer): Add myself.
4538
4539         utimens: avoid shadowing warning
4540         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
4541         buffers into one, to avoid shadowing, as well as avoiding a
4542         redundant stat.
4543         Reported by Jim Meyering.
4544
4545         test-dup2: avoid compiler warning
4546         * tests/test-dup2.c (is_inheritable): Only define if used.
4547
4548 2010-01-01  Bruno Haible  <bruno@clisp.org>
4549
4550         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
4551         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
4552         defined, use wctomb instead of wcrtomb.
4553
4554 2010-01-01  Bruno Haible  <bruno@clisp.org>
4555
4556         iconv: Reject native Solaris iconv.
4557         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
4558         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
4559
4560 2009-12-31  Bruno Haible  <bruno@clisp.org>
4561
4562         * tests/test-signal.c (main): Remove test of 'SIG'.
4563
4564 2009-12-31  Bruno Haible  <bruno@clisp.org>
4565
4566         spawn: Fix incomplete fix.
4567         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4568         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4569         warnings for GNULIB_POSIXCHECK again.
4570         Reported by Eric Blake.
4571
4572 2009-12-31  Bruno Haible  <bruno@clisp.org>
4573
4574         Avoid namespace pollution on glibc systems.
4575         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
4576         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
4577         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
4578         glibc systems.
4579
4580 2009-12-31  Bruno Haible  <bruno@clisp.org>
4581
4582         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
4583         (gl_REPLACE_WCHAR_H): Turn into a no-op.
4584         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
4585         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
4586         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
4587         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
4588         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
4589
4590 2009-12-31  Bruno Haible  <bruno@clisp.org>
4591
4592         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
4593         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
4594         afterwards.
4595
4596 2009-12-31  Bruno Haible  <bruno@clisp.org>
4597
4598         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
4599         SYS_UTSNAME_H.
4600
4601 2009-12-31  Bruno Haible  <bruno@clisp.org>
4602
4603         spawn: Fix misapplied patch.
4604         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
4605         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
4606         warnings for GNULIB_POSIXCHECK.
4607
4608 2009-12-31  Bruno Haible  <bruno@clisp.org>
4609
4610         times: Update after sys_times changed.
4611         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
4612         * modules/times (Files): Add it.
4613         (configure.ac): Invoke gl_FUNC_TIMES.
4614
4615 2009-12-31  Bruno Haible  <bruno@clisp.org>
4616
4617         Use AC_C_INLINE where necessary.
4618         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
4619         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
4620         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
4621         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
4622         * m4/mbfile.m4 (gl_MBFILE): Likewise.
4623         * m4/mbiter.m4 (gl_MBITER): Likewise.
4624         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
4625         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
4626         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
4627         * modules/u64 (configure.ac): Likewise.
4628
4629 2009-12-31  Bruno Haible  <bruno@clisp.org>
4630
4631         Use AC_C_INLINE instead of module 'inline' where possible.
4632         * modules/inline (Description): Clarify purpose.
4633         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
4634         * modules/count-one-bits (Depends-on): Remove inline.
4635         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
4636         * modules/openat (Depends-on): Remove inline.
4637         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
4638         instead of depending on module 'inline'.
4639         * modules/filevercmp (Depends-on, configure.ac): Likewise.
4640         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
4641         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
4642         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
4643         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
4644         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
4645         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
4646         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
4647         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
4648         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
4649         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
4650         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
4651         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
4652         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
4653         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
4654         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
4655         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
4656         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
4657         Likewise.
4658         * modules/unictype/property-ascii-hex-digit (Depends-on,
4659         configure.ac): Likewise.
4660         * modules/unictype/property-bidi-arabic-digit (Depends-on,
4661         configure.ac): Likewise.
4662         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
4663         configure.ac): Likewise.
4664         * modules/unictype/property-bidi-block-separator (Depends-on,
4665         configure.ac): Likewise.
4666         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
4667         configure.ac): Likewise.
4668         * modules/unictype/property-bidi-common-separator (Depends-on,
4669         configure.ac): Likewise.
4670         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
4671         Likewise.
4672         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
4673         configure.ac): Likewise.
4674         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
4675         configure.ac): Likewise.
4676         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
4677         configure.ac): Likewise.
4678         * modules/unictype/property-bidi-european-digit (Depends-on,
4679         configure.ac): Likewise.
4680         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
4681         configure.ac): Likewise.
4682         * modules/unictype/property-bidi-left-to-right (Depends-on,
4683         configure.ac): Likewise.
4684         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
4685         configure.ac): Likewise.
4686         * modules/unictype/property-bidi-other-neutral (Depends-on,
4687         configure.ac): Likewise.
4688         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
4689         Likewise.
4690         * modules/unictype/property-bidi-segment-separator (Depends-on,
4691         configure.ac): Likewise.
4692         * modules/unictype/property-bidi-whitespace (Depends-on,
4693         configure.ac): Likewise.
4694         * modules/unictype/property-combining (Depends-on, configure.ac):
4695         Likewise.
4696         * modules/unictype/property-composite (Depends-on, configure.ac):
4697         Likewise.
4698         * modules/unictype/property-currency-symbol (Depends-on,
4699         configure.ac): Likewise.
4700         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
4701         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
4702         Likewise.
4703         * modules/unictype/property-default-ignorable-code-point (Depends-on,
4704         configure.ac): Likewise.
4705         * modules/unictype/property-deprecated (Depends-on, configure.ac):
4706         Likewise.
4707         * modules/unictype/property-diacritic (Depends-on, configure.ac):
4708         Likewise.
4709         * modules/unictype/property-extender (Depends-on, configure.ac):
4710         Likewise.
4711         * modules/unictype/property-format-control (Depends-on, configure.ac):
4712         Likewise.
4713         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
4714         Likewise.
4715         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
4716         Likewise.
4717         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
4718         Likewise.
4719         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
4720         Likewise.
4721         * modules/unictype/property-hyphen (Depends-on, configure.ac):
4722         Likewise.
4723         * modules/unictype/property-id-continue (Depends-on, configure.ac):
4724         Likewise.
4725         * modules/unictype/property-id-start (Depends-on, configure.ac):
4726         Likewise.
4727         * modules/unictype/property-ideographic (Depends-on, configure.ac):
4728         Likewise.
4729         * modules/unictype/property-ids-binary-operator (Depends-on,
4730         configure.ac): Likewise.
4731         * modules/unictype/property-ids-trinary-operator (Depends-on,
4732         configure.ac): Likewise.
4733         * modules/unictype/property-ignorable-control (Depends-on,
4734         configure.ac): Likewise.
4735         * modules/unictype/property-iso-control (Depends-on, configure.ac):
4736         Likewise.
4737         * modules/unictype/property-join-control (Depends-on, configure.ac):
4738         Likewise.
4739         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
4740         Likewise.
4741         * modules/unictype/property-line-separator (Depends-on, configure.ac):
4742         Likewise.
4743         * modules/unictype/property-logical-order-exception (Depends-on,
4744         configure.ac): Likewise.
4745         * modules/unictype/property-lowercase (Depends-on, configure.ac):
4746         Likewise.
4747         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
4748         * modules/unictype/property-non-break (Depends-on, configure.ac):
4749         Likewise.
4750         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
4751         Likewise.
4752         * modules/unictype/property-numeric (Depends-on, configure.ac):
4753         Likewise.
4754         * modules/unictype/property-other-alphabetic (Depends-on,
4755         configure.ac): Likewise.
4756         * modules/unictype/property-other-default-ignorable-code-point
4757         (Depends-on, configure.ac): Likewise.
4758         * modules/unictype/property-other-grapheme-extend (Depends-on,
4759         configure.ac): Likewise.
4760         * modules/unictype/property-other-id-continue (Depends-on,
4761         configure.ac): Likewise.
4762         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
4763         Likewise.
4764         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
4765         Likewise.
4766         * modules/unictype/property-other-math (Depends-on, configure.ac):
4767         Likewise.
4768         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
4769         Likewise.
4770         * modules/unictype/property-paired-punctuation (Depends-on,
4771         configure.ac): Likewise.
4772         * modules/unictype/property-paragraph-separator (Depends-on,
4773         configure.ac): Likewise.
4774         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
4775         Likewise.
4776         * modules/unictype/property-pattern-white-space (Depends-on,
4777         configure.ac): Likewise.
4778         * modules/unictype/property-private-use (Depends-on, configure.ac):
4779         Likewise.
4780         * modules/unictype/property-punctuation (Depends-on, configure.ac):
4781         Likewise.
4782         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
4783         Likewise.
4784         * modules/unictype/property-radical (Depends-on, configure.ac):
4785         Likewise.
4786         * modules/unictype/property-sentence-terminal (Depends-on,
4787         configure.ac): Likewise.
4788         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
4789         Likewise.
4790         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
4791         * modules/unictype/property-terminal-punctuation (Depends-on,
4792         configure.ac): Likewise.
4793         * modules/unictype/property-titlecase (Depends-on, configure.ac):
4794         Likewise.
4795         * modules/unictype/property-unassigned-code-value (Depends-on,
4796         configure.ac): Likewise.
4797         * modules/unictype/property-unified-ideograph (Depends-on,
4798         configure.ac): Likewise.
4799         * modules/unictype/property-uppercase (Depends-on, configure.ac):
4800         Likewise.
4801         * modules/unictype/property-variation-selector (Depends-on,
4802         configure.ac): Likewise.
4803         * modules/unictype/property-white-space (Depends-on, configure.ac):
4804         Likewise.
4805         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
4806         Likewise.
4807         * modules/unictype/property-xid-start (Depends-on, configure.ac):
4808         Likewise.
4809         * modules/unictype/property-zero-width (Depends-on, configure.ac):
4810         Likewise.
4811         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
4812         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
4813         Likewise.
4814
4815 2009-12-31  Bruno Haible  <bruno@clisp.org>
4816
4817         Remove unnecessary AC_C_INLINE invocation.
4818         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
4819         since 2009-08-21.
4820
4821 2009-12-31  Jim Meyering  <meyering@redhat.com>
4822
4823         maint.mk: don't require explicit gpg_key_ID in cfg.mk
4824         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
4825         With this change, we can all remove the gpg_key_ID = ... definition
4826         from our respective cfg.mk files.
4827
4828         maint.mk: create announcement template in ~/, not in /tmp
4829         * top/maint.mk (emit_upload_commands): Adjust.
4830         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
4831         Remove temporary file, .ci-msg.
4832
4833 2009-12-31  Eric Blake  <ebb9@byu.net>
4834
4835         link-warning: always build headers with link warnings
4836         * modules/arpa_inet (Makefile.am): Always build replacement
4837         header.
4838         * modules/ctype (Makefile.am): Likewise.
4839         * modules/dirent (Makefile.am): Likewise.
4840         * modules/inttypes (Makefile.am): Likewise.
4841         * modules/langinfo (Makefile.am): Likewise.
4842         * modules/locale (Makefile.am): Likewise.
4843         * modules/spawn (Makefile.am): Likewise.
4844         * modules/sys_file (Makefile.am): Likewise.
4845         * modules/sys_ioctl (Makefile.am): Likewise.
4846         * modules/sys_select (Makefile.am): Likewise.
4847         * modules/sys_socket (Makefile.am): Likewise.
4848         * modules/sys_times (Makefile.am): Likewise.
4849         * modules/sys_utsname (Makefile.am): Likewise.
4850         * modules/sys_wait (Makefile.am): Likewise.
4851         * modules/wchar (Makefile.am): Likewise.
4852         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
4853         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
4854         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
4855         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
4856         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
4857         Likewise.
4858         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4859         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
4860         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
4861         Likewise.
4862         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
4863         Likewise.
4864         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
4865         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
4866         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
4867         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4868         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
4869         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
4870         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
4871         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
4872         (gl_WCHAR_H_DEFAULTS): Likewise.
4873
4874 2009-12-31  Eric Blake  <ebb9@byu.net>
4875
4876         signal, spawn: use link warnings
4877         * lib/signal.in.h (sigset_t): Make unconditional.
4878         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
4879         (sigpending, sigprocmask, sigaction): Add link warnings.
4880         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
4881         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
4882         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
4883         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
4884         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
4885         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
4886         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
4887         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
4888         (posix_spawn_file_actions_destroy)
4889         (posix_spawn_file_actions_addopen)
4890         (posix_spawn_file_actions_addclose)
4891         (posix_spawn_file_actions_adddup2): Likewise.
4892         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
4893         * tests/test-signal.c (main): Enhance test.
4894
4895         spawn: improve wrapper support
4896         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
4897         (gl_SPAWN_H_DEFAULTS): New defaults.
4898         * modules/spawn (Makefile.am): Substitute them.
4899         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
4900         Only declare if missing or broken.
4901
4902         sys_times, sys_utsname: use include_next
4903         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
4904         header.
4905         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
4906         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
4907         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
4908         * modules/sys_times (Depends-on): Add include_next.
4909         (Makefile.am): Substitute additional values.
4910         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
4911         * lib/sys_times.in.h (includes): Include native header, if
4912         available.
4913         * lib/sys_utsname.in.h (includes): Likewise.
4914         * tests/test-sys_times.c (main): Enhance test.
4915
4916         fdutimensat: revert prior patch
4917         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
4918         utimens.h.
4919         Reported by Bruno Haible.
4920
4921 2009-12-30  Eric Blake  <ebb9@byu.net>
4922
4923         sys_wait: drop link-warning dependency
4924         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
4925         link-warning efforts.
4926         * lib/sys_wait.in.h: Likewise.
4927
4928         fdutimensat: remove bogus dependency
4929         * modules/fdutimensat (Depends-on): Drop inline.
4930
4931         unistd: fix typo
4932         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
4933
4934 2009-12-30  Bruno Haible  <bruno@clisp.org>
4935
4936         Fix compilation error with Solaris cc.
4937         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
4938         * lib/unicase/u16-is-invariant.c: Likewise.
4939         * lib/unicase/u32-is-invariant.c: Likewise.
4940         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
4941
4942 2009-12-30  Bruno Haible  <bruno@clisp.org>
4943
4944         Fix test crash.
4945         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
4946         locales.
4947         Reported by Simon Josefsson <simon@josefsson.org>.
4948
4949 2009-12-30  Bruno Haible  <bruno@clisp.org>
4950
4951         Fix compilation error on most platforms.
4952         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
4953         Reported by Simon Josefsson <simon@josefsson.org>
4954         and Nelson H. F. Beebe <beebe@math.utah.edu>.
4955
4956 2009-12-30  Eric Blake  <ebb9@byu.net>
4957
4958         futimens, utimensat: work around ntfs-3g bug
4959         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
4960         a ctime bug is present, and expand workaround to cover ntfs-3g.
4961         * lib/utimens.c (fdutimens, lutimens): Likewise.
4962         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
4963         (validate_timespec): Adjust return value.
4964         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
4965         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
4966         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
4967
4968 2009-12-29  Eric Blake  <ebb9@byu.net>
4969
4970         link-warning: make usage consistent
4971         * modules/ctype (Depends-on): Add link-warning.
4972         (Makefile.am): Update rules accordingly.
4973         * modules/langinfo (Depends-on, Makefile.am): Likewise.
4974         * modules/locale (Depends-on, Makefile.am): Likewise.
4975         * modules/sys_file (Makefile.am): Likewise.
4976         * modules/getopt-posix (Makefile.am): Delete unused link warning
4977         efforts.
4978         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
4979         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
4980         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
4981         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
4982
4983         stdio: remove unused variables
4984         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
4985         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
4986         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
4987
4988         tests: test more substitute headers
4989         * modules/ctype-tests: New file.
4990         * modules/dirent-tests: Likewise.
4991         * modules/spawn-tests: Likewise.
4992         * modules/sys_file-tests: Likewise.
4993         * modules/sys_ioctl-tests: Likewise.
4994         * modules/sys_wait-tests: Likewise.
4995         * tests/test-ctype.c: Likewise.
4996         * tests/test-dirent.c: Likewise.
4997         * tests/test-spawn.c: Likewise.
4998         * tests/test-sys_file.c: Likewise.
4999         * tests/test-sys_ioctl.c: Likewise.
5000         * tests/test-sys_wait.c: Likewise.
5001         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
5002         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
5003         whether or not flock is in use.
5004
5005         tests: remove License section from module
5006         * modules/arpa_inet-tests: Remove unneeded section.
5007         * modules/byteswap-tests: Likewise.
5008         * modules/ceilf-tests: Likewise.
5009         * modules/ceill-tests: Likewise.
5010         * modules/crypto/des-tests: Likewise.
5011         * modules/crypto/gc-arcfour-tests: Likewise.
5012         * modules/crypto/gc-arctwo-tests: Likewise.
5013         * modules/crypto/gc-des-tests: Likewise.
5014         * modules/crypto/gc-hmac-md5-tests: Likewise.
5015         * modules/crypto/gc-hmac-sha1-tests: Likewise.
5016         * modules/crypto/gc-md2-tests: Likewise.
5017         * modules/crypto/gc-md4-tests: Likewise.
5018         * modules/crypto/gc-md5-tests: Likewise.
5019         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
5020         * modules/crypto/gc-rijndael-tests: Likewise.
5021         * modules/crypto/gc-sha1-tests: Likewise.
5022         * modules/crypto/gc-tests: Likewise.
5023         * modules/crypto/md2-tests: Likewise.
5024         * modules/crypto/md4-tests: Likewise.
5025         * modules/fcntl-h-tests: Likewise.
5026         * modules/floorf-tests: Likewise.
5027         * modules/floorl-tests: Likewise.
5028         * modules/frexp-nolibm-tests: Likewise.
5029         * modules/frexp-tests: Likewise.
5030         * modules/frexpl-nolibm-tests: Likewise.
5031         * modules/frexpl-tests: Likewise.
5032         * modules/getaddrinfo-tests: Likewise.
5033         * modules/inttypes-tests: Likewise.
5034         * modules/isfinite-tests: Likewise.
5035         * modules/isinf-tests: Likewise.
5036         * modules/ldexpl-tests: Likewise.
5037         * modules/locale-tests: Likewise.
5038         * modules/math-tests: Likewise.
5039         * modules/netdb-tests: Likewise.
5040         * modules/netinet_in-tests: Likewise.
5041         * modules/printf-frexp-tests: Likewise.
5042         * modules/printf-frexpl-tests: Likewise.
5043         * modules/priv-set-tests: Likewise.
5044         * modules/random_r-tests: Likewise.
5045         * modules/round-tests: Likewise.
5046         * modules/roundf-tests: Likewise.
5047         * modules/roundl-tests: Likewise.
5048         * modules/search-tests: Likewise.
5049         * modules/select-tests: Likewise.
5050         * modules/signal-tests: Likewise.
5051         * modules/stdbool-tests: Likewise.
5052         * modules/stddef-tests: Likewise.
5053         * modules/stdint-tests: Likewise.
5054         * modules/stdio-tests: Likewise.
5055         * modules/stdlib-tests: Likewise.
5056         * modules/string-tests: Likewise.
5057         * modules/strings-tests: Likewise.
5058         * modules/sys_select-tests: Likewise.
5059         * modules/sys_socket-tests: Likewise.
5060         * modules/sys_stat-tests: Likewise.
5061         * modules/sys_time-tests: Likewise.
5062         * modules/sys_utsname-tests: Likewise.
5063         * modules/sysexits-tests: Likewise.
5064         * modules/time-tests: Likewise.
5065         * modules/trunc-tests: Likewise.
5066         * modules/truncf-tests: Likewise.
5067         * modules/truncl-tests: Likewise.
5068         * modules/tsearch-tests: Likewise.
5069         * modules/unistd-tests: Likewise.
5070         * modules/wchar-tests: Likewise.
5071         * modules/wctype-tests: Likewise.
5072
5073         tests: fix license on several tests
5074         * tests/test-des.c: Update to GPLv3+.
5075         * tests/test-flock.c: Likewise.
5076         * tests/test-fsync.c: Likewise.
5077         * tests/test-futimens.h: Likewise.
5078         * tests/test-gc-arcfour.c: Likewise.
5079         * tests/test-gc-arctwo.c: Likewise.
5080         * tests/test-gc-des.c: Likewise.
5081         * tests/test-gc-hmac-md5.c: Likewise.
5082         * tests/test-gc-hmac-sha1.c: Likewise.
5083         * tests/test-gc-md2.c: Likewise.
5084         * tests/test-gc-md4.c: Likewise.
5085         * tests/test-gc-md5.c: Likewise.
5086         * tests/test-gc-pbkdf2-sha1.c: Likewise.
5087         * tests/test-gc-rijndael.c: Likewise.
5088         * tests/test-gc-sha1.c: Likewise.
5089         * tests/test-gc.c: Likewise.
5090         * tests/test-getcwd.c: Likewise.
5091         * tests/test-link.c: Likewise.
5092         * tests/test-link.h: Likewise.
5093         * tests/test-lutimens.h: Likewise.
5094         * tests/test-md2.c: Likewise.
5095         * tests/test-md4.c: Likewise.
5096         * tests/test-mkdir.h: Likewise.
5097         * tests/test-rename.c: Likewise.
5098         * tests/test-rename.h: Likewise.
5099         * tests/test-safe-alloc.c: Likewise.
5100         * tests/test-utimens-common.h: Likewise.
5101         * tests/test-utimens.h: Likewise.
5102
5103         maint: sync license texts
5104         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
5105         * doc/gpl-3.0.texi: Revert copyright year update.
5106         * doc/lgpl-3.0.texi: Likewise.
5107
5108 2009-12-29  Jim Meyering  <meyering@redhat.com>
5109
5110         update nearly all FSF copyright year lists to include 2009
5111         The files named by the following are exempted:
5112             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
5113               test -f "$dst" && { echo "$dst"; continue; }
5114               test -d "$dst" || continue
5115               echo "$dst"/$(basename "$src")
5116             done > exempt
5117             git ls-files tests/unictype >> exempt
5118         In the remaining files, convert to all-interval notation if
5119         - there is already at least one year interval like 2000-2003
5120         - the file is maintained by me
5121         - the file is in lib/uni*/, where that style already prevails
5122         Otherwise, use update-copyright's default.
5123
5124 2009-12-29  Simon Josefsson  <simon@josefsson.org>
5125         and Eric Blake  <ebb9@byu.net>
5126
5127         tests: don't require debug system() to pass
5128         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
5129         * tests/test-rmdir.h (test_rmdir_func): Likewise.
5130         * tests/test-unlink.h (test_unlink_func): Likewise.
5131         * tests/test-fstatat.c (main): ...into callers.
5132         * tests/test-lstat.c (main): Likewise.
5133         * tests/test-rmdir.c (main): Likewise.
5134         * tests/test-unlink.c (main): Likewise.
5135         * tests/test-unlinkat.c (main): Likewise.
5136         * tests/test-areadlink-with-size.c (main): Don't require a
5137         debug-only system call to pass, aiding cross-testing to mingw.
5138         * tests/test-areadlink.c (main): Likewise.
5139         * tests/test-areadlinkat-with-size.c (main): Likewise.
5140         * tests/test-areadlinkat.c (main): Likewise.
5141         * tests/test-canonicalize-lgpl.c (main): Likewise.
5142         * tests/test-canonicalize.c (main): Likewise.
5143         * tests/test-chown.c (main): Likewise.
5144         * tests/test-fchownat.c (main): Likewise.
5145         * tests/test-lchown.c (main): Likewise.
5146         * tests/test-fdutimensat.c (main): Likewise.
5147         * tests/test-futimens.c (main): Likewise.
5148         * tests/test-link.c (main): Likewise.
5149         * tests/test-linkat.c (main): Likewise.
5150         * tests/test-mkdir.c (main): Likewise.
5151         * tests/test-mkdirat.c (main): Likewise.
5152         * tests/test-mkfifo.c (main): Likewise.
5153         * tests/test-mkfifoat.c (main): Likewise.
5154         * tests/test-mknod.c (main): Likewise.
5155         * tests/test-readlink.c (main): Likewise.
5156         * tests/test-remove.c (main): Likewise.
5157         * tests/test-rename.c (main): Likewise.
5158         * tests/test-renameat.c (main): Likewise.
5159         * tests/test-symlink.c (main): Likewise.
5160         * tests/test-symlinkat.c (main): Likewise.
5161         * tests/test-utimens.c (main): Likewise.
5162         * tests/test-utimensat.c (main): Likewise.
5163
5164 2009-12-29  Simon Josefsson  <simon@josefsson.org>
5165
5166         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
5167         on $(UNUSED_PARAMETER_H) to avoid build failure.
5168
5169 2009-12-28  Jim Meyering  <meyering@redhat.com>
5170
5171         update-copyright: you may specify a max. line length other than 72
5172         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
5173
5174         maint: use consistent FSF copyright line syntax
5175         * lib/posixtm.c: Add missing comma in FSF copyright line.
5176         * lib/posixtm.h: Likewise.
5177         * lib/getugroups.c: Add missing ", Inc.".
5178
5179         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
5180         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
5181         FSF copyright line.  Remove trailing blanks.
5182
5183 2009-12-28  Eric Blake  <ebb9@byu.net>
5184
5185         test-dup2: reduce dependencies
5186         * modules/cloexec (Configure.ac): Set witness.
5187         * modules/dup2-tests (Depends-on): Drop cloexec.
5188         * tests/test-dup2.c (main): Skip portion of test if cloexec module
5189         not present.
5190         Suggested by Bruno Haible.
5191
5192 2009-12-26  Bruno Haible  <bruno@clisp.org>
5193
5194         Remove an unneeded dependency.
5195         * modules/fseterr (Depends-on): Remove dup2.
5196
5197 2009-12-26  Eric Blake  <ebb9@byu.net>
5198
5199         tests: use macros.h in more places
5200         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
5201         (ASSERT_STREAM): Provide default of stderr.
5202         * tests/test-dirent-safer.c: Include macros.h, using alternate
5203         stream for assertions.
5204         * tests/test-dup-safer.c: Likewise.
5205         * tests/test-freopen-safer.c: Likewise.
5206         * tests/test-getopt.c: Likewise.
5207         * tests/test-openat-safer.c: Likewise.
5208         * tests/test-pipe.c: Likewise.
5209         * tests/test-popen-safer.c: Likewise.
5210         * modules/dirent-safer-tests (Files): Include macros.h.
5211         * modules/unistd-safer-tests (Files): Likewise.
5212         * modules/freopen-safer-tests (Files): Likewise.
5213         * modules/getopt-posix-tests (Files): Likewise.
5214         * modules/openat-safer-tests (Files): Likewise.
5215         * modules/pipe-tests (Files): Likewise.
5216
5217 2009-12-26  Bruno Haible  <bruno@clisp.org>
5218
5219         javacomp: Portability fix.
5220         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
5221         that it also works on Solaris.
5222
5223 2009-12-26  Bruno Haible  <bruno@clisp.org>
5224
5225         localename: Fix storage allocation of gl_locale_name_thread's result.
5226         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
5227         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
5228         all platforms that have 'uselocale'.
5229         (gl_locale_name_thread_unsafe): New function, extracted from
5230         gl_locale_name_thread.
5231         (gl_locale_name_thread): Call struniq on all platforms that have
5232         'uselocale'.
5233         * tests/test-localename.c (test_locale_name_thread): Check that the
5234         resulting strings are permanently allocated.
5235         * modules/localename-tests (Depends-on): Add strdup.
5236
5237 2009-12-26  Bruno Haible  <bruno@clisp.org>
5238
5239         * tests/test-localename.c (categories): Fill in the strings.
5240
5241 2009-12-26  Jim Meyering  <meyering@redhat.com>
5242
5243         isdir: complete the removal of m4/isdir.m4
5244         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
5245
5246         isdir: clean up, since at least grep still uses it
5247         * lib/isdir.c: Include "isdir.h".
5248         (S_ISDIR): Remove now-unneeded definition.
5249         * modules/isdir (Files): Add lib/isdir.h.
5250         * lib/isdir.h: New file, with declaration.
5251         * m4/isdir.m4: Remove file -- unneeded.
5252
5253 2009-12-25  Bruno Haible  <bruno@clisp.org>
5254
5255         selinux-h: Make generated .h files standalone.
5256         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
5257         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
5258         * lib/se-selinux.in.h: Likewise.
5259         * modules/selinux-h (Depends-on): Add unused-parameter.
5260         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
5261         selinux/selinux.h and selinux/context.h.
5262         Suggested by Eric Blake.
5263
5264 2009-12-25  Bruno Haible  <bruno@clisp.org>
5265
5266         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
5267         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
5268         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
5269         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
5270         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
5271
5272 2009-12-24  Bruno Haible  <bruno@clisp.org>
5273
5274         openat: Fix warning.
5275         * lib/openat-proc.c: Include <unistd.h>.
5276
5277 2009-12-24  Bruno Haible  <bruno@clisp.org>
5278
5279         New module 'unused-parameter'.
5280         * build-aux/unused-parameter.h: New file, extracted from earlier
5281         gnulib-common.m4.
5282         * modules/unused-parameter: New file.
5283         * lib/unistr.h: Include unused-parameter.h.
5284         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
5285         _GL_UNUSED.
5286         * modules/unistr/base (Depends-on): Add unused-parameter.
5287
5288 2009-12-24  Bruno Haible  <bruno@clisp.org>
5289
5290         Add missing dependencies to 'extensions' module.
5291         * m4/extensions.m4: Add comment.
5292         * modules/accept4 (Depends-on): Add extensions.
5293         * modules/dup3 (Depends-on): Likewise.
5294         * modules/fcntl (Depends-on): Likewise.
5295         * modules/futimens (Depends-on): Likewise.
5296         * modules/mknod (Depends-on): Likewise.
5297         * modules/pipe2 (Depends-on): Likewise.
5298         * modules/stat-time (Depends-on): Likewise.
5299         * modules/strcasestr-simple (Depends-on): Likewise.
5300         * modules/strsignal (Depends-on): Likewise.
5301         * modules/utimensat (Depends-on): Likewise.
5302         * modules/localcharset (Depends-on): Likewise. Needed because of
5303         gl_FCNTL_O_FLAGS.
5304         * modules/wcrtomb (Depends-on): Likewise. Needed because of
5305         AC_TYPE_MBSTATE_T.
5306         * modules/wcsnrtombs (Depends-on): Likewise.
5307         * modules/wcsrtombs (Depends-on): Likewise.
5308
5309 2009-12-24  Bruno Haible  <bruno@clisp.org>
5310
5311         binary-io: Avoid gcc warning due to SET_BINARY.
5312         * lib/binary-io.h (SET_BINARY): Cast the result to void.
5313         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
5314
5315 2009-12-24  Bruno Haible  <bruno@clisp.org>
5316
5317         Avoid future namespace pollution on glibc systems.
5318         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
5319         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
5320         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
5321         glibc systems.
5322
5323 2009-12-24  Bruno Haible  <bruno@clisp.org>
5324
5325         Refactor common macros used in tests.
5326         * tests/macros.h: New file.
5327         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
5328         and/or <stdlib.h>, if appropriate.
5329         (ASSERT, SIZEOF): Remove macros.
5330         * tests/test-areadlink-with-size.c: Likewise.
5331         * tests/test-areadlinkat.c: Likewise.
5332         * tests/test-areadlinkat-with-size.c: Likewise.
5333         * tests/test-argmatch.c: Likewise.
5334         * tests/test-argv-iter.c: Likewise.
5335         * tests/test-array-mergesort.c: Likewise.
5336         * tests/test-array_list.c: Likewise.
5337         * tests/test-array_oset.c: Likewise.
5338         * tests/test-avltree_list.c: Likewise.
5339         * tests/test-avltree_oset.c: Likewise.
5340         * tests/test-avltreehash_list.c: Likewise.
5341         * tests/test-base64.c: Likewise.
5342         * tests/test-binary-io.c: Likewise.
5343         * tests/test-bitrotate.c: Likewise.
5344         * tests/test-btowc.c: Likewise.
5345         * tests/test-byteswap.c: Likewise.
5346         * tests/test-c-ctype.c: Likewise.
5347         * tests/test-c-stack.c: Likewise.
5348         * tests/test-c-strcasecmp.c: Likewise.
5349         * tests/test-c-strcasestr.c: Likewise.
5350         * tests/test-c-strncasecmp.c: Likewise.
5351         * tests/test-c-strstr.c: Likewise.
5352         * tests/test-canonicalize-lgpl.c: Likewise.
5353         * tests/test-canonicalize.c: Likewise.
5354         * tests/test-carray_list.c: Likewise.
5355         * tests/test-ceilf1.c: Likewise.
5356         * tests/test-ceilf2.c: Likewise.
5357         * tests/test-ceill.c: Likewise.
5358         * tests/test-chown.c: Likewise.
5359         * tests/test-cloexec.c: Likewise.
5360         * tests/test-copy-acl.c: Likewise.
5361         * tests/test-copy-file.c: Likewise.
5362         * tests/test-count-one-bits.c: Likewise.
5363         * tests/test-dprintf-posix.c: Likewise.
5364         * tests/test-dup2.c: Likewise.
5365         * tests/test-dup3.c: Likewise.
5366         * tests/test-duplocale.c: Likewise.
5367         * tests/test-fbufmode.c: Likewise.
5368         * tests/test-fchdir.c: Likewise.
5369         * tests/test-fchownat.c: Likewise.
5370         * tests/test-fcntl-safer.c: Likewise.
5371         * tests/test-fcntl.c: Likewise.
5372         * tests/test-fdopendir.c: Likewise.
5373         * tests/test-fdutimensat.c: Likewise.
5374         * tests/test-fflush2.c: Likewise.
5375         * tests/test-file-has-acl.c: Likewise.
5376         * tests/test-filevercmp.c: Likewise.
5377         * tests/test-flock.c: Likewise.
5378         * tests/test-floorf1.c: Likewise.
5379         * tests/test-floorf2.c: Likewise.
5380         * tests/test-floorl.c: Likewise.
5381         * tests/test-fnmatch.c: Likewise.
5382         * tests/test-fopen.h: Likewise.
5383         * tests/test-fpending.c: Likewise.
5384         * tests/test-fprintf-posix.c: Likewise.
5385         * tests/test-fpurge.c: Likewise.
5386         * tests/test-freadable.c: Likewise.
5387         * tests/test-freadahead.c: Likewise.
5388         * tests/test-freading.c: Likewise.
5389         * tests/test-freadptr.c: Likewise.
5390         * tests/test-freadptr2.c: Likewise.
5391         * tests/test-freadseek.c: Likewise.
5392         * tests/test-freopen.c: Likewise.
5393         * tests/test-frexp.c: Likewise.
5394         * tests/test-frexpl.c: Likewise.
5395         * tests/test-fseek.c: Likewise.
5396         * tests/test-fseeko.c: Likewise.
5397         * tests/test-fstatat.c: Likewise.
5398         * tests/test-fstrcmp.c: Likewise.
5399         * tests/test-fsync.c: Likewise.
5400         * tests/test-ftell.c: Likewise.
5401         * tests/test-ftello.c: Likewise.
5402         * tests/test-func.c: Likewise.
5403         * tests/test-futimens.c: Likewise.
5404         * tests/test-fwritable.c: Likewise.
5405         * tests/test-fwriting.c: Likewise.
5406         * tests/test-getcwd.c: Likewise.
5407         * tests/test-getdate.c: Likewise.
5408         * tests/test-getdelim.c: Likewise.
5409         * tests/test-getdtablesize.c: Likewise.
5410         * tests/test-getgroups.c: Likewise.
5411         * tests/test-getline.c: Likewise.
5412         * tests/test-getndelim2.c: Likewise.
5413         * tests/test-glob.c: Likewise.
5414         * tests/test-hash.c: Likewise.
5415         * tests/test-i-ring.c: Likewise.
5416         * tests/test-iconv-utf.c: Likewise.
5417         * tests/test-iconv.c: Likewise.
5418         * tests/test-idpriv-drop.c: Likewise.
5419         * tests/test-idpriv-droptemp.c: Likewise.
5420         * tests/test-inet_ntop.c: Likewise.
5421         * tests/test-inet_pton.c: Likewise.
5422         * tests/test-isblank.c: Likewise.
5423         * tests/test-isfinite.c: Likewise.
5424         * tests/test-isinf.c: Likewise.
5425         * tests/test-isnan.c: Likewise.
5426         * tests/test-isnand.h: Likewise.
5427         * tests/test-isnanf.h: Likewise.
5428         * tests/test-isnanl.h: Likewise.
5429         * tests/test-lchown.c: Likewise.
5430         * tests/test-ldexpl.c: Likewise.
5431         * tests/test-link.c: Likewise.
5432         * tests/test-linkat.c: Likewise.
5433         * tests/test-linked_list.c: Likewise.
5434         * tests/test-linkedhash_list.c: Likewise.
5435         * tests/test-localename.c: Likewise.
5436         * tests/test-lseek.c: Likewise.
5437         * tests/test-lstat.c: Likewise.
5438         * tests/test-mbmemcasecmp.c: Likewise.
5439         * tests/test-mbmemcasecoll.c: Likewise.
5440         * tests/test-mbrtowc.c: Likewise.
5441         * tests/test-mbscasecmp.c: Likewise.
5442         * tests/test-mbscasestr1.c: Likewise.
5443         * tests/test-mbscasestr2.c: Likewise.
5444         * tests/test-mbscasestr3.c: Likewise.
5445         * tests/test-mbscasestr4.c: Likewise.
5446         * tests/test-mbschr.c: Likewise.
5447         * tests/test-mbscspn.c: Likewise.
5448         * tests/test-mbsinit.c: Likewise.
5449         * tests/test-mbsncasecmp.c: Likewise.
5450         * tests/test-mbsnrtowcs.c: Likewise.
5451         * tests/test-mbspbrk.c: Likewise.
5452         * tests/test-mbspcasecmp.c: Likewise.
5453         * tests/test-mbsrchr.c: Likewise.
5454         * tests/test-mbsrtowcs.c: Likewise.
5455         * tests/test-mbsspn.c: Likewise.
5456         * tests/test-mbsstr1.c: Likewise.
5457         * tests/test-mbsstr2.c: Likewise.
5458         * tests/test-mbsstr3.c: Likewise.
5459         * tests/test-memchr.c: Likewise.
5460         * tests/test-memchr2.c: Likewise.
5461         * tests/test-memcmp.c: Likewise.
5462         * tests/test-memmem.c: Likewise.
5463         * tests/test-memrchr.c: Likewise.
5464         * tests/test-mkdir.c: Likewise.
5465         * tests/test-mkdirat.c: Likewise.
5466         * tests/test-mkfifo.c: Likewise.
5467         * tests/test-mkfifoat.c: Likewise.
5468         * tests/test-mknod.c: Likewise.
5469         * tests/test-nanosleep.c: Likewise.
5470         * tests/test-nl_langinfo.c: Likewise.
5471         * tests/test-obstack-printf.c: Likewise.
5472         * tests/test-open.c: Likewise.
5473         * tests/test-openat.c: Likewise.
5474         * tests/test-pipe-filter-gi1.c: Likewise.
5475         * tests/test-pipe-filter-gi2-main.c: Likewise.
5476         * tests/test-pipe-filter-ii1.c: Likewise.
5477         * tests/test-pipe-filter-ii2-main.c: Likewise.
5478         * tests/test-pipe2.c: Likewise.
5479         * tests/test-popen.h: Likewise.
5480         * tests/test-posixtm.c: Likewise.
5481         * tests/test-pread.c: Likewise.
5482         * tests/test-printf-frexp.c: Likewise.
5483         * tests/test-printf-frexpl.c: Likewise.
5484         * tests/test-printf-posix.c: Likewise.
5485         * tests/test-priv-set.c: Likewise.
5486         * tests/test-quotearg.c: Likewise.
5487         * tests/test-random_r.c: Likewise.
5488         * tests/test-rawmemchr.c: Likewise.
5489         * tests/test-rbtree_list.c: Likewise.
5490         * tests/test-rbtree_oset.c: Likewise.
5491         * tests/test-rbtreehash_list.c: Likewise.
5492         * tests/test-readlink.c: Likewise.
5493         * tests/test-remove.c: Likewise.
5494         * tests/test-rename.c: Likewise.
5495         * tests/test-renameat.c: Likewise.
5496         * tests/test-rmdir.c: Likewise.
5497         * tests/test-round1.c: Likewise.
5498         * tests/test-roundf1.c: Likewise.
5499         * tests/test-roundl.c: Likewise.
5500         * tests/test-safe-alloc.c: Likewise.
5501         * tests/test-sameacls.c: Likewise.
5502         * tests/test-set-mode-acl.c: Likewise.
5503         * tests/test-setenv.c: Likewise.
5504         * tests/test-sigaction.c: Likewise.
5505         * tests/test-signbit.c: Likewise.
5506         * tests/test-sleep.c: Likewise.
5507         * tests/test-snprintf-posix.c: Likewise.
5508         * tests/test-snprintf.c: Likewise.
5509         * tests/test-sprintf-posix.c: Likewise.
5510         * tests/test-stat-time.c: Likewise.
5511         * tests/test-stat.c: Likewise.
5512         * tests/test-strcasestr.c: Likewise.
5513         * tests/test-strchrnul.c: Likewise.
5514         * tests/test-strerror.c: Likewise.
5515         * tests/test-striconv.c: Likewise.
5516         * tests/test-striconveh.c: Likewise.
5517         * tests/test-striconveha.c: Likewise.
5518         * tests/test-strsignal.c: Likewise.
5519         * tests/test-strstr.c: Likewise.
5520         * tests/test-strtod.c: Likewise.
5521         * tests/test-strverscmp.c: Likewise.
5522         * tests/test-symlink.c: Likewise.
5523         * tests/test-symlinkat.c: Likewise.
5524         * tests/test-trunc1.c: Likewise.
5525         * tests/test-trunc2.c: Likewise.
5526         * tests/test-truncf1.c: Likewise.
5527         * tests/test-truncf2.c: Likewise.
5528         * tests/test-truncl.c: Likewise.
5529         * tests/test-uname.c: Likewise.
5530         * tests/test-unlink.c: Likewise.
5531         * tests/test-unlinkat.c: Likewise.
5532         * tests/test-unsetenv.c: Likewise.
5533         * tests/test-usleep.c: Likewise.
5534         * tests/test-utimens.c: Likewise.
5535         * tests/test-utimensat.c: Likewise.
5536         * tests/test-vasnprintf-posix.c: Likewise.
5537         * tests/test-vasnprintf-posix2.c: Likewise.
5538         * tests/test-vasnprintf.c: Likewise.
5539         * tests/test-vasprintf-posix.c: Likewise.
5540         * tests/test-vasprintf.c: Likewise.
5541         * tests/test-vdprintf-posix.c: Likewise.
5542         * tests/test-vfprintf-posix.c: Likewise.
5543         * tests/test-vprintf-posix.c: Likewise.
5544         * tests/test-vsnprintf-posix.c: Likewise.
5545         * tests/test-vsnprintf.c: Likewise.
5546         * tests/test-vsprintf-posix.c: Likewise.
5547         * tests/test-wcrtomb.c: Likewise.
5548         * tests/test-wcsnrtombs.c: Likewise.
5549         * tests/test-wcsrtombs.c: Likewise.
5550         * tests/test-wctype.c: Likewise.
5551         * tests/test-wcwidth.c: Likewise.
5552         * tests/test-xfprintf-posix.c: Likewise.
5553         * tests/test-xmemdup0.c: Likewise.
5554         * tests/test-xprintf-posix.c: Likewise.
5555         * tests/test-xvasprintf.c: Likewise.
5556         * tests/unicase/test-locale-language.c: Likewise.
5557         * tests/unicase/test-mapping-part1.h: Likewise.
5558         * tests/unicase/test-predicate-part1.h: Likewise.
5559         * tests/unicase/test-u8-casecmp.c: Likewise.
5560         * tests/unicase/test-u8-casecoll.c: Likewise.
5561         * tests/unicase/test-u8-casefold.c: Likewise.
5562         * tests/unicase/test-u8-is-cased.c: Likewise.
5563         * tests/unicase/test-u8-is-casefolded.c: Likewise.
5564         * tests/unicase/test-u8-is-lowercase.c: Likewise.
5565         * tests/unicase/test-u8-is-titlecase.c: Likewise.
5566         * tests/unicase/test-u8-is-uppercase.c: Likewise.
5567         * tests/unicase/test-u8-tolower.c: Likewise.
5568         * tests/unicase/test-u8-totitle.c: Likewise.
5569         * tests/unicase/test-u8-toupper.c: Likewise.
5570         * tests/unicase/test-u16-casecmp.c: Likewise.
5571         * tests/unicase/test-u16-casecoll.c: Likewise.
5572         * tests/unicase/test-u16-casefold.c: Likewise.
5573         * tests/unicase/test-u16-is-cased.c: Likewise.
5574         * tests/unicase/test-u16-is-casefolded.c: Likewise.
5575         * tests/unicase/test-u16-is-lowercase.c: Likewise.
5576         * tests/unicase/test-u16-is-titlecase.c: Likewise.
5577         * tests/unicase/test-u16-is-uppercase.c: Likewise.
5578         * tests/unicase/test-u16-tolower.c: Likewise.
5579         * tests/unicase/test-u16-totitle.c: Likewise.
5580         * tests/unicase/test-u16-toupper.c: Likewise.
5581         * tests/unicase/test-u32-casecmp.c: Likewise.
5582         * tests/unicase/test-u32-casecoll.c: Likewise.
5583         * tests/unicase/test-u32-casefold.c: Likewise.
5584         * tests/unicase/test-u32-is-cased.c: Likewise.
5585         * tests/unicase/test-u32-is-casefolded.c: Likewise.
5586         * tests/unicase/test-u32-is-lowercase.c: Likewise.
5587         * tests/unicase/test-u32-is-titlecase.c: Likewise.
5588         * tests/unicase/test-u32-is-uppercase.c: Likewise.
5589         * tests/unicase/test-u32-tolower.c: Likewise.
5590         * tests/unicase/test-u32-totitle.c: Likewise.
5591         * tests/unicase/test-u32-toupper.c: Likewise.
5592         * tests/unicase/test-ulc-casecmp.c: Likewise.
5593         * tests/unicase/test-ulc-casecoll.c: Likewise.
5594         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
5595         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
5596         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
5597         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
5598         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
5599         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
5600         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
5601         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
5602         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
5603         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
5604         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
5605         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
5606         * tests/unictype/test-bidi_byname.c: Likewise.
5607         * tests/unictype/test-bidi_name.c: Likewise.
5608         * tests/unictype/test-bidi_of.c: Likewise.
5609         * tests/unictype/test-bidi_test.c: Likewise.
5610         * tests/unictype/test-block_list.c: Likewise.
5611         * tests/unictype/test-block_of.c: Likewise.
5612         * tests/unictype/test-block_test.c: Likewise.
5613         * tests/unictype/test-categ_and.c: Likewise.
5614         * tests/unictype/test-categ_and_not.c: Likewise.
5615         * tests/unictype/test-categ_byname.c: Likewise.
5616         * tests/unictype/test-categ_name.c: Likewise.
5617         * tests/unictype/test-categ_none.c: Likewise.
5618         * tests/unictype/test-categ_of.c: Likewise.
5619         * tests/unictype/test-categ_or.c: Likewise.
5620         * tests/unictype/test-categ_test_withtable.c: Likewise.
5621         * tests/unictype/test-combining.c: Likewise.
5622         * tests/unictype/test-decdigit.c: Likewise.
5623         * tests/unictype/test-digit.c: Likewise.
5624         * tests/unictype/test-mirror.c: Likewise.
5625         * tests/unictype/test-numeric.c: Likewise.
5626         * tests/unictype/test-pr_byname.c: Likewise.
5627         * tests/unictype/test-pr_test.c: Likewise.
5628         * tests/unictype/test-predicate-part1.h: Likewise.
5629         * tests/unictype/test-scripts.c: Likewise.
5630         * tests/unictype/test-sy_c_ident.c: Likewise.
5631         * tests/unictype/test-sy_java_ident.c: Likewise.
5632         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
5633         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
5634         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
5635         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
5636         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
5637         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
5638         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
5639         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
5640         * tests/uninorm/test-canonical-decomposition.c: Likewise.
5641         * tests/uninorm/test-compat-decomposition.c: Likewise.
5642         * tests/uninorm/test-composition.c: Likewise.
5643         * tests/uninorm/test-decomposing-form.c: Likewise.
5644         * tests/uninorm/test-decomposition.c: Likewise.
5645         * tests/uninorm/test-u8-nfc.c: Likewise.
5646         * tests/uninorm/test-u8-nfd.c: Likewise.
5647         * tests/uninorm/test-u8-nfkc.c: Likewise.
5648         * tests/uninorm/test-u8-nfkd.c: Likewise.
5649         * tests/uninorm/test-u8-normcmp.c: Likewise.
5650         * tests/uninorm/test-u8-normcoll.c: Likewise.
5651         * tests/uninorm/test-u16-nfc.c: Likewise.
5652         * tests/uninorm/test-u16-nfd.c: Likewise.
5653         * tests/uninorm/test-u16-nfkc.c: Likewise.
5654         * tests/uninorm/test-u16-nfkd.c: Likewise.
5655         * tests/uninorm/test-u16-normcmp.c: Likewise.
5656         * tests/uninorm/test-u16-normcoll.c: Likewise.
5657         * tests/uninorm/test-u32-nfc.c: Likewise.
5658         * tests/uninorm/test-u32-nfd.c: Likewise.
5659         * tests/uninorm/test-u32-nfkc.c: Likewise.
5660         * tests/uninorm/test-u32-nfkd.c: Likewise.
5661         * tests/uninorm/test-u32-normalize-big.c: Likewise.
5662         * tests/uninorm/test-u32-normcmp.c: Likewise.
5663         * tests/uninorm/test-u32-normcoll.c: Likewise.
5664         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
5665         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
5666         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
5667         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
5668         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
5669         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
5670         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
5671         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
5672         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
5673         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
5674         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
5675         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
5676         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
5677         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
5678         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
5679         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
5680         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
5681         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
5682         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
5683         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
5684         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
5685         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
5686         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
5687         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
5688         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
5689         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
5690         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
5691         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
5692         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
5693         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
5694         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
5695         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
5696         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
5697         * tests/uniwidth/test-u8-strwidth.c: Likewise.
5698         * tests/uniwidth/test-u8-width.c: Likewise.
5699         * tests/uniwidth/test-u16-strwidth.c: Likewise.
5700         * tests/uniwidth/test-u16-width.c: Likewise.
5701         * tests/uniwidth/test-u32-strwidth.c: Likewise.
5702         * tests/uniwidth/test-u32-width.c: Likewise.
5703         * tests/uniwidth/test-uc_width.c: Likewise.
5704         * tests/uniwidth/test-uc_width2.c: Likewise.
5705         * modules/acl-tests (Files): Add tests/macros.h.
5706         * modules/areadlink-tests (Files): Likewise.
5707         * modules/areadlink-with-size-tests (Files): Likewise.
5708         * modules/areadlinkat-tests (Files): Likewise.
5709         * modules/areadlinkat-with-size-tests (Files): Likewise.
5710         * modules/argmatch-tests (Files): Likewise.
5711         * modules/argv-iter-tests (Files): Likewise.
5712         * modules/array-list-tests (Files): Likewise.
5713         * modules/array-mergesort-tests (Files): Likewise.
5714         * modules/array-oset-tests (Files): Likewise.
5715         * modules/avltree-list-tests (Files): Likewise.
5716         * modules/avltree-oset-tests (Files): Likewise.
5717         * modules/avltreehash-list-tests (Files): Likewise.
5718         * modules/base64-tests (Files): Likewise.
5719         * modules/binary-io-tests (Files): Likewise.
5720         * modules/bitrotate-tests (Files): Likewise.
5721         * modules/btowc-tests (Files): Likewise.
5722         * modules/byteswap-tests (Files): Likewise.
5723         * modules/c-ctype-tests (Files): Likewise.
5724         * modules/c-stack-tests (Files): Likewise.
5725         * modules/c-strcase-tests (Files): Likewise.
5726         * modules/c-strcasestr-tests (Files): Likewise.
5727         * modules/c-strstr-tests (Files): Likewise.
5728         * modules/canonicalize-lgpl-tests (Files): Likewise.
5729         * modules/canonicalize-tests (Files): Likewise.
5730         * modules/carray-list-tests (Files): Likewise.
5731         * modules/ceilf-tests (Files): Likewise.
5732         * modules/ceill-tests (Files): Likewise.
5733         * modules/chown-tests (Files): Likewise.
5734         * modules/cloexec-tests (Files): Likewise.
5735         * modules/copy-file-tests (Files): Likewise.
5736         * modules/count-one-bits-tests (Files): Likewise.
5737         * modules/dprintf-posix-tests (Files): Likewise.
5738         * modules/dup2-tests (Files): Likewise.
5739         * modules/dup3-tests (Files): Likewise.
5740         * modules/duplocale-tests (Files): Likewise.
5741         * modules/fbufmode-tests (Files): Likewise.
5742         * modules/fchdir-tests (Files): Likewise.
5743         * modules/fcntl-safer-tests (Files): Likewise.
5744         * modules/fcntl-tests (Files): Likewise.
5745         * modules/fdopendir-tests (Files): Likewise.
5746         * modules/fdutimensat-tests (Files): Likewise.
5747         * modules/fflush-tests (Files): Likewise.
5748         * modules/filevercmp-tests (Files): Likewise.
5749         * modules/flock-tests (Files): Likewise.
5750         * modules/floorf-tests (Files): Likewise.
5751         * modules/floorl-tests (Files): Likewise.
5752         * modules/fnmatch-tests (Files): Likewise.
5753         * modules/fopen-safer-tests (Files): Likewise.
5754         * modules/fopen-tests (Files): Likewise.
5755         * modules/fpending-tests (Files): Likewise.
5756         * modules/fprintf-posix-tests (Files): Likewise.
5757         * modules/fpurge-tests (Files): Likewise.
5758         * modules/freadable-tests (Files): Likewise.
5759         * modules/freadahead-tests (Files): Likewise.
5760         * modules/freading-tests (Files): Likewise.
5761         * modules/freadptr-tests (Files): Likewise.
5762         * modules/freadseek-tests (Files): Likewise.
5763         * modules/freopen-tests (Files): Likewise.
5764         * modules/frexp-nolibm-tests (Files): Likewise.
5765         * modules/frexp-tests (Files): Likewise.
5766         * modules/frexpl-nolibm-tests (Files): Likewise.
5767         * modules/frexpl-tests (Files): Likewise.
5768         * modules/fseek-tests (Files): Likewise.
5769         * modules/fseeko-tests (Files): Likewise.
5770         * modules/fstrcmp-tests (Files): Likewise.
5771         * modules/fsync-tests (Files): Likewise.
5772         * modules/ftell-tests (Files): Likewise.
5773         * modules/ftello-tests (Files): Likewise.
5774         * modules/func-tests (Files): Likewise.
5775         * modules/futimens-tests (Files): Likewise.
5776         * modules/fwritable-tests (Files): Likewise.
5777         * modules/fwriting-tests (Files): Likewise.
5778         * modules/getcwd-tests (Files): Likewise.
5779         * modules/getdate-tests (Files): Likewise.
5780         * modules/getdelim-tests (Files): Likewise.
5781         * modules/getdtablesize-tests (Files): Likewise.
5782         * modules/getgroups-tests (Files): Likewise.
5783         * modules/getline-tests (Files): Likewise.
5784         * modules/getndelim2-tests (Files): Likewise.
5785         * modules/glob-tests (Files): Likewise.
5786         * modules/hash-tests (Files): Likewise.
5787         * modules/i-ring-tests (Files): Likewise.
5788         * modules/iconv-tests (Files): Likewise.
5789         * modules/iconv_open-utf-tests (Files): Likewise.
5790         * modules/idpriv-drop-tests (Files): Likewise.
5791         * modules/idpriv-droptemp-tests (Files): Likewise.
5792         * modules/inet_ntop-tests (Files): Likewise.
5793         * modules/inet_pton-tests (Files): Likewise.
5794         * modules/isblank-tests (Files): Likewise.
5795         * modules/isfinite-tests (Files): Likewise.
5796         * modules/isinf-tests (Files): Likewise.
5797         * modules/isnan-tests (Files): Likewise.
5798         * modules/isnand-nolibm-tests (Files): Likewise.
5799         * modules/isnand-tests (Files): Likewise.
5800         * modules/isnanf-nolibm-tests (Files): Likewise.
5801         * modules/isnanf-tests (Files): Likewise.
5802         * modules/isnanl-nolibm-tests (Files): Likewise.
5803         * modules/isnanl-tests (Files): Likewise.
5804         * modules/lchown-tests (Files): Likewise.
5805         * modules/ldexpl-tests (Files): Likewise.
5806         * modules/link-tests (Files): Likewise.
5807         * modules/linkat-tests (Files): Likewise.
5808         * modules/linked-list-tests (Files): Likewise.
5809         * modules/linkedhash-list-tests (Files): Likewise.
5810         * modules/localename-tests (Files): Likewise.
5811         * modules/lseek-tests (Files): Likewise.
5812         * modules/lstat-tests (Files): Likewise.
5813         * modules/mbmemcasecmp-tests (Files): Likewise.
5814         * modules/mbmemcasecoll-tests (Files): Likewise.
5815         * modules/mbrtowc-tests (Files): Likewise.
5816         * modules/mbscasecmp-tests (Files): Likewise.
5817         * modules/mbscasestr-tests (Files): Likewise.
5818         * modules/mbschr-tests (Files): Likewise.
5819         * modules/mbscspn-tests (Files): Likewise.
5820         * modules/mbsinit-tests (Files): Likewise.
5821         * modules/mbsncasecmp-tests (Files): Likewise.
5822         * modules/mbsnrtowcs-tests (Files): Likewise.
5823         * modules/mbspbrk-tests (Files): Likewise.
5824         * modules/mbspcasecmp-tests (Files): Likewise.
5825         * modules/mbsrchr-tests (Files): Likewise.
5826         * modules/mbsrtowcs-tests (Files): Likewise.
5827         * modules/mbsspn-tests (Files): Likewise.
5828         * modules/mbsstr-tests (Files): Likewise.
5829         * modules/memchr-tests (Files): Likewise.
5830         * modules/memchr2-tests (Files): Likewise.
5831         * modules/memcmp-tests (Files): Likewise.
5832         * modules/memmem-tests (Files): Likewise.
5833         * modules/memrchr-tests (Files): Likewise.
5834         * modules/mkdir-tests (Files): Likewise.
5835         * modules/mkfifo-tests (Files): Likewise.
5836         * modules/mkfifoat-tests (Files): Likewise.
5837         * modules/mknod-tests (Files): Likewise.
5838         * modules/nanosleep-tests (Files): Likewise.
5839         * modules/nl_langinfo-tests (Files): Likewise.
5840         * modules/obstack-printf-tests (Files): Likewise.
5841         * modules/open-tests (Files): Likewise.
5842         * modules/openat-tests (Files): Likewise.
5843         * modules/pipe-filter-gi-tests (Files): Likewise.
5844         * modules/pipe-filter-ii-tests (Files): Likewise.
5845         * modules/pipe2-tests (Files): Likewise.
5846         * modules/popen-safer-tests (Files): Likewise.
5847         * modules/popen-tests (Files): Likewise.
5848         * modules/posixtm-tests (Files): Likewise.
5849         * modules/pread-tests (Files): Likewise.
5850         * modules/printf-frexp-tests (Files): Likewise.
5851         * modules/printf-frexpl-tests (Files): Likewise.
5852         * modules/printf-posix-tests (Files): Likewise.
5853         * modules/priv-set-tests (Files): Likewise.
5854         * modules/quotearg-tests (Files): Likewise.
5855         * modules/random_r-tests (Files): Likewise.
5856         * modules/rawmemchr-tests (Files): Likewise.
5857         * modules/rbtree-list-tests (Files): Likewise.
5858         * modules/rbtree-oset-tests (Files): Likewise.
5859         * modules/rbtreehash-list-tests (Files): Likewise.
5860         * modules/readlink-tests (Files): Likewise.
5861         * modules/remove-tests (Files): Likewise.
5862         * modules/rename-tests (Files): Likewise.
5863         * modules/renameat-tests (Files): Likewise.
5864         * modules/rmdir-tests (Files): Likewise.
5865         * modules/round-tests (Files): Likewise.
5866         * modules/roundf-tests (Files): Likewise.
5867         * modules/roundl-tests (Files): Likewise.
5868         * modules/safe-alloc-tests (Files): Likewise.
5869         * modules/setenv-tests (Files): Likewise.
5870         * modules/sigaction-tests (Files): Likewise.
5871         * modules/signbit-tests (Files): Likewise.
5872         * modules/sleep-tests (Files): Likewise.
5873         * modules/snprintf-posix-tests (Files): Likewise.
5874         * modules/snprintf-tests (Files): Likewise.
5875         * modules/sprintf-posix-tests (Files): Likewise.
5876         * modules/stat-tests (Files): Likewise.
5877         * modules/stat-time-tests (Files): Likewise.
5878         * modules/strcasestr-tests (Files): Likewise.
5879         * modules/strchrnul-tests (Files): Likewise.
5880         * modules/strerror-tests (Files): Likewise.
5881         * modules/striconv-tests (Files): Likewise.
5882         * modules/striconveh-tests (Files): Likewise.
5883         * modules/striconveha-tests (Files): Likewise.
5884         * modules/strsignal-tests (Files): Likewise.
5885         * modules/strstr-tests (Files): Likewise.
5886         * modules/strtod-tests (Files): Likewise.
5887         * modules/strverscmp-tests (Files): Likewise.
5888         * modules/symlink-tests (Files): Likewise.
5889         * modules/symlinkat-tests (Files): Likewise.
5890         * modules/trunc-tests (Files): Likewise.
5891         * modules/truncf-tests (Files): Likewise.
5892         * modules/truncl-tests (Files): Likewise.
5893         * modules/uname-tests (Files): Likewise.
5894         * modules/unicase/cased-tests (Files): Likewise.
5895         * modules/unicase/ignorable-tests (Files): Likewise.
5896         * modules/unicase/locale-language-tests (Files): Likewise.
5897         * modules/unicase/tolower-tests (Files): Likewise.
5898         * modules/unicase/totitle-tests (Files): Likewise.
5899         * modules/unicase/toupper-tests (Files): Likewise.
5900         * modules/unicase/u8-casecmp-tests (Files): Likewise.
5901         * modules/unicase/u8-casecoll-tests (Files): Likewise.
5902         * modules/unicase/u8-casefold-tests (Files): Likewise.
5903         * modules/unicase/u8-is-cased-tests (Files): Likewise.
5904         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
5905         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
5906         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
5907         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
5908         * modules/unicase/u8-tolower-tests (Files): Likewise.
5909         * modules/unicase/u8-totitle-tests (Files): Likewise.
5910         * modules/unicase/u8-toupper-tests (Files): Likewise.
5911         * modules/unicase/u16-casecmp-tests (Files): Likewise.
5912         * modules/unicase/u16-casecoll-tests (Files): Likewise.
5913         * modules/unicase/u16-casefold-tests (Files): Likewise.
5914         * modules/unicase/u16-is-cased-tests (Files): Likewise.
5915         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
5916         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
5917         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
5918         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
5919         * modules/unicase/u16-tolower-tests (Files): Likewise.
5920         * modules/unicase/u16-totitle-tests (Files): Likewise.
5921         * modules/unicase/u16-toupper-tests (Files): Likewise.
5922         * modules/unicase/u32-casecmp-tests (Files): Likewise.
5923         * modules/unicase/u32-casecoll-tests (Files): Likewise.
5924         * modules/unicase/u32-casefold-tests (Files): Likewise.
5925         * modules/unicase/u32-is-cased-tests (Files): Likewise.
5926         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
5927         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
5928         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
5929         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
5930         * modules/unicase/u32-tolower-tests (Files): Likewise.
5931         * modules/unicase/u32-totitle-tests (Files): Likewise.
5932         * modules/unicase/u32-toupper-tests (Files): Likewise.
5933         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
5934         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
5935         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
5936         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
5937         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
5938         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
5939         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
5940         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
5941         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
5942         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
5943         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
5944         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
5945         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
5946         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
5947         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
5948         * modules/unictype/bidicategory-name-tests (Files): Likewise.
5949         * modules/unictype/bidicategory-of-tests (Files): Likewise.
5950         * modules/unictype/bidicategory-test-tests (Files): Likewise.
5951         * modules/unictype/block-list-tests (Files): Likewise.
5952         * modules/unictype/block-of-tests (Files): Likewise.
5953         * modules/unictype/block-test-tests (Files): Likewise.
5954         * modules/unictype/category-C-tests (Files): Likewise.
5955         * modules/unictype/category-Cc-tests (Files): Likewise.
5956         * modules/unictype/category-Cf-tests (Files): Likewise.
5957         * modules/unictype/category-Cn-tests (Files): Likewise.
5958         * modules/unictype/category-Co-tests (Files): Likewise.
5959         * modules/unictype/category-Cs-tests (Files): Likewise.
5960         * modules/unictype/category-L-tests (Files): Likewise.
5961         * modules/unictype/category-Ll-tests (Files): Likewise.
5962         * modules/unictype/category-Lm-tests (Files): Likewise.
5963         * modules/unictype/category-Lo-tests (Files): Likewise.
5964         * modules/unictype/category-Lt-tests (Files): Likewise.
5965         * modules/unictype/category-Lu-tests (Files): Likewise.
5966         * modules/unictype/category-M-tests (Files): Likewise.
5967         * modules/unictype/category-Mc-tests (Files): Likewise.
5968         * modules/unictype/category-Me-tests (Files): Likewise.
5969         * modules/unictype/category-Mn-tests (Files): Likewise.
5970         * modules/unictype/category-N-tests (Files): Likewise.
5971         * modules/unictype/category-Nd-tests (Files): Likewise.
5972         * modules/unictype/category-Nl-tests (Files): Likewise.
5973         * modules/unictype/category-No-tests (Files): Likewise.
5974         * modules/unictype/category-P-tests (Files): Likewise.
5975         * modules/unictype/category-Pc-tests (Files): Likewise.
5976         * modules/unictype/category-Pd-tests (Files): Likewise.
5977         * modules/unictype/category-Pe-tests (Files): Likewise.
5978         * modules/unictype/category-Pf-tests (Files): Likewise.
5979         * modules/unictype/category-Pi-tests (Files): Likewise.
5980         * modules/unictype/category-Po-tests (Files): Likewise.
5981         * modules/unictype/category-Ps-tests (Files): Likewise.
5982         * modules/unictype/category-S-tests (Files): Likewise.
5983         * modules/unictype/category-Sc-tests (Files): Likewise.
5984         * modules/unictype/category-Sk-tests (Files): Likewise.
5985         * modules/unictype/category-Sm-tests (Files): Likewise.
5986         * modules/unictype/category-So-tests (Files): Likewise.
5987         * modules/unictype/category-Z-tests (Files): Likewise.
5988         * modules/unictype/category-Zl-tests (Files): Likewise.
5989         * modules/unictype/category-Zp-tests (Files): Likewise.
5990         * modules/unictype/category-Zs-tests (Files): Likewise.
5991         * modules/unictype/category-and-not-tests (Files): Likewise.
5992         * modules/unictype/category-and-tests (Files): Likewise.
5993         * modules/unictype/category-byname-tests (Files): Likewise.
5994         * modules/unictype/category-name-tests (Files): Likewise.
5995         * modules/unictype/category-none-tests (Files): Likewise.
5996         * modules/unictype/category-of-tests (Files): Likewise.
5997         * modules/unictype/category-or-tests (Files): Likewise.
5998         * modules/unictype/category-test-withtable-tests (Files): Likewise.
5999         * modules/unictype/combining-class-tests (Files): Likewise.
6000         * modules/unictype/ctype-alnum-tests (Files): Likewise.
6001         * modules/unictype/ctype-alpha-tests (Files): Likewise.
6002         * modules/unictype/ctype-blank-tests (Files): Likewise.
6003         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
6004         * modules/unictype/ctype-digit-tests (Files): Likewise.
6005         * modules/unictype/ctype-graph-tests (Files): Likewise.
6006         * modules/unictype/ctype-lower-tests (Files): Likewise.
6007         * modules/unictype/ctype-print-tests (Files): Likewise.
6008         * modules/unictype/ctype-punct-tests (Files): Likewise.
6009         * modules/unictype/ctype-space-tests (Files): Likewise.
6010         * modules/unictype/ctype-upper-tests (Files): Likewise.
6011         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
6012         * modules/unictype/decimal-digit-tests (Files): Likewise.
6013         * modules/unictype/digit-tests (Files): Likewise.
6014         * modules/unictype/mirror-tests (Files): Likewise.
6015         * modules/unictype/numeric-tests (Files): Likewise.
6016         * modules/unictype/property-alphabetic-tests (Files): Likewise.
6017         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
6018         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
6019         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
6020         Likewise.
6021         * modules/unictype/property-bidi-block-separator-tests (Files):
6022         Likewise.
6023         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
6024         Likewise.
6025         * modules/unictype/property-bidi-common-separator-tests (Files):
6026         Likewise.
6027         * modules/unictype/property-bidi-control-tests (Files): Likewise.
6028         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
6029         Likewise.
6030         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
6031         Likewise.
6032         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
6033         Likewise.
6034         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
6035         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
6036         Likewise.
6037         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
6038         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
6039         Likewise.
6040         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
6041         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
6042         * modules/unictype/property-bidi-segment-separator-tests (Files):
6043         Likewise.
6044         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
6045         * modules/unictype/property-byname-tests (Files): Likewise.
6046         * modules/unictype/property-combining-tests (Files): Likewise.
6047         * modules/unictype/property-composite-tests (Files): Likewise.
6048         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
6049         * modules/unictype/property-dash-tests (Files): Likewise.
6050         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
6051         * modules/unictype/property-default-ignorable-code-point-tests (Files):
6052         Likewise.
6053         * modules/unictype/property-deprecated-tests (Files): Likewise.
6054         * modules/unictype/property-diacritic-tests (Files): Likewise.
6055         * modules/unictype/property-extender-tests (Files): Likewise.
6056         * modules/unictype/property-format-control-tests (Files): Likewise.
6057         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
6058         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
6059         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
6060         * modules/unictype/property-hex-digit-tests (Files): Likewise.
6061         * modules/unictype/property-hyphen-tests (Files): Likewise.
6062         * modules/unictype/property-id-continue-tests (Files): Likewise.
6063         * modules/unictype/property-id-start-tests (Files): Likewise.
6064         * modules/unictype/property-ideographic-tests (Files): Likewise.
6065         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
6066         * modules/unictype/property-ids-trinary-operator-tests (Files):
6067         Likewise.
6068         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
6069         * modules/unictype/property-iso-control-tests (Files): Likewise.
6070         * modules/unictype/property-join-control-tests (Files): Likewise.
6071         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
6072         * modules/unictype/property-line-separator-tests (Files): Likewise.
6073         * modules/unictype/property-logical-order-exception-tests (Files):
6074         Likewise.
6075         * modules/unictype/property-lowercase-tests (Files): Likewise.
6076         * modules/unictype/property-math-tests (Files): Likewise.
6077         * modules/unictype/property-non-break-tests (Files): Likewise.
6078         * modules/unictype/property-not-a-character-tests (Files): Likewise.
6079         * modules/unictype/property-numeric-tests (Files): Likewise.
6080         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
6081         * modules/unictype/property-other-default-ignorable-code-point-tests
6082         (Files): Likewise.
6083         * modules/unictype/property-other-grapheme-extend-tests (Files):
6084         Likewise.
6085         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
6086         * modules/unictype/property-other-id-start-tests (Files): Likewise.
6087         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
6088         * modules/unictype/property-other-math-tests (Files): Likewise.
6089         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
6090         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
6091         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
6092         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
6093         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
6094         * modules/unictype/property-private-use-tests (Files): Likewise.
6095         * modules/unictype/property-punctuation-tests (Files): Likewise.
6096         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
6097         * modules/unictype/property-radical-tests (Files): Likewise.
6098         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
6099         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
6100         * modules/unictype/property-space-tests (Files): Likewise.
6101         * modules/unictype/property-terminal-punctuation-tests (Files):
6102         Likewise.
6103         * modules/unictype/property-test-tests (Files): Likewise.
6104         * modules/unictype/property-titlecase-tests (Files): Likewise.
6105         * modules/unictype/property-unassigned-code-value-tests (Files):
6106         Likewise.
6107         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
6108         * modules/unictype/property-uppercase-tests (Files): Likewise.
6109         * modules/unictype/property-variation-selector-tests (Files): Likewise.
6110         * modules/unictype/property-white-space-tests (Files): Likewise.
6111         * modules/unictype/property-xid-continue-tests (Files): Likewise.
6112         * modules/unictype/property-xid-start-tests (Files): Likewise.
6113         * modules/unictype/property-zero-width-tests (Files): Likewise.
6114         * modules/unictype/scripts-tests (Files): Likewise.
6115         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
6116         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
6117         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
6118         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
6119         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
6120         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
6121         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
6122         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
6123         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
6124         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
6125         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
6126         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
6127         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
6128         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
6129         * modules/uninorm/composition-tests (Files): Likewise.
6130         * modules/uninorm/decomposing-form-tests (Files): Likewise.
6131         * modules/uninorm/decomposition-tests (Files): Likewise.
6132         * modules/uninorm/filter-tests (Files): Likewise.
6133         * modules/uninorm/nfc-tests (Files): Likewise.
6134         * modules/uninorm/nfd-tests (Files): Likewise.
6135         * modules/uninorm/nfkc-tests (Files): Likewise.
6136         * modules/uninorm/nfkd-tests (Files): Likewise.
6137         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
6138         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
6139         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
6140         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
6141         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
6142         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
6143         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
6144         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
6145         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
6146         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
6147         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
6148         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
6149         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
6150         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
6151         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
6152         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
6153         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
6154         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
6155         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
6156         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
6157         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
6158         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
6159         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
6160         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
6161         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
6162         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
6163         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
6164         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
6165         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
6166         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
6167         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
6168         * modules/uniwidth/u8-width-tests (Files): Likewise.
6169         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
6170         * modules/uniwidth/u16-width-tests (Files): Likewise.
6171         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
6172         * modules/uniwidth/u32-width-tests (Files): Likewise.
6173         * modules/uniwidth/width-tests (Files): Likewise.
6174         * modules/unlink-tests (Files): Likewise.
6175         * modules/unsetenv-tests (Files): Likewise.
6176         * modules/usleep-tests (Files): Likewise.
6177         * modules/utimens-tests (Files): Likewise.
6178         * modules/utimensat-tests (Files): Likewise.
6179         * modules/vasnprintf-posix-tests (Files): Likewise.
6180         * modules/vasnprintf-tests (Files): Likewise.
6181         * modules/vasprintf-posix-tests (Files): Likewise.
6182         * modules/vasprintf-tests (Files): Likewise.
6183         * modules/vdprintf-posix-tests (Files): Likewise.
6184         * modules/vfprintf-posix-tests (Files): Likewise.
6185         * modules/vprintf-posix-tests (Files): Likewise.
6186         * modules/vsnprintf-posix-tests (Files): Likewise.
6187         * modules/vsnprintf-tests (Files): Likewise.
6188         * modules/vsprintf-posix-tests (Files): Likewise.
6189         * modules/wcrtomb-tests (Files): Likewise.
6190         * modules/wcsnrtombs-tests (Files): Likewise.
6191         * modules/wcsrtombs-tests (Files): Likewise.
6192         * modules/wctype-tests (Files): Likewise.
6193         * modules/wcwidth-tests (Files): Likewise.
6194         * modules/xmemdup0-tests (Files): Likewise.
6195         * modules/xprintf-posix-tests (Files): Likewise.
6196         * modules/xvasprintf-tests (Files): Likewise.
6197
6198 2009-12-24  Eric Blake  <ebb9@byu.net>
6199
6200         test-nanosleep: fix typo
6201         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
6202         patch.
6203         Reported by Bruno Haible.
6204
6205 2009-12-24  Bruno Haible  <bruno@clisp.org>
6206
6207         Reduce namespace pollution on glibc systems.
6208         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
6209         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
6210         systems.
6211         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
6212         <getopt.h> on glibc systems.
6213         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
6214         systems.
6215         * lib/fcntl.c: Include <unistd.h> here instead.
6216
6217 2009-12-24  Bruno Haible  <bruno@clisp.org>
6218
6219         * lib/stdlib.in.h (includes): Fix typo in today's commit.
6220
6221 2009-12-24  Eric Blake  <ebb9@byu.net>
6222
6223         tests: add signature checks
6224         * tests/signature.h (SIGNATURE_CHECK): New file.
6225         * modules/atexit-tests (Files): Use it.
6226         * modules/btowc-tests (Files): Likewise.
6227         * modules/canonicalize-lgpl-tests (Files): Likewise.
6228         * modules/ceilf-tests (Files): Likewise.
6229         * modules/ceill-tests (Files): Likewise.
6230         * modules/chown-tests (Files): Likewise.
6231         * modules/dprintf-posix-tests (Files): Likewise.
6232         * modules/dup2-tests (Files): Likewise.
6233         * modules/dup3-tests (Files): Likewise.
6234         * modules/duplocale-tests (Files): Likewise.
6235         * modules/fchdir-tests (Files): Likewise.
6236         * modules/fcntl-tests (Files): Likewise.
6237         * modules/fdopendir-tests (Files): Likewise.
6238         * modules/fflush-tests (Files): Likewise.
6239         * modules/flock-tests (Files): Likewise.
6240         * modules/floorf-tests (Files): Likewise.
6241         * modules/floorl-tests (Files): Likewise.
6242         * modules/fnmatch-tests (Files): Likewise.
6243         * modules/fopen-tests (Files): Likewise.
6244         * modules/fprintf-posix-tests (Files): Likewise.
6245         * modules/freopen-tests (Files): Likewise.
6246         * modules/frexp-nolibm-tests (Files): Likewise.
6247         * modules/frexp-tests (Files): Likewise.
6248         * modules/frexpl-nolibm-tests (Files): Likewise.
6249         * modules/frexpl-tests (Files): Likewise.
6250         * modules/fseek-tests (Files): Likewise.
6251         * modules/fseeko-tests (Files): Likewise.
6252         * modules/fsync-tests (Files): Likewise.
6253         * modules/ftell-tests (Files): Likewise.
6254         * modules/ftello-tests (Files): Likewise.
6255         * modules/futimens-tests (Files): Likewise.
6256         * modules/getaddrinfo-tests (Files): Likewise.
6257         * modules/getcwd-tests (Files): Likewise.
6258         * modules/getdelim-tests (Files): Likewise.
6259         * modules/getdtablesize-tests (Files): Likewise.
6260         * modules/getgroups-tests (Files): Likewise.
6261         * modules/gethostname-tests (Files): Likewise.
6262         * modules/getline-tests (Files): Likewise.
6263         * modules/getopt-posix-tests (Files): Likewise.
6264         * modules/gettimeofday-tests (Files): Likewise.
6265         * modules/glob-tests (Files): Likewise.
6266         * modules/iconv-tests (Files): Likewise.
6267         * modules/inet_ntop-tests (Files): Likewise.
6268         * modules/inet_pton-tests (Files): Likewise.
6269         * modules/isblank-tests (Files): Likewise.
6270         * modules/lchown-tests (Files): Likewise.
6271         * modules/ldexpl-tests (Files): Likewise.
6272         * modules/link-tests (Files): Likewise.
6273         * modules/linkat-tests (Files): Likewise.
6274         * modules/lseek-tests (Files): Likewise.
6275         * modules/lstat-tests (Files): Likewise.
6276         * modules/mbrtowc-tests (Files): Likewise.
6277         * modules/mbsinit-tests (Files): Likewise.
6278         * modules/mbsnrtowcs-tests (Files): Likewise.
6279         * modules/mbsrtowcs-tests (Files): Likewise.
6280         * modules/memchr-tests (Files): Likewise.
6281         * modules/memcmp-tests (Files): Likewise.
6282         * modules/memmem-tests (Files): Likewise.
6283         * modules/memrchr-tests (Files): Likewise.
6284         * modules/mkdir-tests (Files): Likewise.
6285         * modules/mkfifo-tests (Files): Likewise.
6286         * modules/mkfifoat-tests (Files): Likewise.
6287         * modules/mknod-tests (Files): Likewise.
6288         * modules/nanosleep-tests (Files): Likewise.
6289         * modules/nl_langinfo-tests (Files): Likewise.
6290         * modules/obstack-printf-tests (Files): Likewise.
6291         * modules/open-tests (Files): Likewise.
6292         * modules/openat-tests (Files): Likewise.
6293         * modules/perror-tests (Files): Likewise.
6294         * modules/pipe2-tests (Files): Likewise.
6295         * modules/poll-tests (Files): Likewise.
6296         * modules/popen-tests (Files): Likewise.
6297         * modules/posix_spawn-tests (Files): Likewise.
6298         * modules/posix_spawnp-tests (Files): Likewise.
6299         * modules/pread-tests (Files): Likewise.
6300         * modules/printf-posix-tests (Files): Likewise.
6301         * modules/pty-tests (Files): Likewise.
6302         * modules/random_r-tests (Files): Likewise.
6303         * modules/rawmemchr-tests (Files): Likewise.
6304         * modules/readlink-tests (Files): Likewise.
6305         * modules/remove-tests (Files): Likewise.
6306         * modules/rename-tests (Files): Likewise.
6307         * modules/renameat-tests (Files): Likewise.
6308         * modules/rmdir-tests (Files): Likewise.
6309         * modules/round-tests (Files): Likewise.
6310         * modules/roundf-tests (Files): Likewise.
6311         * modules/roundl-tests (Files): Likewise.
6312         * modules/select-tests (Files): Likewise.
6313         * modules/setenv-tests (Files): Likewise.
6314         * modules/sigaction-tests (Files): Likewise.
6315         * modules/sleep-tests (Files): Likewise.
6316         * modules/snprintf-posix-tests (Files): Likewise.
6317         * modules/snprintf-tests (Files): Likewise.
6318         * modules/sprintf-posix-tests (Files): Likewise.
6319         * modules/stat-tests (Files): Likewise.
6320         * modules/strcasestr-tests (Files): Likewise.
6321         * modules/strchrnul-tests (Files): Likewise.
6322         * modules/strerror-tests (Files): Likewise.
6323         * modules/strsignal-tests (Files): Likewise.
6324         * modules/strstr-tests (Files): Likewise.
6325         * modules/strtod-tests (Files): Likewise.
6326         * modules/strverscmp-tests (Files): Likewise.
6327         * modules/symlink-tests (Files): Likewise.
6328         * modules/symlinkat-tests (Files): Likewise.
6329         * modules/times-tests (Files): Likewise.
6330         * modules/trunc-tests (Files): Likewise.
6331         * modules/truncf-tests (Files): Likewise.
6332         * modules/truncl-tests (Files): Likewise.
6333         * modules/tsearch-tests (Files): Likewise.
6334         * modules/uname-tests (Files): Likewise.
6335         * modules/unlink-tests (Files): Likewise.
6336         * modules/unsetenv-tests (Files): Likewise.
6337         * modules/usleep-tests (Files): Likewise.
6338         * modules/utimensat-tests (Files): Likewise.
6339         * modules/vasprintf-tests (Files): Likewise.
6340         * modules/vdprintf-posix-tests (Files): Likewise.
6341         * modules/vfprintf-posix-tests (Files): Likewise.
6342         * modules/vprintf-posix-tests (Files): Likewise.
6343         * modules/vsnprintf-posix-tests (Files): Likewise.
6344         * modules/vsnprintf-tests (Files): Likewise.
6345         * modules/vsprintf-posix-tests (Files): Likewise.
6346         * modules/wcrtomb-tests (Files): Likewise.
6347         * modules/wcsnrtombs-tests (Files): Likewise.
6348         * modules/wcsrtombs-tests (Files): Likewise.
6349         * modules/wcwidth-tests (Files): Likewise.
6350         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
6351         * tests/test-isinf.c (isinf): Likewise.
6352         * tests/test-isnan.c (isnan): Likewise.
6353         * tests/test-signbit.c (signbit): Likewise.
6354         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
6355         declaration, either as macro or with correct signature.
6356         (select): Ensure function under test is declared with correct
6357         signature in correct header.
6358         * tests/test-atexit.c (atexit): Likewise.
6359         * tests/test-btowc.c (btowc): Likewise.
6360         * tests/test-canonicalize-lgpl.c (realpath)
6361         (canonicalize_file_name): Likewise.
6362         * tests/test-ceilf1.c (ceilf): Likewise.
6363         * tests/test-ceill.c (ceill): Likewise.
6364         * tests/test-chown.c (chown): Likewise.
6365         * tests/test-dprintf-posix.c (dprintf): Likewise.
6366         * tests/test-dup2.c (dup2): Likewise.
6367         * tests/test-dup3.c (dup3): Likewise.
6368         * tests/test-duplocale.c (duplocale): Likewise.
6369         * tests/test-fchdir.c (fchdir): Likewise.
6370         * tests/test-fchownat.c (fchownat): Likewise.
6371         * tests/test-fcntl.c (fcntl): Likewise.
6372         * tests/test-fdopendir.c (fdopendir): Likewise.
6373         * tests/test-fflush.c (fflush): Likewise.
6374         * tests/test-flock.c (flock): Likewise.
6375         * tests/test-floorf1.c (floorf): Likewise.
6376         * tests/test-floorl.c (floorl): Likewise.
6377         * tests/test-fnmatch.c (fnmatch): Likewise.
6378         * tests/test-fopen.c (fopen): Likewise.
6379         * tests/test-fprintf-posix.c (fprintf): Likewise.
6380         * tests/test-freopen.c (freopen): Likewise.
6381         * tests/test-frexp.c (frexp): Likewise.
6382         * tests/test-frexpl.c (frexpl): Likewise.
6383         * tests/test-fseek.c (fseek): Likewise.
6384         * tests/test-fseeko.c (fseeko): Likewise.
6385         * tests/test-fstatat.c (fstatat): Likewise.
6386         * tests/test-fsync.c (fsync): Likewise.
6387         * tests/test-ftell.c (ftell): Likewise.
6388         * tests/test-ftello.c (ftello): Likewise.
6389         * tests/test-futimens.c (futimens): Likewise.
6390         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
6391         (gai_strerror): Likewise.
6392         * tests/test-getcwd.c (getcwd): Likewise.
6393         * tests/test-getdelim.c (getdelim): Likewise.
6394         * tests/test-getdtablesize.c (getdtablesize): Likewise.
6395         * tests/test-getgroups.c (getgroups): Likewise.
6396         * tests/test-gethostname.c (gethostname): Likewise.
6397         * tests/test-getline.c (getline): Likewise.
6398         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
6399         Likewise.
6400         * tests/test-gettimeofday.c (gettimeofday): Likewise.
6401         * tests/test-glob.c (glob, globfree): Likewise.
6402         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
6403         * tests/test-inet_ntop.c (inet_ntop): Likewise.
6404         * tests/test-inet_pton.c (inet_pton): Likewise.
6405         * tests/test-isblank.c (isblank): Likewise.
6406         * tests/test-lchown.c (lchown): Likewise.
6407         * tests/test-ldexpl.c (ldexpl): Likewise.
6408         * tests/test-link.c (link): Likewise.
6409         * tests/test-linkat.c (linkat): Likewise.
6410         * tests/test-lseek.c (lseek): Likewise.
6411         * tests/test-lstat.c (lstat): Likewise.
6412         * tests/test-mbrtowc.c (mbrtowc): Likewise.
6413         * tests/test-mbsinit.c (mbsinit): Likewise.
6414         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
6415         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
6416         * tests/test-memchr.c (memchr): Likewise.
6417         * tests/test-memcmp.c (memcmp): Likewise.
6418         * tests/test-memmem.c (memmem): Likewise.
6419         * tests/test-memrchr.c (memrchr): Likewise.
6420         * tests/test-mkdir.c (mkdir): Likewise.
6421         * tests/test-mkdirat.c (mkdirat): Likewise.
6422         * tests/test-mkfifo.c (mkfifo): Likewise.
6423         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
6424         * tests/test-mknod.c (mknod): Likewise.
6425         * tests/test-nanosleep.c (nanosleep): Likewise.
6426         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
6427         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
6428         Likewise.
6429         * tests/test-open.c (open): Likewise.
6430         * tests/test-openat.c (openat): Likewise.
6431         * tests/test-perror.c (perror): Likewise.
6432         * tests/test-pipe2.c (pipe2): Likewise.
6433         * tests/test-poll.c (poll): Likewise.
6434         * tests/test-popen.c (popen, pclose): Likewise.
6435         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
6436         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
6437         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
6438         (posix_spawn_file_actions_destroy)
6439         (posix_spawn_file_actions_addclose)
6440         (posix_spawn_file_actions_addopen)
6441         (posix_spawn_file_actions_adddup2): Likewise.
6442         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
6443         * tests/test-pread.c (pread): Likewise.
6444         * tests/test-printf-posix.c (printf): Likewise.
6445         * tests/test-pty.c (openpty, forkpty): Likewise.
6446         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
6447         (random_r): Likewise.
6448         * tests/test-rawmemchr.c (rawmemchr): Likewise.
6449         * tests/test-readlink.c (readlink): Likewise.
6450         * tests/test-remove.c (remove): Likewise.
6451         * tests/test-rename.c (rename): Likewise.
6452         * tests/test-renameat.c (renameat): Likewise.
6453         * tests/test-rmdir.c (rmdir): Likewise.
6454         * tests/test-round1.c (round): Likewise.
6455         * tests/test-roundf1.c (roundf): Likewise.
6456         * tests/test-roundl.c (roundl): Likewise.
6457         * tests/test-setenv.c (setenv): Likewise.
6458         * tests/test-sigaction.c (sigaction): Likewise.
6459         * tests/test-sleep.c (sleep): Likewise.
6460         * tests/test-snprintf.c (snprintf): Likewise.
6461         * tests/test-sprintf-posix.c (sprintf): Likewise.
6462         * tests/test-stat.c (stat): Likewise.
6463         * tests/test-stpncpy.c (stpncpy): Likewise.
6464         * tests/test-strcasestr.c (strcasestr): Likewise.
6465         * tests/test-strchrnul.c (strchrnul): Likewise.
6466         * tests/test-strerror.c (strerror): Likewise.
6467         * tests/test-strsignal.c (strsignal): Likewise.
6468         * tests/test-strstr.c (strstr): Likewise.
6469         * tests/test-strtod.c (strtod): Likewise.
6470         * tests/test-strverscmp.c (strverscmp): Likewise.
6471         * tests/test-symlink.c (symlink): Likewise.
6472         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
6473         * tests/test-times.c (times): Likewise.
6474         * tests/test-trunc1.c (trunc): Likewise.
6475         * tests/test-truncf1.c (truncf): Likewise.
6476         * tests/test-truncl.c (truncl): Likewise.
6477         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
6478         Likewise.
6479         * tests/test-uname.c (uname): Likewise.
6480         * tests/test-unlink.c (unlink): Likewise.
6481         * tests/test-unlinkat.c (unlinkat): Likewise.
6482         * tests/test-unsetenv.c (unsetenv): Likewise.
6483         * tests/test-usleep.c (usleep): Likewise.
6484         * tests/test-utimensat.c (utimensat): Likewise.
6485         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
6486         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
6487         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
6488         * tests/test-vprintf-posix.c (vprintf): Likewise.
6489         * tests/test-vsnprintf.c (vsnprintf): Likewise.
6490         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
6491         * tests/test-wcrtomb.c (wcrtomb): Likewise.
6492         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
6493         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
6494         * tests/test-wcwidth.c (wcwidth): Likewise.
6495
6496         build: pull in conditional headers during GNULIB_POSIXCHECK
6497         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
6498         definitions from any conditionally-included headers.
6499         * lib/stdlib.in.h (includes): Likewise.
6500         * lib/unistd.in.h (includes): Likewise.
6501
6502 2009-12-24  Bruno Haible  <bruno@clisp.org>
6503
6504         * tests/test-argv-iter.c: Include header file being tested immediately
6505         after config.h.
6506         * tests/test-base64.c: Likewise.
6507         * tests/test-flock.c: Likewise.
6508         * tests/test-fsync.c: Likewise.
6509         * tests/test-getdate.c: Likewise.
6510         * tests/test-getndelim2.c: Likewise.
6511         * tests/test-isfinite.c: Likewise.
6512         * tests/test-isinf.c: Likewise.
6513         * tests/test-strerror.c: Likewise.
6514         * tests/test-strsignal.c: Likewise.
6515
6516 2009-12-23  Eric Blake  <ebb9@byu.net>
6517
6518         unistd: work around cygwin bug
6519         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
6520         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
6521         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
6522
6523 2009-12-23  Bruno Haible  <bruno@clisp.org>
6524
6525         localename: More tests.
6526         * tests/test-localename.c (SIZEOF): New macro.
6527         (categories): New variable.
6528         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
6529         test_locale_name_default): Add test w.r.t. thread locale.
6530         (test_locale_name_thread): New function.
6531         (main): Invoke it.
6532
6533         localename: Make aware of thread locale.
6534         * lib/localename.h (gl_locale_name_thread): New declaration.
6535         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
6536         behaviour with respect to thread locale.
6537         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
6538         <langinfo.h>, glthread/lock.h.
6539         (SIZE_BITS): New macro.
6540         (string_hash): New function.
6541         (struct hash_node): New type.
6542         (HASH_TABLE_SIZE): New macro.
6543         (struniq_hash_table, struniq_lock): New variables.
6544         (struniq): New function.
6545         (gl_locale_name_thread): New function.
6546         (gl_locale_name): Invoke it.
6547         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
6548         * modules/localename (Depends-on): Add lock.
6549         Reported by Mike Gran <spk121@yahoo.com>.
6550
6551 2009-12-23  Eric Blake  <ebb9@byu.net>
6552
6553         va-args: new module
6554         * modules/va-args: New file.
6555         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
6556         * MODULES.html.sh (Core language properties): Mention it.
6557
6558         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
6559         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
6560         named alias for __attribute__((__unused__)).
6561         * lib/chown.c: Update client.
6562         * lib/fchmodat.c: Likewise.
6563         * lib/fts.c: Likewise.
6564         * lib/getdate.y: Likewise.
6565         * lib/getgroups.c: Likewise.
6566         * lib/getopt.c: Likewise.
6567         * lib/getugroups.c: Likewise.
6568         * lib/mkdir.c: Likewise.
6569         * lib/mkfifo.c: Likewise.
6570         * lib/mkfifoat.c: Likewise.
6571         * lib/mknod.c: Likewise.
6572         * lib/mknodat.c: Likewise.
6573         * lib/readlink.c: Likewise.
6574         * lib/se-context.in.h: Likewise.
6575         * lib/se-selinux.in.h: Likewise.
6576         * lib/sockets.c: Likewise.
6577         * lib/symlink.c: Likewise.
6578         * lib/symlinkat.c: Likewise.
6579         * lib/unicodeio.c: Likewise.
6580         * lib/unistr.h: Likewise.
6581         * tests/test-areadlink.c: Likewise.
6582         * tests/test-areadlinkat.c: Likewise.
6583         * tests/test-filenamecat.c: Likewise.
6584         * tests/test-fseeko.c: Likewise.
6585         * tests/test-ftello.c: Likewise.
6586         * tests/test-getdate.c: Likewise.
6587         * tests/test-getgroups.c: Likewise.
6588         * tests/test-gethostname.c: Likewise.
6589         * tests/test-quotearg.c: Likewise.
6590         * tests/test-version-etc.c: Likewise.
6591         * tests/test-xalloc-die.c: Likewise.
6592         * tests/test-xfprintf-posix.c: Likewise.
6593         * tests/test-xprintf-posix.c: Likewise.
6594         * tests/test-xvasprintf.c: Likewise.
6595
6596         tests: avoid compiler warnings
6597         * tests/test-fcntl.c (main): Delete unused parameters.
6598         * tests/test-freopen-safer.c (main): Likewise.
6599         * tests/test-xalloc-die.c (main): Mark unused parameters.
6600         * tests/test-fseeko.c (main): Likewise.
6601         * tests/test-ftello.c (main): Likewise.
6602         * tests/test-nanosleep.c (main): Avoid declaration warning.
6603         * tests/test-sleep.c (main): Likewise.
6604         * tests/test-unsetenv.c (main): Silence warning about string
6605         literal.
6606         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
6607
6608 2009-12-23  Bruno Haible  <bruno@clisp.org>
6609
6610         * tests/test-localename.c (test_locale_name): New function, extracted
6611         from main. Also test mixed situations.
6612         (test_locale_name_posix, test_locale_name_environ,
6613         test_locale_name_default): New functions.
6614         (main): Invoke them all.
6615         * modules/localename-tests (configure.ac): Test for newlocale.
6616
6617 2009-12-23  Bruno Haible  <bruno@clisp.org>
6618
6619         unistd: Ensure getcwd gets declared before being overridden.
6620         * lib/unistd.in.h: Conditionally include <io.h>.
6621
6622 2009-12-22  Bruno Haible  <bruno@clisp.org>
6623
6624         wchar: Diagnose broken combination of glibc and gcc versions and flags.
6625         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
6626         (gl_WCHAR_H): Invoke it.
6627         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
6628         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
6629         Reported by Karl Berry <karl@freefriends.org>.
6630
6631 2009-12-22  Eric Blake  <ebb9@byu.net>
6632
6633         math, unistd: avoid redundant includes
6634         * lib/math.in.h (isnan): No need to re-include <math.h>.
6635         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
6636
6637         getsubopt: work around cygwin bug
6638         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
6639         avoid conflicting with system getsubopt.
6640         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
6641         bug.
6642
6643         getopt: synchronize from glibc
6644         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
6645         parameter order.  Adjust all callers.
6646         (_getopt_internal_r, main): Adjust quoting in error messages.
6647         Drop considerations for outdated POSIX 1003.2 error message.
6648         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
6649         callers.
6650         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
6651
6652         test-getopt: test stderr behavior
6653         * modules/getopt-posix-tests (Depends-on): Add dup2.
6654         * tests/test-getopt.c (ASSERT): Avoid stderr.
6655         (main): Move stderr to a temporary file.
6656         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
6657         Instead, add parameter to inform caller if output occurred.
6658         (test_getopt): Adjust all existing tests to expect silence, and
6659         add new tests of leading ":".
6660         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6661         glibc shortcomings with leading "-:" or "+:" in optstring.
6662         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6663         Likewise.
6664         * doc/posix-functions/getopt.texi (getopt): Likewise.
6665
6666         test-getopt: enhance test
6667         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
6668         supports optind=0.
6669         * tests/test-getopt.c (OPTIND_MIN): Move...
6670         * tests/test-getopt.h (OPTIND_MIN): ...here.
6671         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
6672         Require that optind=0 works, since modern BSD supports it in
6673         addition to optreset, and since coreutils expects it.
6674         (test_getopt_long_only): New test.
6675         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
6676         glibc shortcomings with 'W;', and enforcement of optind=0.
6677         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
6678         Likewise.
6679
6680 2009-12-21  Bruno Haible  <bruno@clisp.org>
6681
6682         localename: Improvements for MacOS X and Cygwin.
6683         * lib/localename.h (gl_locale_name_environ): New declaration.
6684         * lib/localename.c (gl_locale_name_environ): New function, extracted from
6685         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
6686         (gl_locale_name_posix): Invoke it.
6687         (gl_locale_name_default): Add comments. Use Windows native API also on
6688         Cygwin.
6689
6690 2009-12-21  Bruno Haible  <bruno@clisp.org>
6691
6692         Update list of Win32 locale ids.
6693         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
6694         (LANG_SAMI): Renamed from LANG_SAAMI.
6695         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
6696         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
6697         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
6698         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
6699         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
6700         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
6701         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
6702         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
6703         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
6704         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
6705         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
6706         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
6707         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
6708         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
6709         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
6710         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
6711         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
6712         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
6713         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
6714         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
6715         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
6716         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
6717         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
6718         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
6719         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
6720         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
6721         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
6722         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
6723         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
6724         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
6725         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
6726         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
6727         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
6728         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
6729         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
6730         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
6731         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
6732         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
6733         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
6734         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
6735         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
6736         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
6737         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
6738         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
6739         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
6740         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
6741         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
6742         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
6743         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
6744         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
6745         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
6746         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
6747         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
6748         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
6749         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
6750         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
6751         Add more languages and countries for Sami, Sorbian. Add more countries
6752         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
6753         for Pashto. Change country for Syriac, Tswana.
6754
6755 2009-12-21  Eric Blake  <ebb9@byu.net>
6756
6757         test-utimens: avoid spurious failure
6758         * tests/test-chown.h (nap): Factor...
6759         * tests/nap.h: ...into new file.
6760         * tests/test-lchown.h (nap): Avoid duplication.
6761         * tests/test-utimens-common.h (nap): Use shared implementation,
6762         necessary on file systems with 1-second resolution.
6763         * modules/chown-tests (Files): Include new file.
6764         * modules/fdutimensat-tests (Files): Likewise.
6765         * modules/futimens-tests (Files): Likewise.
6766         * modules/lchown-tests (Files): Likewise.
6767         * modules/openat-tests (Files): Likewise.
6768         * modules/utimens-tests (Files): Likewise.
6769         * modules/utimensat-tests (Files): Likewise.
6770
6771 2009-12-19  Eric Blake  <ebb9@byu.net>
6772
6773         futimens, utimensat: work around Linux bug
6774         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
6775         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
6776         * lib/utimensat.c (rpl_utimensat): Work around it.
6777         * lib/futimens.c (rpl_futimens): Adjust comment.
6778
6779         utimens: work around Linux ctime bug
6780         * lib/utimens.c (detect_ctime_bug): New helper function.
6781         (update_timespec): Differentiate between workaround needed for
6782         this bug vs. what is needed for systems that lack utimensat.
6783         (fdutimens, lutimens): Work around bug.
6784
6785         utimens: check for ctime update
6786         * tests/test-utimens-common.h (check_ctime): Define.
6787         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
6788         * tests/test-futimens.h (test_futimens): Likewise.
6789         * tests/test-lutimens.h (test_lutimens): Likewise.
6790         * doc/posix-functions/futimens.texi (futimens): Document the bug.
6791         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
6792
6793 2009-12-19  Bruno Haible  <bruno@clisp.org>
6794
6795         dprintf-posix: Check against memory leak fixed on 2009-12-15.
6796         * tests/test-dprintf-posix2.sh: New file.
6797         * tests/test-dprintf-posix2.c: New file.
6798         * modules/dprintf-posix-tests (Files): Add them.
6799         (configure.ac): Check for getrlimit and setrlimit.
6800         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6801
6802 2009-12-19  Bruno Haible  <bruno@clisp.org>
6803
6804         fprintf-posix: Check against memory leak fixed on 2009-12-15.
6805         * tests/test-fprintf-posix3.sh: New file.
6806         * tests/test-fprintf-posix3.c: New file.
6807         * modules/fprintf-posix-tests (Files): Add them.
6808         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
6809
6810 2009-12-19  Eric Blake  <ebb9@byu.net>
6811
6812         dirfd: fix prototype
6813         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
6814         * lib/dirfd.c (dirfd): Likewise.
6815
6816         canonicalize: reduce memory usage
6817         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
6818         allocation to size.
6819         Reported by Solar Designer <solar@openwall.com>.
6820
6821 2009-12-19  Bruno Haible  <bruno@clisp.org>
6822
6823         New module attribute 'Applicability'.
6824         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
6825         * gnulib-tool: New option --extract-applicability.
6826         (func_usage): Document it.
6827         (sed_extract_prog): Recognize it.
6828         (func_get_applicability): New function.
6829         (func_import): Generalize handling of 'link-warning' module.
6830         * modules/link-warning (Applicability): New section.
6831         * modules/arg-nonnull (Applicability): New section.
6832         Repoted by Simon Josefsson <simon@josefsson.org>.
6833
6834 2009-12-19  Bruno Haible  <bruno@clisp.org>
6835
6836         fflush: tweak
6837         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
6838         * lib/fseeko.c (rpl_fseeko): Likewise.
6839
6840 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
6841
6842         * lib/gl_list.h: Fix typo in comment.
6843
6844 2009-12-16  Eric Blake  <ebb9@byu.net>
6845
6846         fcntl: use to simplify other modules
6847         * modules/cloexec (Depends-on): Add fcntl.
6848         * modules/fchdir (Depends-on): Likewise.
6849         * modules/fd-safer-flag (Depends-on): Likewise.
6850         * modules/unistd-safer (Depends-on): Likewise.
6851         * modules/dup3 (configure.ac): Set module indicator.
6852         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
6853         missing.
6854         * lib/fchdir.c (_gl_register_dup): Fix comment.
6855         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
6856         * lib/dup-safer.c (dup_safer): Likewise.
6857         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
6858         * lib/dup3.c (dup3): Likewise.
6859         * tests/test-fchdir.c (main): Enhance test.
6860         Fixes a dup_cloexec bug reported by OndÅ™ej Vašík.
6861
6862         fcntl: port portions of fcntl to mingw
6863         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
6864         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
6865         replacement for mingw.
6866         * modules/fcntl (Description): Update.
6867         (Depends-on): Add dup2.
6868         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
6869         * modules/fcntl-h (Makefile.am): Substitute it.
6870         * lib/fcntl.in.h (fcntl): Update declaration.
6871         (F_DUPFD, F_GETFD): New macros, when needed.
6872         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
6873         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
6874         * tests/test-fcntl.c (check_flags, main): Enhance test for items
6875         we now guarantee.
6876
6877         fcntl: work around cygwin bug in F_DUPFD
6878         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
6879         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
6880         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
6881         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
6882         * doc/posix-functions/fcntl.texi (fcntl): Document it.
6883
6884         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
6885         * modules/fcntl (Files): List new files.
6886         (configure.ac): Run a test.
6887         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
6888         * lib/fcntl.c (rpl_fcntl): Likewise.
6889         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
6890         (gl_FCNTL_H): Always replace fcntl.h.
6891         * modules/fcntl-h (Makefile.am): Substitute witnesses.
6892         * lib/fcntl.in.h (fcntl): Declare replacement.
6893         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
6894         needed, plus a witness.
6895         * doc/posix-functions/fcntl.texi (fcntl): Document this.
6896         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
6897         * tests/test-fcntl.c: New file.
6898         * modules/fcntl-tests: Likewise.
6899
6900         binary-io: avoid potential compilation warning
6901         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
6902         directives.
6903
6904         fflush: avoid compilation error on NetBSD
6905         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
6906         between off_t and fpos_t, since the latter is sometimes a struct.
6907         * lib/fseeko.c (rpl_fseeko): Likewise.
6908         Reported by Alexander Nasonov <alnsn@yandex.ru>.
6909
6910 2009-12-15  Eric Blake  <ebb9@byu.net>
6911
6912         fcntl-h, stdio, sys_ioctl: fix declarations
6913         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
6914         function must not take arguments.
6915         * lib/sys_ioctl.in.h (ioctl): Likewise.
6916         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
6917         (open): Add a link warning.
6918
6919 2009-12-15  Jim Meyering  <meyering@redhat.com>
6920
6921         areadlink, areadlink-with-size: relax license to LGPLv2+
6922         * modules/areadlink (License): Relax to LGPLv2+.
6923         * modules/areadlink-with-size (License): Likewise.
6924
6925 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
6926             Bruno Haible  <bruno@clisp.org>
6927
6928         *printf: Fix memory leak.
6929         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
6930         * lib/vfprintf.c (vfprintf): Likewise.
6931         * lib/dprintf.c (dprintf): Likewise.
6932         * lib/vdprintf.c (vdprintf): Likewise.
6933
6934 2009-12-14  Eric Blake  <ebb9@byu.net>
6935
6936         accept4: adjust module dependencies
6937         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
6938
6939         utimens: one more try at avoiding compiler warning
6940         * lib/utimens.c (lutimens): Lower scope of result.
6941
6942 2009-12-13  Bruno Haible  <bruno@clisp.org>
6943
6944         Move the malloc checking from module 'list' to new module 'xlist'.
6945         * modules/xlist: New file.
6946         * lib/gl_xlist.h: New file.
6947         * lib/gl_xlist.c: New file.
6948         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
6949         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
6950         gl_list_add_last, gl_list_add_before, gl_list_add_after,
6951         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
6952         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
6953         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
6954         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
6955         gl_sortedlist_nx_add): New declarations.
6956         (struct gl_list_implementation): Rename and change methods accordingly.
6957         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
6958         (gl_list_nx_create): Renamed from gl_list_create.
6959         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
6960         (gl_list_nx_set_at): Renamed from gl_list_set_at.
6961         (gl_list_nx_add_first): Renamed from gl_list_add_first.
6962         (gl_list_nx_add_last): Renamed from gl_list_add_last.
6963         (gl_list_nx_add_before): Renamed from gl_list_add_before.
6964         (gl_list_nx_add_after): Renamed from gl_list_add_after.
6965         (gl_list_nx_add_at): Renamed from gl_list_add_at.
6966         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
6967         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
6968         gl_list_create_empty.
6969         (gl_list_nx_create): Renamed from gl_list_create.
6970         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
6971         (gl_list_nx_set_at): Renamed from gl_list_set_at.
6972         (gl_list_nx_add_first): Renamed from gl_list_add_first.
6973         (gl_list_nx_add_last): Renamed from gl_list_add_last.
6974         (gl_list_nx_add_before): Renamed from gl_list_add_before.
6975         (gl_list_nx_add_after): Renamed from gl_list_add_after.
6976         (gl_list_nx_add_at): Renamed from gl_list_add_at.
6977         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
6978         * lib/gl_array_list.c: Don't include xalloc.h.
6979         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
6980         NULL upon out-of-memory.
6981         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
6982         out-of-memory.
6983         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
6984         Change return type to 'int'.
6985         (gl_array_nx_set_at): Renamed from gl_array_set_at.
6986         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
6987         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
6988         upon out-of-memory.
6989         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
6990         upon out-of-memory.
6991         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
6992         upon out-of-memory.
6993         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
6994         upon out-of-memory.
6995         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
6996         out-of-memory.
6997         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
6998         Update.
6999         (gl_array_list_implementation): Update.
7000         * lib/gl_carray_list.c: Don't include xalloc.h.
7001         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
7002         Return NULL upon out-of-memory.
7003         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
7004         out-of-memory.
7005         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
7006         Change return type to 'int'.
7007         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
7008         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
7009         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
7010         upon out-of-memory.
7011         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
7012         upon out-of-memory.
7013         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
7014         out-of-memory.
7015         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
7016         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
7017         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
7018         Update.
7019         (gl_carray_list_implementation): Update.
7020         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
7021         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
7022         gl_linked_create_empty. Return NULL upon out-of-memory.
7023         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
7024         out-of-memory.
7025         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
7026         Change return type to 'int'. Return -1 upon out-of-memory.
7027         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
7028         out-of-memory.
7029         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
7030         upon out-of-memory.
7031         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
7032         upon out-of-memory.
7033         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
7034         NULL upon out-of-memory.
7035         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
7036         upon out-of-memory.
7037         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
7038         out-of-memory.
7039         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
7040         Update.
7041         * lib/gl_linked_list.c: Don't include xalloc.h.
7042         (gl_linked_list_implementation): Update.
7043         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
7044         (add_to_bucket): Change return type to 'int'.
7045         (gl_linkedhash_list_implementation): Update.
7046         * lib/gl_anytree_list1.h (free_subtree): New function.
7047         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
7048         gl_tree_create_empty. Return NULL upon out-of-memory.
7049         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
7050         Change return type to 'int'. Return -1 upon out-of-memory.
7051         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
7052         out-of-memory.
7053         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
7054         (gl_tree_remove_node): New function, moved here from
7055         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
7056         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
7057         Update.
7058         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
7059         malloc, not xmalloc. Return NULL upon out-of-memory.
7060         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
7061         out-of-memory.
7062         (gl_tree_remove_node_from_tree): New function, extracted from
7063         gl_tree_remove_node.
7064         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
7065         upon out-of-memory.
7066         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
7067         out-of-memory.
7068         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
7069         upon out-of-memory.
7070         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
7071         upon out-of-memory.
7072         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
7073         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
7074         not xmalloc. Return NULL upon out-of-memory.
7075         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
7076         out-of-memory.
7077         (gl_tree_remove_node_from_tree): New function, extracted from
7078         gl_tree_remove_node.
7079         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
7080         upon out-of-memory.
7081         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
7082         out-of-memory.
7083         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
7084         upon out-of-memory.
7085         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
7086         upon out-of-memory.
7087         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
7088         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
7089         gl_anytree_list1.h before gl_anyavltree_list2.h.
7090         (gl_avltree_list_implementation): Update.
7091         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
7092         gl_anytree_list1.h before gl_anyavltree_list2.h.
7093         (gl_rbtree_list_implementation): Update.
7094         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
7095         Change return type to 'int'. Return -1 upon out-of-memory. Use
7096         __builtin_expect.
7097         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
7098         (gl_avltreehash_list_implementation): Update.
7099         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
7100         (gl_rbtreehash_list_implementation): Update.
7101         * modules/array-list (Depends-on): Remove xalloc.
7102         * modules/carray-list (Depends-on): Likewise.
7103         * modules/linked-list (Depends-on): Likewise.
7104         * modules/linkedhash-list (Depends-on): Likewise.
7105         * modules/avltree-list (Depends-on): Likewise.
7106         * modules/rbtree-list (Depends-on): Likewise.
7107         * modules/avltreehash-list (Depends-on): Likewise.
7108         * modules/rbtreehash-list (Depends-on): Likewise.
7109
7110         * modules/xsublist: New file.
7111         * lib/gl_xsublist.h: New file.
7112         * lib/gl_xsublist.c: New file.
7113         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
7114         (gl_sublist_nx_create): New declaration.
7115         * lib/gl_sublist.c: Don't include xalloc.h.
7116         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
7117         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
7118         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
7119         Change return type to 'int'. Return -1 upon out-of-memory.
7120         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
7121         upon out-of-memory.
7122         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
7123         NULL upon out-of-memory.
7124         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
7125         upon out-of-memory.
7126         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
7127         NULL upon out-of-memory.
7128         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
7129         NULL upon out-of-memory.
7130         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
7131         upon out-of-memory.
7132         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
7133         (gl_sublist_list_implementation): Update.
7134         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
7135         upon out-of-memory.
7136         * modules/sublist (Depends-on): Remove xalloc.
7137
7138         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
7139         * tests/test-carray_list.c: Likewise.
7140         * tests/test-linked_list.c: Likewise.
7141         * tests/test-linkedhash_list.c: Likewise.
7142         * tests/test-avltree_list.c: Likewise.
7143         * tests/test-rbtree_list.c: Likewise.
7144         * tests/test-avltreehash_list.c: Likewise.
7145         * tests/test-rbtreehash_list.c: Likewise.
7146         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
7147         * modules/carray-list-tests (Makefile.am): Likewise.
7148         * modules/linked-list-tests (Makefile.am): Likewise.
7149         * modules/linkedhash-list-tests (Makefile.am): Likewise.
7150         * modules/avltree-list-tests (Makefile.am): Likewise.
7151         * modules/rbtree-list-tests (Makefile.am): Likewise.
7152         * modules/avltreehash-list-tests (Makefile.am): Likewise.
7153         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
7154
7155         * NEWS: Mention the changes.
7156
7157         * lib/clean-temp.c: Include gl_xlist.h.
7158         * modules/clean-temp (Depends-on): Add xlist.
7159
7160         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
7161         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
7162
7163         * tests/test-array_oset.c: Include gl_xlist.h.
7164         * modules/array-oset-tests (Depends-on): Add xlist.
7165
7166         Reported by José E. Marchesi <jemarch@gnu.org>.
7167
7168 2009-12-13  Bruno Haible  <bruno@clisp.org>
7169
7170         Move the malloc checking from module 'oset' to new module 'xoset'.
7171         * modules/xoset: New file.
7172         * lib/gl_xoset.h: New file.
7173         * lib/gl_xoset.c: New file.
7174         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
7175         declarations.
7176         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
7177         (struct gl_oset_implementation): Rename and change methods accordingly.
7178         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
7179         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
7180         'int'. Mark as __warn_unused_result__.
7181         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
7182         gl_oset_create_empty.
7183         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
7184         'int'.
7185         * lib/gl_array_oset.c: Don't include xalloc.h.
7186         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
7187         malloc, not xmalloc.
7188         (grow): Change return type to 'int'. Don't call xalloc_die.
7189         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
7190         to 'int'.
7191         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
7192         'int'.
7193         (gl_array_oset_implementation): Update.
7194         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
7195         gl_tree_create_empty.
7196         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
7197         'int'.
7198         * lib/gl_avltree_oset.c: Don't include xalloc.h.
7199         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
7200         xmalloc.
7201         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
7202         not xmalloc.
7203         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
7204         xmalloc.
7205         (gl_avltree_oset_implementation): Update.
7206         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
7207         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
7208         xmalloc.
7209         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
7210         not xmalloc.
7211         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
7212         xmalloc.
7213         (gl_rbtree_oset_implementation): Update.
7214         * modules/array-oset (Depends-on): Remove xalloc.
7215         * modules/avltree-oset (Depends-on): Likewise.
7216         * modules/rbtree-oset (Depends-on): Likewise.
7217         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
7218         * tests/test-avltree_oset.c: Likewise.
7219         * tests/test-rbtree_oset.c: Likewise.
7220         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
7221         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
7222         * modules/rbtree-oset-tests (Makefile.am): Likewise.
7223         * NEWS: Mention the change.
7224
7225 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
7226
7227         maint.mk: allow a project to override release-prep commands
7228         * top/maint.mk (alpha, beta, stable): Move release-preparatory
7229         commands into a new rule.
7230         (release-prep): New rule.
7231         (release-prep-hook): New overridable variable.
7232
7233 2009-12-13  Bruno Haible  <bruno@clisp.org>
7234
7235         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
7236
7237 2009-12-13  Jim Meyering  <meyering@redhat.com>
7238
7239         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
7240         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
7241
7242 2009-12-12  Bruno Haible  <bruno@clisp.org>
7243
7244         duplocale: Tweak.
7245         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
7246
7247 2009-12-12  Karl Berry  <karl@gnu.org>
7248
7249         * config/srclist.txt (strtoll.c): tab changes, no more sync.
7250
7251 2009-12-12  Bruno Haible  <bruno@clisp.org>
7252
7253         * m4/po.m4: Undo incorrect untabification.
7254
7255 2009-12-12  Bruno Haible  <bruno@clisp.org>
7256
7257         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
7258         * modules/c-strtod (Depends-on): Add locale.
7259         * modules/c-strtold (Depends-on): Likewise.
7260
7261 2009-12-12  Bruno Haible  <bruno@clisp.org>
7262
7263         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
7264
7265 2009-12-11  Eric Blake  <ebb9@byu.net>
7266
7267         setenv: relax requirement in light of POSIX ruling
7268         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
7269         not NULL.
7270         * tests/test-setenv.c (main): Relax test.
7271         * tests/test-unsetenv.c (main): Likewise.
7272         * doc/posix-functions/setenv.texi (setenv): Document this.
7273         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
7274
7275 2009-12-11  Bruno Haible  <bruno@clisp.org>
7276
7277         New module 'fd-safer-flag'.
7278         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
7279         * lib/dup-safer.c (dup_safer_flag): Remove function.
7280         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
7281         * lib/fd-safer.c (fd_safer_flag): Remove function.
7282         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
7283         * modules/cloexec (configure.ac): Drop indicator macro.
7284         * modules/fd-safer-flag: New file.
7285         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
7286         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
7287         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
7288
7289 2009-12-11  Bruno Haible  <bruno@clisp.org>
7290
7291         Tests for module 'nl_langinfo'.
7292         * modules/nl_langinfo-tests: New file.
7293         * tests/test-nl_langinfo.sh: New file.
7294         * tests/test-nl_langinfo.c: New file.
7295
7296         New module 'nl_langinfo'.
7297         * lib/nl_langinfo.c: New file.
7298         * m4/nl_langinfo.m4: New file.
7299         * modules/nl_langinfo: New file.
7300         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
7301
7302 2009-12-11  Bruno Haible  <bruno@clisp.org>
7303
7304         Tests for module 'langinfo'.
7305         * modules/langinfo-tests: New file.
7306         * tests/test-langinfo.c: New file.
7307
7308         New module 'langinfo'.
7309         * lib/langinfo.in.h: New file.
7310         * m4/langinfo_h.m4: New file.
7311         * modules/langinfo: New file.
7312         * doc/posix-headers/langinfo.texi: Mention the new module.
7313
7314 2009-12-11  Bruno Haible  <bruno@clisp.org>
7315
7316         * lib/config.charset: Untabify.
7317
7318 2009-12-11  Bruno Haible  <bruno@clisp.org>
7319
7320         * modules/unistd-safer (configure.ac): Drop indicator macro.
7321
7322 2009-12-11  Bruno Haible  <bruno@clisp.org>
7323
7324         Move pipe2-safer code to its own file.
7325         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
7326         * lib/pipe-safer.c (pipe2_safer): Remove function.
7327         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
7328         (Makefile.am): Add it to lib_SOURCES.
7329
7330 2009-12-10  Bruno Haible  <bruno@clisp.org>
7331
7332         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
7333
7334 2009-12-10  Bruno Haible  <bruno@clisp.org>
7335
7336         Declare which arguments expect non-NULL values, for GCC and clang.
7337         * build-aux/arg-nonnull.h: New file.
7338         * modules/arg-nonnull: New file.
7339         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
7340         (inet_ntop, inet_pton): Use it.
7341         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
7342         (closedir, dirfd, opendir, scandir, alphasort): Use it.
7343         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
7344         (open, openat): Use it.
7345         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
7346         (fnmatch): Use it.
7347         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
7348         (getopt, getopt_long, getopt_long_only): Use it.
7349         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
7350         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
7351         Use it.
7352         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
7353         (iconv_open): Use it.
7354         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
7355         (strtoimax, strtoumax): Use it.
7356         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
7357         (duplocale): Use it.
7358         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
7359         (frexp, frexpl): Use it.
7360         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
7361         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
7362         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
7363         (tsearch, tfind, tdelete, twalk): Use it.
7364         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
7365         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
7366         sigpending): Use it.
7367         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
7368         (posix_spawn, posix_spawnp, posix_spawnattr_init,
7369         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
7370         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
7371         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
7372         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
7373         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
7374         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
7375         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
7376         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
7377         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
7378         Use it.
7379         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
7380         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
7381         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
7382         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
7383         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
7384         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
7385         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
7386         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
7387         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
7388         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
7389         strtoull, unsetenv): Use it.
7390         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
7391         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
7392         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
7393         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
7394         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
7395         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
7396         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
7397         (strcasecmp, strncasecmp): Use it.
7398         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
7399         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
7400         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
7401         rpl_setsockopt): Use it.
7402         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
7403         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
7404         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
7405         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
7406         (gettimeofday): Use it.
7407         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
7408         (times): Use it.
7409         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
7410         (uname): Use it.
7411         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
7412         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
7413         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
7414         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
7415         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
7416         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
7417         unlinkat, write): Use it.
7418         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
7419         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
7420         * lib/argv-iter.h: Include arg-nonnull.h.
7421         (_ATTRIBUTE_NONNULL_): Remove macro.
7422         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
7423         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
7424         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
7425         optimization.
7426         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
7427         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
7428         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
7429         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
7430         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
7431         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
7432         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
7433         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
7434         * modules/arpa_inet (Depends-on): Add arg-nonnull.
7435         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
7436         * modules/dirent (Depends-on): Add arg-nonnull.
7437         (Makefile.am): Insert arg-nonnull.h into dirent.h.
7438         * modules/fcntl-h (Depends-on): Add arg-nonnull.
7439         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
7440         * modules/fnmatch (Depends-on): Add arg-nonnull.
7441         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
7442         * modules/getopt-posix (Depends-on): Add arg-nonnull.
7443         (Makefile.am): Insert arg-nonnull.h into getopt.h.
7444         * modules/glob (Depends-on): Add arg-nonnull.
7445         (Makefile.am): Insert arg-nonnull.h into glob.h.
7446         * modules/iconv_open (Depends-on): Add arg-nonnull.
7447         (Makefile.am): Insert arg-nonnull.h into iconv.h.
7448         * modules/inttypes (Depends-on): Add arg-nonnull.
7449         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
7450         * modules/locale (Depends-on): Add arg-nonnull.
7451         (Makefile.am): Insert arg-nonnull.h into locale.h.
7452         * modules/math (Depends-on): Add arg-nonnull.
7453         (Makefile.am): Insert arg-nonnull.h into math.h.
7454         * modules/netdb (Depends-on): Add arg-nonnull.
7455         (Makefile.am): Insert arg-nonnull.h into netdb.h.
7456         * modules/search (Depends-on): Add arg-nonnull.
7457         (Makefile.am): Insert arg-nonnull.h into search.h.
7458         * modules/signal (Depends-on): Add arg-nonnull.
7459         (Makefile.am): Insert arg-nonnull.h into signal.h.
7460         * modules/spawn (Depends-on): Add arg-nonnull.
7461         (Makefile.am): Insert arg-nonnull.h into spawn.h.
7462         * modules/stdio (Depends-on): Add arg-nonnull.
7463         (Makefile.am): Insert arg-nonnull.h into stdio.h.
7464         * modules/stdlib (Depends-on): Add arg-nonnull.
7465         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
7466         * modules/string (Depends-on): Add arg-nonnull.
7467         (Makefile.am): Insert arg-nonnull.h into string.h.
7468         * modules/strings (Depends-on): Add arg-nonnull.
7469         (Makefile.am): Insert arg-nonnull.h into strings.h.
7470         * modules/sys_socket (Depends-on): Add arg-nonnull.
7471         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
7472         * modules/sys_stat (Depends-on): Add arg-nonnull.
7473         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
7474         * modules/sys_time (Depends-on): Add arg-nonnull.
7475         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
7476         * modules/sys_times (Depends-on): Add arg-nonnull.
7477         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
7478         * modules/sys_utsname (Depends-on): Add arg-nonnull.
7479         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
7480         * modules/time (Depends-on): Add arg-nonnull.
7481         (Makefile.am): Insert arg-nonnull.h into time.h.
7482         * modules/unistd (Depends-on): Add arg-nonnull.
7483         (Makefile.am): Insert arg-nonnull.h into unistd.h.
7484         * modules/wchar (Depends-on): Add arg-nonnull.
7485         (Makefile.am): Insert arg-nonnull.h into wchar.h.
7486         * modules/argv-iter (Depends-on): Add arg-nonnull.
7487         * tests/test-canonicalize.c (null_ptr): New function.
7488         (main): Use it.
7489         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
7490         (main): Use it.
7491         * tests/test-memmem.c (null_ptr): New function.
7492         (main): Use it.
7493         Reported by Jim Meyering.
7494
7495 2009-12-10  Bruno Haible  <bruno@clisp.org>
7496
7497         Use spaces for indentation, not tabs.
7498         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
7499         * m4/*.m4: Untabify.
7500         * build-aux/*.h: Untabify.
7501         * tests/**/*.[hc]: Untabify.
7502         * README: New section "Indent with spaces, not TABs", based on
7503         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
7504         * NEWS: Mention the change.
7505
7506 2009-12-10  Bruno Haible  <bruno@clisp.org>
7507
7508         pty test: Fix link error.
7509         * modules/pty-tests (Makefile.am): Add the default LDADD value to
7510         test_pty_LDADD.
7511
7512 2009-12-07  Simon Josefsson  <simon@josefsson.org>
7513
7514         * modules/pty: New file.
7515         * modules/pty-tests: New file.
7516         * m4/pty.m4: New file.
7517         * tests/test-pty.c: New file.
7518         * doc/glibc-headers/pty.texi: Modified.
7519         * doc/glibc-functions/forkpty.texi: Modified.
7520         * doc/glibc-functions/openpty.texi: Modified.
7521
7522 2009-12-10  Bruno Haible  <bruno@clisp.org>
7523
7524         Avoid syntax error in C++ mode.
7525         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
7526
7527 2009-12-10  Bruno Haible  <bruno@clisp.org>
7528
7529         Use sed with option -e.
7530         * gnulib-tool (func_version, func_emit_copyright_notice,
7531         func_emit_initmacro_end, func_import, func_create_testdir): Pass
7532         option -e to sed.
7533         * modules/link-warning (Makefile.am): Likewise.
7534
7535 2009-12-10  Jim Meyering  <meyering@redhat.com>
7536
7537         mgetgroups: do not write bytes beyond end of malloc'd buffer
7538         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
7539         username, we call getgroups with a one-element-shorter buffer,
7540         but still told it the length was original, max_n_groups.
7541
7542 2009-12-09  Eric Blake  <ebb9@byu.net>
7543
7544         cloexec: relax license
7545         * modules/cloexec (Maintainer): Add myself.
7546         (License): Use LGPL, not GPL.
7547
7548         link-warning: optimize generation
7549         * modules/link-warning (Makefile.am): Reduce process usage.
7550
7551 2009-12-09  Bruno Haible  <bruno@clisp.org>
7552
7553         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
7554         workaround was added on 2009-11-17.
7555
7556 2009-12-09  Jim Meyering  <meyering@redhat.com>
7557             Bruno Haible  <bruno@clisp.org>
7558
7559         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
7560         * modules/link-warning (Makefile.am): Make the comment-removing sed
7561         command more robust in the face of bootstrap-prepended comment lines.
7562
7563 2009-12-09  Bruno Haible  <bruno@clisp.org>
7564
7565         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
7566         most one group.
7567
7568 2009-12-09  Simon Josefsson <simon@josefsson.org>
7569             Bruno Haible  <bruno@clisp.org>
7570
7571         * build-aux/link-warning.h: Add copyright notice.
7572         * modules/link-warning (Makefile.am): Generate link-warning.h from
7573         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
7574         * NEWS: Mention change in link-warning module.
7575         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
7576         * modules/dirent (Makefile.am): Add dependency to dirent.h.
7577         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
7578         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
7579         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
7580         * modules/math (Makefile.am): Add dependency to math.h.
7581         * modules/search (Makefile.am): Add dependency to search.h.
7582         * modules/signal (Makefile.am): Add dependency to signal.h.
7583         * modules/spawn (Makefile.am): Add dependency to spawn.h.
7584         * modules/stdio (Makefile.am): Add dependency to stdio.h.
7585         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
7586         * modules/string (Makefile.am): Add dependency to string.h.
7587         * modules/strings (Makefile.am): Add dependency to strings.h.
7588         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
7589         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
7590         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
7591         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
7592         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
7593         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
7594         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
7595         * modules/unistd (Makefile.am): Add dependency to unistd.h.
7596         * modules/wchar (Makefile.am): Add dependency to wchar.h.
7597
7598 2009-12-09  Bruno Haible  <bruno@clisp.org>
7599
7600         fchdir: Optimize away rpl_fstat when possible.
7601         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
7602         REPLACE_OPEN_DIRECTORY.
7603         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
7604
7605 2009-12-09  Bruno Haible  <bruno@clisp.org>
7606
7607         * lib/fchdir.c: Update comment.
7608
7609 2009-12-09  Bruno Haible  <bruno@clisp.org>
7610
7611         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
7612
7613 2009-12-08  Eric Blake  <ebb9@byu.net>
7614
7615         fchdir: avoid memory leak on re-registration.
7616         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
7617
7618 2009-12-08  Jim Meyering  <meyering@redhat.com>
7619
7620         init.sh: avoid Solaris 10 /bin/sh portability problem
7621         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
7622         sourced script:
7623           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
7624           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
7625           bar
7626         tests/init.sh relied on that, accepting a --set-path=DIR argument,
7627         and two tests used that idiom.
7628         * tests/init.sh: Update suggested usage comments.
7629         (path_prepend_): New function, to be used in place
7630         of the --src-path=DIR option.
7631         (setup_): Move PATH-prepending code into path_prepend_.
7632         * tests/test-pread.sh: Adapt to new usage.
7633         * tests/test-xalloc-die.sh: Likewise.
7634
7635 2009-12-08  Simon Josefsson  <simon@josefsson.org>
7636
7637         * doc/gnulib.texi (Glibc pty.h): Add.
7638         * doc/glibc-functions/forkpty.texi: Add.
7639         * doc/glibc-functions/openpty.texi: Add.
7640         Suggested by Bruno Haible.
7641
7642 2009-12-08  Eric Blake  <ebb9@byu.net>
7643
7644         fchdir: fix logic bugs
7645         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
7646         * tests/test-fchdir.c (main): Enhance test.
7647         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
7648         is in use.
7649
7650         dup2: fix logic bugs
7651         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
7652         REPLACE_DUP2 to decide when rpl_dup2 is needed.
7653         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
7654         exists.
7655         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
7656
7657 2009-12-07  Eric Blake  <ebb9@byu.net>
7658
7659         unlink: fix m4 detection
7660         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
7661
7662         unistd-safer: add unit test
7663         * modules/unistd-safer-tests: New file.
7664         * tests/test-dup-safer.c: Likewise.
7665         * tests/test-cloexec.c (setmode): Avoid compiler warning.
7666         * tests/test-dup2.c (setmode): Likewise.
7667         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
7668
7669         cloexec: preserve text vs. binary across dup_cloexec
7670         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
7671         mode.
7672         * modules/dup2-tests (Depends-on): Add binary-io.
7673         * modules/cloexec-tests (Depends-on): Likewise.
7674         * tests/test-dup2.c (setmode, is_mode): New helpers.
7675         (main): Add tests that translation mode is preserved.
7676         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
7677         Reported by Bruno Haible.
7678
7679         mgetgroups: reduce duplicate listings
7680         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
7681         resulting array.
7682         * tests/test-chown.h (test_chown): Simplify client.
7683         * tests/test-lchown.h (test_lchown): Likewise.
7684
7685 2009-12-06  Bruno Haible  <bruno@clisp.org>
7686
7687         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
7688         value.
7689
7690 2009-12-06  Bruno Haible  <bruno@clisp.org>
7691
7692         * lib/progname.c: Include stdio.h, stdlib.h.
7693         (set_program_name): Reject a NULL argument.
7694
7695 2009-12-05  Eric Blake  <ebb9@byu.net>
7696
7697         pipe2-safer: new module
7698         * modules/pipe2-safer: New file.
7699         * lib/unistd-safer.h (pipe2_safer): New prototype.
7700         * lib/unistd--.h (pipe2): New wrapper.
7701         * lib/pipe-safer.c (pipe2_safer): New function.
7702         * modules/pipe (Depends-on): Add pipe2-safer.
7703         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
7704
7705         stdlib-safer: preserve cloexec flag for mkostemp[s]
7706         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
7707         fd_safer_flag.
7708
7709         unistd-safer: allow preservation of cloexec status via flag
7710         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
7711         prototypes.
7712         * lib/dup-safer.c (dup_safer_flag): New function.
7713         * lib/fd-safer.c (fd_safer_flag): Likewise.
7714         * modules/cloexec (configure.ac): Set witness.
7715
7716         test-dup2: enhance test
7717         * modules/dup2-tests (Depends-on): Add cloexec.
7718         * tests/test-dup2.c (main): Enhance test.
7719
7720         cloexec: add dup_cloexec
7721         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
7722         header and comments.
7723         * lib/cloexec.c (set_cloexec_flag): Add comments.
7724         (dup_cloexec): New function, with mingw implementation borrowed
7725         from...
7726         * lib/w32spawn.h (dup_noinherit): ...here.
7727         * modules/execute (Depends-on): Add cloexec.
7728         * modules/pipe (Depends-on): Likewise.
7729         * modules/cloexec (Depends-on): Add dup2.
7730         * modules/cloexec-tests (Files): New file.
7731         * tests/test-cloexec.c: Likewise.
7732
7733         test-xalloc-die: fix test for mingw
7734         * modules/xalloc-die-tests (Files): Add tests/init.sh.
7735         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
7736         directory and .exe suffix off argv[0] output.
7737
7738         test-fseeko: fix test for mingw
7739         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
7740         than undefining fseek, so test will pass on mingw.
7741
7742 2009-12-05  Bruno Haible  <bruno@clisp.org>
7743
7744         * lib/progname.h (set_program_name): Clarify specification.
7745         * lib/progname.c (set_program_name): Likewise.
7746         Reported by Jim Meyering.
7747
7748 2009-12-05  Jim Meyering  <meyering@redhat.com>
7749
7750         maint.mk: backslash-escape parens in default regexp
7751         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
7752         backslash-escape the literal parentheses.
7753
7754         maint.mk: news-date-check: use grep -E
7755         * top/maint.mk (today): Define a Make variable, not a...
7756         (news-date-check): ...shell variable.
7757         (news-date-regexp): Use the Make variable.
7758         Use grep's -E option.  Change the failing diagnostic to mention
7759         the variable, $(news-date-regexp).
7760
7761 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
7762
7763         maintainer-makefile: allow customization of NEWS entry format
7764         * top/maint.mk (news-date-regexp): New overridable variable.
7765         (news-date-check): Use it.
7766
7767 2009-12-04  Eric Blake  <ebb9@byu.net>
7768
7769         mgetgroups: add xgetgroups, and avoid ENOSYS failures
7770         * lib/mgetgroups.h (xgetgroups): New prototype.
7771         * lib/mgetgroups.c (xgetgroups): New wrapper.
7772         (mgetgroups): Handle ENOSYS.
7773         * modules/mgetgroups (Depends-on): Add realloc.
7774         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
7775
7776         mgetgroups: avoid argument promotion issues with -1
7777         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
7778         for invalid gid_t.
7779         * tests/test-chown.h (getegid, test_chown): Likewise.
7780         * tests/test-lchown.h (getegid, test_lchown): Likewise.
7781
7782 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
7783
7784         exclude: Fix header file problems.
7785         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
7786
7787 2009-12-01  Jim Meyering  <meyering@redhat.com>
7788
7789         fts: fts_open: do not let an empty string cause immediate failure
7790         This is required in support of GNU rm, for which the command
7791         "rm A '' B" must process and remove both A and B, in spite of
7792         the empty string argument.
7793         * lib/fts.c (fts_open): Do not let the presence of an empty string
7794         cause fts_open to fail immediately.  Most fts-using tools must be
7795         able to process all arguments, in order, and can be expected to
7796         diagnose such arguments themselves.
7797
7798 2009-11-30  Eric Blake  <ebb9@byu.net>
7799
7800         utimens: fix compilation error
7801         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
7802         Declare variable at right scope.
7803
7804 2009-11-29  Jim Meyering  <meyering@redhat.com>
7805
7806         bootstrap: handle perl-5.11's changed --version output
7807         * build-aux/bootstrap (get_version): Handle perl separately,
7808         since perl-5.11's --version output is different.
7809
7810 2009-11-28  Jim Meyering  <meyering@redhat.com>
7811
7812         userspec: depend on the inttostr module, too
7813         * modules/userspec (Depends-on): Add inttostr.
7814
7815         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
7816         * lib/userspec.c (parse_with_separator): Do not accept a user ID
7817         number of MAXUID when it evaluates to (uid_t) -1.
7818         Likewise for group ID.  Reported by Matt McCutchen in
7819         <http://savannah.gnu.org/bugs/?28113>
7820
7821         userspec: reformat to use spaces, not TABs
7822         * lib/userspec.c: Expand TABs to spaces.
7823         Add Emacs' "indent-tabs-mode: nil" hint.
7824
7825 2009-11-27  Eric Blake  <ebb9@byu.net>
7826
7827         getopt-gnu: flush out another BSD bug
7828         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
7829         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
7830         flush out BSD bug.
7831         * tests/test-getopt.h (test_getopt): End lists with NULL.
7832         * tests/test-getopt_long.h (test_getopt_long): Likewise.
7833         (test_getopt_long_posix): Enhance test.
7834         * modules/getopt-posix-tests (Depends-on): Add stdbool.
7835         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
7836         getopt-gnu.
7837         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
7838         Likewise.
7839
7840 2009-11-27  Simon Josefsson  <simon@josefsson.org>
7841
7842         * modules/idpriv-droptemp-tests (Notice): Fix text.
7843
7844 2009-11-27  Jim Meyering  <meyering@redhat.com>
7845
7846         test-xalloc-die: avoid spurious failure due to libtool argv difference
7847         In a libtool-enabled project, this test would fail due to a difference
7848         in the emitted program name, e.g.,
7849         -test-xalloc-die: memory exhausted
7850         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
7851         Use program to avoid that.
7852         * modules/xalloc-die-tests (Depends-on): Add progname.
7853         * tests/test-xalloc-die.c: Include progname.h".
7854         (program_name): Remove decl.
7855         (main): Call set_program_name.
7856         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
7857
7858 2009-11-26  Richard Jones  <rjones@redhat.com>
7859
7860         w32sock: leave win32 error in place.
7861         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
7862
7863 2009-11-26  Eric Blake  <ebb9@byu.net>
7864
7865         init.sh: suggest to use skip_ and fail_ functions in comments
7866         * tests/init.sh: Add a sentence.
7867
7868 2009-11-25  Bruno Haible  <bruno@clisp.org>
7869
7870         init.sh: add documentation in comments
7871         * tests/init.sh: Add some developer and user documentation.
7872
7873 2009-11-26  Jim Meyering  <meyering@redhat.com>
7874
7875         init.sh: accommodate even those who specify bogus srcdir manually
7876         * tests/init.sh: Normally, srcdir is guaranteed by automake and
7877         configure-time tests to be sanitized, so that there is no need to
7878         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
7879         (with no double quotes) suffices.  However, since tests may be
7880         invoked manually, and since you may explicitly set srcdir to the
7881         name of a directory containing spaces, do quote its uses here.
7882         * tests/test-pread.sh: Likewise.
7883         Suggested by Bruno Haible.
7884
7885         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
7886         * tests/test-pread.sh: Write no data into the pipe, because
7887         test-pread actually reads none.  This avoids a diagnostic,
7888         "bash: echo: write error: Broken pipe", that arises in the unusual
7889         event something is ignoring SIGPIPE, and might be interpreted
7890         as some sort of failure.  Reported by Bruno Haible.
7891
7892 2009-11-25  Jim Meyering  <meyering@redhat.com>
7893
7894         test-pread: cover failure with ESPIPE and EINVAL
7895         * tests/test-pread.c (main): Test for failure, too.
7896         * tests/test-pread.sh: Invoke with stdin on a pipe.
7897         Suggested by Eric Blake.
7898
7899         pread: improvement and fix
7900         * modules/pread (Depends-on): Depend on lseek, for portability to
7901         e.g., mingw.  Suggested by Eric Blake.
7902         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
7903
7904         unistd.in.h: correct declaration of pread
7905         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
7906         Reported by Richard W.M. Jones.
7907
7908         test-pread.sh: distribute the test script
7909         * modules/pread-tests (Files): Include test-pread.sh.
7910
7911         test-pread.sh: clean up
7912         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
7913         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
7914         That is unnecessary, since it's always ".".
7915         Suggestion from Eric Blake.
7916
7917         test-pread.sh: make executable
7918         * tests/test-pread.sh: Set executable bit.
7919         Reported by Eric Blake.
7920
7921         correct typo in test-pread.sh
7922         * tests/test-pread.sh: Add #! line.
7923
7924         test pread
7925         * tests/test-pread.c: New file.
7926         * tests/test-pread.sh: Likewise.
7927         * modules/pread-tests: Likewise.
7928
7929         pread: new module
7930         * modules/pread: New file.
7931         * lib/unistd.in.h (pread): Define/declare.
7932         * lib/pread.c (pread): New file.
7933         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
7934         * modules/unistd (Makefile.am): Substitute witnesses.
7935         * doc/posix-functions/pread.texi (pread): Update.
7936         * MODULES.html.sh: Add pread.
7937
7938 2009-11-25  Jim Meyering  <meyering@redhat.com>
7939
7940         tests/init.sh: new file to be used via most *.sh tests
7941         * tests/init.sh: New file.
7942
7943 2009-11-25  Eric Blake  <ebb9@byu.net>
7944
7945         utimens: work around older Linux failure with symlinks
7946         * lib/utimens.c (lutimensat_works_really): New variable.
7947         (fdutimens, lutimens): Use it to manage kernels that support
7948         nanosecond times on files, but not on symlinks.
7949         Reported by OndÅ™ej Vašík.
7950
7951         utimes: fix configure grammar
7952         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
7953
7954 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
7955
7956         regex: Fix fastmap for multibyte character ranges.
7957         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
7958         characters when a multibyte character range is included.
7959
7960 2009-11-22  Andy Wingo  <wingo@pobox.com>
7961
7962         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
7963         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
7964
7965 2009-11-24  Bruno Haible  <bruno@clisp.org>
7966
7967         doc: Most *_l functions exist in MacOS X 10.5.
7968         * doc/posix-functions/duplocale.texi: Update platforms list.
7969         * doc/posix-functions/freelocale.texi: Likewise.
7970         * doc/posix-functions/newlocale.texi: Likewise.
7971         * doc/posix-functions/uselocale.texi: Likewise.
7972         * doc/posix-functions/isalnum_l.texi: Likewise.
7973         * doc/posix-functions/isalpha_l.texi: Likewise.
7974         * doc/posix-functions/isblank_l.texi: Likewise.
7975         * doc/posix-functions/iscntrl_l.texi: Likewise.
7976         * doc/posix-functions/isdigit_l.texi: Likewise.
7977         * doc/posix-functions/isgraph_l.texi: Likewise.
7978         * doc/posix-functions/islower_l.texi: Likewise.
7979         * doc/posix-functions/isprint_l.texi: Likewise.
7980         * doc/posix-functions/ispunct_l.texi: Likewise.
7981         * doc/posix-functions/isspace_l.texi: Likewise.
7982         * doc/posix-functions/isupper_l.texi: Likewise.
7983         * doc/posix-functions/iswalnum_l.texi: Likewise.
7984         * doc/posix-functions/iswalpha_l.texi: Likewise.
7985         * doc/posix-functions/iswblank_l.texi: Likewise.
7986         * doc/posix-functions/iswcntrl_l.texi: Likewise.
7987         * doc/posix-functions/iswctype_l.texi: Likewise.
7988         * doc/posix-functions/iswdigit_l.texi: Likewise.
7989         * doc/posix-functions/iswgraph_l.texi: Likewise.
7990         * doc/posix-functions/iswlower_l.texi: Likewise.
7991         * doc/posix-functions/iswprint_l.texi: Likewise.
7992         * doc/posix-functions/iswpunct_l.texi: Likewise.
7993         * doc/posix-functions/iswspace_l.texi: Likewise.
7994         * doc/posix-functions/iswupper_l.texi: Likewise.
7995         * doc/posix-functions/iswxdigit_l.texi: Likewise.
7996         * doc/posix-functions/isxdigit_l.texi: Likewise.
7997         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
7998         * doc/posix-functions/strcasecmp_l.texi: Likewise.
7999         * doc/posix-functions/strcoll_l.texi: Likewise.
8000         * doc/posix-functions/strfmon_l.texi: Likewise.
8001         * doc/posix-functions/strftime_l.texi: Likewise.
8002         * doc/posix-functions/strncasecmp_l.texi: Likewise.
8003         * doc/posix-functions/strxfrm_l.texi: Likewise.
8004         * doc/posix-functions/tolower_l.texi: Likewise.
8005         * doc/posix-functions/toupper_l.texi: Likewise.
8006         * doc/posix-functions/towctrans_l.texi: Likewise.
8007         * doc/posix-functions/towlower_l.texi: Likewise.
8008         * doc/posix-functions/towupper_l.texi: Likewise.
8009         * doc/posix-functions/wcscoll_l.texi: Likewise.
8010         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
8011         * doc/posix-functions/wctrans_l.texi: Likewise.
8012         * doc/posix-functions/wctype_l.texi: Likewise.
8013         * doc/glibc-functions/strptime_l.texi: Likewise.
8014         * doc/glibc-functions/strtod_l.texi: Likewise.
8015         * doc/glibc-functions/strtof_l.texi: Likewise.
8016         * doc/glibc-functions/strtol_l.texi: Likewise.
8017         * doc/glibc-functions/strtold_l.texi: Likewise.
8018         * doc/glibc-functions/strtoll_l.texi: Likewise.
8019         * doc/glibc-functions/strtoul_l.texi: Likewise.
8020         * doc/glibc-functions/strtoull_l.texi: Likewise.
8021         * doc/glibc-functions/wcsftime_l.texi: Likewise.
8022         * doc/glibc-functions/wcstod_l.texi: Likewise.
8023         * doc/glibc-functions/wcstof_l.texi: Likewise.
8024         * doc/glibc-functions/wcstol_l.texi: Likewise.
8025         * doc/glibc-functions/wcstold_l.texi: Likewise.
8026         * doc/glibc-functions/wcstoll_l.texi: Likewise.
8027         * doc/glibc-functions/wcstoul_l.texi: Likewise.
8028         * doc/glibc-functions/wcstoull_l.texi: Likewise.
8029
8030 2009-11-24  Bruno Haible  <bruno@clisp.org>
8031
8032         duplocale: Fix logic bug.
8033         * lib/duplocale.c: Don't include <langinfo.h>.
8034         (_NL_LOCALE_NAME): Remove macro.
8035         (rpl_duplocale): Use setlocale instead of nl_langinfo.
8036         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
8037
8038 2009-11-23  Jim Meyering  <meyering@redhat.com>
8039
8040         test-update-copyright: don't hard-code /usr/bin/perl
8041         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
8042         perl to print the current year.  Gilles Espinasse reported that
8043         the replaced use of perl was hard-coded as /usr/bin/perl.
8044
8045 2009-11-23  Bruno Haible  <bruno@clisp.org>
8046
8047         duplocale: Add support for glibc 2.3.x.
8048         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
8049
8050 2009-11-22  Bruno Haible  <bruno@clisp.org>
8051
8052         vasnprintf: Tiny optimization.
8053         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
8054         MacOS X.
8055
8056 2009-11-22  Bruno Haible  <bruno@clisp.org>
8057
8058         Tests for module 'duplocale'.
8059         * modules/duplocale-tests: New file.
8060         * tests/test-duplocale.c: New file.
8061
8062         New module 'duplocale'.
8063         * m4/duplocale.m4: New file.
8064         * lib/locale.in.h (duplocale): New declaration.
8065         * lib/duplocale.c: New file.
8066         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
8067         gl_LOCALE_H_DEFAULTS): New macros.
8068         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
8069         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
8070         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
8071         REPLACE_DUPLOCALE.
8072         * modules/duplocale: New file.
8073         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
8074
8075 2009-11-22  Bruno Haible  <bruno@clisp.org>
8076
8077         * modules/locale-tests (configure.ac): Test for newlocale function.
8078         * tests/test-locale.c: When the system has extended locale functions,
8079         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
8080
8081         locale: Make locale_t available when possible.
8082         * lib/locale.in.h: Include <xlocale.h> when it exists.
8083         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
8084         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
8085         * modules/locale (Depends-on): Add extensions.
8086         (Makefile.am): Also substitute HAVE_XLOCALE_H.
8087         * doc/posix-headers/locale.texi: Document the problem with locale_t.
8088
8089 2009-11-22  Bruno Haible  <bruno@clisp.org>
8090
8091         Add comments.
8092         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
8093         invocation.
8094         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
8095         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
8096         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
8097
8098 2009-11-22  Bruno Haible  <bruno@clisp.org>
8099
8100         error: account for the possibility of freopen (stdout).
8101         * lib/error.c: Include <unistd.h>.
8102         (flush_stdout): New function, extracted from error and error_at_line.
8103         Determine stdout's fd dynamically.
8104         (error, error_at_line): Invoke flush_stdout.
8105         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
8106         * modules/error (Depends-on): Add unistd.
8107
8108 2009-11-22  Bruno Haible  <bruno@clisp.org>
8109
8110         diffseq: Add comment.
8111         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
8112
8113 2009-11-22  Jim Meyering  <meyering@redhat.com>
8114
8115         c-stack: avoid defining an unused static function
8116         * lib/c-stack.c (find_stack_direction): Do not define this function
8117         when it will not be used.
8118
8119         diffseq: avoid spurious gcc warnings
8120         * lib/diffseq.h (IF_LINT2): Define.
8121         (compareseq): Use it to initialize two members of "part".
8122         This avoids two used-uninitialized warnings.
8123
8124 2009-11-21  Jim Meyering  <meyering@redhat.com>
8125
8126         c-stack: avoid "ignoring return value of `write'" warning
8127         * lib/c-stack.c: Include "ignore-value.h".
8128         (die): Explicitly ignore each write return value.
8129         * modules/c-stack (Depends-on): Add ignore-value.
8130
8131 2009-11-21  Bruno Haible  <bruno@clisp.org>
8132
8133         diffseq: reduce scope of variable 'best'.
8134         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
8135         variable, earlier used for two different purposes.
8136
8137 2009-11-21  Jim Meyering  <meyering@redhat.com>
8138
8139         diffseq: remove useless assignment to "best"
8140         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
8141         assignment.  At that point "best" is already guaranteed to be zero.
8142
8143 2009-11-20  Eric Blake  <ebb9@byu.net>
8144
8145         build: mention ftp redirector in release announcements
8146         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
8147         values that used to come from cfg.mk; mention FTP redirect URL.
8148         * build-aux/announce-gen: Mention the mirror list.
8149         Suggested by Karl Berry.
8150
8151         nanosleep: improve port to mingw
8152         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
8153         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
8154         LIB_NANOSLEEP, but only when needed.
8155         * modules/select (Link): Document LIBSOCKET.
8156         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
8157         enough.
8158
8159         nanosleep: work around cygwin bug
8160         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
8161         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
8162         bug.
8163         (getnow): Delete, not needed.
8164         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
8165         LIB_CLOCK_GETTIME.
8166         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
8167         clock-time, gettime.
8168         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
8169         bug.
8170         * modules/nanosleep-tests: New test.
8171         * tests/test-nanosleep.c: New file.
8172
8173         sleep: work around cygwin bug
8174         * lib/sleep.c (rpl_sleep): Work around the bug.
8175         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
8176         (gl_PREREQ_SLEEP): Delete unused macro.
8177         * modules/sleep (Depends-on): Add verify.
8178         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
8179         * modules/unistd (Makefile.am): Substitute witness.
8180         * lib/unistd.in.h (sleep): Update prototype.
8181         * doc/posix-functions/sleep.texi (sleep): Document the bug.
8182         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
8183         * modules/sleep-tests (Depends-on): Check for alarm.
8184
8185 2009-11-20  Jim Meyering  <meyering@redhat.com>
8186
8187         maint.mk: improve sc_prohibit_magic_number_exit
8188         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
8189         so it does not match uses like System.exit(1).
8190         Add comments showing how to correct all offenders.
8191
8192 2009-11-19  Eric Blake  <ebb9@byu.net>
8193
8194         xalloc-die-tests: add missing library
8195         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
8196
8197         test-xvasprintf: silence compiler warnings
8198         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
8199         empty string from gcc.
8200
8201 2009-11-19  Jim Meyering  <meyering@redhat.com>
8202
8203         xfreopen: new module, from coreutils
8204         * modules/xfreopen: New module.
8205         * lib/xfreopen.c: New file.
8206         * lib/xfreopen.h: New file.
8207         * MODULES.html.sh (File stream based Input/Output"): Add it.
8208
8209 2009-11-19  Eric Blake  <ebb9@byu.net>
8210
8211         manywarnings: depend on warnings
8212         * modules/manywarnings (Depends-on): Add warnings.
8213
8214         build: avoid compiler warnings
8215         * lib/select.c (rpl_select): Delete unused variable.
8216         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
8217
8218 2009-11-18  Eric Blake  <ebb9@byu.net>
8219
8220         tests: avoid false negative with --with-packager
8221         * tests/test-version-etc.sh: Discard packager information.
8222         * tests/test-argp-version-etc-1.sh: Likewise.
8223         Reported by Mike Frysinger.
8224
8225         utimens: fix regression on Solaris
8226         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
8227         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
8228         can only change fd timestamps via futimesat.  Instead, use an
8229         additional witness macro to avoid BSD bug.
8230         Reported by Jim Meyering.
8231
8232 2009-11-17  Eric Blake  <ebb9@byu.net>
8233
8234         usleep: use it to simplify tests
8235         * modules/stat-time-tests (Depends-on): Add usleep.
8236         (configure.ac): Drop usleep check.
8237         * modules/chown-tests (Depends-on, configure.ac): Likewise.
8238         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
8239         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
8240         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
8241         * modules/openat-tests (Depends-on, configure.ac): Likewise.
8242         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
8243         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
8244         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
8245         Likewise.
8246         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
8247         * tests/test-lchown.h (nap): Likewise.
8248         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
8249         * tests/test-stat-time.c (nap): Likewise.
8250         * tests/test-utimens-common.h (nap): Update comments.
8251
8252         usleep: new module
8253         * modules/usleep: New file.
8254         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
8255         * lib/usleep.c (usleep): Likewise.
8256         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
8257         * modules/unistd (Makefile.am): Substitute witnesses.
8258         * lib/unistd.in.h (usleep): Add declaration.
8259         * doc/pastposix-functions/usleep.texi (usleep): Document this.
8260         * MODULES.html.sh (Date and time): Likewise.
8261         * modules/usleep-tests (Depends-on): New test.
8262         * tests/test-usleep.c: New file.
8263
8264         chown: work around OpenBSD bug
8265         * lib/chown.c (rpl_chown): Work around the bug.
8266         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
8267         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
8268         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
8269         * modules/chown (Depends-on): Add stdbool.
8270         * modules/lchown (Depends-on): Likewise.
8271         * doc/posix-functions/chown.texi (chown): Document the bug.
8272         * doc/posix-functions/lchown.texi (lchown): Likewise.
8273         * tests/test-lchown.h (test_chown): Relax test.
8274
8275         mkstemp: avoid conflict with C++ keyword template
8276         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
8277         * lib/mkostemp.c (mkostemp): Likewise.
8278         * lib/mkostemps.c (mkostemps): Likewise.
8279         * lib/mkstemp.c (mkstemp): Likewise.
8280         * lib/mkstemps.c (mkstemps): Likewise.
8281
8282         xalloc-die-tests: optimize
8283         * tests/test-xalloc-die.sh: Reduce number of processes.
8284
8285 2009-11-17  Simon Josefsson  <simon@josefsson.org>
8286
8287         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
8288         patch from ludo@gnu.org (Ludovic Courtès).
8289
8290 2009-11-17  Jim Meyering  <meyering@redhat.com>
8291
8292         version-etc: use proper license string
8293         * modules/version-etc (License): Use LGPL, not LGPLv3+.
8294         * modules/version-etc-fsf: Likewise.
8295
8296 2009-11-17  Simon Josefsson  <simon@josefsson.org>
8297
8298         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
8299         printed to stdout.  Deal with EOL differences.
8300
8301 2009-11-17  Eric Blake  <ebb9@byu.net>
8302
8303         unsetenv: work around Solaris bug
8304         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
8305         * lib/unsetenv.c (rpl_unsetenv): Work around it.
8306         Reported by Jim Meyering.
8307
8308         vasnprintf: avoid compiler warnings
8309         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
8310         variables.
8311         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
8312
8313 2009-11-17  Simon Josefsson  <simon@josefsson.org>
8314
8315         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
8316         settings since xalloc-die is no longer the self test,
8317         xalloc-die.sh is.
8318
8319 2009-11-17  Jim Meyering  <meyering@redhat.com>
8320
8321         test-xalloc-die.sh: make the code agree with the commit log
8322         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
8323         at the end, just in case you happen to have a test-xalloc-die
8324         program in some other PATH directory.
8325
8326         test-xalloc-die.sh: fix a portability bug
8327         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
8328         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
8329         Otherwise, argv[0] (as often seen in diagnostics) would be too
8330         system-dependent, sometimes with, and sometimes without the leading "./".
8331
8332         version-etc-fsf: relax license to LGPLv3+
8333         * modules/version-etc-fsf (License): Relax license.
8334
8335 2009-11-16  Eric Blake  <ebb9@byu.net>
8336
8337         xalloc-die-tests: avoid printing null pointer
8338         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
8339         shell script.
8340         * tests/test-xalloc-die.c (program_name): Declare.
8341         * tests/test-xalloc-die.sh (tmpfiles): New file.
8342
8343         setenv, unsetenv: work around various bugs
8344         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
8345         (setenv) [HAVE_SETENV]: Work around bugs.
8346         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
8347         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
8348         for bugs.
8349         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
8350         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
8351         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
8352         * modules/stdlib (Makefile.am): Update substitutions.
8353         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
8354         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
8355         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
8356         * modules/setenv-tests: New test.
8357         * modules/unsetenv-tests: Likewise.
8358         * tests/test-setenv.c: New file.
8359         * tests/test-unsetenv.c: Likewise.
8360
8361 2009-11-16  Jim Meyering  <meyering@redhat.com>
8362
8363         version-etc: relax license to LGPLv3+
8364         * modules/version-etc (License): Relax license.
8365
8366         better AC_REQUIRE expanded-before-required-warning avoidance
8367         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
8368         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
8369         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
8370         which is no longer needed.
8371
8372 2009-11-16  Eric Blake  <ebb9@byu.net>
8373
8374         test-freading: clean up temporary file
8375         * tests/test-freading.c (main): Remove file on success, and use
8376         ASSERT more liberally.
8377         Reported by Jim Meyering.
8378
8379 2009-11-16  Jim Meyering  <meyering@redhat.com>
8380
8381         avoid new AC_REQUIRE expanded-before-required warnings
8382         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
8383         merely using it.
8384         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
8385         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
8386
8387 2009-11-15  Simon Josefsson  <simon@josefsson.org>
8388
8389         * tests/test-xalloc-die.c: New file.
8390         * modules/xalloc-die-tests: New file.
8391         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
8392         XFAIL_TESTS so it can be appended by modules.
8393
8394 2009-11-15  Simon Josefsson  <simon@josefsson.org>
8395
8396         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
8397         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
8398
8399 2009-11-14  Eric Blake  <ebb9@byu.net>
8400
8401         fnmatch: avoid compiler warning
8402         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
8403         to silence compiler warning about mismatch signedness in ?:.
8404         Reported by Robert Millan.
8405
8406         intprops: add double-inclusion guard
8407         * lib/intprops.h: Allow idempotent includes.
8408         Suggested by Bruce Korb.
8409
8410         openat: detect Solaris fchownat bug
8411         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
8412         penalizing glibc chownat when only lchownat is broken.
8413         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
8414         trailing slash bugs.
8415         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
8416         * modules/openat-tests (Files): Include more files.
8417         (Depends-on): Add mgetgroups, sleep, stat-time.
8418         (configure.ac): Add additional checks.
8419         (Makefile.am): Build new test.
8420         * tests/test-fchownat.c: New file.
8421
8422         lchown: detect Solaris and FreeBSD bug
8423         * lib/lchown.c (rpl_lchown): Work around bug.
8424         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
8425         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
8426         * modules/unistd (Makefile.am): Populate it.
8427         * lib/unistd.in.h (lchown): Update declaration.
8428         * doc/posix-functions/lchown.texi (lchown): Document the bug.
8429         * modules/lchown-tests: New file.
8430         * tests/test-lchown.h (test_lchown): Likewise.
8431         * tests/test-lchown.c (main): Likewise.
8432
8433         chown: detect Solaris and FreeBSD bug
8434         * lib/chown.c (rpl_chown): Work around bug.
8435         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
8436         (gl_PREREQ_CHOWN): Delete.
8437         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
8438         * modules/unistd (Makefile.am): Populate it.
8439         * lib/unistd.in.h (chown): Update declaration.
8440         * lib/lchown.c (chown): Update client.
8441         * modules/lchown (Depends-on): Add lstat.
8442         * doc/posix-functions/chown.texi (chown): Document the bug.
8443         * doc/posix-functions/getgroups.texi (getgroups): Document
8444         getgroups pitfall.
8445         * modules/chown-tests: New file.
8446         * tests/test-chown.h (test_chown): Likewise.
8447         * tests/test-chown.c (main): Likewise.
8448
8449 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
8450
8451         gnulib-tool: correctly detect absence of m4 directories
8452         * gnulib-tool: Avoid extra newline on data passed to wc -l.
8453
8454 2009-11-14  Jim Meyering  <meyering@redhat.com>
8455
8456         maint.mk: Prohibit inclusion of "xalloc.h" without use.
8457         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
8458
8459 2009-11-14  John W. Eaton  <jwe@gnu.org>
8460
8461         strftime.h: wrap funtion declaration in extern "C" block
8462         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
8463
8464 2009-11-13  Eric Blake  <ebb9@byu.net>
8465
8466         getgroups: avoid compiler warning
8467         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
8468
8469         getgroups: work around FreeBSD bug
8470         * lib/getgroups.c (rpl_getgroups): Work around the bug.
8471         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
8472         * doc/posix-functions/getgroups.texi (getgroups): Document it.
8473         * tests/test-getgroups.c (main): Fix buffer overrun.
8474
8475         getgroups: avoid compilation failure
8476         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
8477         * modules/getgroups (Depends-on): Add stdint.
8478
8479 2009-11-13  Jim Meyering  <meyering@redhat.com>
8480
8481         test-getgroups: avoid compilation failure
8482         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
8483
8484 2009-11-13  Eric Blake  <ebb9@byu.net>
8485
8486         mgetgroups: new module, taken from coreutils
8487         * modules/mgetgroups: New file.
8488         * lib/mgetgroups.h: Likewise.
8489         * lib/mgetgroups.c (mgetgroups): Likewise.
8490         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
8491         * MODULES.html.sh (Users and groups): Mention it.
8492
8493         getgroups: don't expose GETGROUPS_T to user
8494         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
8495         an element at a time if GETGROUPS_T is wrong size.
8496         * lib/getugroups.h (getugroups): Change signature.
8497         * lib/unistd.in.h (getgroups): Likewise.
8498         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
8499         signature needs fixing.
8500         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
8501         AC_TYPE_GETGROUPS.
8502         * modules/group-member (Depends-on): Add getgroups.
8503         * lib/group-member.c (group_info, get_group_info): Use gid_t.
8504         (group_member): Rely on getgroups replacement.
8505         * lib/getugroups.c (getugroups): Use gid_t.
8506         * tests/test-getgroups.c (main): Likewise.
8507         * NEWS: Mention the signature change.
8508         * doc/posix-functions/getgroups.texi (getgroups): Mention the
8509         problem with signature.
8510         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
8511         GETGROUPS_T is still useful for setgroups.
8512
8513         getgroups, getugroups: provide stubs for mingw
8514         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
8515         * lib/getugroups.c (getugroups): Likewise.
8516         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
8517         function.  Modernize replacement scheme.
8518         (gl_PREREQ_GETGROUPS): Delete.
8519         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
8520         * modules/getgroups (configure.ac): Declare witness.
8521         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
8522         * modules/unistd (Depends-on): Substitute witness.
8523         * lib/unistd.in.h (getgroups): Declare replacement.
8524
8525         getgroups: avoid calling exit
8526         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
8527         drop xalloc.
8528         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
8529         dependencies.
8530         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
8531         exiting, in the rare case of malloc failure.
8532
8533         getgroups: fix logic error
8534         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
8535         has more than 20 groups.
8536         * modules/getgroups-tests: New test.
8537         * tests/test-getgroups.c: New file.
8538
8539 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8540
8541         * tests/test-base64.c: Improve.
8542
8543 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8544
8545         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
8546         Blake <ebb9@byu.net>.
8547
8548 2009-11-13  Simon Josefsson  <simon@josefsson.org>
8549
8550         * tests/test-xvasprintf.c: Add %s%s related checks.
8551
8552 2009-11-12  Eric Blake  <ebb9@byu.net>
8553
8554         version-etc: match standards.texi style
8555         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
8556         and use <> only for URLs.
8557
8558 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
8559
8560         fts: do not fail on a submount during traversal
8561         * lib/fts.c (fts_build): Read the stat info again after opening
8562         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
8563         Original report at http://bugzilla.redhat.com/501848.
8564
8565 2009-11-12  Jim Meyering  <meyering@redhat.com>
8566
8567         bootstrap: sync from coreutils
8568         * build-aux/bootstrap (bootstrap_epilogue): New function.
8569         Use git_modules_config in one more place.  This make bootstrap's
8570         --gnulib-srcdir option more useful for testing.
8571
8572         bootstrap: generalize autoheader check
8573         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
8574         AC_CONFIG_HEADERS.
8575
8576 2009-11-11  Eric Blake  <ebb9@byu.net>
8577
8578         mkfifoat: use new modules for Solaris and BSD bugs
8579         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
8580         * lib/mkfifoat.c (mknodat): Split...
8581         * lib/mknodat.c (mknodat): ...into new file.
8582         * modules/mkfifoat (Files): Ship new file.
8583         (Depends-on): Add mkfifo, mknod.
8584         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
8585         (Depends-on): Add symlink.
8586         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
8587         redundant with test_mkfifo.h.
8588         (do_mkfifoat, do_mknodat): New helpers.
8589
8590         mknod: new module
8591         * modules/mknod: New file.
8592         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
8593         * lib/mknod.c (mknod): Likewise.
8594         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8595         defaults.
8596         * modules/sys_stat (Makefile.am): Substitute them.
8597         * lib/sys_stat.in.h (mknod): Declare replacement.
8598         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8599         Document it.
8600         * doc/posix-functions/mknod.texi (mknod): Likewise.
8601         * modules/mknod-tests: New test.
8602         * tests/test-mknod.c: Likewise.
8603
8604         mkfifo: new module
8605         * modules/mkfifo: New file.
8606         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
8607         * lib/mkfifo.c (mkfifo): Likewise.
8608         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
8609         defaults.
8610         * modules/sys_stat (Makefile.am): Substitute them.
8611         * lib/sys_stat.in.h (mkfifo): Declare replacement.
8612         * MODULES.html.sh (Support for systems lacking POSIX:2008):
8613         Document it.
8614         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
8615         * modules/mkfifo-tests: New test.
8616         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
8617         from test-mkfifoat.c.
8618         * tests/test-mkfifo.c: New file.
8619
8620         readlink: detect FreeBSD bug
8621         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
8622         slash on symlink.
8623         * doc/posix-functions/readlink.texi (readlink): Document the bug.
8624         * tests/test-readlink.h (test_readlink): Enhance test.
8625
8626         symlink: detect FreeBSD bug
8627         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
8628         slash on symlink.
8629         * doc/posix-functions/symlink.texi (symlink): Document the bug.
8630         * tests/test-symlink.h (test_symlink): Enhance test.
8631
8632 2009-11-10  Eric Blake  <ebb9@byu.net>
8633
8634         link: detect FreeBSD bug
8635         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
8636         symlink.
8637         * doc/posix-functions/link.texi (link): Document the bug.
8638         * tests/test-link.h (test_link): Enhance test.
8639         * tests/test-linkat.c (main): Update caller.
8640
8641         unlink, remove: detect FreeBSD bug
8642         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
8643         slash on symlink.
8644         * doc/posix-functions/unlink.texi (unlink): Document the bug.
8645         * doc/posix-functions/remove.texi (remove): Likewise.
8646         * tests/test-unlink.h (test_unlink): Enhance test.
8647         * tests/test-remove.c (main): Likewise.
8648
8649 2009-11-09  Eric Blake  <ebb9@byu.net>
8650
8651         rename: detect FreeBSD bug
8652         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
8653         slash on symlink.
8654         * modules/renameat-tests (Depends-on): Add filenamecat.
8655         * tests/test-rename.h (test_rename): Allow one more errno.
8656         * tests/test-renameat.c (main): Likewise.
8657         * doc/posix-functions/rename.texi (rename): Document the bug.
8658
8659         open: detect FreeBSD bug
8660         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
8661         symlink.
8662         * doc/posix-functions/open.texi (open): Document the bug.
8663         * doc/posix-functions/utimes.texi (utimes): Likewise.
8664         * tests/test-open.h (test_open): Add parameters, and test symlink
8665         handling.
8666         * tests/test-open.c (main): Adjust caller.
8667         * tests/test-fcntl-safer.c (main): Likewise.
8668         * modules/open-tests (Depends-on): Add stdbool, symlink.
8669         * modules/fcntl-safer-tests (Depends-on): Likewise.
8670         * tests/test-openat.c (main): Add test-open tests.
8671
8672         stat: detect FreeBSD bug
8673         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
8674         symlink.
8675         * doc/posix-functions/stat.texi (stat): Document the bug.
8676         * tests/test-stat.h (test_stat_func): Add argument.
8677         * tests/test-stat.c (main): Adjust caller.
8678         * tests/test-fstatat.c (main): Likewise.
8679         * modules/stat-tests (Depends-on): Add stdbool, symlink.
8680         Reported by Jim Meyering.
8681
8682 2009-11-09  James Youngman  <jay@gnu.org>
8683
8684         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
8685         * lib/strftime.c: Correct placement of #include "ignore-value.h".
8686
8687 2009-11-08  Jim Meyering  <meyering@redhat.com>
8688
8689         utimens: remove invalid futimesat call
8690         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
8691         It used the file descriptor of the target file as the DIR_FD
8692         parameter and NULL as the file name.  That caused failure with
8693         errno == EFAULT on FreeBSD-8.0-rc2
8694
8695 2009-11-07  Eric Blake  <ebb9@byu.net>
8696
8697         fflush, freadseek: use fseeko, not fseek
8698         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
8699         (clear_ungetc_buffer): Avoid potential problems on large files.
8700         * lib/freadseek.c (freadseek): Likewise.
8701         * modules/freadseek (Depends-on): Add fseeko.
8702         * modules/fseek (configure.ac): Set a witness.
8703         * tests/test-fflush.c (main): Use fseeko.
8704         * tests/test-fpurge.c (fseek): Disable link warning.
8705         * tests/test-freadable.c (fseek): Likewise.
8706         * tests/test-freading.c (fseek): Likewise.
8707         * tests/test-fseeko.c (fseek): Likewise.
8708         * tests/test-ftell.c (fseek): Likewise.
8709         * tests/test-ftello.c (fseek): Likewise.
8710         * tests/test-fwritable.c (fseek): Likewise.
8711         * tests/test-fwriting.c (fseek): Likewise.
8712
8713 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8714
8715         * modules/memchr (Depends-on): Drop getpagesize dependency.
8716
8717 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8718
8719         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
8720         Reported by Ludovic Courtès.
8721         * build-aux/pmccabe2html: Improve example usage.
8722         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
8723
8724 2009-11-06  Jim Meyering  <meyering@redhat.com>
8725
8726         do-release-commit-and-tag: New module.
8727         Automate the release-commit and tag process.
8728         * build-aux/do-release-commit-and-tag: New script, from coreutils.
8729         * modules/do-release-commit-and-tag: New file.
8730         * MODULES.html.sh (Support for maintaining and releasing): Add it.
8731
8732 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8733
8734         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
8735         because test-select.c uses inet_pton.
8736
8737 2009-11-06  Simon Josefsson  <simon@josefsson.org>
8738
8739         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
8740         GETADDRINFO_LIB.  Bump serial number.
8741         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
8742         Suggested by Eric Blake <ebb9@byu.net>.
8743
8744 2009-11-05  Eric Blake  <ebb9@byu.net>
8745
8746         strtod: detect darwin bug
8747         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
8748         Reported by Leo Davis.
8749
8750         freopen-safer: new module
8751         * modules/freopen-safer: New module.
8752         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
8753         * lib/freopen-safer.c (freopen_safer): New file.
8754         * lib/stdio-safer.h (freopen_safer): New declaration.
8755         * lib/stdio--.h (freopen): New override.
8756         * MODULES.html.sh (File stream based Input/Output): Mention it.
8757         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
8758         freopen-safer module.
8759         * doc/posix-functions/stderr.texi (stderr): Likewise.
8760         * doc/posix-functions/stdin.texi (stdin): Likewise.
8761         * doc/posix-functions/stdout.texi (stdout): Likewise.
8762         * modules/freopen-safer-tests: New test.
8763         * tests/test-reopen-safer.c: New file.
8764
8765 2009-11-05  Jim Meyering  <meyering@redhat.com>
8766
8767         maint.mk: Prohibit inclusion of "close-stream.h" without use.
8768         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
8769
8770 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8771
8772         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
8773
8774 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8775
8776         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
8777
8778 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8779
8780         Fix link error.
8781         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8782         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8783
8784 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8785
8786         * tests/test-func.c: Also test value of __func__.
8787
8788 2009-11-05  Simon Josefsson  <simon@josefsson.org>
8789
8790         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
8791         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
8792
8793 2009-11-05  Bruno Haible  <bruno@clisp.org>
8794
8795         Fix link error.
8796         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
8797         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8798         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
8799
8800 2009-11-05  Bruno Haible  <bruno@clisp.org>
8801
8802         Tests for module 'inet_pton'.
8803         * modules/inet_pton-tests: New file.
8804         * tests/test-inet_pton.c: New file.
8805
8806 2009-11-05  Bruno Haible  <bruno@clisp.org>
8807
8808         Tests for module 'inet_ntop'.
8809         * modules/inet_ntop-tests: New file.
8810         * tests/test-inet_ntop.c: New file.
8811
8812 2009-11-04  Eric Blake  <ebb9@byu.net>
8813
8814         stdlib-safer: wrap all mkstemp variants
8815         * modules/mkostemp (configure.ac): Set witness.
8816         * modules/mkostemps (configure.ac): Likewise.
8817         * modules/mkstemps (configure.ac): Likewise.
8818         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
8819         (mkstemps_safer): Wrap more functions.
8820         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
8821         wrapping.
8822         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
8823         (mkstemps_safer): Implement the wrappers.
8824
8825         mkstemps, mkostemps: new modules
8826         * modules/mkostemps: New module.
8827         * modules/mkstemps: Likewise.
8828         * lib/mkostemps.c (mkostemps): New file.
8829         * lib/mkstemps.c (mkstemps): Likewise.
8830         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
8831         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
8832         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
8833         * modules/stdlib (Makefile.am): Substitute them.
8834         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
8835         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
8836         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
8837         * doc/gnulib.texi (Glibc stdlib.h): Include them.
8838         * MODULES.html.sh (File system functions): Mention them.
8839
8840         tempname: resync from glibc
8841         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
8842         same values for __GT_FILE as glibc.  Abort even when assertions
8843         are disabled.
8844         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
8845         match its value otherwise.  Allow idempotent inclusion.
8846         * lib/mkdtemp.c (mkdtemp): Adjust caller.
8847         * lib/mkostemp.c (mkostemp): Likewise.
8848         * lib/mkstemp.c (mkstemp): Likewise.
8849         * lib/tmpfile.c (tmpfile): Likewise.
8850         * NEWS: Document this.
8851
8852         utimens: fix use of futimens on older Linux
8853         * lib/utimens.c (fdutimens): Use updated, rather than original,
8854         timespec to avoid bug in older Linux kernel.
8855         Reported by Simon Josefsson.
8856
8857 2009-11-04  Bruno Haible  <bruno@clisp.org>
8858
8859         Make num_processors more flexible and consistent.
8860         * lib/nproc.h (enum nproc_query): New type.
8861         (num_processors): Add a 'query' argument.
8862         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
8863         (num_processors): Add a 'query' argument. Test the value of the
8864         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
8865         mingw, count the number of CPUs available for the current process.
8866         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
8867         Check for sched_getaffinity and sched_getaffinity_np.
8868         * modules/nproc (Depends-on): Add c-ctype, extensions.
8869         * NEWS: Mention the change.
8870
8871 2009-11-03  Bruno Haible  <bruno@clisp.org>
8872
8873         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
8874
8875 2009-11-03  Jim Meyering  <meyering@redhat.com>
8876
8877         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
8878         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
8879         if it is defined.
8880
8881 2009-11-02  Eric Blake  <ebb9@byu.net>
8882
8883         mktime, timegm: share common declaration
8884         * lib/mktime-internal.h: New file.
8885         * lib/mktime.c: Use it rather than open-coding a declaration.
8886         * lib/timegm.c: Likewise.
8887         * modules/mktime (Files): Ship it.
8888         * modules/timegm (Files): Likewise.
8889         Suggested by Bruno Haible.
8890
8891         test-update-copyright: update test to match script changes
8892         * tests/test-update-copyright.sh: Avoid hard-coding perl
8893         location.  Don't update *.bak created by earlier runs.
8894
8895 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
8896             Simon Josefsson  <simon@josefsson.org>
8897             Bruno Haible  <bruno@clisp.org>
8898
8899         Fix link error on Solaris 8.
8900         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
8901         also in libnsl. Define also INET_PTON_LIB.
8902         * modules/inet_pton (Link): New section.
8903
8904 2009-11-02  Simon Josefsson  <simon@josefsson.org>
8905             Bruno Haible  <bruno@clisp.org>
8906
8907         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
8908         * modules/inet_ntop (Link): New section.
8909         Reported by Boyan Kasarov <bkasarov@gmail.com>.
8910
8911 2009-11-02  Eric Blake  <ebb9@byu.net>
8912
8913         maint: avoid compiler warnings in m4 macros
8914         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
8915         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
8916
8917 2009-11-02  Simon Josefsson  <simon@josefsson.org>
8918
8919         * m4/pmccabe2html.m4: Remove file.
8920         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
8921         function.  Change maintainer.
8922         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
8923         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
8924         Courtès).
8925
8926 2009-10-31  Eric Blake  <ebb9@byu.net>
8927
8928         fseeko: fix m4 regression
8929         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
8930         regression from 2009-10-27.
8931         Reported by Ralf Wildenhues.
8932
8933 2009-10-31  Jim Meyering  <meyering@redhat.com>
8934
8935         inttostr: aesthetics and improved (compile-time) safety
8936         Define inttype_is_signed rather than inttype_is_unsigned,
8937         since the sole use is via "#if inttype_is_signed".
8938         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
8939         inttype_is_unsigned.
8940         * lib/offtostr.c (inttype_is_signed): Likewise.
8941         * lib/uinttostr.c (inttype_is_signed): Likewise.
8942         * lib/umaxtostr.c (inttype_is_signed): Likewise.
8943         * lib/inttostr.c (inttostr): Use verify to cross-check the
8944         inttype_is_signed value and the signedness of the actual type.
8945         * modules/inttostr (Depends-on): Add verify.
8946
8947 2009-10-30  Eric Blake  <ebb9@byu.net>
8948
8949         build: avoid compiler warnings
8950         * lib/fchmodat.c (lchmod): Mark unused variables.
8951         * lib/getopt.c (_getopt_initialize): Likewise.
8952         * lib/mktime.c (__mktime_internal): Provide prototype.
8953         * lib/inttostr.c (inttostr): Avoid compiler warning even with
8954         older gcc that do not understand #pragma GCC diagnostic.
8955         * lib/uinttostr.c (inttype_is_unsigned): Define.
8956         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
8957
8958 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
8959
8960         stat: fix compilation on AIX
8961         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
8962         only see struct stat64.
8963
8964 2009-10-30  Eric Blake  <ebb9@byu.net>
8965
8966         exclude: make more robust
8967         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
8968         rather than masking a coding bug.
8969         Suggested by Bruno Haible.
8970
8971 2009-10-30  Jim Meyering  <meyering@redhat.com>
8972
8973         perl scripts: remove #!/usr/bin/perl in favor of more portable...
8974         Rather than putting #!/usr/bin/perl on the first line,
8975         start with a variant of what's recommended by "man perlrun" that
8976         invokes the first "perl" program from your shell's search path.
8977         * build-aux/gitlog-to-changelog: Replace #!... as above.
8978         Add a "Local Variables" perl mode setting.
8979         Prompted by a patch from Ludovic Courtès.
8980         Improved by Eric Blake.
8981         * build-aux/useless-if-before-free: Likewise.
8982         * build-aux/announce-gen: Likewise.
8983         * build-aux/update-copyright: Likewise.
8984
8985 2009-10-29  Eric Blake  <ebb9@byu.net>
8986
8987         filenamecat-lgpl: adjust clients
8988         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
8989         filenamecat.
8990         * modules/renameat (Depends-on): Likewise.
8991
8992         filenamecat: split into filenamecat-lgpl
8993         * modules/filenamecat-lgpl: New module.
8994         * modules/filenamecat (Files): Move library-safe files into
8995         filenamecat-lgpl.
8996         (Depends-on): Add filenamecat-lgpl.
8997         (configure.ac): Declare witness.
8998         * lib/filenamecat.h (file_name_concat): Only declare when using
8999         GPL module.
9000         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
9001         Move...
9002         * lib/filenamecat-lgpl.c: ...into new file.
9003         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
9004         (gl_FILE_NAME_CONCAT): Use it.
9005         * MODULES.html.sh (File system functions): Mention new module.
9006
9007         argp: avoid memory leak
9008         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
9009         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
9010         base_name, since the latter malloc()s and can call exit().
9011         Leak introduced 2006-07-03.
9012
9013         dirname-lgpl: adjust clients that don't need full dirname
9014         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
9015         * modules/filenamecat (Depends-on): Likewise.
9016         * modules/linkat (Depends-on): Likewise.
9017         * modules/mkancesdirs (Depends-on): Likewise.
9018         * modules/mkdir (Depends-on): Likewise.
9019         * modules/openat (Depends-on): Likewise.
9020         * modules/savewd (Depends-on): Likewise.
9021         * modules/rename (Depends-on): Likewise.
9022         (License): Relax license.
9023         * modules/mkdir-tests (Depends-on): Drop progname.
9024         (Makefile.am): Delete unneeded LDADD.
9025         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
9026
9027         dirname: split into dirname-lgpl
9028         * modules/dirname-lgpl: New module.
9029         * modules/dirname (Files): Move library-safe files into
9030         dirname-lgpl.
9031         (Depends-on): Add dirname-lgpl.
9032         (configure.ac): Declare witness.
9033         * modules/double-slash-root (License): Relax license.
9034         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
9035         module.
9036         * lib/dirname.c (dir_len, mdir_name): Move...
9037         * lib/dirname-lgpl.c: ...into new file.
9038         * lib/basename.c (last_component, base_len): Move...
9039         * lib/basename-lgpl.c: ...into new file.
9040         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
9041         (gl_DIRNAME): Use it.
9042         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
9043         Mention new module.
9044         * modules/dirname-tests (Depends-on): Add progname.
9045         * tests/test-dirname.c (program_name): Delete.
9046
9047         mkdir: make safe for libraries
9048         * modules/mkdir (Depends-on): Drop xalloc.
9049         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
9050         exit.
9051
9052         tests: avoid some compiler warnings
9053         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
9054         literals.
9055         * tests/test-memchr.c (main): Avoid type mismatch.
9056         * tests/test-arpa_inet.c (main): Avoid unused parameters.
9057         * tests/test-base64.c (main): Likewise.
9058         * tests/test-getdelim.c (main): Likewise.
9059         * tests/test-gethostname.c (main): Likewise.
9060         * tests/test-getline.c (main): Likewise.
9061         * tests/test-netinet_in.c (main): Likewise.
9062         * tests/test-select.c (open_server_socket, main): Likewise.
9063         * tests/test-select-stdin.c (main): Likewise.
9064         * tests/test-sockets.c (main): Likewise.
9065         * tests/test-strsignal.c (main): Likewise.
9066         * tests/test-sys_select.c (main): Likewise.
9067         * tests/test-sys_socket.c (main): Likewise.
9068         * tests/test-u64.c (main): Likewise.
9069         * tests/test-xfprintf-posix.c (main): Likewise.
9070         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
9071
9072         sockets: avoid compiler warning
9073         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
9074
9075         maint: detect usage(1) and other suspicious exits
9076         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
9077
9078 2009-10-29  Jim Meyering  <meyering@redhat.com>
9079
9080         timespec: long-to-int truncation could make timespec_cmp malfunction
9081         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
9082         a multiple of 2^32 nanoseconds as no difference.
9083
9084 2009-10-28  Jim Meyering  <meyering@redhat.com>
9085
9086         fprintftime: wrap macro code argument in "do {...} while(0)"
9087         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
9088         cpy macro must be a statement that can be followed by a semicolon.
9089         Now that the else clause contains a comment and is hence longer
9090         than one line, I require curly braces.  That in turn requires
9091         that we wrap this code block in the standard do...while(0).
9092
9093         fprintftime: remove stray semicolon from previous change
9094         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
9095
9096         fprintftime: avoid a warning about ignored fwrite return value
9097         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
9098         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
9099         that is unsafe.
9100         * modules/fprintftime (Depends-on): Add ignore-value.
9101
9102         exclude: avoid an unwarranted warning
9103         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
9104
9105 2009-10-27  Eric Blake  <ebb9@byu.net>
9106
9107         fseek: avoid compilation failure when fflush is replaced
9108         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
9109         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
9110         module is in use.
9111         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
9112         module is not in use; since REPLACE_FSEEK worked otherwise.
9113         (GNULIB_FTELLO): Likewise for ftell.
9114         Reported by Ian Beckwith and others.
9115
9116 2009-10-27  Bruno Haible  <bruno@clisp.org>
9117
9118         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
9119         Reported by Jim Meyering.
9120
9121 2009-10-27  Jim Meyering  <jim@meyering.net>
9122             Bruno Haible  <bruno@clisp.org>
9123
9124         Avoid warning despite dropping the return value of fwrite.
9125         * lib/unicodeio.c: Include ignore-value.h.
9126         (fwrite_success_callback): Explicitly ignore fwrite's return value.
9127         * modules/unicodeio (Depends-on): Add ignore-value.
9128
9129 2009-10-26  Eric Blake  <ebb9@byu.net>
9130
9131         areadlinkat: fix fallback path
9132         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
9133         pointer and zero.
9134
9135 2009-10-22  Pádraig Brady  <P@draigBrady.com>
9136
9137         Use a better IO block size for modern systems
9138         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
9139         * lib/md2.c: Likewise.
9140         * lib/md4.c: Likewise.
9141         * lib/md5.c: Likewise.
9142         * lib/sha1.c: Likewise.
9143         * lib/sha256.c: Likewise.
9144         * lib/sha512.c: Likewise.
9145
9146 2009-10-22  Eric Blake  <ebb9@byu.net>
9147
9148         tests: avoid several compiler warnings
9149         * tests/test-getcwd.c (main): Avoid buffer underflow.
9150         * tests/test-getdate.c (main): String literals are not safe with
9151         putenv, so use setenv.  Declare unused argument.
9152         * modules/getdate-tests (Depends-on): Add setenv.
9153         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
9154         problems with string literals in char *.
9155         * tests/test-hash.c (main): Avoid shadowing declaration.
9156         (insert_new): Treat string literals as char const *.
9157         * tests/test-getopt.h (test_getopt): Likewise.
9158         (getopt_loop): Alter types to minimize casting elsewhere.
9159         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
9160         (test_getopt_long_posix): Likewise.
9161         (do_getopt_long): Add wrapper to minimize casting.
9162         * tests/test-atexit.c (clear_temp_file): Use void.
9163         * tests/test-areadlink-with-size.c (main): Declare unused
9164         arguments.
9165         * tests/test-areadlink.c (main): 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-dirent-safer.c (main): Likewise.
9171         * tests/test-dirname.c (main): Likewise.
9172         * tests/test-dup2.c (main): Likewise.
9173         * tests/test-fchdir.c (main): Likewise.
9174         * tests/test-fcntl-h.c (main): Likewise.
9175         * tests/test-fcntl-safer.c (main): Likewise.
9176         * tests/test-fdopendir.c (main): Likewise.
9177         * tests/test-fdutimensat.c (main): Likewise.
9178         * tests/test-fflush.c (main): Likewise.
9179         * tests/test-filenamecat.c (main): Likewise.
9180         * tests/test-filevercmp.c (main): Likewise.
9181         * tests/test-fopen-safer.c (main): Likewise.
9182         * tests/test-fopen.c (main): Likewise.
9183         * tests/test-fpending.c (main): Likewise.
9184         * tests/test-fpurge.c (main): Likewise.
9185         * tests/test-freading.c (main): Likewise.
9186         * tests/test-fstatat.c (main): Likewise.
9187         * tests/test-fsync.c (main): Likewise.
9188         * tests/test-futimens.c (main): Likewise.
9189         * tests/test-getndelim2.c (main): Likewise.
9190         * tests/test-gettimeofday.c (main): Likewise.
9191         * tests/test-getopt.c (main): Likewise.
9192         * tests/test-i-ring.c (main): Likewise.
9193         * tests/test-inttypes.c (main): Likewise.
9194         * tests/test-link.c (main): Likewise.
9195         * tests/test-lstat.c (main): Likewise.
9196         * tests/test-math.c (main): Likewise.
9197         * tests/test-md5.c (main): Likewise.
9198         * tests/test-memchr2.c (main): Likewise.
9199         * tests/test-memrchr.c (main): Likewise.
9200         * tests/test-mkdir.c (main): Likewise.
9201         * tests/test-mkdirat.c (main): Likewise.
9202         * tests/test-mkfifoat.c (main): Likewise.
9203         * tests/test-open.c (main): Likewise.
9204         * tests/test-openat-safer.c (main): Likewise.
9205         * tests/test-openat.c (main): Likewise.
9206         * tests/test-quotearg.c (main): Likewise.
9207         * tests/test-rawmemchr.c (main): Likewise.
9208         * tests/test-readlink.c (main): Likewise.
9209         * tests/test-remove.c (main): Likewise.
9210         * tests/test-rename.c (main): Likewise.
9211         * tests/test-renameat.c (main): Likewise.
9212         * tests/test-rmdir.c (main): Likewise.
9213         * tests/test-sha1.c (main): Likewise.
9214         * tests/test-signal.c (main): Likewise.
9215         * tests/test-sigaction.c (main): Likewise.
9216         * tests/test-stat.c (main): Likewise.
9217         * tests/test-stat-time.c (main): Likewise.
9218         * tests/test-stddef.c (main): Likewise.
9219         * tests/test-stdint.c (main): Likewise.
9220         * tests/test-stdio.c (main): Likewise.
9221         * tests/test-stdlib.c (main): Likewise.
9222         * tests/test-strchrnul.c (main): Likewise.
9223         * tests/test-strerror.c (main): Likewise.
9224         * tests/test-string.c (main): Likewise.
9225         * tests/test-strtod.c (main): Likewise.
9226         * tests/test-strverscmp.c (main): Likewise.
9227         * tests/test-symlink.c (main): Likewise.
9228         * tests/test-symlinkat.c (main): Likewise.
9229         * tests/test-sys_stat.c (main): Likewise.
9230         * tests/test-sys_time.c (main): Likewise.
9231         * tests/test-time.c (main): Likewise.
9232         * tests/test-unistd.c (main): Likewise.
9233         * tests/test-unlink.c (main): Likewise.
9234         * tests/test-unlinkat.c (main): Likewise.
9235         * tests/test-utimens.c (main): Likewise.
9236         * tests/test-utimensat.c (main): Likewise.
9237         * tests/test-version-etc.c (main): Likewise.
9238         * tests/test-wchar.c (main): Likewise.
9239         * tests/test-wctype.c (main): Likewise.
9240         * tests/test-xprintf-posix.c (main): Likewise.
9241         * tests/test-posixtm.c (main): Likewise.
9242         (STREQ): Delete unused macro.
9243         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
9244         shadowed variables.
9245         * tests/test-memchr.c (main): Likewise.
9246
9247 2009-10-21  Eric Blake  <ebb9@byu.net>
9248
9249         areadlinkat: avoid failure on older glibc
9250         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
9251         rather than mis-comparing 0 against FUNC_RESULT of char*.
9252
9253 2009-10-21  Bruno Haible  <bruno@clisp.org>
9254
9255         * modules/stpncpy (License): Relicense under LGPLv2+.
9256         Reported by David Lutterkort <lutter@redhat.com>.
9257
9258 2009-10-20  Eric Blake  <ebb9@byu.net>
9259
9260         utimensat: work around Solaris 9 bug
9261         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
9262         has trailing slash bugs.
9263         * tests/test-lutimens.h (test_lutimens): Enhance test.
9264         * tests/test-utimens.h (test_utimens): Likewise.
9265         * doc/posix-functions/utime.texi (utime): Enhance documentation.
9266         * doc/posix-functions/utimes.texi (utimes): Likewise.
9267         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9268         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
9269         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
9270         * doc/posix-functions/futimens.texi (futimens): Likewise.
9271
9272         fdutimensat: new module
9273         * modules/fdutimensat: New file.
9274         * lib/fdutimensat.c (fdutimensat): Likewise.
9275         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
9276         * MODULES.html.sh (File system functions): Mention module.
9277         * modules/fdutimensat-tests: New test.
9278         * tests/test-fdutimensat.c: Likewise.
9279
9280         doc: regenerate INSTALL
9281         * doc/INSTALL: Reflect recent autoconf update.
9282         * doc/INSTALL.ISO: Likewise.
9283         * doc/INSTALL.UTF-8: Likewise.
9284
9285 2009-10-20  Pádraig Brady  <P@draigBrady.com>
9286
9287         acl: warn if ACL support is not detected
9288         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
9289
9290 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
9291
9292         * lib/nproc.h: Add extern "C" block for C++.
9293
9294 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
9295             Bruno Haible  <bruno@clisp.org>
9296
9297         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
9298         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
9299         * doc/posix-functions/isalpha.texi: Likewise.
9300         * doc/posix-functions/isblank.texi: Likewise.
9301         * doc/posix-functions/iscntrl.texi: Likewise.
9302         * doc/posix-functions/isdigit.texi: Likewise.
9303         * doc/posix-functions/isgraph.texi: Likewise.
9304         * doc/posix-functions/islower.texi: Likewise.
9305         * doc/posix-functions/isprint.texi: Likewise.
9306         * doc/posix-functions/ispunct.texi: Likewise.
9307         * doc/posix-functions/isspace.texi: Likewise.
9308         * doc/posix-functions/isupper.texi: Likewise.
9309         * doc/posix-functions/isxdigit.texi: Likewise.
9310
9311 2009-10-18  Bruno Haible  <bruno@clisp.org>
9312
9313         Tests for module 'isblank'.
9314         * modules/isblank-tests: New file.
9315         * tests/test-isblank.c: New file.
9316
9317         New module 'isblank'.
9318         * lib/isblank.c: New file.
9319         * m4/isblank.m4: New file.
9320         * modules/isblank: New file.
9321         * doc/posix-functions/isblank.texi: Mention the new module.
9322
9323 2009-10-18  Bruno Haible  <bruno@clisp.org>
9324
9325         New module 'ctype'.
9326         * lib/ctype.in.h: New file.
9327         * m4/ctype.m4: New file.
9328         * modules/ctype: New file.
9329         * doc/posix-headers/ctype.texi: Mention the new module.
9330
9331 2009-10-18  Jim Meyering  <meyering@redhat.com>
9332
9333         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
9334         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
9335         right after its initialization, rather than farther down.
9336         Keeping these in close proximity makes it easier to ensure
9337         that each such variable is initialized.  E.g.,
9338
9339             LIB_CLOCK_GETTIME=
9340             AC_SUBST([LIB_CLOCK_GETTIME])
9341
9342         This change also increments these serial numbers.
9343         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
9344         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
9345         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9346
9347 2009-10-18  Bruno Haible  <bruno@clisp.org>
9348
9349         Don't let environment variables perturb build.
9350         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
9351         (gl_PREREQ_GETHRXTIME): ... not here.
9352
9353 2009-10-18  Bruno Haible  <bruno@clisp.org>
9354
9355         Avoid symlink attack in localcharset module.
9356         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
9357         (O_NOFOLLOW): Define fallback.
9358         (get_charset_aliases): Don't open the file if it is a symbolic link.
9359         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
9360         gl_FCNTL_H.
9361         (gl_FCNTL_H): Require it.
9362         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
9363         * modules/localcharset (Files): Add m4/fcntl_h.m4.
9364         Reported by Fergal Glynn <fglynn@veracode.com>.
9365
9366 2009-10-18  Bruno Haible  <bruno@clisp.org>
9367
9368         Implement nproc for mingw.
9369         * lib/nproc.c: Include <windows.h>
9370         (num_processors): On native Windows platforms, try GetSystemInfo.
9371
9372 2009-10-18  Bruno Haible  <bruno@clisp.org>
9373
9374         Implement nproc for IRIX.
9375         * lib/nproc.c: Include <sys/sysmp.h>.
9376         (num_processors): On IRIX systems, try sysmp.
9377         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
9378
9379 2009-10-18  Bruno Haible  <bruno@clisp.org>
9380
9381         Implement nproc for HP-UX.
9382         * lib/nproc.c: Include <sys/pstat.h>
9383         (num_processors): On HP-UX systems, try pstat_getdynamic.
9384         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
9385         pstat_getdynamic.
9386
9387 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
9388             Bruno Haible  <bruno@clisp.org>
9389
9390         Implement nproc for NetBSD, OpenBSD.
9391         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
9392         (ARRAY_SIZE): New macro.
9393         (num_processors): On BSD systems, try sysctl of HW_NCPU.
9394         * m4/nproc.m4: New file.
9395         * modules/nproc (Files): Add m4/nproc.m4.
9396         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
9397         (Makefile.am): Instead, augment lib_SOURCES.
9398
9399 2009-10-18  Bruno Haible  <bruno@clisp.org>
9400
9401         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
9402         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
9403         sys/param.h.
9404
9405 2009-10-16  Eric Blake  <ebb9@byu.net>
9406
9407         utimensat: new module
9408         * modules/utimensat: New file.
9409         * lib/utimensat.c (utimensat): Likewise.
9410         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
9411         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
9412         so we can work around Linux bugs.
9413         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
9414         * modules/sys_stat (Makefile.am): Substitute them.
9415         * lib/sys_stat.in.h (utimensat): Declare it.
9416         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9417         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9418         * modules/utimensat-tests: New test.
9419         * tests/test-utimensat.c: Likewise.
9420
9421         utimens: let lutimens work on non-symlinks
9422         * lib/utimens.c (lutimens): Fall back to utimens rather than
9423         failing with ENOSYS, when file is not a symlink.
9424         (utimens): Reduce redirection.
9425         * tests/test-lutimens.h (test_lutimens): Update test to cover
9426         non-symlinks.
9427         * tests/test-utimens.h (test_utimens): Update test to cover
9428         symlinks.
9429         * tests/test-utimens.c (main): Update caller.
9430
9431         utimens: cache whether utimensat syscall works
9432         * lib/utimens.c (utimensat_works_really): New cache variable.
9433         (fdutimens, lutimens): Use it to avoid failing syscall.
9434
9435         test-stat-time, test-utimens: improve portability
9436         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
9437         ext4 on alpha, and for cygwin.
9438         * tests/test-utimens-common.h: New file.
9439         (nap): Factor delays into single function.
9440         * tests/test-lutimens.h (test_lutimens): Use new header.
9441         * tests/test-futimens.h (test_futimens): Likewise.
9442         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
9443         timestamps to occur from same machine, as was done previously for
9444         test_utimens.
9445         * modules/utimens-tests (Files): Ship new file.
9446         * modules/futimens-tests (Files): Likewise.
9447         Reported in part by Jim Meyering.
9448
9449         sys_stat: sort replacement declarations
9450         * lib/sys_stat.in.h: Sort declarations.
9451         * lib/futimens.c (futimens): Fix typo.
9452
9453 2009-10-15  Jim Meyering  <meyering@redhat.com>
9454
9455         don't let environment settings perturb build
9456         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
9457         could cause a configure-time and/or build-time malfunction.
9458         Typically, a configure-time function-in-library test is performed
9459         via code like this:
9460
9461           LIB_VAR=
9462           AC_SUBST([LIB_VAR])
9463           prefix_saved_LIBS=$LIBS
9464             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
9465                        [test "$ac_cv_search_FUNC" = "none required" ||
9466                         LIB_VAR=$ac_cv_search_FUNC])
9467           LIBS=$prefix_saved_LIBS
9468
9469         However, in each of the files affected by this change, the LIB_VAR=
9470         initialization was omitted.  Thus, when set in the environment, its
9471         value would propagate into generated Makefiles when FUNC is not found
9472         in LIB_NAME.
9473         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
9474         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
9475         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9476
9477 2009-10-14  Eric Blake  <ebb9@byu.net>
9478
9479         fchdir: avoid infinite recursion in mingw
9480         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
9481         recursing.
9482
9483         test-stat-time: port to mingw
9484         * tests/test-stat-time.c (force_unlink): Return a value.
9485         (test_ctime) [W32]: Fix compilation error.
9486         (nap): Don't call usleep with too large an argument.  Use
9487         force_unlink.
9488         * doc/pastposix-functions/usleep.texi (usleep): Document the
9489         portability issue.
9490
9491 2009-10-13  Jim Meyering  <meyering@redhat.com>
9492
9493         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
9494         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
9495         * modules/pipe-filter-ii: Likewise.
9496         * modules/sys_socket-tests: Likewise.
9497         * modules/tsearch-tests: Likewise.
9498         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
9499         (check): Depend on it.
9500
9501 2009-10-12  Eric Blake  <ebb9@byu.net>
9502
9503         utimens-tests: port to NFS file systems
9504         * tests/test-utimens.h (test_utimens): Refactor utimecmp
9505         comparisons to avoid spurious failures from timestamp drift
9506         between NFS machines.
9507
9508 2009-10-12  Eric Blake  <ebb9@byu.net>
9509
9510         stat-time-tests: minor cleanups
9511         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
9512         * tests/test-stat-time.c (nap): Separate assignment from call.
9513         Suggested by Paolo Bonzini and Bruno Haible.
9514
9515         sys_stat: guarantee struct timespec
9516         * lib/sys_stat.in.h (includes): Always include <time.h>
9517         * modules/sys_stat (Depends-on): Add time.
9518         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
9519         mode_t permission values.
9520         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
9521         get at subsecond timestamps.
9522
9523 2009-10-10  Eric Blake  <ebb9@byu.net>
9524
9525         futimens: new module
9526         * modules/futimens: New file.
9527         * lib/futimens.c (futimens): Likewise.
9528         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
9529         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
9530         we can work around Linux bugs.
9531         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
9532         * modules/sys_stat (Makefile.am): Substitute them.
9533         * lib/sys_stat.in.h (futimens): Declare it.
9534         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9535         * doc/posix-functions/futimens.texi (futimens): Likewise.
9536         * modules/futimens-tests: New test.
9537         * tests/test-futimens.c: Likewise.
9538
9539         utimens: introduce fdutimens
9540         * lib/utimens.h (fdutimens): New prototype.
9541         * lib/utimens.c (gl_futimens): Move guts...
9542         (fdutimens): ...to new interface.
9543         * tests/test-utimens.c (do_fdutimens): Use it.
9544
9545         utimens: add UTIME_NOW and UTIME_OMIT support
9546         * lib/utimens.c (validate_timespec, update_timespec): New helper
9547         functions.
9548         (gl_futimens, lutimens): Use them.
9549         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
9550         stdbool, sys_stat.
9551         (Link): Mention resulting library dependency.
9552         * modules/utimecmp (Link): Likewise.
9553         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
9554         (Makefile.am): Pick up library dependency.
9555         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
9556         definition.
9557         * tests/test-sys_stat.c: Test the definitions.
9558         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
9559         * NEWS: Document library dependency.
9560
9561         utimecmp: support symlink timestamps
9562         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
9563         hashing when possible.  Use pathconf when available.
9564         (SYSCALL_RESOLUTION): Recognize tighter resolution.
9565         * modules/utimecmp (Depends-on): Add lstat.
9566
9567         utimens: add lutimens interface
9568         * lib/utimens.c (lutimens): New function.
9569         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
9570         * lib/utimens.h (lutimens): Declare new interface.
9571         * tests/test-utimens.c (main): Enhance test.
9572         * tests/test-lutimens.h (test_lutimens): New file.
9573         * modules/utimens-tests (Files): Distribute it.
9574         (Depends-on): Add symlink.
9575         (configure.ac): Check for usleep.
9576
9577         utimens: validate futimens usage
9578         * lib/utimens.c (gl_futimens): Require valid fd up front, using
9579         fewer syscalls on failure later on.  Avoid compiler warning on
9580         mingw.
9581         * modules/utimens (Depends-on): Add dup2.
9582
9583         utimens: add test
9584         * modules/utimens-tests: New test.
9585         * tests/test-utimens.h: New file.
9586         * tests/test-futimens.h: Likewise.
9587         * tests/test-utimens.c: Likewise.
9588
9589         doc: mention timestamp portability issues
9590         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
9591         instead.
9592         * doc/posix-functions/utime.texi (utime): Likewise.
9593         * doc/posix-functions/utimes.texi (utimes): Likewise.
9594         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
9595         instead.
9596         * doc/posix-functions/futimens.texi (futimens): Mention utimens
9597         module.
9598         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
9599         Mention weakness with symlink timestamps.
9600         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
9601         to utimensat/futimens instead.
9602         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
9603
9604         test-dup2: enhance test
9605         * tests/test-dup2.c (main): Also check AT_FDCWD.
9606
9607         test-stat-time: avoid more spurious failures
9608         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
9609         xfs; and avoid race if the two timestamps cross quantization edge.
9610
9611         relocatable: prefer 'file system' over 'filesystem'
9612         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
9613         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
9614         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
9615         * doc/relocatable.texi (Enabling Relocatability): Likewise.
9616         * lib/relocatable.c (compute_curr_prefix): Likewise.
9617
9618 2009-10-10  Jim Meyering  <meyering@redhat.com>
9619
9620         stat-time-tests: check for the usleep function
9621         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
9622
9623 2009-10-10  Bruno Haible  <bruno@clisp.org>
9624
9625         * modules/xnanosleep: Put the Link section after the Include section.
9626
9627 2009-10-09  Eric Blake  <ebb9@byu.net>
9628
9629         dup2: work around FreeBSD 6.1 bug
9630         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
9631         * doc/posix-functions/dup2.texi (dup2): Document it.
9632         Reported by Nelson H. F. Beebe and Jim Meyering.
9633
9634         test-stat-time: port to buggy NFS clients
9635         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
9636         (test_ctime): Also skip test if mtime and ctime are skewed.
9637
9638         maint: prefer 'file system' over 'filesystem'
9639         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
9640         * doc/posix-functions/lstat.texi (lstat): Likewise.
9641         * lib/file-has-acl.c (file_has_acl): Likewise.
9642         * lib/fwriteerror.c [TEST]: Likewise.
9643         * tests/test-areadlink.h (test_areadlink): Likewise.
9644         * tests/test-areadlinkat-with-size.c (main): Likewise.
9645         * tests/test-areadlinkat.c (main): Likewise.
9646         * tests/test-canonicalize-lgpl.c (main): Likewise.
9647         * tests/test-canonicalize.c (main): Likewise.
9648         * tests/test-fstatat.c (main): Likewise.
9649         * tests/test-linkat.c (main): Likewise.
9650         * tests/test-lstat.h (test_lstat_func): Likewise.
9651         * tests/test-mkdir.h (test_mkdir): Likewise.
9652         * tests/test-readlink.h (test_readlink): Likewise.
9653         * tests/test-remove.c (main): Likewise.
9654         * tests/test-rename.h (test_rename): Likewise.
9655         * tests/test-renameat.c (main): Likewise.
9656         * tests/test-rmdir.h (test_rmdir_func): Likewise.
9657         * tests/test-symlink.h (test_symlink): Likewise.
9658         * tests/test-symlinkat.c (main): Likewise.
9659         * tests/test-unlink.h (test_unlink_func): Likewise.
9660         * tests/test-unlinkat.c (main): Likewise.
9661
9662         maint: make realtime library usage explicit
9663         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
9664         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
9665         * modules/settime (Link): Likewise.
9666         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
9667
9668         test-stat-time: speed up execution
9669         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
9670         warning on mingw.
9671         (nap): New helper function.
9672         (prepare_test): Use it to reduce sleep time.
9673         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
9674         execution.
9675         * modules/stat-time-tests (configure.ac): Check for usleep.
9676
9677 2009-10-09  Jim Meyering  <meyering@redhat.com>
9678
9679         selinux-h: always use getfilecon wrappers
9680         * lib/getfilecon.c: New file.
9681         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
9682         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
9683         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
9684         (fgetfilecon): Provide a stub.
9685         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
9686         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
9687         file unconditionally.
9688         When <selinux/selinux.h> is found, arrange to use wrappers.
9689         * modules/selinux-h (Files): Add getfilecon.c.
9690         (Makefile.am): Substitute include-next-related bits
9691         into the now-always-generated selinux/selinux.h file.
9692         * doc/glibc-functions/lgetfilecon.texi: New file.
9693         * doc/glibc-functions/fgetfilecon.texi: New file.
9694         * doc/glibc-functions/getfilecon.texi: New file.
9695         * doc/glibc-functions/getfilecon-desc.texi: New file.
9696         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
9697         which to pull in the new files.
9698         * MODULES.html.sh (Misc): Add selinux-h.
9699
9700 2009-10-08  Jim Meyering  <meyering@redhat.com>
9701
9702         unistd: fix comment typo
9703         * lib/unistd.in.h (euidaccess): Fix a comment typo.
9704
9705 2009-10-08  Eric Blake  <ebb9@byu.net>
9706
9707         areadlink: use SIZE_MAX consistently
9708         * modules/areadlink (Depends-on): Add stdint.
9709         * modules/areadlink-with-size (Depends-on): Likewise.
9710         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
9711         gives NULL; drop sys/types, since unistd gives size_t; and add
9712         stdint for SIZE_MAX.
9713         (SIZE_MAX): Rely on headers.
9714         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
9715         and add stdint.
9716         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
9717         (SIZE_MAX): Likewise.
9718         (INITIAL_BUF_SIZE): Turn into enum.
9719         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
9720
9721 2009-10-08  Jim Meyering  <meyering@redhat.com>
9722
9723         areadlinkat: avoid compilation failure
9724         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
9725         Fix typo in comment.
9726
9727 2009-10-07  Eric Blake  <ebb9@byu.net>
9728
9729         areadlinkat-with-size: new module
9730         * modules/areadlinkat-with-size: New module.
9731         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
9732         * lib/areadlink.h (areadlinkat): Declare it.
9733         * MODULES.html.sh (File system functions): Mention it.
9734         * modules/areadlinkat-with-size-tests: New test.
9735         * tests/test-areadlinkat-with-size.c: New file.
9736
9737         xreadlinkat: new module
9738         * modules/xreadlinkat: New module.
9739         * lib/xreadlinkat.c (xreadlinkat): New file.
9740         * lib/xreadlink.h (xreadlinkat): Declare it.
9741         * MODULES.html.sh (File system functions): Mention it.
9742
9743         areadlinkat: new module
9744         * lib/at-func.c (FUNC_FAIL): New define.
9745         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
9746         * modules/areadlinkat: New module.
9747         * lib/linkat.c (areadlinkat): Move...
9748         * lib/areadlinkat.c (areadlinkat): ...to new file.
9749         * lib/areadlink.h (areadlinkat): Declare it.
9750         * modules/linkat (Depends-on): Add areadlinkat.
9751         * MODULES.html.sh (File system functions): Mention it.
9752         * modules/areadlinkat-tests: New test.
9753         * tests/test-areadlinkat.c: New file.
9754
9755         areadlink, areadlink-with-size: add tests
9756         * modules/areadlink-tests: New test.
9757         * modules/areadlink-with-size-tests: Likewise.
9758         * tests/test-areadlink.h: New file.
9759         * tests/test-areadlink.c: Likewise.
9760         * tests/test-areadlink-with-size.c: Likewise.
9761
9762         maint: minor cleanups
9763         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
9764         _UNUSED_PARAMETER_ instead.
9765         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
9766         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
9767         * modules/linkat-tests (Files): Distribute test-link.h.
9768
9769         openat, utimens: whitespace cleanup
9770         * lib/openat.c: Prefer space throughout, rather than mix of 8
9771         spaces vs. tabs.
9772         * lib/at-func.c: Likewise.
9773         * lib/utimens.c: Likewise.
9774
9775         openat: avoid using wrong fd
9776         * lib/openat.c (openat_permissive): Reject user's fd if saving the
9777         working directory chooses same fd.
9778         * lib/at-func.c (AT_FUNC_NAME): Likewise.
9779
9780         mkdir, mkdirat: fix cygwin 1.5.x bug
9781         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
9782         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
9783         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
9784         bug.
9785         (gl_PREREQ_MKDIR): Delete unused macro.
9786         * modules/mkdir (Files): Track file rename.
9787         (configure.ac): Update macro name.
9788         * modules/openat (Depends-on): Add mkdir.
9789         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
9790
9791         mkdir, mkdirat: add tests
9792         * modules/mkdir-tests: New test.
9793         * tests/test-mkdir.h: New file.
9794         * tests/test-mkdir.c: Likewise.
9795         * tests/test-mkdirat.c: Likewise.
9796         * modules/openat-tests (Files): Add new files.
9797         (Makefile.am): Run new test.
9798
9799 2009-10-06  Eric Blake  <ebb9@byu.net>
9800
9801         doc: tweak *at function documentation
9802         * doc/posix-functions/faccessat.texi (faccessat): Mention
9803         known issue with replacement.
9804         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
9805         * doc/posix-functions/linkat.texi (linkat): Likewise.
9806         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
9807         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
9808         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
9809         * doc/posix-functions/renameat.texi (renameat): Likewise.
9810         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
9811
9812         openat: fix GNU/Hurd bug in unlinkat
9813         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
9814         broken.
9815         * doc/posix-functions/unlink.texi (unlink): Document this.
9816         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
9817
9818         fdopendir: fix GNU/Hurd bug
9819         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
9820         allowing non-directory fds.
9821         * lib/fdopendir.c (rpl_fdopendir): Work around it.
9822         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
9823         * modules/dirent (Makefile.am): Substitute it.
9824         * lib/dirent.in.h (fdopendir): Declare replacement.
9825         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
9826         * tests/test-fdopendir.c (main): Test something other than
9827         /dev/null, since on Hurd that behaves like a directory.
9828
9829         test-symlink: port to GNU/Hurd
9830         * tests/test-symlink.h (test_symlink): Relax expected errno.
9831
9832         doc: tweak more cygwin information
9833         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
9834         now compatible with glibc.
9835         * doc/posix-functions/getopt.texi (getopt): Likewise.
9836
9837         getopt-gnu: add another test
9838         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
9839         guarantee behavior relied on by m4.
9840         * tests/test-getopt.c (main): Use it.
9841         * modules/getopt-posix-tests (Depends-on): Add setenv.
9842         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
9843
9844         getopt: fix compilation on darwin
9845         * lib/getopt.in.h (includes): Leave breadcrumbs during system
9846         include.
9847         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
9848         Reported by Ludovic Courtès.
9849
9850 2009-10-06  Bruno Haible  <bruno@clisp.org>
9851
9852         * modules/size_max (Description): Discourage its use.
9853         Reported by Simon Josefsson.
9854
9855 2009-10-06  Jim Meyering  <meyering@redhat.com>
9856
9857         linkat: avoid compilation failure
9858         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
9859
9860 2009-10-05  Eric Blake  <ebb9@byu.net>
9861
9862         linkat: support Linux 2.6.17
9863         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
9864         linkat on Linux, but allow cache variable override.
9865         * lib/linkat.c (rpl_linkat): Define override.
9866         * modules/linkat (Depends-on): Add symlinkat.
9867         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
9868         * modules/unistd (Makefile.am): Substitute it.
9869         * lib/unistd.in.h (linkat): Declare replacement.
9870         Reported by Pádraig Brady.
9871
9872         quotearg: port test to systems with C.UTF-8 locale
9873         * tests/test-quotearg.c (struct result_strings): Add another
9874         member, differentiating between C.ASCII and C.UTF-8 handling.
9875         (compare_strings): Add parameter.
9876         (main): Adjust all callers.
9877
9878         getopt: avoid clash with FreeBSD _getopt_internal
9879         * lib/getopt.in.h (_getopt_internal): Override the name.
9880         * lib/getopt_int.h (includes): Pick up any overrides.
9881         Reported by Reuben Thomas.
9882
9883         hash: allow C89 compilation
9884         * lib/hash.c (check_tuning): Move declaration before statement.
9885         Reported by Reuben Thomas.
9886
9887 2009-10-05  Karl Berry  <karl@gnu.org>
9888
9889         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
9890
9891 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
9892             Bruno Haible  <bruno@clisp.org>
9893
9894         * lib/uname.c (uname): Use a table-driven algorithm to compute
9895         Windows NT versions.
9896
9897 2009-10-04  Bruno Haible  <bruno@clisp.org>
9898
9899         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
9900         program_invocation_short_name.
9901         * modules/progname (configure.ac): Test for presence of
9902         program_invocation_short_name.
9903         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
9904
9905 2009-10-04  Bruno Haible  <bruno@clisp.org>
9906
9907         * lib/progname.c (set_program_name): Fix comment.
9908         Reported by Jim Meyering.
9909
9910 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
9911             Bruno Haible  <bruno@clisp.org>
9912
9913         * lib/uname.c: Include <string.h>.
9914         (uname): Do only one call to GetVersionEx in the common case.
9915
9916 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
9917             Bruno Haible  <bruno@clisp.org>
9918
9919         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
9920         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
9921         (uname): Add support for Windows CE and various non-x86 CPU types.
9922
9923 2009-10-03  Bruno Haible  <bruno@clisp.org>
9924
9925         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
9926         invocation to tests/configure.ac.
9927         Reported by Ian Beckwith <ianb@erislabs.net>.
9928
9929 2009-10-02  Eric Blake  <ebb9@byu.net>
9930
9931         fchdir: avoid compiler warning
9932         * lib/fchdir.c (canonicalize_file_name)
9933         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
9934
9935         test-open: support mingw errno values
9936         * tests/test-open.h (test_open): Relax test.
9937         * tests/test-fopen.h (test_fopen): Likewise.
9938         * tests/test-openat-safer.c (main): Likewise.
9939
9940         open: fix opening directory on mingw
9941         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
9942
9943         test-open: on GNU/Hurd, /dev/null is a directory
9944         * tests/test-fopen.h (main): Rename...
9945         (test_fopen): ...to this.  Use a guaranteed non-directory when
9946         confirming open behavior on trailing slash.
9947         * tests/test-openat-safer.c (main): Likewise.
9948         * tests/test-open.h (main): Likewise....
9949         (test_open): ...to this.
9950         * tests/test-fopen.c (main): Adjust caller.
9951         * tests/test-fopen-safer.c (main): Likewise.
9952         * tests/test-open.c (main): Likewise.
9953         * tests/test-fcntl-safer.c (main): Likewise.
9954         Reported by Samuel Thibault.
9955
9956         rename, fchdir: don't ignore chdir failure
9957         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
9958         * lib/rename.c (rpl_rename) [W32]: Likewise.
9959         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
9960         an empty destination directory if source cannot be renamed,
9961         although there is still possibility for failure.
9962         * doc/posix-functions/rename.texi (rename): Document the race.
9963         Reported by Jim Meyering.
9964
9965         maint: cleanup whitespace in recent commits
9966         * lib/rename.c (rpl_rename): Remove tabs.
9967         * tests/test-link.h (test_link): Likewise.
9968         * lib/fchdir.c (get_name): Likewise.
9969         Reported by Jim Meyering.
9970
9971 2009-10-02  Ben Pfaff  <blp@gnu.org>
9972
9973         relocatable-prog-wrapper: Add missing dependency on
9974         double-slash-root.
9975         * modules/relocatable-prog-wrapper: Add dependency.
9976         Reported by Ian Beckwith <ianb@erislabs.net>.
9977
9978 2009-10-02  Eric Blake  <ebb9@byu.net>
9979
9980         renameat: fix Solaris bugs
9981         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
9982         needed fixing.
9983         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
9984         * modules/stdio (Makefile.am): Substitute it.
9985         * lib/stdio.in.h (renameat): Declare replacement.
9986         * lib/renameat.c (rpl_renameat): Implement fix.
9987
9988         renameat: new module
9989         * modules/renameat: New file.
9990         * lib/renameat.c (renameat): Likewise.
9991         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
9992         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
9993         * modules/stdio (Makefile.am): Substitute them.
9994         * lib/stdio.in.h (renameat): Declare it.
9995         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
9996         * doc/posix-functions/renameat.texi (renameat): Likewise.
9997         * modules/renameat-tests: New test.
9998         * tests/test-renameat.c: Likewise.
9999
10000         rename: fix mingw bugs
10001         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
10002         directory overwrite bugs.
10003
10004         rename: fix another cygwin 1.5 bug
10005         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
10006         checks.
10007         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
10008         unnecessary cygwin workarounds.  Also work around bug with moving
10009         full directory onto an empty one.
10010         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
10011
10012         rename-dest-slash: merge into rename module
10013         * modules/rename-dest-slash (Status): Mark obsolete.
10014         (Depends-on): Add rename.
10015         (Files): Let rename do it all.
10016         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
10017         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
10018         * m4/rename-dest-slash.m4: ...so this file can be deleted.
10019         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
10020         * lib/rename.c (rpl_rename): Update comments.
10021
10022         rename: fix cygwin 1.5.x bugs
10023         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
10024         * lib/rename.c (rpl_rename): Work around them.
10025         * modules/rename (Depends-on): Add same-inode.
10026
10027         rename: fix Solaris 10 bug
10028         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
10029         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
10030         was the only bug.
10031
10032         rename: fix Solaris 9 bug
10033         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
10034         on non-directory.  Avoid calling exit.
10035         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
10036         strdup.
10037         * modules/rename-tests (Depends-on): Drop lstat.
10038         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
10039         (gl_PREREQ_RENAME): Delete unused macro.
10040
10041         rename-dest-slash: fix NetBSD bug
10042         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
10043         links.
10044         * modules/rename-dest-slash (Depends-on): Add same-inode.
10045
10046         rename-tests: new test, exposes several platform bugs
10047         * modules/rename-tests: New file.
10048         * tests/test-rename.h: Likewise.
10049         * tests/test-rename.c: Likewise.
10050         * doc/posix-functions/rename.texi (rename): Improve documentation,
10051         including bugs that will eventually be fixed in gnulib.
10052
10053 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
10054
10055         * lib/uname.c: Include <stdlib.h>
10056         (uname): Assume version info is available.
10057
10058 2009-10-02  Jim Meyering  <meyering@redhat.com>
10059
10060         gnu-web-doc-update: correct --help output
10061         * build-aux/gnu-web-doc-update: Make --help output relevant.
10062
10063         gnu-web-doc-update: add standard options
10064         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
10065
10066         gnu-web-doc-update: New module.
10067         Use this script to automatically update the on-line web documentation
10068         for your GNU project at http://www.gnu.org/software/$pkg/manual/
10069         * modules/gnu-web-doc-update: New file, from coreutils.
10070         * build-aux/gnu-web-doc-update: New script.
10071
10072 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
10073
10074         link: LoadLibrary is not needed.
10075         * lib/link.c: Use GetModuleHandle.
10076
10077 2009-10-01  Eric Blake  <ebb9@byu.net>
10078
10079         getopt: bump serial number
10080         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
10081         change.
10082
10083         tests: tighten link, rmdir, and remove tests
10084         * tests/test-link.h (includes): No need to use <config.h> here.
10085         Clean up if directory hard link was created, otherwise test for
10086         trailing '.'.
10087         * tests/test-linkat.c (main): Simplify.
10088         * tests/test-remove.c (main): Enhance test for trailing '.'.
10089         * tests/test-rmdir.h (test_rmdir_func): Likewise.
10090
10091 2009-10-01  Jim Meyering  <meyering@redhat.com>
10092
10093         maint.mk: requiring "make major" was annoying, for a "minor" release.
10094         What is intended is "stable", to contrast with alpha and beta,
10095         so require "make stable", not "make major".
10096         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
10097         (get_tool_versions): Likewise.
10098         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
10099
10100 2009-09-30  Ben Pfaff  <blp@gnu.org>
10101
10102         Fix broken build of replacement for Windows tmpfile().
10103         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
10104         flags argument added along with the 'mkostemp' module.
10105
10106 2009-09-28  Bruno Haible  <bruno@clisp.org>
10107
10108         Avoid identifier clash with POSIX function 'remove' defined as a macro.
10109         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
10110         to 'remove_elt'.
10111         (gl_list_remove): Update.
10112         * lib/gl_list.c (gl_list_remove): Update.
10113         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
10114         to 'remove_elt'.
10115         (gl_oset_remove): Update.
10116         * lib/gl_list.c (gl_oset_remove): Update.
10117         Reported by Eric Blake.
10118
10119 2009-09-28  Eric Blake  <ebb9@byu.net>
10120
10121         doc: mention yet more cygwin 1.7 status
10122         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
10123         cygwin.
10124         * doc/glibc-functions/execvpe.texi (execvpe): New file.
10125         * doc/gnulib.texi (Glibc unistd.h): Mention it.
10126
10127         argp: fix test failure
10128         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
10129         that are not upper-case.  Pass correct range to tolower.
10130
10131 2009-09-27  Jim Meyering  <meyering@redhat.com>
10132
10133         test-yesno: work around sparc-dash here-document infelicity
10134         Without this change, the literal \177 byte in a here document
10135         would make dash 0.5.5.1-3 access uninitialized memory.
10136         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
10137         Instead, use a marker, "@", and filter through tr to create the desired
10138         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
10139
10140 2009-09-27  Bruno Haible  <bruno@clisp.org>
10141
10142         Disable untested support for new flavours of ACLs on AIX.
10143         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
10144         progress.
10145         * lib/set-mode-acl.c (qset_acl): Likewise.
10146
10147 2008-12-07  Bruno Haible  <bruno@clisp.org>
10148
10149         Add support for new flavours of ACLs on AIX. (Untested.)
10150         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
10151         (file_has_acl): Add support for newer AIX.
10152         * lib/set-mode-acl.c (qset_acl): Likewise.
10153         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
10154         Rainer Tammer <tammer@tammer.net>.
10155
10156 2009-09-26  Eric Blake  <ebb9@byu.net>
10157
10158         argp: fix compilation of getopt
10159         * lib/getopt.in.h (includes): Use different guard than glibc.
10160         Reported by Sergey Poznyakoff.
10161
10162         doc: mention more cygwin 1.7 status
10163         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
10164         bug.
10165         * doc/posix-functions/execl.texi (execl): Likewise.
10166         * doc/posix-functions/execle.texi (execle): Likewise.
10167         * doc/posix-functions/execlp.texi (execlp): Likewise.
10168         * doc/posix-functions/execv.texi (execv): Likewise.
10169         * doc/posix-functions/execve.texi (execve): Likewise.
10170         * doc/posix-functions/execvp.texi (execvp): Likewise.
10171         * doc/glibc-functions/canonicalize_file_name.texi
10172         (canonicalize_file_name): Cygwin 1.7 now provides this.
10173         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
10174         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
10175         on AT_SYMLINK_NOFOLLOW.
10176
10177 2009-09-24  Eric Blake  <ebb9@byu.net>
10178
10179         test-linkat: make test more robust
10180         * tests/test-linkat.c (main): Avoid collision with EEXIST.
10181
10182         getopt: fix inclusion guards for cygwin
10183         * modules/getopt-posix (Depends-on): Add include-next.
10184         (Makefile.am): Substitute more items in replacement header.
10185         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
10186         <getopt.h>.
10187         * lib/getopt.in.h (includes): Use split inclusion guard, and
10188         prefer <getopt.h> over include <unistd.h> when one is present.
10189         (option): Also override name of 'struct option'.
10190
10191         same-inode: revert prior change; it is not yet ready
10192         * NEWS: Undo mention of this change.
10193         * lib/same-inode.h (same-inode.h): Undo tri-state change.
10194         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
10195         * lib/cycle-check.c (cycle_check): Likewise.
10196         * lib/same.c (same_name): Likewise.
10197         * lib/at-func2.c (at_func2): Likewise.
10198
10199 2009-09-23  Eric Blake  <ebb9@byu.net>
10200
10201         linkat: new module
10202         * modules/linkat: New file.
10203         * lib/at-func2.c (at_func2): Likewise.
10204         * lib/linkat.c (linkat): Likewise.
10205         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
10206         * lib/openat-priv.h (at_func2): Add declaration.
10207         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
10208         * modules/unistd (Makefile.am): Substitute them.
10209         * lib/unistd.in.h (linkat): Declare it.
10210         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10211         * doc/posix-functions/linkat.texi (linkat): Likewise.
10212         * doc/posix-functions/link.texi (link): Tweak wording.
10213         * tests/test-link.c (main): Move guts...
10214         * tests/test-link.h (test_link): ...into new file.
10215         * modules/linkat-tests: New test.
10216         * tests/test-linkat.c: Likewise.
10217         * modules/link-tests (Files): Ship new file.
10218         (Depends-on): Add stdbool.
10219
10220         dirname: add library-safe mdir_name
10221         * lib/dirname.h (mdir_name): New prototype.
10222         * lib/dirname.c (dir_name): Move guts...
10223         (mdir_name): ...to new function that avoids xalloc_die.
10224
10225         fchdir: another mingw fix
10226         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
10227         * lib/fchdir.c (get_name): New helper method; skips canonicalize
10228         on mingw (where it has not yet been ported), and make it optional
10229         elsewhere.
10230         (_gl_register_fd): Use it.
10231
10232         same-inode: make SAME_INODE tri-state, to port to mingw
10233         * NEWS: Mention this change.
10234         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
10235         st_ino always being 0.
10236         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
10237         * lib/cycle-check.c (cycle_check): Likewise.
10238         * lib/same.c (same_name): Likewise.
10239
10240         lstat: avoid mingw compilation error
10241         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
10242         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
10243         lstat ourselves.
10244         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
10245         was adequate.
10246         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
10247         the checks for lstat.
10248         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
10249
10250         link: fix test failure on Solaris 9
10251         * lib/link.c (rpl_link): Don't assume link will catch bogus
10252         trailing slash on source.
10253
10254         test-symlinkat: enhance test
10255         * tests/test-readlink.c (main): Move guts...
10256         * tests/test-readlink.h (test_readlink): ...into new file.
10257         * tests/test-symlink.c (main): Move guts...
10258         * tests/test-symlink.h (test_symlink): ...into new file.
10259         * tests/test-symlinkat.c (main): Use new files for further
10260         coverage.
10261         (do_symlink, do_readlink): New helper functions.
10262         * modules/symlink-tests (Files): Ship new file.
10263         (Depends-on): Add stdbool.
10264         * modules/readlink-tests (Files): Ship new file.
10265         (Depends-on): Add stdbool.
10266         * modules/symlinkat-tests (Files): Use new files.
10267
10268 2009-09-23  Eric Blake  <ebb9@byu.net>
10269
10270         readlink: document portability issue with symlink length
10271         * doc/posix-functions/lstat.texi (lstat): Mention that some file
10272         systems have bogus st_size on symlinks, and mention the
10273         areadlink-with-size module.
10274         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
10275         * doc/posix-functions/readlink.texi (readlink): Mention the
10276         areadlink module, and ERANGE failure.
10277         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
10278         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
10279
10280         readlink: fix Solaris 9 bug with trailing slash
10281         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
10282         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
10283         * doc/posix-functions/readlink.texi (readlink): Document this.
10284         * modules/readlink-tests: New test.
10285         * tests/test-readlink.c: Likewise.
10286
10287         readlink: fix cygwin 1.5.x bug with return type
10288         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
10289         * lib/unistd.in.h (readlink): Use ssize_t.
10290         * lib/readlink.c (readlink): Likewise.
10291         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
10292         * modules/unistd (Makefile.am): Substitute it.
10293         * lib/unistd.in.h (readlink): Declare replacement.
10294         * doc/posix-functions/readlink.texi (readlink): Document this.
10295
10296         symlink: use throughout gnulib
10297         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
10298         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
10299         symlink is not used.
10300         * modules/symlinkat (Depends-on): Add symlink.
10301         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
10302         * modules/canonicalize-tests (Depends-on): Likewise.
10303         * modules/lstat-tests (Depends-on): Likewise.
10304         * modules/openat-tests (Depends-on): Likewise.
10305         * modules/remove-tests (Depends-on): Likewise.
10306         * modules/rmdir-tests (Depends-on): Likewise.
10307         * modules/unlink-tests (Depends-on): Likewise.
10308         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
10309         * tests/test-canonicalize.c (symlink): Likewise.
10310         * tests/test-fstatat.c (symlink): Likewise.
10311         * tests/test-lstat.c (symlink): Likewise.
10312         * tests/test-remove.c (symlink): Likewise.
10313         * tests/test-rmdir.c (symlink): Likewise.
10314         * tests/test-unlink.c (symlink): Likewise.
10315         * tests/test-unlinkat.c (symlink): Likewise.
10316
10317         symlink: new module, for Solaris 9 bug
10318         * modules/symlink: New file.
10319         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
10320         * lib/symlink.c: Likewise.
10321         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
10322         * modules/unistd (Makefile.am): Substitute them.
10323         * lib/unistd.in.h (symlink): Declare replacement.
10324         * MODULES.html.sh (File system functions): Mention it.
10325         * doc/posix-functions/symlink.texi (symlink): Likewise.
10326         * modules/symlink-tests: New test.
10327         * tests/test-symlink.c: Likewise.
10328
10329 2009-09-23  Bruno Haible  <bruno@clisp.org>
10330
10331         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
10332         when needed.
10333         Test case: gnulib-tool --import --with-tests atexit inttypes.
10334         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
10335
10336 2009-09-23  Bruno Haible  <bruno@clisp.org>
10337
10338         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
10339         subcommand, not in a subshell.
10340
10341 2009-09-22  Eric Blake  <ebb9@byu.net>
10342
10343         unistd: sort replacement declarations
10344         * lib/unistd.in.h: Sort declarations.
10345
10346         open, openat: minor optimization
10347         * lib/open.c (open): If open succeeded, len is non-zero.
10348         * lib/openat.c (rpl_openat): Likewise.
10349
10350         link-follow: ensure correct result
10351         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
10352         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
10353         distinguish between possible failures.
10354
10355 2009-09-21  Eric Blake  <ebb9@byu.net>
10356
10357         fts: avoid compiler warning
10358         * lib/fts.c (dirent_inode_sort_may_be_useful)
10359         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
10360
10361 2009-09-19  Bruno Haible  <bruno@clisp.org>
10362
10363         * lib/progreloc.c (canonicalize_file_name): New declaration.
10364
10365 2009-09-19  Eric Blake  <ebb9@byu.net>
10366
10367         link: fix quoting
10368         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
10369
10370         openat: fix openat bugs on Solaris 9
10371         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
10372         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
10373         * modules/openat (Depends-on): Add open.
10374         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
10375         * modules/fcntl-h (Makefile.am): Substitute it.
10376         * lib/fcntl.in.h (openat): Declare replacement.
10377         * doc/posix-functions/openat.texi (openat): Document this.
10378
10379         openat: move fstatat and unlinkat into correct files
10380         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
10381         compiled.
10382         * lib/openat.c (fstatat, unlinkat): Move...
10383         * lib/fstatat.c (fstatat): ...into correct files.
10384         * lib/unlinkat.c (unlinkat): Likewise.
10385
10386         openat: fix unlinkat bugs on Solaris 9
10387         * lib/unlinkat.c (unlinkat): New file.
10388         * modules/openat (Depends-on): Add unlink.
10389         (Files): Distribute it.
10390         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
10391         trailing slash behavior is broken.
10392         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
10393         * modules/unistd (Makefile.am): Substitute it.
10394         * lib/unistd.in.h (unlinkat): Declare replacement.
10395         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
10396
10397         openat: fix fstatat bugs on Solaris 9
10398         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
10399         stat.
10400         * doc/posix-functions/fstatat.texi (fstatat): Document this.
10401
10402         test-unlinkat: enhance test, to expose Solaris 9 bug
10403         * tests/test-unlink.c (main): Factor guts...
10404         * tests/test-unlink.h (test_rmdir_func): ...into new file.
10405         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
10406         * tests/test-rmdir.c (main): Adjust caller.
10407         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
10408         (unlinker): New helper function.
10409         (rmdirat): Enhance check.
10410         * modules/rmdir-tests (Depends-on): Add stdbool.
10411         * modules/unlink-tests (Depends-on): Likewise.
10412         (Files): Add test-unlink.h.
10413         * modules/openat-tests (Files): Likewise.
10414         (Depends-on): Add unlinkdir.
10415
10416         test-fstatat: new test, to expose Solaris 9 bugs
10417         * tests/test-stat.c (main): Factor guts...
10418         * tests/test-stat.h (test_stat_func): ...into new file.
10419         * tests/test-lstat.c (main): Factor guts...
10420         * tests/test-lstat.h (test_lstat_func): ...into new file.
10421         * tests/test-fstatat.c: New file.
10422         * modules/stat-tests (Files): Add test-stat.h.
10423         * modules/lstat-tests (Files): Add test-lstat.h.
10424         (Depends-on): Add stdbool.
10425         * modules/openat-tests (Depends-on): Add pathmax.
10426         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
10427         (Makefile.am): Run new test.
10428
10429         remove: new module, for mingw and Solaris 9 bugs
10430         * modules/remove: New file.
10431         * lib/remove.c: Likewise.
10432         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
10433         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
10434         * modules/stdio (Makefile.am): Use them.
10435         * lib/stdio.in.h (remove): Declare replacement.
10436         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10437         * doc/posix-functions/remove.texi (remove): Likewise.
10438         * modules/remove-tests: New test.
10439         * tests/test-remove.c: Likewise.
10440
10441         unlink: new module, for Solaris 9 bug
10442         * modules/unlink: New file.
10443         * lib/unlink.c: Likewise.
10444         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
10445         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
10446         * modules/unistd (Makefile.am): Use them.
10447         * lib/unistd.in.h (stat): Declare replacement.
10448         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10449         * doc/posix-functions/unlink.texi (unlink): Likewise.
10450         * modules/unlink-tests: New test.
10451         * tests/test-unlink.c: Likewise.
10452
10453         lstat: fix Solaris 9 bug
10454         * lib/lstat.c (lstat): Also check for trailing slash on
10455         non-symlink, non-directories.  Use stat module to simplify logic.
10456         * doc/posix-functions/lstat.texi (lstat): Document it.
10457         * modules/lstat-tests (Depends-on): Add errno, same-inode.
10458         (configure.ac): Check for symlink.
10459         * tests/test-lstat.c (main): Add more tests.
10460
10461         stat: add as dependency to other modules
10462         * modules/chown (Depends-on): Add stat.
10463         * modules/euidaccess (Depends-on): Likewise.
10464         * modules/fchdir (Depends-on): Likewise.
10465         * modules/isdir (Depends-on): Likewise.
10466         * modules/link (Depends-on): Likewise.
10467         * modules/lstat (Depends-on): Likewise.
10468         * modules/mkdir-p (Depends-on): Likewise.
10469         * modules/modechange (Depends-on): Likewise.
10470         * modules/open (Depends-on): Likewise.
10471         * modules/readlink (Depends-on): Likewise.
10472         * modules/same (Depends-on): Likewise.
10473
10474         stat: fix Solaris 9 bug
10475         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
10476         slash.
10477         * lib/stat.c (rpl_stat): Work around it.
10478         * doc/posix-functions/stat.texi (stat): Update documentation.
10479
10480         stat: new module, for mingw bug
10481         * modules/stat: New file.
10482         * lib/stat.c: Likewise.
10483         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
10484         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10485         * modules/sys_stat (Makefile.am): Use them.
10486         * lib/sys_stat.in.h (stat): Declare replacement.
10487         * lib/openat.c (fstatat): Deal with lstat and stat being function
10488         macros.
10489         * modules/openat (Depends-on): Add inline.
10490         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10491         * doc/posix-functions/stat.texi (stat): Likewise.
10492         * modules/stat-tests: New test.
10493         * tests/test-stat.c: Likewise.
10494
10495 2009-09-19  Jim Meyering  <meyering@redhat.com>
10496
10497         syntax-check: detect unnecessary inclusion of canonicalize.h
10498         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
10499
10500 2009-09-19  Eric Blake  <ebb9@byu.net>
10501
10502         canonicalize-lgpl: adjust clients to use correct header
10503         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
10504         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
10505         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
10506         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
10507         * lib/progreloc.c (includes): Likewise.
10508
10509 2009-09-19  Jim Meyering  <meyering@redhat.com>
10510
10511         test-posixtm.c: correct a comment
10512         * tests/test-posixtm.c: Correct first-line comment.
10513         Spotted by Eric Blake.
10514
10515 2009-09-16  Jim Meyering  <meyering@redhat.com>
10516
10517         posixtm-tests: make T const-correct; add a test case
10518         * tests/test-posixtm.c (T): Declare const.
10519         Add a test for -(2^31+1).
10520         Remove useless can-succeed-only-in-2002 test.
10521
10522         posixtm-tests: adjust the sole failing test
10523         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
10524         expected output matches what mktime now produces.  Cross-checked via
10525         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
10526
10527         posixtm: move #ifdef'd tests into a new module
10528         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
10529         * tests/test-posixtm.c: ... this new file.
10530         * modules/posixtm-tests: New module.
10531
10532 2009-09-19  Eric Blake  <ebb9@byu.net>
10533
10534         openat: simplify use of at-func.c
10535         * lib/at-func.c (includes): Include prerequisites here, to
10536         simplify requirements on client files.
10537         * lib/openat-priv.h: Add double-inclusion guard.
10538         * lib/faccessat.c (includes): Simplify.
10539         * lib/fchmodat.c (includes): Likewise.
10540         * lib/fchownat.c (includes): Likewise.
10541         * lib/mkdirat.c (includes): Likewise.
10542         * lib/mkfifoat.c (includes): Likewise.
10543         * lib/symlinkat.c (includes): Likewise.
10544
10545         openat: allow return of fd 0
10546         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
10547         * modules/save-cwd (Depends-on): Replace fcntl-safer with
10548         unistd-safer.
10549         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
10550         <fcntl.h>; this module does not leak fds.
10551         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
10552         must be allowed to return 0, leaving openat_safer to add the
10553         safety.
10554         (openat_permissive): Avoid writing to just-opened fd 2 if
10555         restoring the current directory fails.
10556         * lib/openat-die.c (openat_restore_fail): Add comment.
10557         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
10558         (save_cwd): Guarantee safe fd, but without use of open_safer.
10559         * tests/test-openat.c: New test.
10560         * modules/openat-tests (Files, Makefile.am): Distribute and build
10561         new file.
10562
10563         relocatable-prog-wrapper: fix build
10564         * modules/relocatable-prog-wrapper (Files): Update name of
10565         canonicalize m4 file, broken on 2009-09-17.
10566         Reported by emad hajjar <aleppos@hotmail.com>.
10567
10568 2009-09-19  Bruno Haible  <bruno@clisp.org>
10569
10570         * lib/safe-alloc.h: Use the standard header with GPL copyright.
10571         * lib/safe-alloc.c: Likewise.
10572         Reported by Ian Beckwith <ianb@erislabs.net>.
10573
10574 2009-09-18  Bruno Haible  <bruno@clisp.org>
10575
10576         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
10577         Reported by <erobles@sensacd.com.mx>.
10578
10579 2009-09-17  Eric Blake  <ebb9@byu.net>
10580
10581         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
10582         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
10583         slashes when checking if last component is missing.
10584         * tests/test-canonicalize.c (main): Test this.
10585
10586         canonicalize, canonicalize-lgpl: honor // if distinct from /
10587         * modules/canonicalize (Files): Add double-slash-root.m4.
10588         * modules/canonicalize-lgpl (Files): Likewise.
10589         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
10590         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
10591         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
10592         fallback definition.
10593         (canonicalize_filename_mode): Use it to protect //.
10594         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
10595         (__realpath): Likewise.
10596         * tests/test-canonicalize.c (main): Test this.
10597         * tests/test-canonicalize-lgpl.c (main): Likewise.
10598         * modules/canonicalize-tests (Depends-on): Add same-inode.
10599         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
10600
10601         canonicalize-lgpl: fix glibc bug with trailing slash
10602         * m4/canonicalize-lgpl.m4: Move contents...
10603         * m4/canonicalize.m4: ...here.
10604         (gl_CANONICALIZE_LGPL): Factor realpath check...
10605         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
10606         glibc 2.3.5 bug, fixed 2005-04-27.
10607         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
10608         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
10609         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
10610         * modules/canonicalize-lgpl (Files): Manage file rename.
10611         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10612         * modules/stdlib (Makefile.am): Substitute witness.
10613         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
10614         is needed.
10615         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
10616         replacement is required.
10617         * lib/canonicalize.c (canonicalize_file_name): Likewise.
10618         * doc/glibc-functions/canonicalize_file_name.texi
10619         (canonicalize_file_name): Document this.
10620         * doc/posix-functions/realpath.texi (realpath): Likewise.
10621
10622         canonicalize-lgpl: reject non-directory with trailing slash
10623         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
10624         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
10625         catches failures in glibc 2.3.5.
10626         * tests/test-canonicalize.c (main): Likewise.
10627
10628         canonicalize-lgpl: use native realpath if it works
10629         * lib/canonicalize-lgpl.c (realpath): Guard with
10630         FUNC_REALPATH_WORKS.
10631         * lib/stdlib.in.h (realpath): Make declaration optional based on
10632         HAVE_REALPATH.
10633         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
10634         native realpath works.
10635         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
10636         * modules/stdlib (Makefile.am): Substitute witness.
10637
10638         canonicalize, canonicalize-lgpl: use <stdlib.h>
10639         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
10640         (Include): Mention <stdlib.h>.
10641         (configure.ac): Mention functions we provide.
10642         * modules/canonicalize (configure.ac): Likewise.
10643         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
10644         realpath if canonicalize_file_name is missing.
10645         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
10646         * modules/stdlib (Makefile.am): Substitute witnesses.
10647         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
10648         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
10649         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
10650         * NEWS: Document this.
10651         * doc/glibc-functions/canonicalize_file_name.texi
10652         (canonicalize_file_name): Likewise.
10653         * doc/posix-functions/realpath.texi (realpath): Likewise.
10654         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
10655
10656         test-canonicalize: consolidate into single C program
10657         * tests/test-canonicalize.sh: Delete; move setup into...
10658         * tests/test-canonicalize.c (main): ...the program, making it
10659         easier to run in debugger.  Add some tests.
10660         * modules/canonicalize-tests (Files): Remove unused file.
10661         (Depends-on): Add progname.
10662         (configure.ac, Makefile.am): Simplify.
10663
10664         test-canonicalize-lgpl: consolidate into single C program
10665         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
10666         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
10667         easier to run in debugger.  Add some tests.
10668         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
10669         (configure.ac, Makefile.am): Simplify.
10670
10671         canonicalize: avoid resolvepath
10672         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
10673         unnecessary checks.
10674         * lib/canonicalize.c (includes): Simplify.
10675         (canonicalize_file_name): Drop resolvepath implementation.
10676         * modules/canonicalize (Depends-on): Drop filenamecat.
10677
10678         canonicalize: don't lose errno
10679         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
10680         over calls to free.
10681
10682         canonicalize: simplify errno handling
10683         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
10684         assignment.
10685
10686         canonicalize, canonicalize-lgpl: update module dependencies
10687         * modules/canonicalize (Depends-on): Add extensions, lstat,
10688         pathmax, stdlib.
10689         (Files): Drop pathmax.h.
10690         (configure.ac): Adjust macro name.
10691         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
10692         lstat, stdlib, sys_stat.
10693         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
10694         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
10695         extensions.
10696         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
10697         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
10698         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
10699         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
10700         declaration, if available.
10701         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
10702         we can rely on the readlink module.
10703         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
10704         (includes): Use <unistd.h> unconditionally.
10705
10706 2009-09-17  Eric Blake  <ebb9@byu.net>
10707
10708         maint: make Include sections of modules consistent
10709         * modules/alloca: Use only header name; no need to list #include.
10710         * modules/alloca-opt: Likewise.
10711         * modules/arpa_inet: Likewise.
10712         * modules/canon-host: Likewise.
10713         * modules/configmake: Likewise.
10714         * modules/dirent: Likewise.
10715         * modules/eealloc: Likewise.
10716         * modules/environ: Likewise.
10717         * modules/fchdir: Likewise.
10718         * modules/fcntl: Likewise.
10719         * modules/fcntl-h: Likewise.
10720         * modules/gethrxtime: Likewise.
10721         * modules/gettime: Likewise.
10722         * modules/ignore-value: Likewise.
10723         * modules/inet_ntop: Likewise.
10724         * modules/inet_pton: Likewise.
10725         * modules/inttypes: Likewise.
10726         * modules/isnand-nolibm: Likewise.
10727         * modules/isnanf-nolibm: Likewise.
10728         * modules/mbchar: Likewise.
10729         * modules/mbfile: Likewise.
10730         * modules/mbiter: Likewise.
10731         * modules/mbuiter: Likewise.
10732         * modules/netdb: Likewise.
10733         * modules/netinet_in: Likewise.
10734         * modules/nproc: Likewise.
10735         * modules/pagealign_alloc: Likewise.
10736         * modules/poll: Likewise.
10737         * modules/printf-frexp: Likewise.
10738         * modules/pthread: Likewise.
10739         * modules/putenv: Likewise.
10740         * modules/random_r: Likewise.
10741         * modules/relocatable-prog: Likewise.
10742         * modules/search: Likewise.
10743         * modules/select: Likewise.
10744         * modules/selinux-h: Likewise.
10745         * modules/settime: Likewise.
10746         * modules/signal: Likewise.
10747         * modules/size_max: Likewise.
10748         * modules/socklen: Likewise.
10749         * modules/ssize_t: Likewise.
10750         * modules/stdarg: Likewise.
10751         * modules/stdbool: Likewise.
10752         * modules/stddef: Likewise.
10753         * modules/stdint: Likewise.
10754         * modules/stdio: Likewise.
10755         * modules/stdlib: Likewise.
10756         * modules/string: Likewise.
10757         * modules/strings: Likewise.
10758         * modules/sys_file: Likewise.
10759         * modules/sys_ioctl: Likewise.
10760         * modules/sys_select: Likewise.
10761         * modules/sys_socket: Likewise.
10762         * modules/sys_stat: Likewise.
10763         * modules/sys_time: Likewise.
10764         * modules/sys_times: Likewise.
10765         * modules/sys_utsname: Likewise.
10766         * modules/sys_wait: Likewise.
10767         * modules/sysexits: Likewise.
10768         * modules/time: Likewise.
10769         * modules/times: Likewise.
10770         * modules/tmpfile: Likewise.
10771         * modules/trim: Likewise.
10772         * modules/unistd: Likewise.
10773         * modules/wchar: Likewise.
10774         * modules/wctype: Likewise.
10775
10776 2009-09-17  Bruno Haible  <bruno@clisp.org>
10777
10778         Make getdate.y compile on QNX and NetBSD 5 / i386.
10779         * m4/getdate.m4 (gl_GETDATE): Conditionally define
10780         TIME_T_FITS_IN_LONG_INT.
10781         * lib/getdate.y (long_time_t): New type.
10782         (relative_time): Change type of 'seconds' field to long_time_t.
10783         (get_date): Update types of local variables. Check against overflow
10784         during conversion from long_time_t to time_t.
10785         Reported by Matt Kraai <kraai@ftbfs.org>
10786         and Hasso Tepper <hasso@netbsd.org>.
10787
10788 2009-09-17  Bruno Haible  <bruno@clisp.org>
10789
10790         * modules/COPYING: Update copyright years.
10791         * modules/README: Likeiwse.
10792         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
10793         Reported by Ian Beckwith <ianb@erislabs.net>.
10794
10795 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10796
10797         * users.txt: Update references for gnuit package.
10798
10799 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
10800
10801         * m4/getdelim.m4: Fix typo in copyright line.
10802
10803 2009-09-17  Bruno Haible  <bruno@clisp.org>
10804
10805         * lib/atoll.c: Use the standard header with GPL copyright.
10806         * lib/argz.in.h: Likewise.
10807         * lib/glob.c: Likewise.
10808         * lib/glob-libc.h: Likewise.
10809         * lib/random_r.c: Likewise.
10810         * lib/siglist.h: Likewise.
10811         * lib/strsignal.c: Likewise.
10812         Reported by Ian Beckwith <ianb@erislabs.net>.
10813
10814 2009-09-17  Eric Blake  <ebb9@byu.net>
10815
10816         rmdir: ensure correct dependency order
10817         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
10818
10819 2009-09-17  Bruno Haible  <bruno@clisp.org>
10820
10821         Disable assertion that fails on NetBSD 5 / i386.
10822         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
10823         Reported by Sam Steingold <sds@gnu.org>
10824         and Hasso Tepper <hasso@netbsd.org>.
10825
10826 2009-09-16  Eric Blake  <ebb9@byu.net>
10827
10828         unlinkdir: port to mingw
10829         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
10830         on which no one can unlink a directory.
10831
10832         stdlib: sort witness names
10833         * modules/stdlib (Makefile.am): Sort replacements.
10834         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
10835         * lib/stdlib.in.h: Likewise.
10836
10837         parse-duration-tests: avoid link failure
10838         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
10839         LIBINTL.
10840         Reported by Tom G. Christensen.
10841
10842         openat-tests: ensure unlinkat behaves like rmdir
10843         * tests/test-rmdir.c (main): Factor guts...
10844         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
10845         * modules/rmdir-tests (Files): Ship new file.
10846         * modules/openat-tests: New test.
10847         * tests/test-unlinkat.c: Likewise.
10848
10849         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
10850         * modules/rmdir-errno (Status, Notice): Now obsolete.
10851
10852         rmdir: work around cygwin 1.5.x and mingw bugs
10853         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
10854         * lib/rmdir.c (rmdir): Work around it.
10855         * modules/rmdir (Status, Notice): No longer obsolete.
10856         (Files): Add dos.m4.
10857         (Depends-on): Add unistd.
10858         (configure.ac): Set witnesses.
10859         (License): Relax to LGPLv2+.
10860         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
10861         * modules/unistd (Makefile.am): Substitute witnesses.
10862         * lib/unistd.in.h (rmdir): Declare replacement.
10863         * doc/posix-functions/rmdir.texi (rmdir): Document this.
10864         * modules/rmdir-tests: New tests.
10865         * tests/test-rmdir.c: Likewise.
10866
10867 2009-09-15  Eric Blake  <ebb9@byu.net>
10868
10869         fchdir: improve use of replacement functions
10870         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
10871         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
10872         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
10873         REPLACE_CLOSEDIR.
10874         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
10875         * modules/sys_stat (Makefile.am): Substitute correct witness.
10876         * modules/dirent (Makefile.am): Likewise.
10877         * modules/unistd (Makefile.am): Likewise.
10878         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
10879         * lib/unistd.in.h (dup): Likewise.
10880         * lib/sys_stat.in.h (fstat): Likewise.
10881
10882         maint: ignore gnulib-tool temp files
10883         * .gitignore: Ignore files created during gnulib-tool --test.
10884
10885 2009-09-13  Jim Meyering  <meyering@redhat.com>
10886
10887         posixtm: don't reject a time that specify "60" as the number of seconds
10888         * lib/posixtm.c (posixtime): The code to reject invalid dates
10889         would also reject a time specified with the .60 suffix.
10890         But POSIX allows that, in order to accommodate leap seconds.
10891         So don't reject it.
10892         (main): Adjust tests accordingly.
10893         * modules/posixtm (Depends-on): Add stpcpy.
10894
10895 2009-09-11  Jim Meyering  <meyering@redhat.com>
10896
10897         announce-gen: include [$release_type] in emitted Subject:
10898         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
10899         e.g., [stable] in the emitted Subject: line.
10900
10901 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10902
10903         Remove obsolete macros from several modules.
10904         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
10905         obsolete Autoconf macros with their modern counterparts.
10906         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
10907         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
10908         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
10909         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
10910         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
10911         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
10912         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
10913         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10914         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
10915         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
10916         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
10917         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
10918         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
10919         * m4/sockets.m4 (gl_SOCKETS): Likewise.
10920         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
10921         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
10922         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
10923         * m4/time_r.m4 (gl_TIME_R): Likewise.
10924         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
10925         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
10926         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
10927
10928         Fix copyright header in build-aux scripts.
10929         * build-aux/git-version-gen: Fix copyright header to match GPLv3
10930         recommendation.
10931         * build-aux/ncftpput-ftp: Likewise.
10932         * build-aux/update-copyright: Likewise.
10933
10934 2009-09-09  Eric Blake  <ebb9@byu.net>
10935
10936         test-link: allow Linux choice of errno
10937         * tests/test-link.c (main): Relax test for alternate error.
10938
10939         strndup: fix improper m4 caching
10940         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
10941         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
10942         (gl_PREREQ_STRNDUP): Delete.
10943         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
10944         * modules/string (Makefile.am): Substitute it.
10945         * lib/string.in.h (strndup): Modernize prototype.
10946
10947         getcwd: port to mingw
10948         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
10949         different from the POSIX assumptions made throughout the getcwd
10950         module; fortunately, the mingw getcwd does not need replacement.
10951         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
10952         * modules/getcwd-tests: New test.
10953         * tests/test-getcwd.c: Likewise.
10954
10955         link: fix platform bugs
10956         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
10957         * lib/link.c (link): Work around them.  Fix related mingw bug.
10958         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
10959         * modules/unistd (Makefile.am): Substitute it.
10960         * lib/unistd.in.h (link): Declare replacement.
10961         * doc/posix-functions/link.texi (link): Document this.
10962         * modules/link (Depends-on): Add strdup-posix, sys_stat.
10963
10964         test-link: consolidate into single C program, test more cases
10965         * tests/test-link.sh: Delete.
10966         * tests/test-link.c: Test more error conditions.  Exposes bugs on
10967         at least Cygwin and Solaris.
10968         * modules/link-tests (Files): Remove unused file.
10969         (Depends-on): Add errno, sys_stat.
10970         (Makefile.am): Simplify.
10971
10972 2009-09-08  Bruno Haible  <bruno@clisp.org>
10973
10974         Work around towlower, towupper bug on mingw.
10975         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
10976         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
10977         * doc/posix-functions/towlower.texi: Mention the mingw bug.
10978         * doc/posix-functions/towupper.texi: Likewise.
10979         Reported by Eric Blake.
10980
10981 2009-09-08  Jim Meyering  <meyering@redhat.com>
10982
10983         build: don't try to run autoheader if we don't use it
10984         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
10985         is not used in configure.ac.
10986
10987 2009-09-08  Eric Blake  <ebb9@byu.net>
10988
10989         euidaccess: fix compilation error
10990         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
10991
10992         rawmemchr: relax license
10993         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
10994         okay.
10995         Reported by Jim Meyering.
10996
10997         mkfifoat: new module
10998         * modules/mkfifoat: New file.
10999         * lib/mkfifoat.c: Likewise.
11000         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
11001         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
11002         * modules/sys_stat (Makefile.am): Use them.
11003         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
11004         * MODULES.html.sh (File system functions): Mention module.
11005         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
11006         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
11007         * modules/mkfifoat-tests: New test.
11008         * tests/test-mkfifoat.c: Likewise.
11009
11010         strchrnul: relax license
11011         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
11012         okay.
11013         Reported by Jim Meyering.
11014
11015 2009-09-08  Eric Blake  <ebb9@byu.net>
11016
11017         fstatat: fix compilation on Solaris
11018         * lib/fstatat.c (includes): Add fcntl.h.
11019         Reported by Pádraig Brady.
11020
11021 2009-09-07  Eric Blake  <ebb9@byu.net>
11022
11023         rename: modernize replacement
11024         * modules/rename (Depends-on): Add stdio.
11025         (configure.ac): Declare witness.
11026         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
11027         stdio take care of replacement.
11028         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
11029         * modules/stdio (Makefile.am): Substitute them.
11030         * lib/stdio.in.h (rename): Declare replacement.
11031         * lib/rename.c (includes): Allow cross-compilation to non-windows
11032         machines.
11033         * doc/posix-functions/rename.texi (rename): Improve
11034         documentation.
11035
11036         stdio: sort witness names
11037         * modules/stdio (Makefile.am): Sort replacements.
11038         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
11039         * lib/stdio.in.h: Likewise.
11040
11041         getcwd: minor cleanups
11042         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
11043         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
11044
11045         openat: provide more convenience names
11046         * modules/faccessat (configure.ac): Add C witness.
11047         * lib/unistd.in.h (readlinkat): Fix typo.
11048         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
11049         convenience wrappers.
11050         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
11051         wrappers in syntax checks.
11052
11053 2009-09-06  Eric Blake  <ebb9@byu.net>
11054
11055         doc: fix comments in recent patches
11056         * lib/faccessat.c: Mention correct function.
11057         * lib/fchmodat.c: Likewise.
11058         * lib/fchownat.c: Likewise.
11059         * lib/symlinkat.c: Likewise.
11060         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
11061         constants.
11062
11063         faccessat, symlinkat: continue cleanup of previous patch
11064         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
11065         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
11066         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
11067         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
11068         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
11069         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
11070         set.
11071
11072 2009-09-06  Bruno Haible  <bruno@clisp.org>
11073
11074         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
11075         (fstatat): Declare if GNULIB_FSTATAT is set.
11076         (mkdirat): Declare if GNULIB_MKDIRAT is set.
11077         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
11078         (unlinkat): Declare if GNULIB_UNLINKAT is set.
11079         * modules/fcntl-h (Files): Remove m4/openat.m4.
11080         * modules/sys_stat (Files): Remove m4/openat.m4.
11081         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
11082         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
11083         * modules/unistd (Files): Remove m4/openat.m4.
11084         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
11085         GNULIB_OPENAT.
11086         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
11087         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
11088         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
11089         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
11090         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
11091         gl_OPENAT_DEFAULTS.
11092         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
11093         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
11094         Don't require gl_OPENAT_DEFAULTS.
11095         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
11096         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
11097         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
11098         (gl_OPENAT_DEFAULTS): Remove macro.
11099
11100 2009-09-06  Bruno Haible  <bruno@clisp.org>
11101
11102         * modules/openat (configure.ac): Remove unneeded witness.
11103
11104 2009-09-06  Bruno Haible  <bruno@clisp.org>
11105
11106         Set errno to ENOSYS when a function is entirely unsupported.
11107         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
11108         EOPNOTSUPP.
11109         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
11110         * modules/chown (Depends-on): Remove errno.
11111
11112 2009-09-06  Bruno Haible  <bruno@clisp.org>
11113
11114         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
11115
11116 2009-09-06  Bruno Haible  <bruno@clisp.org>
11117
11118         * lib/sys_stat.in.h: Fix preprocessor command indentation.
11119
11120 2009-09-06  Ben Pfaff  <blp@gnu.org>
11121             Bruno Haible  <bruno@clisp.org>
11122
11123         Work around a glibc bug in strtok_r.
11124         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
11125         Undefine if UNDEFINE_STRTOK_R is set.
11126         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
11127         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
11128         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
11129         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
11130         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
11131         UNDEFINE_STRTOK_R.
11132         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
11133
11134 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
11135
11136         exclude: minor fix
11137         * lib/exclude.c: Include wctype.h
11138
11139 2009-09-06  Akim Demaille  <demaille@gostai.com>
11140
11141         bootstrap: improve error message
11142         * build-aux/bootstrap (find_tool): Upon failure, report the list
11143         of candidates.
11144         Honor the initial value of the envvar.
11145
11146 2009-09-05  Eric Blake  <ebb9@byu.net>
11147
11148         symlinkat: new module
11149         * modules/symlinkat: New file.
11150         * lib/symlinkat.c: Likewise.
11151         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
11152         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
11153         * modules/unistd (Makefile.am): Use them.
11154         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
11155         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
11156         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
11157         * MODULES.html.sh (File system functions): Mention module.
11158         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
11159         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
11160         * modules/symlinkat-tests: New test.
11161         * tests/test-symlinkat.c: Likewise.
11162
11163         test-openat-safer: add more checks
11164         * tests/test-openat-safer.c (main): Check more code paths.
11165
11166 2009-09-05  Jim Meyering  <meyering@redhat.com>
11167
11168         syntax-check: detect unnecessary inclusion of openat.h
11169         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
11170
11171 2009-09-05  Bruno Haible  <bruno@clisp.org>
11172
11173         Support towlower, towupper.
11174         * doc/posix-functions/towlower.texi: Mention module wctype.
11175         * doc/posix-functions/towupper.texi: Likewise.
11176         * lib/wctype.in.h (towlower, towupper): New functions.
11177         * tests/test-wctype.c: Include stdio.h, stdlib.h.
11178         (ASSERT): New macro.
11179         (e): New variable.
11180         (main): Test also towlower, towupper. Test WEOF argument.
11181         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
11182
11183 2009-09-05  Bruno Haible  <bruno@clisp.org>
11184
11185         Fix conversion behaviour when the input is invalid.
11186         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
11187         mark occurring in first pass of indirect conversion.
11188         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
11189         input.
11190         Found by clang's static analyzer.
11191
11192 2009-09-05  Bruno Haible  <bruno@clisp.org>
11193
11194         * tests/test-striconveh.c (main): Test indirect conversion on platforms
11195         where direct conversion is possible.
11196
11197 2009-09-04  Eric Blake  <ebb9@byu.net>
11198
11199         openat: fail with ENOENT on empty name
11200         * lib/openat-proc.c (openat_proc_name): Special-case the empty
11201         buffer.
11202
11203         link-follow: fix logic bug in prior patch
11204         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
11205         reversed sense of yes and no in prior patch.  Avoid confusing
11206         compilation failure with desired semantics.
11207
11208         link-follow: accomodate mingw and cross-compilation
11209         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
11210         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
11211         cross-compilation results to -1, to make linkat easier to
11212         implement when cross-compiling.  Trivially support mingw.
11213         * modules/link-follow (configure.ac): Call new name.
11214         * NEWS: Mention this.
11215
11216 2009-09-03  Eric Blake  <ebb9@byu.net>
11217
11218         faccessat: compile replacement
11219         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
11220         needed.
11221
11222         fts: fix compilation error
11223         * lib/fts.c (includes): Re-add "openat.h", for
11224         openat_needs_fchdir.
11225
11226         faccessat: new module
11227         * modules/faccessat: New file.
11228         * lib/faccessat.c: Likewise.
11229         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
11230         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
11231         * modules/unistd (Makefile.am): Use it.
11232         * lib/unistd.in.h (faccessat): Declare it.
11233         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
11234         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
11235         * MODULES.html.sh (File system functions): Mention it.
11236         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
11237         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
11238
11239         euidaccess: prefer POSIX over non-standard implementation
11240         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
11241         * lib/euidaccess.c (euidaccess): Use it if available.
11242
11243         openat: make template easier to use
11244         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
11245         AT_FUNC_F2 to be undefined.
11246         (VALIDATE_FLAG): New macro; use it to reject bad flags.
11247         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
11248         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
11249         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
11250         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
11251         Likewise.
11252         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
11253         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
11254         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
11255         Likewise.
11256
11257         openat: declare in POSIX headers
11258         * NEWS: Mention this.
11259         * modules/openat (configure.ac): Declare witnesses.
11260         (Depends-on): Add fcntl-h, sys_stat, unistd.
11261         (Include): Mention correct headers.
11262         * modules/fcntl-h (Depends-on): Add link-warning.
11263         (Files): Add openat.m4.
11264         (Makefile.am): Substitute witnesses.
11265         * modules/sys_stat (Files, Makefile.am): Likewise.
11266         * modules/unistd (Files, Makefile.am): Likewise.
11267         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
11268         (gl_OPENAT_DEFAULTS): New macro.
11269         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
11270         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
11271         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
11272         (SYS_STAT_H): Remove unused variable.
11273         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
11274         * lib/fcntl--.h (includes): Remove unneeded header.
11275         * lib/openat-safer.c (includes): Likewise.
11276         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
11277         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
11278         appropriate headers.
11279         (__OPENAT_PREFIX): Delete.
11280         * lib/fcntl.in.h (openat): Provide declaration.
11281         (AT_FDCWD): Fix Solaris bug.
11282         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
11283         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
11284         * lib/fchmodat.c (includes):  Adjust to find declaration.
11285         * lib/fchownat.c (includes): Likewise.
11286         * lib/mkdirat.c (includes): Likewise.
11287         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
11288         still visible.
11289
11290 2009-09-02  Eric Blake  <ebb9@byu.net>
11291
11292         errno: use consistently
11293         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
11294         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
11295         * lib/canonicalize.c (ELOOP): Likewise.
11296         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
11297         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
11298         * lib/lchown.c (EOPNOTSUPP): Likewise.
11299         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
11300         * lib/savewd.c (ESTALE): Likewise.
11301         * lib/settime.c (ENOSYS): Likewise.
11302         * lib/utimens.c (ENOSYS): Likewise.
11303         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
11304         * lib/chdir-safer.c (ELOOP): Likewise.
11305         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
11306         * modules/c-stack (Depends-on): Add errno.
11307         * modules/canonicalize (Depends-on): Likewise.
11308         * modules/chdir-safer (Depends-on): Likewise.
11309         * modules/fdopendir (Depends-on): Likewise.
11310         * modules/inet_ntop (Depends-on): Likewise.
11311         * modules/inet_pton (Depends-on): Likewise.
11312         * modules/lchown (Depends-on): Likewise.
11313         * modules/openat (Depends-on): Likewise.
11314         * modules/savewd (Depends-on): Likewise.
11315         * modules/settime (Depends-on): Likewise.
11316         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
11317
11318         fts: avoid leaking fds
11319         * modules/fts (Depends-on): Add cloexec.
11320         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
11321         flag.
11322
11323         fts: make directory fds more robust
11324         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
11325         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
11326
11327         backupfile, chdir-long, fts, savedir: make safer
11328         * lib/backupfile.c (includes): Use "dirent--.h", since
11329         numbered_backup can write to stderr during readdir.
11330         * lib/savedir.c (includes): Likewise.
11331         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
11332         emulation can write to stderr on failure.
11333         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
11334         * lib/getcwd.c: Document why opendir_safer is unused.
11335         * lib/glob.c: Likewise.
11336         * lib/scandir.c: Likewise.
11337         * lib/openat-proc.c: Likewise, for open_safer.
11338         * modules/backupfile (Depends-on): Add dirent-safer.
11339         * modules/savedir (Depends-on): Likewise.
11340         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
11341         * modules/chdir-long (Depends-on): Add openat-safer.
11342
11343         openat-safer: new module
11344         * modules/openat-safer: New file.
11345         * lib/openat-safer.c: Likewise.
11346         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
11347         * lib/fcntl-safer.h (openat_safer): Declare.
11348         * lib/fcntl--.h (openat): Override.
11349         * MODULES.html.sh (File descriptor based I/O): Mention it.
11350         * lib/openat.h: Add double-inclusion guards.
11351         * lib/openat.c (includes): Only include "fcntl-safer.h", not
11352         "fcntl--.h", so we can implement openat.
11353         * modules/openat-safer-tests: New test.
11354         * tests/test-openat-safer.c: New file.
11355
11356         dirent-safer: new module
11357         * modules/dirent-safer: New file.
11358         * lib/dirent--.h: Likewise.
11359         * lib/dirent-safer.h: Likewise.
11360         * lib/opendir-safer.c: Likewise.
11361         * m4/dirent-safer.m4: Likewise.
11362         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
11363         * modules/dirent-safer-tests: New test.
11364         * tests/test-dirent-safer.c: New file.
11365         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
11366
11367         fdopendir: optimize on mingw
11368         * lib/unistd.in.h (_gl_directory_name): New prototype.
11369         * lib/fchdir.c (_gl_directory_name): Implement it.
11370         (fchdir): Use it to simplify implementation.
11371         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
11372         fchdir, when available, to avoid calling [f]chdir().
11373
11374         fdopendir: split into its own module
11375         * lib/openat.c (fdopendir): Move...
11376         * lib/fdopendir.c: ...into new file.
11377         * modules/fdopendir: New module.
11378         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
11379         * modules/openat (Depends-on): Add fdopendir.
11380         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
11381         fdopendir here.
11382         * modules/savedir (Depends-on): Only need fdopendir, not full
11383         openat.
11384         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
11385         * lib/openat.h (fdopendir): Drop prototype.
11386         * lib/dirent.in.h (fdopendir): Provide prototype.
11387         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
11388         * modules/dirent (Makefile.am): Substitute them.
11389         * MODULES.html.sh (File system functions): Mention it.
11390         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
11391         * modules/fdopendir-tests: New file.
11392         * tests/test-fdopendir.c: Likewise.
11393
11394         fchdir: use more consistent macro convention
11395         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
11396         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
11397         REPLACE_FCHDIR, rather than relying on config.h macros.
11398         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
11399         inside a single make-time REPLACE_FCHDIR block, rather than using
11400         the config.h FCHDIR_REPLACEMENT.
11401         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
11402         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
11403         Manage fstat replacement.
11404         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
11405         REPLACE_FCHDIR.
11406         * modules/sys_stat (Files): Add m4/unistd_h.m4.
11407         (Makefile.am): Substitute REPLACE_FCHDIR.
11408         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
11409         FCHDIR_REPLACEMENT.
11410         * lib/dup-safer.c (dup_safer): Likewise.
11411         * lib/dup2.c (rpl_dup2): Likewise.
11412         * lib/dup3.c (rpl_dup3): Likewise.
11413         * lib/open.c (rpl_open): Likewise.
11414
11415         fchdir: simplify error handling, and support dup3
11416         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
11417         stdbool, malloc-posix, realloc-posix.
11418         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
11419         (ensure_dirs_slot): Return false on allocation failure.
11420         (rpl_dup2): Delete.
11421         (_gl_register_dup): New function.
11422         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
11423         (_gl_register_fd): Close fd on allocation failure.
11424         * lib/fcntl.in.h (_gl_register_fd): Update signature.
11425         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
11426         prototype.
11427         (rpl_dup2_fchdir): Delete prototype.
11428         * lib/open.c (open): Update caller.
11429         * lib/dup2.c (dup2): Track fchdir metadata.
11430         * lib/dup3.c (dup3): Likewise.
11431         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
11432         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
11433
11434 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11435
11436         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
11437         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
11438         don't pass arguments to AC_OUTPUT.
11439
11440 2009-09-02  Bruno Haible  <bruno@clisp.org>
11441
11442         * modules/mkdtemp (License): Relicense under LGPLv2+.
11443         Reported by Paolo Bonzini.
11444
11445 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11446
11447         Replace uses of obsolete autoconf macros in Jim's modules.
11448         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
11449         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
11450         can evoke a warning from autoconf when run with -Wobsolete
11451         enabled.  They were declared obsolete for good reasons (see
11452         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
11453         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
11454         should not continue using the deprecated macros.
11455         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
11456         obsolete Autoconf macros with modern counterparts.
11457         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
11458         * m4/dos.m4 (gl_AC_DOS): Likewise.
11459         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
11460         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
11461         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
11462         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
11463         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
11464         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
11465         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
11466         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
11467         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
11468         Likewise.
11469         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
11470         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
11471         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
11472         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
11473         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
11474         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
11475
11476 2009-09-01  Eric Blake  <ebb9@byu.net>
11477
11478         fchdir: fix off-by-one bug in previous patch
11479         * lib/fchdir.c (rpl_fstat): Use correct bounds.
11480         (_gl_unregister_fd): Delete useless if.
11481
11482 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
11483
11484         maint.mk: sort the list of syntax-check rules
11485         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
11486         easier to get a sense of progress when the rules are run sequentially
11487         and take a long time.
11488
11489 2009-09-01  Simon Josefsson  <simon@josefsson.org>
11490
11491         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
11492         * modules/netinet_in: Likewise.
11493         * modules/sys_file: Likewise.
11494         * modules/sys_ioctl: Likewise.
11495         * modules/sys_select: Likewise.
11496         * modules/sys_socket: Likewise.
11497         * modules/sys_stat: Likewise.
11498         * modules/sys_time: Likewise.
11499         * modules/sys_times: Likewise.
11500         * modules/sys_utsname: Likewise.
11501         * modules/sys_wait: Likewise.
11502
11503 2009-09-01  Jim Meyering  <meyering@redhat.com>
11504
11505         fts: help ensure that return values are not ignored
11506         * lib/fts_.h (__GNUC_PREREQ): Define.
11507         (__attribute_warn_unused_result__): Define.
11508         (fts_children, fts_close, fts_open, fts_read): Declare with
11509         __attribute_warn_unused_result__.
11510
11511         fts: fts_close now fails also when closing a dir file descriptor fails
11512         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
11513         and propagate to caller, along with errno.
11514
11515         announce-gen: correct formatting in --help output
11516         * build-aux/announce-gen (usage): Move the one-line description in
11517         --help output "up", to where it belongs, just after Usage:.
11518
11519 2009-08-31  Eric Blake  <ebb9@byu.net>
11520
11521         fchdir: port to mingw
11522         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
11523         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
11524         opened, then use a substitute.
11525         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
11526         replacement.
11527         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
11528         (_gl_register_fd): No need to check stat if open already filters
11529         all directories.
11530         (fchdir): Fix error condition to match POSIX.
11531         * modules/fchdir (Depends-on): Add sys_stat.
11532         * doc/posix-functions/open.texi (open): Document the limitation.
11533         * modules/fchdir-tests: New file.
11534         * tests/test-fchdir.c: Likewise.
11535
11536         canonicalize: allow cross-testing from cygwin to mingw
11537         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
11538         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
11539         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
11540         Likewise.
11541         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
11542         target does not support symlinks.
11543         * tests/test-canonicalize-lgpl.sh: Likewise.
11544
11545         chown: avoid compilation warning on mingw
11546         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
11547         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
11548         mingw.
11549         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
11550         * modules/chown (Depends-on): Add errno.
11551
11552 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
11553
11554         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
11555         command.
11556
11557 2009-08-31  Jim Meyering  <meyering@redhat.com>
11558
11559         canonicalize: remove useless initialization
11560         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
11561         initialization of local, "end".
11562
11563 2009-08-30  Bruno Haible  <bruno@clisp.org>
11564
11565         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
11566         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
11567         ENOSYS.
11568
11569 2009-08-30  Bruno Haible  <bruno@clisp.org>
11570
11571         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
11572         /usr/xpg4/bin/tr when it exists.
11573         * tests/test-pipe-filter-gi1.sh: Likewise.
11574
11575 2009-08-30  Bruno Haible  <bruno@clisp.org>
11576
11577         Work around deficient /usr/bin/id program on Solaris.
11578         * tests/test-file-has-acl.sh (ID): New variable.
11579         * tests/test-set-mode-acl.sh (ID): Likewise.
11580         * tests/test-copy-acl.sh (ID): Likewise.
11581         * tests/test-copy-file.sh (ID): Likewise.
11582
11583 2009-08-30  Bruno Haible  <bruno@clisp.org>
11584
11585         New module 'xstriconveh'.
11586         * lib/xstriconveh.h: New file.
11587         * lib/xstriconveh.c: New file.
11588         * modules/xstriconveh: New file.
11589
11590 2009-08-30  Bruno Haible  <bruno@clisp.org>
11591
11592         Make it easier to use mem_cd_iconveh.
11593         * lib/striconveh.h (iconveh_t): New type.
11594         (iconveh_open, iconveh_close): New declarations.
11595         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11596         with a single 'const iconveh_t *' argument.
11597         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
11598         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
11599         with a single 'const iconveh_t *' argument.
11600         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
11601         * tests/test-striconveh.c (main): Update.
11602         * NEWS: Mention the change.
11603
11604 2009-08-30  Bruno Haible  <bruno@clisp.org>
11605
11606         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
11607         problem.
11608
11609 2009-08-30  Bruno Haible  <bruno@clisp.org>
11610
11611         Work around iconv_open problem on Solaris.
11612         * lib/iconv_open-solaris.gperf: New file.
11613         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
11614         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
11615         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
11616         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
11617         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
11618         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
11619
11620 2009-08-29  Jim Meyering  <meyering@redhat.com>
11621
11622         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
11623         * top/maint.mk (cvs-check): Remove target; it was just an alias
11624         to the better-named vc-diff-check.
11625         (maintainer-distcheck): Remove rule.  It was used only from
11626         the (alpha/beta/major) target, and all of its commands but one
11627         were coreutils-specific.
11628         (vc-dist): Remove rule.
11629         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
11630         Run vc-diff-check, not vc-dist.
11631         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
11632
11633 2009-08-27  Bruno Haible  <bruno@clisp.org>
11634
11635         * tests/test-bitrotate.c (main): Remove test that uses a shift count
11636         of 0.
11637
11638 2009-08-27  Bruno Haible  <bruno@clisp.org>
11639
11640         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
11641         compilers.
11642         * doc/func.texi: Document the SunPRO C bug.
11643
11644 2009-08-27  Bruno Haible  <bruno@clisp.org>
11645
11646         Fix link error on Solaris.
11647         * tests/test-parse-duration.c (xstrdup): Remove function.
11648
11649 2009-08-26  Pádraig Brady  <P@draigbrady.com>
11650
11651         ignore-value: handle pointer types, too
11652         * lib/ignore-value.h (__attribute__): Remove definition.
11653         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
11654         of a more concise and more-often effective "(void) i" statement.
11655         (ignore_ptr): New function to suppress warnings from functions that
11656         return pointers, and to make it explicit that one function doesn't
11657         handle all cases.
11658
11659 2009-08-25  Bruno Haible  <bruno@clisp.org>
11660
11661         dup2: work around a Linux bug.
11662         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
11663         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
11664         * doc/posix-functions/dup2.texi: Mention the Linux bug.
11665         Reported by Simon Josefsson.
11666
11667 2009-08-25  Jim Meyering  <meyering@redhat.com>
11668
11669         libguestfs uses gnulib
11670         * users.txt: Add libguestfs.
11671
11672 2009-08-24  Eric Blake  <ebb9@byu.net>
11673
11674         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
11675         * lib/pipe2.c (includes): Add binary-io.h.
11676         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
11677
11678 2009-08-24  Bruno Haible  <bruno@clisp.org>
11679
11680         Tolerate declared but missing accept4 syscall.
11681         * lib/accept4.c (accept4): Invoke original accept4 function first, if
11682         available.
11683         * lib/sys_socket.in.h (accept4): If the function is already present,
11684         override it.
11685         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
11686         * modules/accept4 (Makefile.am): Compile accept4.c always.
11687         Reported by Paolo Bonzini and Eric Blake.
11688
11689 2009-08-23  Bruno Haible  <bruno@clisp.org>
11690
11691         New module 'accept4'.
11692         * lib/sys_socket.in.h (accept4): New declaration.
11693         * lib/accept4.c: New file.
11694         * m4/accept4.m4: New file.
11695         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
11696         GNULIB_ACCEPT4, HAVE_ACCEPT4.
11697         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
11698         HAVE_ACCEPT4.
11699         * modules/accept4: New file.
11700         * doc/glibc-functions/accept4.texi: Mention the new module.
11701
11702 2009-08-24  Jim Meyering  <meyering@redhat.com>
11703
11704         progname: also set global program_invocation_name, when possible
11705         Before this change, a libtool-enabled program that calls glibc's
11706         error function would report the program name as
11707         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
11708         * modules/progname (configure.ac): Check for a declaration of
11709         program_invocation_name.
11710         * lib/progname.c:  Include <errno.h>.
11711         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
11712         Set program_invocation_name.
11713
11714 2009-08-23  Bruno Haible  <bruno@clisp.org>
11715
11716         * lib/dup3.c: Include <string.h>.
11717
11718 2009-08-23  Bruno Haible  <bruno@clisp.org>
11719
11720         * lib/dup3.c (dup3): Test only once whether the system actually exists.
11721         * lib/pipe2.c (pipe2): Likewise.
11722         Suggested by Eric Blake.
11723
11724 2009-08-23  Bruno Haible  <bruno@clisp.org>
11725
11726         Tolerate declared but missing dup3 syscall.
11727         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
11728         * lib/unistd.in.h (dup3): If the function is already present,
11729         override it.
11730         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
11731         * modules/dup3 (Makefile.am): Compile dup3.c always.
11732         Reported by Paolo Bonzini.
11733
11734 2009-08-23  Bruno Haible  <bruno@clisp.org>
11735
11736         Tolerate declared but missing pipe2 syscall.
11737         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
11738         available.
11739         * lib/unistd.in.h (pipe2): If the function is already present,
11740         override it.
11741         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
11742         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
11743         Reported by Paolo Bonzini.
11744
11745 2009-08-23  Bruno Haible  <bruno@clisp.org>
11746
11747         * lib/pipe2.c (pipe2): Move #ifs inside function.
11748
11749 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11750
11751         quotearg: document limitations of quote_these_too
11752         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
11753         those limitations are created.
11754         * lib/quotearg.h (set_char_quoting): Document that digits and
11755         letters that are special after backslash are not permitted.
11756         (quotearg_char): Cross-reference set_char_quoting documentation.
11757
11758 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
11759
11760         quotearg: implement custom_quoting_style
11761         * lib/quotearg.c: (struct quoting_options): Add left_quote and
11762         right_quote fields.
11763         (set_custom_quoting): New public function.
11764         (quotearg_buffer_restyled): Add left_quote and right_quote
11765         arguments, handle them very much like locale quoting, and update
11766         all uses.
11767         (quotearg_n_custom): New public function.
11768         (quotearg_n_custom_mem): New public function.
11769         (quotearg_custom): New public function.
11770         (quotearg_custom_mem): New public function.
11771         * lib/quotearg.h: Prototype and document new public functions.
11772         (enum quoting_style): For escape_quoting_style and
11773         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
11774         ignored even though they're otherwise like c_quoting_style.
11775         Add custom_quoting_style member and document with comparison to
11776         clocale_quoting_style.
11777         * tests/test-quotearg.c (custom_quotes): New array.
11778         (custom_results): New array.
11779         (main): Extend to test custom quoting.
11780
11781 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11782
11783         quotearg: fix right quote escaping when it's in quote_these_too
11784         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
11785         quote, be sure to prepend only one backslash.
11786         * tests/test-quotearg.c (use_quote_double_quotes): New function.
11787         (main): Test it.
11788
11789 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
11790
11791         quotearg-tests: test escaping of embedded locale quotes
11792         * tests/test-quotearg.c (struct result_strings): Add member for
11793         new input.
11794         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
11795         (inputs): Add new input.
11796         (results_g): Add expected results.
11797         (flag_results): Likewise.
11798         (locale_results): Likewise.
11799         (compare_strings): Check those.
11800
11801 2009-08-23  Bruno Haible  <bruno@clisp.org>
11802
11803         Tests for module 'dup3'.
11804         * modules/dup3-tests: New file.
11805         * tests/test-dup3.c: New file.
11806
11807         New module 'dup3'.
11808         * lib/unistd.in.h (dup3): New declaration.
11809         * lib/dup3.c: New file.
11810         * m4/dup3.m4: New file.
11811         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
11812         HAVE_DUP3.
11813         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
11814         * modules/dup3: New file.
11815         * doc/glibc-functions/dup3.texi: Mention the new module.
11816
11817 2009-08-23  Bruno Haible  <bruno@clisp.org>
11818
11819         Tweak the dup2 test.
11820         * tests/test-dup2.c (main): Create the test file empty. Verify that an
11821         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
11822         the test file is still empty. Fix argument order of lseek.
11823
11824 2009-08-23  Bruno Haible  <bruno@clisp.org>
11825
11826         Avoid test link errors when the modules getopt-gnu, gettext are used.
11827         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
11828         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11829
11830 2009-08-23  Bruno Haible  <bruno@clisp.org>
11831
11832         Fix getdtablesize() on mingw.
11833         * lib/getdtablesize.c (getdtablesize): Implement differently.
11834         * lib/unistd.in.h (getdtablesize): Improve comment.
11835
11836 2009-08-23  Bruno Haible  <bruno@clisp.org>
11837
11838         New module 'mkostemp'.
11839         Based on Ulrich Drepper's 2007-08-10 change in glibc.
11840         * lib/stdlib.in.h (mksotemp): New declaration.
11841         * lib/mkostemp.c: New file, from glibc with modifications.
11842         * lib/tempname.h (GT_FILE): Remove outdated comment.
11843         (gen_tempname): Add flags argument.
11844         * lib/tempname.c (__GT_BIGFILE): Remove macro.
11845         (__GT_FILE): Map to 1.
11846         (small_open, large_open): Remove macros.
11847         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
11848         * lib/mkstemp.c (mkstemp): Update.
11849         * lib/mkdtemp.c (mkdtemp): Likewise.
11850         * m4/mkostemp.m4: New file.
11851         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
11852         HAVE_MKOSTEMP.
11853         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
11854         HAVE_MKOSTEMP.
11855         * modules/mkostemp: New file, based on modules/mkstemp.
11856         * doc/glibc-functions/mkostemp.texi: Mention the new module.
11857         * NEWS: Mention the change.
11858
11859 2009-08-23  Bruno Haible  <bruno@clisp.org>
11860
11861         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
11862         Reported by Eric Blake.
11863
11864 2009-08-23  Bruno Haible  <bruno@clisp.org>
11865
11866         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
11867         Reported by Eric Blake.
11868
11869 2009-08-23  Bruno Haible  <bruno@clisp.org>
11870
11871         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
11872         * modules/pipe2 (Depends-on): Likewise.
11873
11874 2009-08-23  Eric Blake  <ebb9@byu.net>
11875
11876         fcntl-h: add O_TTY_INIT support
11877         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
11878         * tests/test-fcntl-h.c (o): Test it.
11879         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
11880
11881         fcntl-h: rename from fcntl, in preparation for fcntl(2)
11882         * modules/fcntl: Move <fcntl.h> header replacement...
11883         * modules/fcntl-h: ...to new name, so as not to collide with
11884         like-named function.
11885         * tests/test-fcntl.c: Rename...
11886         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
11887         * modules/fcntl-tests: Rename...
11888         * modules/fcntl-h-tests: ...to this.  Update test file name.
11889         * modules/chdir-long (Depends-on): Update clients.
11890         * modules/chdir-safer (Depends-on): Likewise.
11891         * modules/fcntl-safer (Depends-on): Likewise.
11892         * modules/fts (Depends-on): Likewise.
11893         * modules/mkancesdirs (Depends-on): Likewise.
11894         * modules/mkdir-p (Depends-on): Likewise.
11895         * modules/open (Depends-on): Likewise.
11896         * modules/savewd (Depends-on): Likewise.
11897         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
11898         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
11899
11900 2009-08-22  Bruno Haible  <bruno@clisp.org>
11901
11902         * modules/binary-io (License): Relicense under LGPL.
11903         * modules/pipe2 (License): Likewise.
11904
11905 2009-08-22  Bruno Haible  <bruno@clisp.org>
11906
11907         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
11908         return value.
11909         * lib/pipe-filter-gi.c (filter_init): Likewise.
11910         Reported by Eric Blake.
11911
11912 2009-08-22  Bruno Haible  <bruno@clisp.org>
11913
11914         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
11915         * modules/pipe (Depends-on): Add pipe2.
11916
11917 2009-08-22  Bruno Haible  <bruno@clisp.org>
11918
11919         Tests for module 'pipe2'.
11920         * modules/pipe2-tests: New file.
11921         * tests/test-pipe2.c: New file.
11922
11923         New module 'pipe2'.
11924         * lib/unistd.in.h (pipe2): New declaration.
11925         * lib/pipe2.c: New file.
11926         * m4/pipe2.m4: New file.
11927         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
11928         HAVE_PIPE2.
11929         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
11930         * modules/pipe2: New file.
11931         * doc/glibc-functions/pipe2.texi: Mention the new module.
11932
11933 2009-08-22  Bruno Haible  <bruno@clisp.org>
11934
11935         Reference some new glibc functions.
11936         * doc/glibc-functions/accept4.texi: New file.
11937         * doc/glibc-functions/dup3.texi: New file.
11938         * doc/glibc-functions/mkostemp.texi: New file.
11939         * doc/glibc-functions/pipe2.texi: New file.
11940         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
11941         (Glibc sys/socket.h): Refer to accept4.
11942         (Glibc unistd.h): Refer to dup3, pipe2.
11943         Reported by Eric Blake.
11944
11945 2009-08-22  Jim Meyering  <meyering@redhat.com>
11946             Bruno Haible  <bruno@clisp.org>
11947
11948         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
11949         This makes it so packages using automake-1.11's silent-rules option
11950         can print e.g., a single "GEN    configmake.h" line, rather than
11951         the 30+ statements that perform the job.  If you want to see the
11952         actual commands, you can still run "make V=1".
11953         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
11954         so that make output is abbreviated when those variables are defined
11955         appropriately.
11956         * modules/argz: Likewise.
11957         * modules/arpa_inet: Likewise.
11958         * modules/byteswap: Likewise.
11959         * modules/configmake: Likewise.
11960         * modules/dirent: Likewise.
11961         * modules/errno: Likewise.
11962         * modules/fcntl: Likewise.
11963         * modules/float: Likewise.
11964         * modules/fnmatch: Likewise.
11965         * modules/getopt-posix: Likewise.
11966         * modules/glob: Likewise.
11967         * modules/iconv_open: Likewise.
11968         * modules/inttypes: Likewise.
11969         * modules/localcharset: Likewise.
11970         * modules/locale: Likewise.
11971         * modules/math: Likewise.
11972         * modules/netdb: Likewise.
11973         * modules/netinet_in: Likewise.
11974         * modules/poll: Likewise.
11975         * modules/posix_spawnp-tests: Likewise.
11976         * modules/sched: Likewise.
11977         * modules/search: Likewise.
11978         * modules/selinux-h: Likewise.
11979         * modules/signal: Likewise.
11980         * modules/spawn: Likewise.
11981         * modules/stdarg: Likewise.
11982         * modules/stdbool: Likewise.
11983         * modules/stddef: Likewise.
11984         * modules/stdint: Likewise.
11985         * modules/stdio: Likewise.
11986         * modules/stdlib: Likewise.
11987         * modules/string: Likewise.
11988         * modules/strings: Likewise.
11989         * modules/sys_file: Likewise.
11990         * modules/sys_ioctl: Likewise.
11991         * modules/sys_select: Likewise.
11992         * modules/sys_socket: Likewise.
11993         * modules/sys_stat: Likewise.
11994         * modules/sys_time: Likewise.
11995         * modules/sys_times: Likewise.
11996         * modules/sys_utsname: Likewise.
11997         * modules/sys_wait: Likewise.
11998         * modules/sysexits: Likewise.
11999         * modules/time: Likewise.
12000         * modules/unistd: Likewise.
12001         * modules/wchar: Likewise.
12002         * modules/wctype: Likewise.
12003
12004 2009-08-22  Jim Meyering  <meyering@redhat.com>
12005
12006         announce-gen: detect write failure
12007         * build-aux/announce-gen: Add Coda at end.
12008         Remove equivalent-but-more-verbose block at top.
12009
12010 2009-08-19  Akim Demaille  <demaille@gostai.com>
12011
12012         bootstrap: --help to stdout.
12013         * bootstrap (usage): Don't send --help to stderr.
12014         Use a here doc instead of a long string.
12015
12016 2009-08-21  Eric Blake  <ebb9@byu.net>
12017
12018         test-popen-safer: split from test-popen
12019         * tests/test-popen.c (main): Move...
12020         * tests/test-popen.h: ...into new file.
12021         * tests/test-popen-safer2.c: New file.
12022         * modules/popen-tests (Files): Add test-popen.h.
12023         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
12024         Suggested by Bruno Haible.
12025
12026         test-fcntl-safer: split from test-open
12027         * tests/test-open.c (main): Move...
12028         * tests/test-open.h: ...into new file.
12029         * tests/test-fcntl-safer.c: New file.
12030         * modules/open-tests (Files): Add test-open.h.
12031         * modules/fcntl-safer-tests: New file.
12032         Suggested by Bruno Haible.
12033
12034         test-fopen-safer: split from test-fopen
12035         * tests/test-fopen.c (main): Move...
12036         * tests/test-fopen.h: ...into new file.
12037         * tests/test-fopen-safer.c: New file.
12038         * modules/fopen-tests (Files): Add test-fopen.h.
12039         * modules/fopen-safer-tests: New file.
12040         Suggested by Bruno Haible.
12041
12042 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
12043
12044         popen-safer: test O_CLOEXEC at run-time.
12045         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
12046
12047 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
12048
12049         fcntl: move more flags to the header
12050         * lib/cloexec.c: Do not define FD_CLOEXEC here.
12051         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
12052         * lib/fcntl.in.h: Do both things here.
12053
12054 2009-08-21  Jim Meyering  <meyering@redhat.com>
12055
12056         consistently remove $@-t before redirecting to it
12057         * modules/argz: Remove $@-t and $@ before redirecting to the former.
12058         * modules/alloca-opt: Likewise.
12059         * modules/byteswap: Likewise.
12060         * modules/fnmatch: Likewise.
12061         * modules/getopt-posix: Likewise.
12062         * modules/glob: Likewise.
12063         * modules/poll: Likewise.
12064         * modules/posix_spawnp-tests: Likewise.
12065         * modules/sys_socket: Likewise.
12066         * modules/sysexits: Likewise.
12067
12068 2009-08-21  Eric Blake  <ebb9@byu.net>
12069
12070         popen: simplify access to original popen
12071         * lib/popen.c (rpl_popen): No need to worry about popen being a
12072         macro.
12073         Reported by Bruno Haible.
12074
12075 2009-08-20  Eric Blake  <ebb9@byu.net>
12076
12077         build: avoid some compiler warnings
12078         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
12079         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
12080         type.
12081         (new_exclude_segment, excluded_file_pattern_p)
12082         (excluded_file_name_p): Reduce scope.
12083         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
12084         old-style declaration.
12085
12086 2009-08-20  Simon Josefsson  <simon@josefsson.org>
12087
12088         * tests/test-exclude1.sh: Handle Windows EOL.
12089         * tests/test-exclude2.sh: Likewise.
12090         * tests/test-exclude3.sh: Likewise.
12091         * tests/test-exclude4.sh: Likewise.
12092         * tests/test-exclude5.sh: Likewise.
12093         * tests/test-exclude6.sh: Likewise.
12094         * tests/test-exclude7.sh: Likewise.
12095
12096 2009-08-19  Akim Demaille  <demaille@gostai.com>
12097
12098         bootstrap: find sha1sum when named gsha1sum.
12099         * bootstrap (find_tool): New.
12100         ($SHA1SUM): New.
12101         Use it.
12102
12103 2009-08-20  Jim Meyering  <meyering@redhat.com>
12104
12105         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
12106         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
12107         expression that converts "." in a file name to "\." in the resulting
12108         regexp.  Start with a dummy statement, so that prior shell variable
12109         definitions are expanded portably.  Reported by Simon Josefsson.
12110
12111 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
12112
12113         Fix polling for writeability of a screen buffer.
12114         * lib/poll.c: Distinguish input and screen buffers for the
12115         Win32 implementation.
12116         * lib/select.c: Likewise.
12117
12118 2009-08-19  Eric Blake  <ebb9@byu.net>
12119
12120         popen-safer: prevent popen from clobbering std descriptors
12121         * modules/popen-safer: New file.
12122         * lib/popen-safer.c: Likewise.
12123         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
12124         * lib/stdio--.h (popen): Provide override.
12125         * lib/stdio-safer.h (popen_safer): Provide declaration.
12126         * tests/test-popen.c (includes): Partially test this.
12127         * modules/popen-safer-tests: New file, for more tests.
12128         * tests/test-popen-safer.c: Likewise.
12129         * MODULES.html.sh (file stream based Input/Output): Mention it.
12130
12131         tests: test some of the *-safer modules
12132         * modules/fopen-safer (Depends-on): Add fopen.
12133         * modules/fcntl-safer (Depends-on): Add fcntl.
12134         * modules/stdlib-safer (Depends-on): Add stdlib.
12135         (configure.ac): Set indicator.
12136         * modules/unistd-safer (configure.ac): Likewise.
12137         * modules/tmpfile-safer (configure.ac): Likewise.
12138         (Depends-on): Add tmpfile.
12139         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
12140         active.
12141         * tests/test-fopen.c (includes): Test safer versions when they are
12142         in use.
12143         * tests/test-open.c (includes): Likewise.
12144
12145         popen: fix cygwin 1.5 bug when stdin closed
12146         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
12147         * modules/popen: New file.
12148         * modules/popen-tests: Likewise.
12149         * tests/test-popen.c: Likewise.
12150         * m4/popen.m4: Likewise.
12151         * lib/popen.c: Likewise.
12152         * lib/stdio.in.h (popen): New declaration.
12153         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
12154         * modules/stdio (Makefile.am): Likewise.
12155         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
12156
12157 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
12158
12159         maint.mk: give full control over update-copyright exclusions
12160         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
12161         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
12162         (update-copyright): Don't force inclusion of top-level
12163         ChangeLog.  Don't force exclusion of all COPYING files, but make
12164         them the default exclusion instead.
12165
12166 2009-08-16  Bruno Haible  <bruno@clisp.org>
12167
12168         Fix test failures on Solaris 10.
12169         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
12170         tests when Solaris iconv() is used.
12171         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
12172         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
12173         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
12174         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
12175         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
12176
12177 2009-08-16  Bruno Haible  <bruno@clisp.org>
12178
12179         Fix test failures on Solaris 10.
12180         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
12181         'tr' program and pass it as first argument.
12182         * tests/test-pipe-filter-gi1.sh: Likewise.
12183         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
12184         program as first argument.
12185         * tests/test-pipe-filter-gi1.c (main): Likewise.
12186
12187 2009-08-16  Eric Blake  <ebb9@byu.net>
12188
12189         fpurge: fix previous commits
12190         * modules/fpurge (Makefile.am): Make replacement conditional,
12191         partially reverting 2007-04-29 change; missed in previous
12192         attempt.
12193         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
12194         is missing.
12195
12196 2009-08-16  Bruno Haible  <bruno@clisp.org>
12197
12198         Clarify fpurge's effect on the file position.
12199         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
12200         * tests/test-fpurge.c (main): Make a second pass for checking the file
12201         position.
12202
12203 2009-08-16  Bruno Haible  <bruno@clisp.org>
12204
12205         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
12206         declaration of fpurge is missing.
12207         * tests/test-fpurge.c (main): Check that the file has not more contents
12208         than expected. Close the file before removing it.
12209
12210 2009-08-15  Eric Blake  <ebb9@byu.net>
12211
12212         fpurge: don't wrap working cygwin implementation
12213         * lib/fpurge.c (fpurge): Fix comment typo.
12214         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
12215         1.7 to avoid replacement.
12216         * tests/test-fpurge.c (main): Enhance test.
12217
12218 2009-08-15  Eric Blake  <ebb9@byu.net>
12219         and Jim Meyering  <meyering@redhat.com>
12220
12221         test-update-copyright: skip if perl is insufficient
12222         * tests/test-update-copyright.sh: Failure to run maintainer tool
12223         should not cause testsuite failure on cygwin 1.5.
12224
12225 2009-08-14  Eric Blake  <ebb9@byu.net>
12226
12227         doc: mention more functions added in cygwin 1.7.0
12228         * doc/posix-headers/limits.texi (limits.h): Update for recent
12229         cygwin additions.
12230         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
12231         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
12232         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
12233         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
12234         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
12235
12236 2009-08-14  Eric Blake  <ebb9@byu.net>
12237
12238         maint.mk: simplify update-copyright rule
12239         * top/maint.mk (update-copyright-local): Delete, and document how
12240         to do it in cfg.mk instead.
12241         (update-copyright-exclude-regexp): Delete, and document how to do
12242         it in .x-update-copyright instead.
12243         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
12244         exclude ChangeLog.
12245
12246 2009-08-14  Bruno Haible  <bruno@clisp.org>
12247
12248         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
12249
12250 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
12251
12252         maint.mk: support update-copyright-env
12253         * top/maint.mk (update-copyright-env): Define place-holder.
12254         (update-copyright): Expand $(update-copyright-env) before
12255         invoking update-copyright.
12256
12257 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
12258
12259         update-copyright: implement forced reformatting
12260         * build-aux/update-copyright: Implement and document
12261         UPDATE_COPYRIGHT_FORCE.
12262         * tests/test-update-copyright.sh: Test it.
12263
12264 2009-08-14  Eric Blake  <ebb9@byu.net>
12265         and Bruno Haible  <bruno@clisp.org>
12266
12267         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
12268         * tests/test-locale.c: Revert previous patch related to NULL.
12269         * tests/test-stdio.c: Likewise.
12270         * tests/test-stdlib.c: Likewise.
12271         * tests/test-string.c: Likewise.
12272         * tests/test-unistd.c: Likewise.
12273         * modules/time-tests (Depends-on): Add verify.
12274         * modules/wchar-tests (Depends-on): Likewise.
12275         * tests/test-time.c: Test for NULL compliance.
12276         * tests/test-wchar.c: Likewise.
12277         * modules/locale (Depends-on): Add stddef.
12278         * modules/stdio (Depends-on): Likewise.
12279         * modules/stdlib (Depends-on): Likewise.
12280         * modules/string (Depends-on): Likewise.
12281         * modules/time (Depends-on): Likewise.
12282         * modules/unistd (Depends-on): Likewise.
12283         * modules/wchar (Depends-on): Likewise.
12284         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
12285         * lib/stdlib.in.h (includes): Likewise.
12286         * lib/string.in.h (includes): Likewise.
12287         * lib/time.in.h (includes): Likewise.
12288         * lib/unistd.in.h (includes): Likewise.
12289         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
12290         replaced.
12291         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
12292         * m4/stddef_h.m4: New file.
12293         * modules/stddef: Likewise.
12294         * lib/stddef.in.h: Likewise.
12295         * modules/stddef-tests: Likewise.
12296         * tests/test-stddef.c: Likewise.
12297         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
12298         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
12299         * doc/posix-headers/locale.texi (locale.h): Likewise.
12300         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
12301         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
12302         * doc/posix-headers/string.texi (string.h): Likewise.
12303         * doc/posix-headers/time.texi (time.h): Likewise.
12304         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
12305         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
12306
12307 2009-08-14  Eric Blake  <ebb9@byu.net>
12308
12309         doc: improve git diff of texinfo files
12310         * .gitattributes: Add rule for *.texi files, with hint on how to
12311         use it.
12312         Copied from m4, and based on a report by Bruno Haible.
12313
12314 2009-08-14  Bruno Haible  <bruno@clisp.org>
12315
12316         Disable multithread support by default on Cygwin 1.5.x for real.
12317         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
12318
12319 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
12320
12321         update-copyright: much ado about intervals
12322         * build-aux/update-copyright: Implement and document
12323         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
12324         of copyright year intervals.
12325         Also, document UPDATE_COPYRIGHT_YEAR.
12326         * tests/test-update-copyright.sh: Test it.
12327
12328         update-copyright: convert 2-digit to 4-digit years
12329         * build-aux/update-copyright: Implement and document.
12330         * tests/test-update-copyright.sh: Update.
12331
12332 2009-08-14  Jim Meyering  <meyering@redhat.com>
12333
12334         test-exclude: avoid coreutils "make check" failure
12335         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
12336         just as in test-argmatch.c.
12337
12338 2009-08-13  Eric Blake  <ebb9@byu.net>
12339
12340         test-dup2: fix bad assumption
12341         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
12342         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
12343
12344         test-version-etc: fix CRLF portability issue
12345         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
12346         recognize \r.
12347         * tests/test-argp-version-etc-1.sh: Likewise.
12348
12349         getopt: update client modules
12350         * modules/argp (Depends-on): Use getopt-gnu.
12351         * modules/git-merge-changelog (Depends-on): Likewise.
12352         * modules/long-options (Depends-on): Likewise.
12353         * modules/xstrtol (Depends-on): Likewise.
12354
12355 2009-08-13  Simon Josefsson  <simon@josefsson.org>
12356
12357         * tests/test-version-etc.sh: Don't fail on different
12358         project/version.  Don't fail on CRLF differences.  Rewrite to use
12359         multiple -e instead of multiple sed forks, suggested by Eric Blake
12360         <ebb9@byu.net>.
12361         * tests/test-argp-version-etc-1.sh: Likewise.
12362
12363 2009-08-13  Simon Josefsson  <simon@josefsson.org>
12364
12365         * tests/test-version-etc.sh: Don't fail on different
12366         project/version.
12367
12368 2009-08-12  Bruno Haible  <bruno@clisp.org>
12369
12370         Tests for modules 'getopt-posix', 'getopt-gnu'.
12371         * modules/getopt-posix-tests: New file.
12372         * tests/test-getopt.c: New file.
12373         * tests/test-getopt.h: New file.
12374         * tests/test-getopt_long.h: New file.
12375
12376         New modules 'getopt-posix', 'getopt-gnu'.
12377         * modules/getopt-gnu: New file, renamed from modules/getopt.
12378         * modules/getopt-posix: New file.
12379         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
12380         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
12381         (gl_GETOPT): Remove macro.
12382         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
12383         Disable the test against BSD systems that declare optreset. Test
12384         against mingw bug. Test against lack of support of optional arguments
12385         on many platforms.
12386         * doc/glibc-headers/getopt.texi: Update module name and list of
12387         relevant platforms.
12388         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
12389         'getopt-gnu' and more portability problems.
12390         * NEWS: Mention the changes.
12391
12392 2009-08-12  Bruno Haible  <bruno@clisp.org>
12393
12394         Ensure that optarg etc. get declared by <unistd.h>.
12395         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
12396         AC_USE_SYSTEM_EXTENSIONS.
12397         * modules/getopt (Depends-on): Add 'extensions'.
12398
12399 2009-08-12  Bruno Haible  <bruno@clisp.org>
12400
12401         Avoid test link errors.
12402         * modules/pipe-filter-ii-tests (Makefile.am): Define
12403         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
12404         * modules/pipe-filter-gi-tests (Makefile.am): Define
12405         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
12406         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12407
12408 2009-08-12  Bruno Haible  <bruno@clisp.org>
12409
12410         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
12411         gl_GETOPT_SUBSTITUTE before.
12412         (gl_GETOPT): Use it.
12413         * m4/argp.m4 (gl_ARGP): Update.
12414         Reported by Sergey Poznyakoff.
12415
12416         * m4/getopt.m4: Reorder macros.
12417         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
12418         (gl_GETOPT_SUBSTITUTE): Remove macro.
12419
12420 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
12421
12422         Minor improvement in gitlog-to-changelog
12423
12424         * build-aux/gitlog-to-changelog: New option `--format' makes
12425         output format string configurable.
12426
12427 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
12428
12429         Optimize exclude: use hash tables for non-wildcard patterns.
12430
12431         * lib/exclude.c: Include hash.h and mbuiter.h
12432         (struct exclude_pattern, exclude_segment): New data types.
12433         (struct exclude): Rewrite.
12434         (fnmatch_pattern_has_wildcards): New function.
12435         (new_exclude_segment, free_exclude_segment): New functions.
12436         (excluded_file_pattern_p, excluded_file_name_p): New functions.
12437         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
12438         * lib/exclude.h (is_fnmatch_pattern): New prototype.
12439         * modules/exclude: Depend on hash and mbuiter.
12440
12441         * modules/exclude-tests: New file.
12442         * tests/test-exclude.c: New file.
12443         * tests/test-exclude1.sh: New file.
12444         * tests/test-exclude2.sh: New file.
12445         * tests/test-exclude3.sh: New file.
12446         * tests/test-exclude4.sh: New file.
12447         * tests/test-exclude5.sh: New file.
12448         * tests/test-exclude6.sh: New file.
12449         * tests/test-exclude7.sh: New file.
12450
12451 2009-08-12  Bruno Haible  <bruno@clisp.org>
12452
12453         Ensure that getopt() gets declared by <unistd.h>.
12454         * lib/unistd.in.h: Conditionally include getopt.h.
12455         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
12456         Set GNULIB_UNISTD_H_GETOPT.
12457         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
12458         GNULIB_UNISTD_H_GETOPT.
12459         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
12460
12461 2009-08-12  Bruno Haible  <bruno@clisp.org>
12462
12463         Clarify logic.
12464         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
12465         gl_replace_getopt instead of GETOPT_H.
12466
12467 2009-08-12  Bruno Haible  <bruno@clisp.org>
12468
12469         * m4/getopt.m4: Add comments.
12470
12471 2009-08-12  Bruno Haible  <bruno@clisp.org>
12472
12473         Disable multithread support by default on Cygwin 1.5.x.
12474         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
12475         set gl_use_threads=no if not specified otherwise.
12476
12477 2009-08-11  Bruno Haible  <bruno@clisp.org>
12478
12479         Avoid compilation error on NetBSD 5.0.
12480         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
12481         * tests/test-stdio.c: Likewise.
12482         * tests/test-stdlib.c: Likewise.
12483         * tests/test-string.c: Likewise.
12484         * tests/test-unistd.c: Likewise.
12485         Reported by Greg Troxel <gdt@ir.bbn.com>
12486         at <https://savannah.gnu.org/support/?106973>.
12487
12488 2009-08-11  Bruno Haible  <bruno@clisp.org>
12489
12490         * modules/dup2-tests (Depends-on): Remove close.
12491
12492         Undo 2009-07-19 commit.
12493         * modules/acl-tests (Depends-on): Remove close.
12494         * modules/binary-io-tests (Depends-on): Likewise.
12495         * modules/closein-tests (Depends-on): Likewise.
12496         * modules/flock-tests (Depends-on): Likewise.
12497         * modules/fsync-tests (Depends-on): Likewise.
12498         * modules/lseek-tests (Depends-on): Likewise.
12499         * modules/pipe-tests (Depends-on): Likewise.
12500         * modules/posix_spawn-tests (Depends-on): Likewise.
12501         * modules/posix_spawnp-tests (Depends-on): Likewise.
12502         * modules/stat-time-tests (Depends-on): Likewise.
12503         * modules/yesno-tests (Depends-on): Likewise.
12504
12505 2009-08-10  Bruno Haible  <bruno@clisp.org>
12506
12507         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
12508
12509 2009-08-10  Bruno Haible  <bruno@clisp.org>
12510
12511         Fix a gcc warning.
12512         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
12513
12514 2009-08-10  Bruno Haible  <bruno@clisp.org>
12515
12516         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
12517         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
12518         not only the first time.
12519         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
12520         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
12521         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
12522         is 1, not only the the first time.
12523
12524 2009-08-10  Bruno Haible  <bruno@clisp.org>
12525
12526         Make it possible to use module 'gethostname' without module 'close'.
12527         * lib/unistd.in.h (close): Evoke a link error only if
12528         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
12529         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
12530         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12531         * modules/unistd (Makefile.am): Substitute
12532         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12533         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
12534         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
12535         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
12536         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12537         * modules/sys_ioctl (Makefile.am): Substitute
12538         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12539         * modules/socket (configure.ac): On native Windows, set
12540         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
12541         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
12542         Reported by Sam Steingold <sds@gnu.org>.
12543
12544 2009-08-10  Bruno Haible  <bruno@clisp.org>
12545
12546         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
12547         * modules/ioctl (configure.ac): Likewise.
12548
12549 2009-08-10  Bruno Haible  <bruno@clisp.org>
12550
12551         Avoid collision between gnulib wrapper and libintl wrapper.
12552         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
12553         already defined in intl/printf.c.
12554         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
12555         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
12556
12557 2009-08-09  Bruno Haible  <bruno@clisp.org>
12558
12559         Make <sys/select.h> really self-contained, also on Solaris 10.
12560         * lib/sys_select.in.h: Include <string.h>.
12561         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
12562         Solaris 10 problem.
12563         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
12564         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
12565         Reported by Jim Meyering.
12566
12567 2009-08-09  Bruno Haible  <bruno@clisp.org>
12568
12569         Avoid warnings from 'aclocal' that are due to a use of macro name
12570         AM_XGETTEXT_OPTION that is not defined in automake.
12571         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
12572         automake.
12573         * modules/error (configure.ac): Likewise.
12574         * modules/propername (configure.ac): Likewise.
12575         * modules/vasprintf (configure.ac): Likewise.
12576         * modules/verror (configure.ac): Likewise.
12577         * modules/xprintf (configure.ac): Likewise.
12578         * modules/xvasprintf (configure.ac): Likewise.
12579
12580 2009-08-08  Bruno Haible  <bruno@clisp.org>
12581
12582         Avoid compilation error in C++ mode.
12583         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
12584         Reported by Sam Steingold <sds@gnu.org>.
12585
12586 2009-08-08  Bruno Haible  <bruno@clisp.org>
12587
12588         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
12589         for the various Unix platforms.
12590         * doc/posix-headers/limits.texi: Update platforms list regarding
12591         HOST_NAME_MAX.
12592         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12593
12594 2009-08-07  Jim Meyering  <meyering@redhat.com>
12595
12596         selinux-at: fix typo in a comment
12597         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
12598         Spotted by Paolo Bonzini.
12599
12600         selinux-at: remove redundant m4 code, add documentation
12601         * modules/selinux-at (configure.ac): Remove redundant code.
12602         LIB_SELINUX is already set via the dependent module, selinux-h.
12603         (Include): Add quotes around selinux-at.h.
12604         * lib/selinux-at.h: Add documentation.
12605         Reported by Bruno Haible in
12606         http://marc.info/?l=gnulib-bug&m=124958988300749
12607
12608 2009-08-07  Bruno Haible  <bruno@clisp.org>
12609
12610         Avoid link error on MacOS X 10.3 and 10.4.
12611         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
12612         on non-ELF systems.
12613         * lib/argp-pv.c (argp_program_version): Likewise.
12614         Reported by Simon Josefsson.
12615
12616 2009-08-07  Simon Josefsson  <simon@josefsson.org>
12617
12618         * tests/test-version-etc.sh: Use $EXEEXT.
12619
12620 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
12621
12622         update-copyright: update documentation to point to maint.mk
12623         * build-aux/update-copyright: Here.
12624
12625 2009-08-06  Jim Meyering  <meyering@redhat.com>
12626
12627         maint.mk: support update-copyright-local
12628         * top/maint.mk (update-copyright-local): Define place-holder.
12629         (update-copyright): Depend on $(update-copyright-local).
12630
12631 2009-08-06  Jim Meyering  <meyering@redhat.com>
12632
12633         selinux-at: new module
12634         Initially written for coreutils, this module will soon be
12635         used by findutils, too.
12636         * MODULES.html.sh [Misc]: Add selinux-at.
12637         * lib/selinux-at.h: New file, from coreutils.
12638         * lib/selinux-at.c: Likewise.
12639         * modules/selinux-at: Likewise.
12640         (License): Change from LGPL to GPL, since it depends
12641         on the GPL'd openat module.
12642
12643         doc: update README
12644         * README: Remove references to cogito.
12645         Remove cvs-repo-updating instructions from 2007.
12646         Don't imply that CVS is better if you have limited disk space.
12647
12648 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12649
12650         update-copyright: support C-style comments
12651         * build-aux/update-copyright: Implement and document.
12652         * tests/test-update-copyright.sh: Test.
12653
12654 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12655
12656         update-copyright: support omitted "(C)"
12657         * build-aux/update-copyright: Implement and document.  Also,
12658         allow variable whitespace before "(C)".
12659         * tests/test-update-copyright.sh: Test.
12660
12661 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12662
12663         update-copyright: don't trip on non-FSF copyright statements
12664         * build-aux/update-copyright: Fix so that the first correctly
12665         formatted FSF copyright statement is recognized no matter what
12666         appears before it.  Update documentation.
12667         * tests/test-update-copyright.sh: Test that.
12668
12669 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12670
12671         update-copyright: clean up code a little
12672         * build-aux/update-copyright: Append "_re" to the name of any
12673         variable holding a regular expression.
12674         Replace "old" and "new" with "stmt" in variable names.
12675         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
12676         handled correctly.
12677         Format code more consistently.
12678
12679 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
12680
12681         update-copyright-tests: improve portability
12682         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
12683         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
12684
12685 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12686
12687         update-copyright: support @copyright{} and &copy;
12688         * build-aux/update-copyright: Implement and document.
12689         * tests/test-update-copyright.sh: Test.
12690
12691 2009-08-04  Jim Meyering  <meyering@redhat.com>
12692
12693         update-copyright-tests: correctly test EOL=\r\n handling
12694         * tests/test-update-copyright.sh: Put \r at the end of some lines
12695         for the dos-eol tests.  Based on a patch by Joel E. Denny.
12696
12697         maint.mk: make update-copyright exclusion list more configurable
12698         * top/maint.mk (update-copyright): Default to excluding COPYING,
12699         but allow an override, in case someone does want to update that file.
12700
12701         maint.mk: don't update copyright date in COPYING
12702         * top/maint.mk (update-copyright): Exclude COPYING.
12703
12704         maint.mk: add a copyright-updating rule
12705         * top/maint.mk (update-copyright): New rule.
12706         Derived from coreutils/Makefile.am.
12707
12708         update-copyright: rename some variables
12709         * build-aux/update-copyright: Rename a few variables for clarity.
12710         Tweak syntax.  List Joel E. Denny as coauthor.
12711
12712 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
12713
12714         update-copyright: fix bug for 2-digit last year and add tests
12715         * build-aux/update-copyright: Fix bug.
12716         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
12717         specified.
12718         * modules/update-copyright-tests: New
12719         * tests/test-update-copyright.sh: New.
12720
12721 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12722
12723         update-copyright: handle leading tabs in line prefix
12724         * build-aux/update-copyright: Count leading tabs as 8 spaces
12725         when computing margin.  This helps with the formatting of
12726         ChangeLogs, for example.
12727         Fix documentation a little.
12728
12729 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12730
12731         update-copyright: support EOL=\r\n
12732         * build-aux/update-copyright: Implement that.
12733
12734 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
12735
12736         update-copyright: automatically format copyright statements
12737         * build-aux/update-copyright: Implement that.
12738         Also, be a little more predictable and safer by always failing
12739         when the full copyright format is not perfectly recognized as an
12740         unbroken whole.  Discussed at
12741         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
12742         Rewrite documentation.
12743
12744 2009-08-03  Bruno Haible  <bruno@clisp.org>
12745
12746         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
12747
12748 2009-08-02  Bruno Haible  <bruno@clisp.org>
12749
12750         Tests for module 'uname'.
12751         * modules/uname-tests: New file.
12752         * tests/test-uname.c: New file.
12753
12754         New module 'uname'.
12755         * lib/uname.c: New file.
12756         * m4/uname.m4: New file.
12757         * modules/uname: New file.
12758         * doc/posix-functions/uname.texi: Mention the new module.
12759
12760 2009-08-02  Bruno Haible  <bruno@clisp.org>
12761
12762         Tests for module 'sys_utsname'.
12763         * modules/sys_utsname-tests: New file.
12764         * tests/test-sys_utsname.c: New file.
12765
12766         New module 'sys_utsname'.
12767         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
12768         * m4/sys_utsname_h.m4: New file.
12769         * modules/sys_utsname: New file.
12770         * doc/posix-headers/sys_utsname.texi: Mention the new module.
12771
12772 2009-08-02  Bruno Haible  <bruno@clisp.org>
12773
12774         Implicitly initialize the sockets library.
12775         * lib/gethostname.c: Include sockets.h.
12776         (rpl_gethostname): Invoke gl_sockets_startup.
12777         * lib/socket.c: Include sockets.h.
12778         (rpl_socket): Invoke gl_sockets_startup.
12779         * modules/gethostname (Depends-on): Add sockets.
12780         * modules/socket (Depends-on): Likewise.
12781         * tests/test-poll.c: Don't include sockets.h.
12782         (main): Don't invoke gl_sockets_startup.
12783         * tests/test-select.c: Don't include sockets.h.
12784         (main): Don't invoke gl_sockets_startup.
12785
12786 2009-08-02  Bruno Haible  <bruno@clisp.org>
12787
12788         Allow multiple calls to gl_sockets_startup.
12789         * lib/sockets.c (initialized_sockets_version): New variable.
12790         (gl_sockets_startup): Do nothing if already called for this or a higher
12791         version.
12792         (gl_sockets_cleanup): Reset initialized_sockets_version.
12793
12794 2009-08-03  Simon Josefsson  <simon@josefsson.org>
12795
12796         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
12797         different project/version.
12798
12799 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
12800             Bruno Haible  <bruno@clisp.org>
12801
12802         Tests for module 'pipe-filter-gi'.
12803         * modules/pipe-filter-gi-tests: New file.
12804         * tests/test-pipe-filter-gi1.sh: New file.
12805         * tests/test-pipe-filter-gi1.c: New file.
12806         * tests/test-pipe-filter-gi2.sh: New file.
12807         * tests/test-pipe-filter-gi2-main.c: New file.
12808         * tests/test-pipe-filter-gi2-child.c: New file.
12809
12810         New module 'pipe-filter-gi'.
12811         * lib/pipe-filter-gi.c: New file.
12812         * modules/pipe-filter-gi: New file.
12813
12814 2009-08-02  Bruno Haible  <bruno@clisp.org>
12815             Paolo Bonzini  <bonzini@gnu.org>
12816
12817         Tests for module 'pipe-filter-ii'.
12818         * modules/pipe-filter-ii-tests: New file.
12819         * tests/test-pipe-filter-ii1.sh: New file.
12820         * tests/test-pipe-filter-ii1.c: New file.
12821         * tests/test-pipe-filter-ii2.sh: New file.
12822         * tests/test-pipe-filter-ii2-main.c: New file.
12823         * tests/test-pipe-filter-ii2-child.c: New file.
12824
12825         New module 'pipe-filter-ii'.
12826         * lib/pipe-filter.h: New file.
12827         * lib/pipe-filter-ii.c: New file.
12828         * lib/pipe-filter-aux.h: New file.
12829         * modules/pipe-filter-ii: New file.
12830
12831 2009-08-02  Simon Josefsson  <simon@josefsson.org>
12832
12833         * lib/gc-libgcrypt.c: Change copyright to FSF.
12834         * lib/gc-gnulib.c: Likewise.
12835
12836 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
12837
12838         * lib/gethostname.c: Include limits.h.
12839
12840 2009-08-02  Simon Josefsson  <simon@josefsson.org>
12841             Bruno Haible  <bruno@clisp.org>
12842
12843         Ensure HOST_NAME_MAX as part of the gethostname module.
12844         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
12845         define also HOST_NAME_MAX.
12846         * tests/test-gethostname.c: Include <limits.h>.
12847         (main): Check also HOST_NAME_MAX.
12848         * doc/posix-headers/limits.texi: Document the mingw problem.
12849
12850 2009-08-02  Bruno Haible  <bruno@clisp.org>
12851
12852         * lib/gethostname.c (gethostname): Fix handling of large len argument.
12853         Add comments.
12854
12855 2009-03-31  Simon Josefsson  <simon@josefsson.org>
12856
12857         * lib/gethostname.c: Add Windows wrapper.
12858         * m4/gethostname.m4: Look for gethostname in -lws2_32.
12859         * modules/gethostname: Depend on sys_socket & errno, for also
12860         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
12861         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
12862
12863 2009-07-31  Jim Meyering  <meyering@redhat.com>
12864
12865         getloadavg: fix symbol name in comment
12866         * lib/getloadavg.c: Correct a typo I introduced when adding
12867         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
12868         Matt Kraai spotted the problem.
12869
12870 2009-07-29  Matt Kraai  <mkraai@beckman.com>
12871
12872         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
12873         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
12874         code also if ! defined N_NAME_POINTER.
12875         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
12876         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
12877         but the n_name member is a 12-byte array.
12878
12879 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
12880
12881         update-copyright: generalize comment handling
12882         * build-aux/update-copyright: Handle copyright statements
12883         within more comment styles.
12884         Document usage.
12885         Report any file with an external copyright holder or parse failure.
12886
12887 2009-07-29  Jim Meyering  <meyering@redhat.com>
12888
12889         mktime: correct setting of REPLACE_MKTIME
12890         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
12891
12892         update-copyright: new module
12893         * modules/update-copyright: New file.
12894         * build-aux/update-copyright: New file.
12895         * MODULES.html.sh (maint+release support): Add update-copyright.
12896
12897 2009-07-27  Bruno Haible  <bruno@clisp.org>
12898
12899         Fix compilation error when <ctime> is used and mktime is replaced.
12900         * lib/time.in.h (mktime): New declaration.
12901         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
12902         REPLACE_MKTIME instead of defining mktime in config.h.
12903         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
12904         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
12905         Reported by Ross McFarland <rwmcfa1@neces.com>.
12906
12907 2009-07-27  Bruno Haible  <bruno@clisp.org>
12908
12909         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
12910         Reported by Matt Kraai <mkraai@beckman.com>.
12911
12912 2009-07-25  Jim Meyering  <meyering@redhat.com>
12913
12914         maint.mk: avoid warnings about missing files
12915         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
12916         diagnostic when .prev-version does not exist.
12917         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
12918         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
12919         nonexistent cfg.mk.
12920         Suggestions from Simon Josefsson.
12921
12922 2009-07-25  Bruno Haible  <bruno@clisp.org>
12923
12924         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
12925         defined as macros. Needed on QNX 6.4.1.
12926         Reported by Matt Kraai <mkraai@beckman.com>.
12927
12928 2009-07-23  Jim Meyering  <meyering@redhat.com>
12929
12930         maint.mk: invoke "make dist" with a working value of XZ_OPT
12931         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
12932
12933 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
12934
12935         Make fseeko.c compile on QNX.
12936         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
12937
12938 2009-07-22  Peter Simons  <simons@cryp.to>
12939
12940         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
12941         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
12942         * lib/md4.h: Likewise.
12943         * lib/md5.h: Likewise.
12944         * lib/sha1.h: Likewise.
12945         * lib/sha256.h: Likewise.
12946         * lib/sha512.h: Likewise.
12947
12948         tests-sha1: don't assign literal string to 'char *' variable
12949         * tests/test-sha1.c (main): Declare locals with "const" to match
12950         attributes of the right hand side.
12951
12952 2009-07-21  Eric Blake  <ebb9@byu.net>
12953
12954         dup2: fix more mingw problems
12955         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
12956         fd to itself.
12957         * doc/posix-functions/dup2.texi (dup2): Document the bug.
12958         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
12959         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
12960         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
12961         care of mingw bugs.
12962
12963 2009-07-21  Jim Meyering  <meyering@redhat.com>
12964
12965         vc-list-files: avoid failure when /bin/sh is dash
12966         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
12967         On some Debian based systems, /bin/sh is a symlink to dash, and running
12968         this command would omit the "/" following each 'tests' prefix:
12969           dash -x build-aux/vc-list-files -C . tests
12970         That is because bash and dash work differently:
12971           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
12972           bash ok
12973           dash odd
12974
12975 2009-07-21  Eric Blake  <ebb9@byu.net>
12976
12977         dup2-tests: test previous patch
12978         * modules/dup2-tests: New file.
12979         * tests/test-dup2.c: Likewise.
12980         * tests/test-open.c (main): Avoid unspecified behavior.
12981         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
12982         test.
12983
12984         dup2: work around mingw and cygwin 1.5 bug
12985         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
12986         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
12987         * modules/unistd (Makefile.am): Substitute it.
12988         * lib/unistd.in.h (dup2): Declare the replacement.
12989         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
12990         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
12991         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
12992         * modules/execute (Depends-on): Add dup2.
12993         * modules/fseterr (Depends-on): Likewise.
12994         * modules/pipe (Depends-on): Likewise.
12995         * modules/posix_spawn-internal (Depends-on): Likewise.
12996
12997 2009-07-21  Bruno Haible  <bruno@clisp.org>
12998
12999         * modules/.gitattributes: New file.
13000
13001 2009-07-20  Bruno Haible  <bruno@clisp.org>
13002
13003         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
13004         (main): Use it.
13005
13006 2009-07-20  Eric Blake  <ebb9@byu.net>
13007
13008         test-pipe: make a bit more robust.
13009         * tests/test-pipe.c (myerr): Allow error messages regardless of
13010         what we do to stderr.
13011         (test_pipe): Rearrange to avoid deadlock.
13012         (child_main): Try a larger read, to ensure we avoided deadlock.
13013         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
13014         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
13015         if misused.
13016
13017 2009-07-19  Jim Meyering  <meyering@redhat.com>
13018
13019         fts: avoid false-positive cycle-detection
13020         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
13021         for each new command line argument.
13022
13023 2009-07-19  Bruno Haible  <bruno@clisp.org>
13024
13025         Fix build error on mingw with the modules sys_select and unistd.
13026         * modules/acl-tests (Depends-on): Add close.
13027         * modules/binary-io-tests (Depends-on): Likewise.
13028         * modules/closein-tests (Depends-on): Likewise.
13029         * modules/flock-tests (Depends-on): Likewise.
13030         * modules/fsync-tests (Depends-on): Likewise.
13031         * modules/lseek-tests (Depends-on): Likewise.
13032         * modules/pipe-tests (Depends-on): Likewise.
13033         * modules/posix_spawn-tests (Depends-on): Likewise.
13034         * modules/posix_spawnp-tests (Depends-on): Likewise.
13035         * modules/stat-time-tests (Depends-on): Likewise.
13036         * modules/yesno-tests (Depends-on): Likewise.
13037
13038 2009-07-19  Bruno Haible  <bruno@clisp.org>
13039
13040         Unify conditionals.
13041         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
13042         macros, not at the compiler macros.
13043         * lib/pipe.c: Likewise.
13044         * lib/execute.c: Likewise.
13045         * lib/spawni.c: Likewise.
13046
13047 2009-07-19  Bruno Haible  <bruno@clisp.org>
13048
13049         Fix handling of closed stdin/stdout/stderr on mingw.
13050         * lib/w32spawn.h: Include unistd.h.
13051         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
13052         file descriptor with O_NOINHERIT flag.
13053         (fd_safer_noinherit): New function, based on fd-safer.c.
13054         (dup_safer_noinherit): New function, based on dup-safer.c.
13055         (undup_safer_noinherit): New function.
13056         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
13057         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
13058         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
13059         instead of fd_safer.
13060         * tests/test-pipe.c: Include <windows.h>.
13061         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
13062
13063         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
13064         from main.
13065         (test_pipe): Pass an extra argument for disambiguation.
13066         (main): Invoke parent_main or child_main.
13067
13068         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
13069         consistently.
13070
13071 2009-07-18  Eric Blake  <ebb9@byu.net>
13072
13073         test-pipe: fix mingw build
13074         * tests/test-pipe.c (main): Avoid fcntl on mingw.
13075
13076 2009-07-18  Bruno Haible  <bruno@clisp.org>
13077
13078         * modules/pipe-tests (Makefile.am): Fix typo.
13079
13080 2009-07-18  Eric Blake  <ebb9@byu.net>
13081
13082         error: fix mingw build
13083         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
13084         Reported by Bruno Haible.
13085
13086         error: avoid undefined use of stdout
13087         * lib/error.c (error, error_at_line): Check that fd 1 is open
13088         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
13089         is handling faults and the close_stdout module wants to report the
13090         detection of closed stdout as an error.
13091
13092 2009-07-17  Eric Blake  <ebb9@byu.net>
13093
13094         pipe: be robust in face of closed fds
13095         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
13096         should cause child to misbehave.
13097         * modules/pipe-tests: New module.
13098         * tests/test-pipe.c: New file.
13099         * tests/test-pipe.sh: New file.
13100         Reported by Akim Demaille.
13101
13102 2009-07-14  Bruno Haible  <bruno@clisp.org>
13103
13104         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
13105         Reported by anonymous kc.
13106
13107 2009-07-07  Jim Meyering  <meyering@redhat.com>
13108
13109         maint.mk: don't look for translatable strings in *.m4 or *.mk
13110         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
13111         when searching for translatable strings.
13112
13113 2009-07-05  Jim Meyering  <meyering@redhat.com>
13114
13115         remove superfluous parentheses in STREQ definition
13116         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
13117         * lib/getugroups.c (STREQ): Likewise.
13118         * lib/fnmatch.c (STREQ): Likewise.
13119         Spotted by Bruno Haible.
13120
13121 2009-07-04  Jim Meyering  <meyering@redhat.com>
13122
13123         argv-iter: new module
13124         * MODULES.html.sh: Add argv-iter.
13125         * lib/argv-iter.c, lib/argv-iter.h: New files.
13126         * modules/argv-iter: New file.
13127         * modules/argv-iter-tests: New file.
13128         * tests/test-argv-iter.c: Test it.
13129
13130 2009-07-04  Bruno Haible  <bruno@clisp.org>
13131
13132         Fix assertion.
13133         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
13134         contains more exact copies of a given entry than file2, leave the extra
13135         copies unpaired rather than aborting.
13136         Reported by Eric Blake.
13137
13138 2009-07-02  Bruno Haible  <bruno@clisp.org>
13139
13140         Speedup git-merge-changelog for git cherry-pick.
13141         * lib/git-merge-changelog.c (struct entries_mapping): New type.
13142         (entries_mapping_get): New function, extracted from compute_mapping.
13143         (entries_mapping_reverse_get): New function.
13144         (compute_mapping): Add a 'full' argument. Return the result in a
13145         'struct entries_mapping'.
13146         (main): Update. Access the mappings through entries_mapping_get.
13147         Reported by Eric Blake.
13148
13149 2009-07-02  Bruno Haible  <bruno@clisp.org>
13150
13151         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
13152         best_i.
13153
13154 2009-07-02  Bruno Haible  <bruno@clisp.org>
13155
13156         Speed up approximate search for matching ChangeLog entries.
13157         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
13158         argument. Call fstrcmp_bounded instead of fstrcmp.
13159         (compute_mapping, try_split_merged_entry, main): Update callers.
13160
13161 2009-07-02  Bruno Haible  <bruno@clisp.org>
13162
13163         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
13164
13165 2009-06-30  Bruno Haible  <bruno@clisp.org>
13166
13167         Reduce the number of uc_is_cased calls.
13168         * lib/unicase.h (casing_suffix_context_t): Add
13169         'first_char_except_ignorable' field.
13170         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
13171         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
13172         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
13173         Update initializer.
13174         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
13175         case-ignorable characters.
13176         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
13177         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
13178         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
13179         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
13180         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
13181
13182 2009-06-30  Bruno Haible  <bruno@clisp.org>
13183
13184         Tests for module 'unicase/ignorable'.
13185         * modules/unicase/ignorable-tests: New file.
13186         * tests/unicase/test-ignorable.c: New file, generated by
13187         gen-uni-tables.
13188
13189         Tests for module 'unicase/cased'.
13190         * modules/unicase/cased-tests: New file.
13191         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
13192         * tests/unicase/test-predicate-part1.h: New file, derived from
13193         tests/unictype/test-predicate-part1.h.
13194         * tests/unicase/test-predicate-part2.h: New file, same as
13195         tests/unictype/test-predicate-part2.h.
13196
13197         Fix evaluation of "Before C" condition of FINAL_SIGMA.
13198         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
13199         (output_casing_properties): New function.
13200         (main): Call it.
13201         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
13202         * lib/unicase/cased.c: Include unictype/bitmap.h.
13203         (uc_is_cased): Define through a bitmap lookup.
13204         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
13205         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
13206         (uc_is_case_ignorable): Define through a bitmap lookup.
13207         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
13208         lib/unictype/bitmap.h.
13209         (Depends-on): Add inline. Clean up.
13210         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
13211         lib/unictype/bitmap.h.
13212         (Depends-on): Add inline. Clean up.
13213         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
13214         recognition.
13215         * tests/unicase/test-u16-tolower.c (main): Likewise.
13216         * tests/unicase/test-u32-tolower.c (main): Likewise.
13217
13218 2009-06-30  Bruno Haible  <bruno@clisp.org>
13219
13220         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
13221         * lib/unicase/u16-casemap.c: Likewise.
13222         * lib/unicase/u32-casemap.c: Likewise.
13223
13224 2009-06-29  Bruno Haible  <bruno@clisp.org>
13225
13226         Define u32_casefold as a wrapper around u32_ct_casefold.
13227         * lib/unicase/u32-casefold.c: Update.
13228         * modules/unicase/u32-casefold (Depends-on): Add
13229         unicase/u32-ct-casefold, unicase/empty-prefix-context,
13230         unicase/empty-suffix-context. Clean up.
13231
13232         Define u16_casefold as a wrapper around u16_ct_casefold.
13233         * lib/unicase/u16-casefold.c: Update.
13234         * modules/unicase/u16-casefold (Depends-on): Add
13235         unicase/u16-ct-casefold, unicase/empty-prefix-context,
13236         unicase/empty-suffix-context. Clean up.
13237
13238         Define u8_casefold as a wrapper around u8_ct_casefold.
13239         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
13240         * lib/unicase/u8-casefold.c: Update.
13241         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
13242         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
13243
13244         Define u32_totitle as a wrapper around u32_ct_totitle.
13245         * lib/unicase/u32-totitle.c: Update.
13246         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
13247         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
13248
13249         Define u16_totitle as a wrapper around u16_ct_totitle.
13250         * lib/unicase/u16-totitle.c: Update.
13251         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
13252         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
13253
13254         Define u8_totitle as a wrapper around u8_ct_totitle.
13255         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
13256         functions.
13257         (FUNC): Delegate to U_CT_TOTITLE.
13258         * lib/unicase/u8-totitle.c: Update.
13259         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
13260         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
13261
13262         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
13263         invocation.
13264         * modules/unicase/u32-tolower (Depends-on): Add
13265         unicase/empty-prefix-context, unicase/empty-suffix-context.
13266
13267         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
13268         invocation.
13269         * modules/unicase/u16-tolower (Depends-on): Add
13270         unicase/empty-prefix-context, unicase/empty-suffix-context.
13271
13272         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
13273         * modules/unicase/u8-tolower (Depends-on): Add
13274         unicase/empty-prefix-context, unicase/empty-suffix-context.
13275
13276         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
13277         invocation.
13278         * modules/unicase/u32-toupper (Depends-on): Add
13279         unicase/empty-prefix-context, unicase/empty-suffix-context.
13280
13281         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
13282         invocation.
13283         * modules/unicase/u16-toupper (Depends-on): Add
13284         unicase/empty-prefix-context, unicase/empty-suffix-context.
13285
13286         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
13287         * modules/unicase/u8-toupper (Depends-on): Add
13288         unicase/empty-prefix-context, unicase/empty-suffix-context.
13289
13290         New module 'unicase/u32-ct-casefold'.
13291         * lib/unicase/u32-ct-casefold.c: New file.
13292         * modules/unicase/u32-ct-casefold: New file.
13293
13294         New module 'unicase/u16-ct-casefold'.
13295         * lib/unicase/u16-ct-casefold.c: New file.
13296         * modules/unicase/u16-ct-casefold: New file.
13297
13298         New module 'unicase/u8-ct-casefold'.
13299         * lib/unicase/u8-ct-casefold.c: New file.
13300         * lib/unicase/u-ct-casefold.h: New file, derived from
13301         lib/unicase/u-casefold.h.
13302         * modules/unicase/u8-ct-casefold: New file.
13303
13304         New module 'unicase/u32-ct-totitle'.
13305         * lib/unicase/u32-ct-totitle.c: New file.
13306         * modules/unicase/u32-ct-totitle: New file.
13307
13308         New module 'unicase/u16-ct-totitle'.
13309         * lib/unicase/u16-ct-totitle.c: New file.
13310         * modules/unicase/u16-ct-totitle: New file.
13311
13312         New module 'unicase/u8-ct-totitle'.
13313         * lib/unicase/u8-ct-totitle.c: New file.
13314         * lib/unicase/u-ct-totitle.h: New file, derived from
13315         lib/unicase/u-totitle.h.
13316         * modules/unicase/u8-ct-totitle: New file.
13317
13318         New module 'unicase/u32-ct-tolower'.
13319         * lib/unicase/u32-ct-tolower.c: New file.
13320         * modules/unicase/u32-ct-tolower: New file.
13321
13322         New module 'unicase/u16-ct-tolower'.
13323         * lib/unicase/u16-ct-tolower.c: New file.
13324         * modules/unicase/u16-ct-tolower: New file.
13325
13326         New module 'unicase/u8-ct-tolower'.
13327         * lib/unicase/u8-ct-tolower.c: New file.
13328         * modules/unicase/u8-ct-tolower: New file.
13329
13330         New module 'unicase/u32-ct-toupper'.
13331         * lib/unicase/u32-ct-toupper.c: New file.
13332         * modules/unicase/u32-ct-toupper: New file.
13333
13334         New module 'unicase/u16-ct-toupper'.
13335         * lib/unicase/u16-ct-toupper.c: New file.
13336         * modules/unicase/u16-ct-toupper: New file.
13337
13338         New module 'unicase/u8-ct-toupper'.
13339         * lib/unicase/u8-ct-toupper.c: New file.
13340         * modules/unicase/u8-ct-toupper: New file.
13341
13342         Add context arguments to u*_casemap functions.
13343         * lib/unicase/unicasemap.h: Include unicase.h.
13344         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
13345         suffix_context arguments.
13346         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
13347         functions.
13348         (FUNC): Add prefix_context and suffix_context arguments. Use
13349         uc_is_cased and uc_is_case_ignorable.
13350         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
13351         * lib/unicase/u16-casemap.c: Likewise.
13352         * lib/unicase/u32-casemap.c: Likewise.
13353         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
13354         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
13355         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
13356         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
13357         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
13358         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
13359
13360         New module 'unicase/u32-suffix-context'.
13361         * lib/unicase/u32-suffix-context.c: New file.
13362         * modules/unicase/u32-suffix-context: New file.
13363
13364         New module 'unicase/u16-suffix-context'.
13365         * lib/unicase/u16-suffix-context.c: New file.
13366         * modules/unicase/u16-suffix-context: New file.
13367
13368         New module 'unicase/u8-suffix-context'.
13369         * lib/unicase/u8-suffix-context.c: New file.
13370         * lib/unicase/u-suffix-context.h: New file.
13371         * modules/unicase/u8-suffix-context: New file.
13372
13373         New module 'unicase/empty-suffix-context'.
13374         * lib/unicase/empty-suffix-context.c: New file.
13375         * modules/unicase/empty-suffix-context: New file.
13376
13377         New module 'unicase/u32-prefix-context'.
13378         * lib/unicase/u32-prefix-context.c: New file.
13379         * modules/unicase/u32-prefix-context: New file.
13380
13381         New module 'unicase/u16-prefix-context'.
13382         * lib/unicase/u16-prefix-context.c: New file.
13383         * modules/unicase/u16-prefix-context: New file.
13384
13385         New module 'unicase/u8-prefix-context'.
13386         * lib/unicase/u8-prefix-context.c: New file.
13387         * lib/unicase/u-prefix-context.h: New file.
13388         * lib/unicase/context.h: New file.
13389         * modules/unicase/u8-prefix-context: New file.
13390
13391         New module 'unicase/empty-prefix-context'.
13392         * lib/unicase/empty-prefix-context.c: New file.
13393         * modules/unicase/empty-prefix-context: New file.
13394
13395         New module 'unicase/ignorable'.
13396         * lib/unicase/ignorable.c: New file.
13397         * modules/unicase/ignorable: New file.
13398
13399         New module 'unicase/cased'.
13400         * lib/unicase/caseprop.h: New file.
13401         * lib/unicase/cased.c: New file.
13402         * modules/unicase/cased: New file.
13403
13404         New functions for case mapping of substrings.
13405         * lib/unicase.h (casing_prefix_context_t): New type.
13406         (unicase_empty_prefix_context): New variable.
13407         (u8_casing_prefix_context, u16_casing_prefix_context,
13408         u32_casing_prefix_context, u8_casing_prefixes_context,
13409         u16_casing_prefixes_context, u32_casing_prefixes_context): New
13410         declarations.
13411         (casing_suffix_context_t): New type.
13412         (unicase_empty_suffix_context): New variable.
13413         (u8_casing_suffix_context, u16_casing_suffix_context,
13414         u32_casing_suffix_context, u8_casing_suffixes_context,
13415         u16_casing_suffixes_context, u32_casing_suffixes_context,
13416         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
13417         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
13418         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
13419         declarations.
13420
13421 2009-06-28  Jim Meyering  <meyering@redhat.com>
13422
13423         boostrap: indent only with spaces
13424         * build-aux/bootstrap: Indent only with spaces, never TABs.
13425
13426         bootstrap: split long lines
13427         * build-aux/bootstrap: Keep line length < 80.
13428
13429         bootstrap: sync from coreutils
13430         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
13431         just as autoreconf does.  Verify a list of prerequisite
13432         package-name,version-number pairs if defined in bootstrap.conf.
13433         Refer to README-prereq, if prerequisites are not satisfied.
13434
13435 2009-06-27  Eric Blake  <ebb9@byu.net>
13436
13437         tests: add test for bogus NULL definition
13438         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
13439         * tests/test-stdlib.c: Likewise.
13440         * tests/test-string.c: Likewise.
13441         * tests/test-locale.c: Likewise.
13442         * tests/test-unistd.c: Likewise.
13443         * modules/stdio-tests (Depends-on): Add verify.
13444         * modules/stdlib-tests (Depends-on): Likewise.
13445         * modules/string-tests (Depends-on): Likewise.
13446         * modules/locale-tests (Depends-on): Likewise.
13447         * modules/unistd-tests (Depends-on): Likewise.
13448
13449 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
13450
13451         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
13452         self-explaining comment.
13453         * m4/selinux-selinux-h: Update serial.
13454         (gl_LIBSELINUX): New macro, adding a warning for missing development
13455         packages to code extracted from...
13456         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
13457         Add warning for missing development packages here, too.
13458
13459 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
13460
13461         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
13462
13463 2009-06-25  Eric Blake  <ebb9@byu.net>
13464
13465         version-etc: fix regression
13466         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
13467         gcc.
13468         (version_etc): Use it, to catch bugs with trailing NULL.
13469         * lib/version-etc.c (version_etc_arn): Delete unused argument.
13470         (version_etc_va): Fix logic bug.
13471         * modules/version-etc-tests: Add test.
13472         * tests/test-version-etc.c: New file.
13473         * tests/test-version-etc.sh: Likewise.
13474
13475 2009-06-25  Sam Steingold  <sds@gnu.org>
13476
13477         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
13478         mbtowc declaration.
13479
13480 2009-06-25  Eric Blake  <ebb9@byu.net>
13481
13482         fpurge: migrate into <stdio.h>
13483         * lib/fpurge.h: Delete...
13484         * lib/stdio.in.h (fpurge): ...and declare here, instead.
13485         * lib/fpurge.c (fpurge): Change declaring header.
13486         * modules/fpurge (Files): Drop deleted file.
13487         (Depends-on): Add stdio.
13488         (configure.ac): Set witness.
13489         * modules/stdio (Makefile.am): Support fpurge macros.
13490         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
13491         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
13492         * lib/fflush.c: Update client.
13493         * tests/test-fpurge.c: Likewise.
13494         * NEWS: Mention the change.
13495
13496 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13497
13498         * lib/argp-version-etc.c (program_authors): Add const
13499         qualifier.
13500         * lib/version-etc.c: Fix typos in the comments.
13501         * modules/argp-version-etc: Depends on version-etc.
13502
13503 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13504
13505         argp-version-etc: new module.
13506
13507         * lib/argp-version-etc.c: New file.
13508         * lib/argp-version-etc.h: New file.
13509         * modules/argp-version-etc: New file.
13510         * modules/argp-version-etc-tests: New file.
13511         * tests/test-argp-version-etc.c: New test.
13512         * tests/test-argp-version-etc-1.sh: New test.
13513
13514 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13515
13516         Provide additional interfaces and documentation for version-etc
13517         module.
13518
13519         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
13520         interfaces.
13521         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
13522         prototypes.
13523
13524 2009-06-24  Bruno Haible  <bruno@clisp.org>
13525
13526         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
13527         HAVE_LIB${NAME} macro.
13528         Reported by Sam Steingold <sds@gnu.org>.
13529
13530 2009-06-23  Simon Josefsson  <simon@josefsson.org>
13531
13532         * modules/hash-tests (test_hash_LDADD): Link to libintl when
13533         needed.
13534
13535 2009-06-21  Bruno Haible  <bruno@clisp.org>
13536
13537         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
13538         work.
13539         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
13540         together with LIB${NAME}, LTLIB${NAME}.
13541         Reported by Sam Steingold <sds@gnu.org>.
13542
13543 2009-06-20  Jim Meyering  <meyering@redhat.com>
13544
13545         tests: make sc_require_test_exit_idiom more generic
13546         * top/maint.mk (Exit_witness_file): New overridable variable.
13547         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
13548         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
13549
13550 2009-06-19  Jim Meyering  <meyering@redhat.com>
13551
13552         hash: reverse order of src/dst parameters in an internal interface
13553         * lib/hash.c (transfer_entries): Reverse order of parameters to
13554         put DST before SRC.  Adjust callers.
13555
13556         tests: test-hash: avoid wholesale duplication
13557         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
13558         Instead, use a loop and add a single conditional.
13559
13560         tests: test-hash: allow seed selection via a command line argument
13561         * tests/test-hash.c (get_seed): New function.
13562         (main): Use it.
13563
13564 2009-06-19  Eric Blake  <ebb9@byu.net>
13565
13566         hash: avoid memory leak on allocation failure
13567         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
13568         failure.  Factor repeated algorithm...
13569         (transfer_entries): ...into new helper routine.
13570         (hash_delete): React to hash_rehash return value.
13571
13572         hash: reduce memory pressure in hash_rehash no-op case
13573         * lib/hash.c (next_prime): Avoid overflow.
13574         (hash_initialize): Factor bucket size computation...
13575         (compute_bucket_size): ...into new helper function.
13576         (hash_rehash): Use new function and open coding to reduce memory
13577         pressure, and avoid a memory leak in USE_OBSTACK code.
13578         Reported by Jim Meyering.
13579
13580 2009-06-18  Eric Blake  <ebb9@byu.net>
13581
13582         hash: make rotation more obvious
13583         * modules/hash (Depends-on): Add bitrotate and stdint.
13584         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
13585         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
13586         (SIZE_MAX): Rely on headers for definition.
13587         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
13588         (raw_hasher): Use rotr_sz.
13589         Suggested by Jim Meyering.
13590
13591         hash: fix memory leak in last patch
13592         * lib/hash.c (hash_rehash): Avoid memory leak.
13593
13594         hash: avoid no-op rehashing
13595         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
13596
13597         hash: provide default callback functions
13598         * lib/hash.c (raw_hasher, raw_comparator): New functions.
13599         (hash_initialize): Use them as defaults.
13600         * tests/test-hash.c (main): Test this.
13601
13602         hash: minor optimization
13603         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
13604         when possible.
13605         (hash_initialize): Document this promise.
13606         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
13607         * tests/test-hash.c (hash_compare_strings): Test this.
13608
13609 2009-06-18  Bruno Haible  <bruno@clisp.org>
13610
13611         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
13612         going to be replaced anyway.
13613
13614 2009-06-18  Bruno Haible  <bruno@clisp.org>
13615
13616         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
13617         in one place.
13618         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
13619         be replaced anyway.
13620
13621 2009-06-18  Eric Blake  <ebb9@byu.net>
13622
13623         hash: check for resize before insertion
13624         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
13625         threshold before insertion, so that a pathological hash_rehash
13626         that fills every bucket can still trigger another rehash.
13627
13628 2009-06-18  Jim Meyering  <meyering@redhat.com>
13629
13630         hash-tests: add a loop around the small tests
13631         * tests/test-hash.c (main): Repeat small tests with selected
13632         small initial table sizes.
13633
13634 2009-06-17  Eric Blake  <ebb9@byu.net>
13635
13636         hash: minor cleanups
13637         * lib/hash.h (hash_entry): Make opaque, by moving...
13638         * lib/hash.c (hash_entry): ...here.
13639         (hash_insert): Clarify restrictions on what can be inserted.
13640         (hash_get_next): Clarify when it is safe to remove an element
13641         during traversal.
13642         (check_tuning): Skip verification when tuning is known safe.
13643         (hash_initialize): Clarify restrictions on tuning.
13644
13645 2009-06-17  Jim Meyering  <jim@meyering.net>
13646         and Eric Blake  <ebb9@byu.net>
13647
13648         hash-tests: new module
13649         * modules/hash-tests: New file.
13650         * tests/test-hash.c: New file.
13651
13652 2009-06-17  Eric Blake  <ebb9@byu.net>
13653
13654         strstr-simple: document new module
13655         * MODULES.html.sh: Document new module.
13656
13657         strstr, strcasestr: replace on platforms with broken memchr
13658         * modules/strstr: Split into...
13659         * modules/strstr-simple: ...new module that does not care about
13660         performance, but does care about glibc bug.
13661         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
13662         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
13663         if platform memchr is broken, per Debian bug 521737.
13664         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
13665         memchr.
13666         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
13667         * doc/posix-functions/strstr.texi (strstr): Document the fix.
13668         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
13669         * modules/mountlist (Depends-on): Add strstr-simple.
13670         * modules/gen-uni-tables (Depends-on): Likewise.
13671         * modules/argz (Depends-on): Add strstr.
13672
13673 2009-06-17  Bruno Haible  <bruno@clisp.org>
13674
13675         * modules/posix_spawn-internal (Depends-on): Add errno.
13676
13677 2009-06-17  Bruno Haible  <bruno@clisp.org>
13678
13679         Define missing ESTALE on Interix 3.5.
13680         * lib/errno.in.h (ESTALE): Assign a value if missing.
13681         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
13682         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
13683         missing.
13684         * doc/posix-headers/errno.texi: Mention the Interix bug.
13685         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
13686
13687 2009-06-15  Eric Blake  <ebb9@byu.net>
13688
13689         memchr, memchr2: add valgrind exception
13690         * lib/memchr.valgrind: New file.
13691         * lib/memchr2.valgrind: New file.
13692         * modules/memchr (Files): Distribute valgrind file.
13693         * modules/memchr2 (Files): Likewise.
13694
13695         docs: memchr is no longer obsolete
13696         * MODULES.html.sh: Move memchr from obsolete to string.h section.
13697         * lib/string.in.h (memchr): Simplify logic.
13698
13699 2009-06-14  Jim Meyering  <meyering@redhat.com>
13700
13701         link-follow: fix the "checking..." message to not mention trailing slash
13702         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
13703         never considered trailing slashes.
13704
13705 2009-06-14  Bruno Haible  <bruno@clisp.org>
13706
13707         * m4/memchr.m4: Mention also the bug on IA-64.
13708         * doc/posix-functions/memchr.texi: Likewise.
13709
13710 2009-06-12  Eric Blake  <ebb9@byu.net>
13711
13712         memchr: detect broken x86_64 and alpha implementations
13713         * modules/memchr-tests (Depends-on): Move mmap detection...
13714         * modules/memchr (Depends-on): ...here.
13715         (configure.ac): Set indicator.
13716         * lib/string.in.h (memchr): Declare replacement.
13717         * modules/string (Makefile.am): Trigger replacement.
13718         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
13719         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
13720         bugs.
13721         * doc/posix-functions/memchr.texi (memchr): Document the bug.
13722         * modules/getpagesize (License): Relax license.
13723
13724 2009-06-11  Bruno Haible  <bruno@clisp.org>
13725
13726         * lib/idpriv.h: Add more references.
13727
13728 2009-06-08  Bruno Haible  <bruno@clisp.org>
13729
13730         Tests for module 'idpriv-droptemp'.
13731         * modules/idpriv-droptemp-tests: New file.
13732         * tests/test-idpriv-droptemp.sh: New file.
13733         * tests/test-idpriv-droptemp.su.sh: New file.
13734         * tests/test-idpriv-droptemp.c: New file.
13735
13736         New module 'idpriv-droptemp'.
13737         * lib/idpriv-droptemp.c: New file.
13738         * modules/idpriv-droptemp: New file.
13739
13740 2009-06-08  Bruno Haible  <bruno@clisp.org>
13741
13742         Tests for module 'idpriv-drop'.
13743         * modules/idpriv-drop-tests: New file.
13744         * tests/test-idpriv-drop.sh: New file.
13745         * tests/test-idpriv-drop.su.sh: New file.
13746         * tests/test-idpriv-drop.c: New file.
13747
13748         New module 'idpriv-drop'.
13749         * lib/idpriv.h: New file.
13750         * lib-idpriv-drop.c: New file.
13751         * m4/idpriv.m4: New file.
13752         * modules/idpriv-drop: New file.
13753
13754 2009-06-08  Bruno Haible  <bruno@clisp.org>
13755
13756         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
13757         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
13758         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
13759         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
13760         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
13761         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
13762         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
13763
13764 2009-06-08  Eric Blake  <ebb9@byu.net>
13765
13766         test-strstr: use memory fence, when possible
13767         * tests/test-strstr.c (main): Use memory fence, in order to be
13768         more likely to trigger Debian bug 521737.
13769         * modules/strstr-tests (Files): Pull in additional files.
13770
13771         memchr: no longer obsolete, for wider field testing
13772         * modules/memchr (Status, Notice): Delete, this module is no
13773         longer obsolete.
13774         * modules/vasnprintf (Depends-on): Add memchr.
13775
13776 2009-06-07  Jim Meyering  <meyering@redhat.com>
13777
13778         hash: declare some functions with the warn_unused_result attribute
13779         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
13780
13781 2009-06-07  Bruno Haible  <bruno@clisp.org>
13782
13783         * tests/test-alignof.c: Don't test int64_t if it does not exist.
13784         Reported by Eric Blake.
13785
13786 2009-06-06  Eric Blake  <ebb9@byu.net>
13787
13788         test-alignof: fix typo with long double
13789         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
13790         compiler error.
13791
13792 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
13793
13794         Escape non-texinfo { and }s.
13795         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
13796         markup error.
13797
13798 2009-06-04  Jim Meyering  <meyering@redhat.com>
13799
13800         gitlog-to-changelog: don't infloop on an empty commit log
13801         * build-aux/gitlog-to-changelog: Warn about an empty log message.
13802         Reported by Boris Petersen <transacid@centerim.org>.
13803
13804 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
13805
13806         version-etc: extend for packagers
13807         Add three new configure options, intended for packagers:
13808           --with-packager="packager name"
13809           --with-packager-version="packager-specific version"
13810           --with-packager-bug-reports="packager bug reporting"
13811         An example with coreutils:
13812           $ ./configure \
13813             --with-packager=Gentoo \
13814             --with-packager-bug-report=http://bugs.gentoo.org/ \
13815             --with-packager-version="patchset 1.6"
13816           $ ./src/ls --version | head -n2
13817           ls (GNU coreutils) 7.1-dirty
13818           Packaged by Gentoo (patchset 1.6)
13819         Note that the bug reporting info via --help doesn't show up because
13820         coreutils uses its own custom emit_bug_reporting_address() implementation
13821         in src/system.h.  If it didn't, it'd look like:
13822           $ ./src/ls --help | tail -n4
13823           Report bugs to <bug-coreutils@gnu.org>.
13824           Report Gentoo bugs to <http://bugs.gentoo.org/>.
13825           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
13826           General help using GNU software: <http://www.gnu.org/gethelp/>.
13827         * lib/version-etc.c: Print new information, if provided.
13828         * m4/version-etc.m4: New file.
13829         * modules/version-etc (Files): Add m4/version-etc.m4.
13830         (configure.ac): Add gl_VERSION_ETC.
13831
13832 2009-05-31  Bruno Haible  <bruno@clisp.org>
13833
13834         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
13835         and 'int64_t'.
13836         * modules/alignof-tests (Dependencies): Add stdint.
13837         Reported by Eric Blake.
13838
13839 2009-05-31  Bruno Haible  <bruno@clisp.org>
13840
13841         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
13842         restriction due to compiler bugs.
13843         Reported by Eric Blake.
13844
13845 2009-05-31  Simon Josefsson  <simon@josefsson.org>
13846             Bruno Haible  <bruno@clisp.org>
13847
13848         Fix test-alignof failure.
13849         * lib/alignof.h (alignof_slot): New macro.
13850         (alignof_type): New macro, with the same semantics as the previous
13851         'alignof'.
13852         (alignof): Alias to alignof_slot.
13853         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
13854         check that the results are usable as constant expressions.
13855
13856 2009-05-31  Bruno Haible  <bruno@clisp.org>
13857
13858         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
13859         * tests/test-memchr.c (main): Check that memchr does not read past the
13860         first occurrence of the byte.
13861         * tests/test-strstr.c (main): Update comment.
13862         Suggested by Eric Blake.
13863
13864 2009-05-30  Bruno Haible  <bruno@clisp.org>
13865
13866         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
13867         detail how to use dumpbin.
13868         Reported by David Byron <dbyron@dbyron.com>.
13869
13870 2009-06-02  Simon Josefsson  <simon@josefsson.org>
13871
13872         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
13873
13874 2009-06-02  Simon Josefsson  <simon@josefsson.org>
13875
13876         * m4/manywarnings.m4: Add GCC 4.4 warnings.
13877
13878 2009-05-28  Bruno Haible  <bruno@clisp.org>
13879
13880         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
13881         build-aux/ files.
13882
13883 2009-05-28  Simon Josefsson  <simon@josefsson.org>
13884
13885         * gnulib-tool (func_import): Transform license on build-aux/ files too.
13886
13887 2009-05-27  Simon Josefsson  <simon@josefsson.org>
13888
13889         * gnulib-tool (sed_transform_main_lib_file)
13890         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
13891         regexps.
13892
13893 2009-05-26  Simon Josefsson  <simon@josefsson.org>
13894
13895         * tests/test-strstr.c: Add another self-test.
13896         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
13897         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
13898
13899 2009-05-23  Bruno Haible  <bruno@clisp.org>
13900
13901         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
13902         change.
13903
13904 2009-05-21  Bruno Haible  <bruno@clisp.org>
13905
13906         Simplify use of mode_t varargs.
13907         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
13908         uses 'mode_t' or 'int'.
13909         * lib/openat.c (openat): Likewise.
13910         * lib/open-safer.c (open_safer): Likewise.
13911         * m4/mode_t.m4: New file.
13912         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
13913         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
13914         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
13915         * modules/open (Files): Add m4/mode_t.m4.
13916         * modules/openat (Files): Likewise.
13917         * modules/fcntl-safer (Files): Likewise.
13918         Suggested by Eric Blake.
13919
13920 2009-05-21  Pádraig Brady  <P@draigbrady.com>
13921
13922         * doc/glibc-functions/fallocate.texi: New file.
13923         * doc/gnulib.texi: Include it.
13924
13925 2009-05-21  Eric Blake  <ebb9@byu.net>
13926             Bruno Haible  <bruno@clisp.org>
13927
13928         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
13929         invocations.
13930         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13931
13932 2009-05-21  Eric Blake  <ebb9@byu.net>
13933             Bruno Haible  <bruno@clisp.org>
13934
13935         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
13936         include_next. Fix of 2008-11-20 commit.
13937         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
13938         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
13939         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
13940         NEXT_MATH_H.
13941         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
13942         instead of NEXT_MATH_H.
13943
13944 2009-05-21  Bruno Haible  <bruno@clisp.org>
13945
13946         Avoid redefinition warnings for SIZE_MAX.
13947         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
13948         Reported by Simon Josefsson.
13949
13950 2009-05-21  Bruno Haible  <bruno@clisp.org>
13951
13952         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
13953         AC_CACHE_VAL.
13954
13955 2009-05-20  Bruno Haible  <bruno@clisp.org>
13956
13957         Make zeroptr.h work on mingw.
13958         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
13959         mprotect.
13960         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
13961         * modules/memchr2-tests (configure.ac): Likewise.
13962         * modules/memcmp-tests (configure.ac): Likewise.
13963         * modules/memmem-tests (configure.ac): Likewise.
13964         * modules/memrchr-tests (configure.ac): Likewise.
13965         Reported by Simon Josefsson.
13966
13967 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13968
13969         * tests/test-glob.c: Include string.h for strcmp prototype.
13970
13971 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13972
13973         * modules/getdelim (Depends-on): Add explicit stdint, although it
13974         was implicitly already pulled in via realloc-posix.
13975         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
13976
13977 2009-05-20  Simon Josefsson  <simon@josefsson.org>
13978
13979         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
13980         G. Christensen" <tgc@jupiterrise.com>.
13981         * m4/sys_socket_h.m4: Check for sa_family_t.
13982         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
13983         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
13984         * tests/test-sys_socket.c: Check that sa_family_t works.
13985
13986 2009-05-18  Eric Blake  <ebb9@byu.net>
13987
13988         maint.mk: allow gnulib_dir in VPATH build
13989         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
13990
13991 2009-05-15  Jim Meyering  <meyering@redhat.com>
13992
13993         maint.mk: Give gnulib_dir a default definition.
13994         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
13995         Thus, most packages no longer need to specify this variable in cfg.mk
13996
13997 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
13998
13999         rename.m4: fix typos that would make non-mingw cross-configure fail
14000         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
14001
14002 2009-05-13  Eric Blake  <ebb9@byu.net>
14003
14004         mmap-anon: avoid out-of-order autoconf expansion
14005         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
14006         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
14007         * modules/memchr-tests (Depends-on): Add extensions.
14008         * modules/memchr2-tests (Depends-on): Add extensions.
14009         * modules/memcmp-tests (Depends-on): Add extensions.
14010         * modules/memmem-tests (Depends-on): Add extensions.
14011         * modules/memrchr-tests (Depends-on): Add extensions.
14012
14013 2009-05-13  Bruno Haible  <bruno@clisp.org>
14014
14015         Make some tests ISO C 99 compliant.
14016         * tests/zerosize-ptr.h: New file.
14017         * tests/test-memchr.c: Include zerosize-ptr.h.
14018         (main): Use a zero-size object pointer instead of NULL.
14019         * tests/test-memchr2.c: Include zerosize-ptr.h.
14020         (main): Use a zero-size object pointer instead of NULL.
14021         * tests/test-memcmp.c: Include zerosize-ptr.h.
14022         (main): Use a zero-size object pointer instead of NULL.
14023         * tests/test-memmem.c: Include zerosize-ptr.h.
14024         (main): Use a zero-size object pointer instead of NULL.
14025         * tests/test-memrchr.c: Include zerosize-ptr.h.
14026         (main): Use a zero-size object pointer instead of NULL.
14027         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
14028         m4/mmap-anon.m4.
14029         (Depends-on): Add getpagesize.
14030         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14031         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
14032         m4/mmap-anon.m4.
14033         (Depends-on): Add getpagesize.
14034         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14035         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
14036         m4/mmap-anon.m4.
14037         (Depends-on): Add getpagesize.
14038         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14039         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
14040         m4/mmap-anon.m4.
14041         (Depends-on): Add getpagesize.
14042         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14043         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
14044         m4/mmap-anon.m4.
14045         (Depends-on): Add getpagesize.
14046         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14047
14048 2009-05-12  Bruno Haible  <bruno@clisp.org>
14049
14050         Tests for module 'alignof'.
14051         * modules/alignof-tests: New file.
14052         * tests/test-alignof.c: New file.
14053
14054 2009-05-12  Bruno Haible  <bruno@clisp.org>
14055
14056         Fix alignof macro.
14057         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
14058         vendor compilers that are always correct.
14059
14060 2009-05-12  Bruno Haible  <bruno@clisp.org>
14061
14062         Make the MAP_ANONYMOUS detection work on HP-UX 11.
14063         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
14064         not whether its fully works.
14065
14066 2009-05-12  Bruno Haible  <bruno@clisp.org>
14067
14068         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
14069
14070 2009-05-12  Jim Meyering  <meyering@redhat.com>
14071
14072         * top/maint.mk: Adjust backslash alignment.
14073
14074 2009-05-11  Simon Josefsson  <simon@josefsson.org>
14075
14076         * top/maint.mk: Make $(srcdir)/build-aux configurable.
14077
14078 2009-05-11  Eric Blake  <ebb9@byu.net>
14079
14080         argp: avoid undefined behavior
14081         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
14082         macros.
14083
14084 2009-05-08  Simon Josefsson  <simon@josefsson.org>
14085
14086         * tests/test-vc-list-files-git.sh: Do git config of user.email and
14087         user.name to prevent git commit from complaining.
14088
14089 2009-05-10  Bruno Haible  <bruno@clisp.org>
14090
14091         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
14092         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
14093         it rewrites every file name only once.
14094         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
14095
14096 2009-05-08  Bruno Haible  <bruno@clisp.org>
14097
14098         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
14099         instead of 'max'.
14100
14101 2009-05-08  Simon Josefsson  <simon@josefsson.org>
14102
14103         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
14104         sockaddr_storage test.
14105
14106 2009-05-07  Simon Josefsson  <simon@josefsson.org>
14107
14108         * modules/sys_socket (Makefile.am): Substitute
14109         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
14110         * m4/sys_socket_h.m4: Check for sockaddr_storage.
14111         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
14112         * tests/test-sys_socket.c: Check sockaddr_storage.
14113
14114 2009-05-08  Bruno Haible  <bruno@clisp.org>
14115
14116         New module 'alignof'.
14117         * lib/alignof.h: New file.
14118         * modules/alignof: New file.
14119
14120 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14121             Bruno Haible  <bruno@clisp.org>
14122
14123         Fix test-file-has-acl on FreeBSD.
14124         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
14125         mask is implicitly added.
14126         * tests/test-file-has-acl.c: Include <signal.h>.
14127         (main): Terminate the test after 5 seconds.
14128         * modules/acl-tests (configure.ac): Check for alarm function.
14129
14130 2009-05-04  Bruno Haible  <bruno@clisp.org>
14131
14132         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
14133         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
14134         * modules/errno (configure.ac): Drop AC_REQUIRE.
14135         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
14136         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
14137
14138 2009-05-04  Simon Josefsson  <simon@josefsson.org>
14139
14140         * modules/glob-tests: New module.
14141         * tests/test-glob.c: Add.
14142
14143 2009-05-04  Simon Josefsson  <simon@josefsson.org>
14144
14145         * modules/fnmatch-tests: New module.
14146         * tests/test-fnmatch.c: Add.
14147
14148 2009-05-04  Eric Blake  <ebb9@byu.net>
14149
14150         maint: make the new no-submodule-changes rule VPATH-safe
14151         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
14152
14153 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14154             Bruno Haible  <bruno@clisp.org>
14155
14156         acl: Fix infinite loop on FreeBSD.
14157         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
14158         of return value from acl_get_entry.
14159         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
14160         Likewise.
14161
14162 2009-05-03  Bruno Haible  <bruno@clisp.org>
14163
14164         * lib/acl-internal.h (acl_entries): Clarify return value.
14165         * lib/acl_entries.c (acl_entries): Likewise.
14166
14167 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14168
14169         Bug fix in acl module.
14170         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
14171
14172 2009-05-03  Bruno Haible  <bruno@clisp.org>
14173
14174         Create gperf-generated file in the source dir, not in the build dir.
14175         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
14176         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
14177         * modules/unicase/locale-language (unicase/locale-languages.h):
14178         Likewise.
14179         * modules/unicase/special-casing (unicase/special-casing-table.h):
14180         Likewise.
14181         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
14182         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
14183         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
14184         Reported by Ralf Wildenhues.
14185
14186 2009-05-03  Bruno Haible  <bruno@clisp.org>
14187
14188         * modules/fnmatch (Description, configure.ac): Taken from
14189         fnmatch-posix.
14190         * modules/fnmatch-posix: Turn into a symbolic reference to the
14191         'fnmatch' module, and deprecate.
14192         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
14193
14194 2009-05-03  Bruno Haible  <bruno@clisp.org>
14195
14196         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
14197         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
14198         Reported by Ralf Wildenhues.
14199
14200 2009-05-04  Simon Josefsson  <simon@josefsson.org>
14201
14202         * m4/fnmatch.m4: Fix fnmatch re-define.
14203
14204 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14205
14206         priv-set: new module and tests; adapt write-any-file
14207         * lib/priv-set.c: New file.
14208         * lib/priv-set.h: New file.
14209         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
14210         * lib/write-any-file.c: Simplify by using priv-set module.
14211         * m4/priv-set.m4: New file.
14212         * modules/priv-set: New file.
14213         * modules/unlinkdir: Add dependency on priv-set module.
14214         * modules/write-any-file: Likewise.
14215
14216         Tests for module 'priv-set'.
14217         * modules/priv-set-tests: New file.
14218         * tests/test-priv-set.c: New file.
14219
14220 2009-05-03  Jim Meyering  <meyering@redhat.com>
14221             Bruno Haible  <bruno@clisp.org>
14222
14223         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
14224         use the converted UTF-8 variant of the name instead.
14225
14226 2009-05-03  Jim Meyering  <meyering@redhat.com>
14227
14228         tests: tighten some getdate tests
14229         * tests/test-getdate.c (main): Tighten tests: require equality,
14230         not just greater than.  Set TZ envvar to UTC0.
14231
14232 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
14233
14234         getdate: correctly interpret "next monday" when run on a Monday
14235         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
14236         that e.g., "next tues" (when run on a tuesday) results in a date
14237         that is one week in the future, and not today's date.
14238         I.e., add a week when the wday is the same as the current one.
14239         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
14240         and earlier by Martin Bernreuther and Jan Minář.
14241         * tests/test-getdate.c (main): Check that "next DAY" is always in
14242         the future and that "last DAY" is always in the past.
14243
14244 2009-05-02  Jim Meyering  <meyering@redhat.com>
14245
14246         build: ensure that a release build fails when a submodule is unclean
14247         * top/maint.mk (no-submodule-changes): New rule.
14248         (alpha beta major): Depend on it.
14249
14250 2009-05-02  Bruno Haible  <bruno@clisp.org>
14251
14252         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
14253         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
14254         shell variable gl_fnmatch_required to detect which variant is
14255         requested.
14256         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
14257         gl_FUNC_FNMATCH_POSIX.
14258         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
14259         exclude fnmatch-posix.
14260
14261 2009-05-02  Bruno Haible  <bruno@clisp.org>
14262
14263         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
14264         * modules/mbsrtowcs (License): Change to LGPLv2+.
14265         * modules/strnlen1 (License): Likewise.
14266         Reported by Simon Josefsson.
14267
14268 2009-05-02  Bruno Haible  <bruno@clisp.org>
14269
14270         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
14271         "cross".
14272         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
14273         gnulib-tool was called with option --source-base=lib.
14274
14275 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14276
14277         Use automake *-local hooks without commands, for extensibility.
14278         * modules/localcharset (Makefile.am): Rename install-exec-local
14279         rule to install-exec-localcharset, and make it a prerequisite of
14280         install-exec-local.  Likewise, rename the uninstall-local rule to
14281         uninstall-localcharset, and make it a prerequisite of the former.
14282
14283 2009-05-01  Bruno Haible  <bruno@clisp.org>
14284
14285         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
14286         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
14287         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
14288         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
14289         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
14290         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
14291         m4/locale-zh.m4, m4/codeset.m4.
14292
14293         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
14294         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
14295         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
14296         m4/locale-zh.m4.
14297
14298         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
14299         REPLACE_WCRTOMB if mbstate_t must be replaced.
14300         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
14301         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
14302
14303 2009-05-01  Bruno Haible  <bruno@clisp.org>
14304
14305         Avoid compiler warnings when redefining macros defined by <libintl.h>.
14306         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
14307         dngettext, dcngettext, textdomain, bindtextdomain,
14308         bind_textdomain_codeset): Undefine before redefining.
14309
14310 2009-04-30  Bruno Haible  <bruno@clisp.org>
14311
14312         Fix bug introduced on 2009-04-25.
14313         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
14314         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
14315         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
14316         is defined.
14317         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
14318         is defined.
14319         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
14320         is defined.
14321         Reported by Elbert_Pol <elbert.pol@gmail.com>.
14322
14323 2009-04-28  Bruno Haible  <bruno@clisp.org>
14324
14325         Comment tweaks.
14326         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
14327         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
14328         * lib/unicase.h (u*_casexfrm): Likewise.
14329         Reported by Paolo Bonzini.
14330
14331 2009-04-28  Bruno Haible  <bruno@clisp.org>
14332
14333         Fix a compilation error.
14334         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
14335         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
14336         Reported by Jim Meyering.
14337
14338 2009-04-27  Bruno Haible  <bruno@clisp.org>
14339
14340         New module 'libunistring'.
14341         * modules/libunistring: New file.
14342         * m4/libunistring.m4: New file.
14343         * MODULES.html.sh (Unicode string functions): Add it.
14344
14345 2009-04-27  Eric Blake  <ebb9@byu.net>
14346
14347         maint.mk: allow package-specific header to provide <config.h>
14348         * top/maint.mk (sc_require_config_h): New variable.
14349         (sc_require_config_h, sc_require_config_h_first): Use it.
14350
14351 2009-04-27  Simon Josefsson  <simon@josefsson.org>
14352
14353         * top/maint.mk (sc_avoid_if_before_free): Except
14354         useless-if-before-free script.
14355
14356 2009-04-27  Eric Blake  <ebb9@byu.net>
14357
14358         maintainer-makefile: depend on all required helper scripts
14359         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
14360         useless-if-before-free.
14361         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
14362         version, rather than assuming gnulib checkout is available.
14363         Reported by Simen Josefsson.
14364
14365 2009-04-26  Bruno Haible  <bruno@clisp.org>
14366
14367         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
14368         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
14369         "../" or "..".
14370
14371 2009-04-26  Bruno Haible  <bruno@clisp.org>
14372
14373         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
14374         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
14375         AC_LIB_HAVE_LINKFLAGS.
14376
14377 2009-04-26  Bruno Haible  <bruno@clisp.org>
14378
14379         Simplify calling convention of u*_conv_from_encoding.
14380         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
14381         u32_conv_from_encoding): Expect a resultbuf argument and return the
14382         result directly as a pointer.
14383         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
14384         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
14385         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
14386         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
14387         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
14388         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
14389         Update.
14390         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
14391         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
14392         * lib/vasnprintf.c (VASNPRINTF): Update.
14393         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
14394         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
14395         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
14396         * NEWS: Mention the change.
14397
14398 2009-04-26  Bruno Haible  <bruno@clisp.org>
14399
14400         Simplify calling convention of u*_conv_to_encoding.
14401         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
14402         u32_conv_to_encoding): Expect a resultbuf argument and return the
14403         result directly as a pointer.
14404         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
14405         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
14406         freeing scaled_offsets if mem_iconveha failed.
14407         * lib/unicase/u-casexfrm.h (FUNC): Update.
14408         * lib/uninorm/u-normxfrm.h (FUNC): Update.
14409         * lib/vasnprintf.c (VASNPRINTF): Update.
14410         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
14411         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
14412         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
14413         * NEWS: Mention the change.
14414
14415 2009-04-26  Bruno Haible  <bruno@clisp.org>
14416
14417         Avoid test failures on AIX and OSF/1.
14418         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
14419         malloc(0).
14420         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
14421         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
14422         Likewise.
14423         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
14424         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
14425         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
14426         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
14427         * doc/posix-functions/malloc.texi: Document the portability problem
14428         related to malloc(0).
14429
14430 2009-04-26  Bruno Haible  <bruno@clisp.org>
14431
14432         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
14433         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
14434         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
14435
14436 2009-04-25  Bruno Haible  <bruno@clisp.org>
14437
14438         Avoid link error when creating a namespace clean library.
14439         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
14440         as macro with arguments if already defined as an alias.
14441         * lib/signbitf.c (gl_signbitf): Don't undefine.
14442         * lib/signbitd.c (gl_signbitd): Don't undefine.
14443         * lib/signbitl.c (gl_signbitl): Don't undefine.
14444
14445 2009-04-25  Jim Meyering  <meyering@redhat.com>
14446
14447         vc-list-files: fix another quoting bug
14448         * build-aux/vc-list-files: Avoid sed backslash expansion
14449         of pathological directory names.
14450
14451 2009-04-25  Eric Blake  <ebb9@byu.net>
14452
14453         vc-list-files: fix shell quoting error
14454         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
14455         timestamp.
14456
14457 2009-04-25  Jim Meyering  <meyering@redhat.com>
14458
14459         vc-list-files: restore lost functionality with subdir argument
14460         * build-aux/vc-list-files: When given a non-"." sub-directory
14461         argument, substitute the $dir/ prefix back onto each resulting name.
14462         Otherwise, coreutils' root_tests check would fail.
14463
14464 2009-04-24  Eric Blake  <ebb9@byu.net>
14465
14466         vc-list-files: ignore git symlinks
14467         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
14468         than ls-files, to ignore git symlinks.
14469
14470         maint.mk: import improvements from m4
14471         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
14472         (move_if_change): Delete unused macro.
14473         (news-date-check, vc-diff-check): Support VPATH builds.
14474         (announcement): Likewise.  Split --bootstrap-tools list...
14475         (boostrap-tools): ...into separate list, which can be overridden
14476         in cfg.mk.
14477         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
14478         requiring dependency on useless-if-before-free module.
14479         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
14480         Support VPATH builds.
14481
14482 2009-04-24  Jim Meyering  <meyering@redhat.com>
14483
14484         maint.mk: remove coreutils-specific rules and variables
14485         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
14486         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
14487         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
14488
14489         maint.mk: remove obsolete rule
14490         * top/maint.mk (rel-check): Remove rule.
14491         (WGET, WGETFLAGS): Remove now-unused variables.
14492
14493 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14494
14495         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
14496         consistency.
14497
14498         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
14499         '$(PATH_SEPARATOR)' instead of ':'.
14500
14501 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14502
14503         * lib/getopt1.c (main): Use 'const' for static array.
14504
14505 2009-04-24  Simon Josefsson  <simon@josefsson.org>
14506
14507         * top/maint.mk: Sync with coreutils.
14508         * NEWS: Explain incompatibilities.
14509
14510 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14511             Bruno Haible  <bruno@clisp.org>
14512
14513         Fix cross-compilation results.
14514         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
14515         statement, as third argument of AC_TRY_RUN.
14516         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
14517         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
14518         Likewise.
14519         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
14520         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
14521         Likewise.
14522         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
14523         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
14524         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
14525
14526 2009-04-20  Bruno Haible  <bruno@clisp.org>
14527
14528         Avoid test failure on mingw.
14529         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
14530
14531 2009-04-20  Bruno Haible  <bruno@clisp.org>
14532
14533         Avoid compilation error on mingw.
14534         * modules/localename-tests (Depends-on): Add locale.
14535
14536 2009-04-19  Bruno Haible  <bruno@clisp.org>
14537
14538         Support for building a shared library on Windows platforms.
14539         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
14540         (main): Test the presence of UNINORM_NFC here.
14541         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
14542         (main): Test the presence of UNINORM_NFD here.
14543         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
14544         (main): Test the presence of UNINORM_NFKC here.
14545         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
14546         (main): Test the presence of UNINORM_NFKD here.
14547
14548 2009-04-19  Bruno Haible  <bruno@clisp.org>
14549
14550         Avoid a compiler warning.
14551         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
14552         Change type of variable 'sequence'.
14553
14554 2009-04-19  Bruno Haible  <bruno@clisp.org>
14555
14556         * modules/configmake (Makefile.am): When the contents of configmake.h
14557         does not change, arrange to preserve its modification time.
14558
14559 2009-04-17  Simon Josefsson  <simon@josefsson.org>
14560
14561         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
14562         gettext domain.
14563
14564 2009-04-16  Jim Meyering  <meyering@redhat.com>
14565
14566         useless-if-before-free: improve conversion code
14567         * build-aux/useless-if-before-free: Adjust code-in-comment to match
14568         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
14569
14570 2009-04-14  Bruno Haible  <bruno@clisp.org>
14571
14572         * modules/fcntl (Depends-on): Add extensions.
14573         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
14574
14575 2009-04-12  Ben Pfaff  <blp@gnu.org>
14576
14577         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
14578         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
14579
14580 2009-03-20  Ben Pfaff  <blp@gnu.org>
14581
14582         Make rename replace existing destinations on Windows.
14583         * m4/rename.m4: Add test for Mingw.
14584         * lib/rename.c: Add rename replacement that uses MoveFileEx with
14585         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
14586         * doc/posix-functions/rename.texi: Document.
14587
14588 2009-04-10  Bruno Haible  <bruno@clisp.org>
14589
14590         New include file "iconveh.h".
14591         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
14592         * lib/striconveh.h: Include it.
14593         (enum iconv_ilseq_handler): Remove definition.
14594         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
14595         striconveh.h.
14596         * lib/striconveha.c: Include striconveh.h.
14597         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
14598         * modules/striconveh (Files): Add lib/iconveh.h.
14599         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
14600         lib/striconveh.h.
14601
14602 2009-04-10  Bruno Haible  <bruno@clisp.org>
14603
14604         * lib/uniconv.h: Update comment.
14605
14606 2009-04-10  Bruno Haible  <bruno@clisp.org>
14607
14608         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
14609         always.
14610         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
14611         * lib/unistr/u16-mbtouc-aux.c: Likewise.
14612         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
14613         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
14614         "unistring-notinline.h", so that the function gets defined always.
14615         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
14616         * lib/unistr/u8-uctomb.c: Likewise.
14617         * lib/unistr/u16-mbtouc.c: Likewise.
14618         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
14619         * lib/unistr/u16-uctomb.c: Likewise.
14620         * lib/unistr/u32-mbtouc.c: Likewise.
14621         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
14622         * lib/unistr/u32-uctomb.c: Likewise.
14623
14624 2009-04-10  Bruno Haible  <bruno@clisp.org>
14625
14626         Mark 'utime' obsolete.
14627         * modules/utime (Status, Notice): New sections.
14628         Suggested by Jim Meyering.
14629
14630         Fix cross-compile guess for utime test.
14631         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
14632         autoconf.
14633         * doc/posix-functions/utime.texi: Give more precisions.
14634         Reported by Jan <ipif@ymail.com>.
14635
14636 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
14637
14638         filevercmp: correct today's change
14639         * lib/filevercmp.c: Also handle coreutils' test inputs.
14640         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
14641
14642         Fix regression in 'filevercmp' module. Thanks Sven Joachim
14643         for reporting it.
14644         * lib/filevercmp.c: Special handle for "", "." and "..".
14645         * tests/test-filevercmp.c: Enlarge the set suite.
14646
14647 2009-04-07  Jim Meyering  <meyering@redhat.com>
14648
14649         useless-if-before-free: show how to remove braced useless free, too
14650         * build-aux/useless-if-before-free: still only in a comment, though.
14651
14652 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
14653
14654         maint.mk: import changes to syntax-check macros from coreutils
14655         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
14656         Use them in the relevant macros.
14657
14658 2009-04-06  Bruno Haible  <bruno@clisp.org>
14659
14660         Fix unportable use of bit-fields.
14661         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
14662         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
14663         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
14664
14665 2009-04-06  Bruno Haible  <bruno@clisp.org>
14666
14667         Avoid test failures on AIX and OSF/1.
14668         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
14669         that malloc(0) = NULL.
14670         * tests/unicase/test-u8-tolower.c (check): Likewise.
14671         * tests/unicase/test-u8-totitle.c (check): Likewise.
14672         * tests/unicase/test-u8-toupper.c (check): Likewise.
14673         * tests/unicase/test-u16-casefold.c (check): Likewise.
14674         * tests/unicase/test-u16-tolower.c (check): Likewise.
14675         * tests/unicase/test-u16-totitle.c (check): Likewise.
14676         * tests/unicase/test-u16-toupper.c (check): Likewise.
14677         * tests/unicase/test-u32-casefold.c (check): Likewise.
14678         * tests/unicase/test-u32-tolower.c (check): Likewise.
14679         * tests/unicase/test-u32-totitle.c (check): Likewise.
14680         * tests/unicase/test-u32-toupper.c (check): Likewise.
14681         * tests/uninorm/test-u8-nfc.c (check): Likewise.
14682         * tests/uninorm/test-u8-nfd.c (check): Likewise.
14683         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
14684         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
14685         * tests/uninorm/test-u16-nfc.c (check): Likewise.
14686         * tests/uninorm/test-u16-nfd.c (check): Likewise.
14687         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
14688         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
14689         * tests/uninorm/test-u32-nfc.c (check): Likewise.
14690         * tests/uninorm/test-u32-nfd.c (check): Likewise.
14691         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
14692         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
14693
14694 2009-04-05  Bruno Haible  <bruno@clisp.org>
14695
14696         Work around an autoconf limitation.
14697         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
14698         comment line if it would be longer than 3 KB.
14699
14700 2009-04-05  Bruno Haible  <bruno@clisp.org>
14701
14702         Avoid test failure with libiconv-1.13.
14703         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
14704         of the expected test results.
14705
14706 2009-04-05  Bruno Haible  <bruno@clisp.org>
14707
14708         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
14709         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
14710         that it should be installed.
14711
14712 2009-04-05  Bruno Haible  <bruno@clisp.org>
14713
14714         * gnulib-tool: New option --copy-file.
14715         (func_usage): Document it.
14716         (func_dest_tmpfilename): Moved out of func_import.
14717         (func_add_file, func_update_file): New functions, extracted from
14718         func_import.
14719         (func_import): Update.
14720
14721 2009-04-05  Karl Berry  <karl@gnu.org>
14722
14723         * README: prominently mention gnulib-tool.
14724         Rearrange sections so getting the code is near the top.
14725
14726 2009-04-05  Bruno Haible  <bruno@clisp.org>
14727
14728         * lib/unicase.h: Mention u*_cmp2.
14729         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14730         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
14731         * lib/unicase/ulc-casecmp.c: Likewise.
14732         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
14733         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
14734         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
14735         unistr/u8-cmp.
14736         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
14737         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
14738         unistr/u16-cmp.
14739         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
14740         unistr/u32-cmp.
14741
14742         * lib/uninorm.h: Mention u*_cmp2.
14743         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
14744         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
14745         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
14746         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
14747         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
14748         unistr/u8-cmp.
14749         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
14750         unistr/u16-cmp.
14751         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
14752         unistr/u32-cmp.
14753
14754         New module 'unistr/u32-cmp2'.
14755         * lib/unistr/u32-cmp2.c: New file.
14756         * modules/unistr/u32-cmp2: New file.
14757
14758         New module 'unistr/u16-cmp2'.
14759         * lib/unistr/u16-cmp2.c: New file.
14760         * modules/unistr/u16-cmp2: New file.
14761
14762         New module 'unistr/u8-cmp2'.
14763         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
14764         * lib/unistr/u8-cmp2.c: New file.
14765         * lib/unistr/u-cmp2.h: New file.
14766         * modules/unistr/u8-cmp2: New file.
14767
14768 2009-04-05  Bruno Haible  <bruno@clisp.org>
14769
14770         * lib/unictype.h (uc_property_is_valid): New macro.
14771         * tests/unictype/test-pr_byname.c (main): Use it.
14772
14773         * lib/unistr.h: Doc fixes.
14774         * lib/uniconv.h: Doc fixes.
14775         * lib/unictype.h: Doc fixes.
14776
14777 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
14778
14779         Port coreutils 7.2 to Solaris 8.
14780
14781         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
14782         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
14783         for Solaris 8.  This is a bit of a hack, as it means it's the
14784         caller's responsibility to add -lnsl if needed, but most likely it
14785         won't be needed since only getaddrinfo uses this and getaddrinfo
14786         isn't needed on Solaris 8.
14787
14788         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
14789         problem to Solaris 8 encountered with coreutils 7.2, which
14790         resulted in a message "fnmatch.c:292: warning: passing argument 4
14791         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
14792         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
14793
14794 2009-04-03  Simon Josefsson  <simon@josefsson.org>
14795
14796         * m4/ld-version-script.m4: Add FIXME comment.
14797
14798 2009-04-02  Simon Josefsson  <simon@josefsson.org>
14799
14800         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
14801         SOVERSION variable.
14802
14803 2009-04-02  Bruno Haible  <bruno@clisp.org>
14804
14805         * Makefile (info, html, dvi, pdf): Combine the rules.
14806         Suggested by Jim Meyering.
14807
14808 2009-04-01  Bruno Haible  <bruno@clisp.org>
14809
14810         * Makefile (info, html, dvi, pdf): New targets.
14811         Reported by Reuben Thomas <rrt@sc3d.org>.
14812
14813 2009-04-01  Bruno Haible  <bruno@clisp.org>
14814
14815         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
14816         can be put into PATH.
14817         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
14818
14819 2009-04-01  Bruno Haible  <bruno@clisp.org>
14820
14821         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
14822
14823 2009-04-01  Bruno Haible  <bruno@clisp.org>
14824
14825         Rename module 'visibility'.
14826         * modules/lib-symbol-visibility: Renamed from modules/visibility.
14827         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
14828         * doc/gnulib.texi: Update.
14829         * MODULES.html.sh (Misc): Update.
14830         * NEWS: Mention the change.
14831
14832 2009-04-01  Simon Josefsson  <simon@josefsson.org>
14833
14834         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
14835         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
14836         Eric Blake <ebb9@byu.net> for review.
14837         * MODULES.html.sh: Add lib-msvc-compat.
14838         * doc/gnulib.texi: Link to new section.
14839         * m4/ld-output-def.m4: New file.
14840         * doc/ld-output-def.texi: New file.
14841
14842 2009-04-01  Simon Josefsson  <simon@josefsson.org>
14843
14844         Rename ld-version-script to lib-symbol-versions.  Suggested by
14845         Bruno Haible <bruno@clisp.org>.
14846         * modules/ld-version-script: Renamed to lib-symbol-versions.
14847         * doc/ld-version-script.texi: Fix module name.
14848         * MODULES.html.sh: Add lib-symbol-versions.
14849
14850 2009-03-31  Simon Josefsson  <simon@josefsson.org>
14851
14852         * modules/u64-tests: New file.
14853         * tests/test-u64.c: New file.
14854
14855 2009-03-04  Simon Josefsson  <simon@josefsson.org>
14856
14857         * MODULES.html.sh: Mention u64.
14858         * modules/u64: New module.
14859         * modules/crypto/sha512: Depend on u64 module instead of providing
14860         u64.h.
14861
14862 2009-03-27  Eric Blake  <ebb9@byu.net>
14863
14864         test-strerror: make debugging EAI_SYSTEM easier
14865         * modules/getaddrinfo-tests (Depends-on): Add strerror.
14866         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
14867         failure was EAI_SYSTEM.
14868
14869 2009-03-25  Bruno Haible  <bruno@clisp.org>
14870
14871         Fix a problem with --enable-relocatable on Solaris 7.
14872         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
14873         since 2008-02-24.
14874
14875 2009-03-25  Eric Blake  <ebb9@byu.net>
14876
14877         test-sockets: avoid gcc warning
14878         * tests/test-sockets.c (main): Silence compiler warning.
14879
14880 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
14881
14882         New modules nproc, pthread, contributed by Glen Lenker.
14883
14884         * MODULES.html.sh: Add pthread, nproc.
14885         * lib/nproc.c: New file.
14886         * lib/nproc.h: New file.
14887         * lib/pthread.in.h: New file.
14888         * m4/pthread.m4: New file.
14889         * modules/nproc: New file.
14890         * modules/pthread: New file.
14891
14892 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14893
14894         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
14895         New variable.
14896
14897 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
14898
14899         filevercmp: handle simple~ and numbered.~3~ backup suffixes
14900         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
14901         * tests/test-filevercmp.c: Add tests for backup suffixes.
14902
14903 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14904
14905         * modules/stdlib (Depends-on): Add stdint, needed when defining
14906         struct random_data on, for example, HP-UX 10.20.  Reported by
14907         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
14908
14909 2009-03-24  Simon Josefsson  <simon@josefsson.org>
14910
14911         * lib/readline.c (readline): Call fflush on stdout after printing
14912         prompt.
14913
14914 2009-03-20  Bruno Haible  <bruno@clisp.org>
14915
14916         Remove dependency from 'close' module to -lws2_32 on native Windows.
14917         * lib/close-hook.h: New file.
14918         * lib/close-hook.c: New file.
14919         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
14920         w32sock.h.
14921         (_gl_close_fd_maybe_socket): Remove function.
14922         (rpl_close): Invoke execute_all_close_hooks instead of
14923         _gl_close_fd_maybe_socket.
14924         * lib/sockets.c: Include close-hook.h, w32sock.h.
14925         (close_fd_maybe_socket): New function, essentially from lib/close.c.
14926         (close_sockets_hook): New variable.
14927         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
14928         (gl_sockets_cleanup): Unregister it.
14929         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
14930         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
14931         * modules/close-hook: New file.
14932         * modules/close (Files): Remove lib/w32sock.h.
14933         (Depends-on): Add close-hook.
14934         (Link): Remove section.
14935         * modules/sockets (Files): Add lib/w32sock.h.
14936         (Depends-on): Add close-hook.
14937         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
14938         invocation.
14939         * NEWS: Mention that LIB_CLOSE is gone.
14940
14941 2009-03-23  Eric Blake  <ebb9@byu.net>
14942
14943         signal-tests: test previous patch
14944         * tests/test-signal.c: New file.
14945         * modules/signal-tests: Likewise.
14946
14947         signal.h: always support 'volatile sig_atomic_t'
14948         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
14949         (gl_SIGNAL_H_DEFAULTS): Add a default.
14950         * modules/signal (Makefile.am): Substitute if needed.
14951         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
14952         users can blindly add volatile.
14953         * doc/posix-headers/signal.texi (signal.h): Document it.
14954         Reported by Matthew Woehlke.
14955
14956 2009-03-23  Jim Meyering  <meyering@redhat.com>
14957
14958         pathmax: PATH_MAX: use pathconf only when available
14959         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
14960         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
14961         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
14962         This avoids a link failure in a PSP cross-compilation environment
14963         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
14964
14965         * lib/vasnprintf.c (divide): Fix typo in comment.
14966
14967 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14968
14969         * gnulib-tool (func_filter_filelist): Fix comment.
14970
14971 2009-03-20  Bruno Haible  <bruno@clisp.org>
14972
14973         Make sockets.h self-contained.
14974         * lib/sockets.c: Include sockets.h first.
14975         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
14976
14977 2009-03-19  Eric Blake  <ebb9@byu.net>
14978
14979         doc: mention more functions added in cygwin 1.7.0
14980         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
14981         addition.
14982         * doc/posix-functions/log2f.texi: Likewise.
14983
14984 2009-03-19  Jim Meyering  <meyering@redhat.com>
14985
14986         fsusage: avoid syntax error due to statement-before-declaration
14987         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
14988         after all declarations.  Reported by Matthew Woehlke in
14989         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
14990
14991 2009-03-18  Eric Blake  <ebb9@byu.net>
14992
14993         build-aux/compile: sync from automake
14994         * build-aux/compile: New file, from automake.
14995         * config/srclist.txt: Mention build-aux/compile.
14996
14997 2009-03-17  Bruno Haible  <bruno@clisp.org>
14998
14999         * lib/git-merge-changelog.c: Fix typo in comment.
15000         Reported by Reuben Thomas <rrt@sc3d.org>.
15001
15002 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
15003
15004         * m4/regex.m4: update and improve help for
15005         --without-included-regex.
15006
15007 2009-03-17  Simon Josefsson  <simon@josefsson.org>
15008
15009         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
15010         failure on missing include files.
15011
15012 2009-03-17  Eric Blake  <ebb9@byu.net>
15013
15014         doc: mention more functions added in cygwin 1.7.0
15015         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
15016         addition.
15017         * doc/posix-functions/fwscanf.texi: Likewise.
15018         * doc/posix-functions/swprintf.texi: Likewise.
15019         * doc/posix-functions/swscanf.texi: Likewise.
15020         * doc/posix-functions/vfwprintf.texi: Likewise.
15021         * doc/posix-functions/vfwscanf.texi: Likewise.
15022         * doc/posix-functions/vswprintf.texi: Likewise.
15023         * doc/posix-functions/vswscanf.texi: Likewise.
15024         * doc/posix-functions/vwprintf.texi: Likewise.
15025         * doc/posix-functions/vwscanf.texi: Likewise.
15026         * doc/posix-functions/wcscasecmp.texi: Likewise.
15027         * doc/posix-functions/wcsdup.texi: Likewise.
15028         * doc/posix-functions/wcsftime.texi: Likewise.
15029         * doc/posix-functions/wcsncasecmp.texi: Likewise.
15030         * doc/posix-functions/wprintf.texi: Likewise.
15031         * doc/posix-functions/wscanf.texi: Likewise.
15032         * doc/glibc-functions/gethostbyname2.texi: Likewise.
15033
15034 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15035
15036         maint.mk: really add $(AM_MAKEFLAGS)
15037         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
15038         was inadvertently omitted in the last commit.
15039         Spotted by Bruno Haible.
15040
15041         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
15042         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
15043         $(AM_MAKEFLAGS)' rather than plain `make'.
15044
15045         gnulib-tool: execute $MAKE not make
15046         * gnulib-tool: Default $MAKE to 'make'.
15047         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
15048         than make.  Initialize $MAKE in the do-autobuild script.
15049
15050         gnulib-tool: use $MAKE not make in generated files
15051         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
15052         make, in generated files.  Initialize $MAKE in the do-autobuild
15053         script.
15054
15055         * top/GNUmakefile (_have-git-version-gen): Fix typo.
15056
15057         GNUmakefile: disable parallelism only for multiple, recursive targets
15058         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
15059         additions in the Makefile.
15060         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
15061         by Automake.
15062         (.NOTPARALLEL): Only disable parallel builds if multiple targets
15063         are listed on the command line and at least one of them is
15064         listed in $(ALL_RECURSIVE_TARGETS).
15065
15066 2009-03-14  Bruno Haible  <bruno@clisp.org>
15067
15068         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
15069         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
15070         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
15071         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
15072         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
15073         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
15074         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
15075         unistr/u8-uctomb.
15076         * modules/unistr/u8-strchr (Depends-on): Likewise.
15077         * modules/unistr/u8-strrchr (Depends-on): Likewise.
15078         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
15079         unistr/u16-uctomb.
15080         * modules/unistr/u16-strchr (Depends-on): Likewise.
15081         * modules/unistr/u16-strrchr (Depends-on): Likewise.
15082
15083 2009-03-12  Bruno Haible  <bruno@clisp.org>
15084
15085         Work around select() bug on Interix 3.5.
15086         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
15087         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
15088         * m4/select.m4: New file.
15089         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
15090         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
15091         * modules/select (Files): Add m4/select.m4.
15092         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
15093         * modules/nanosleep (Depends-on): Add select.
15094         * modules/poll (Depends-on): Likewise.
15095         * doc/posix-functions/select.texi: Mention the Interix bug.
15096         Reported by Markus Duft <mduft@gentoo.org>.
15097
15098         * lib/select.c: Renamed from lib/winsock-select.c.
15099         * modules/select (Files): Add lib/select.c, remove
15100         lib/winsock-select.c.
15101         (configure.ac): Update.
15102
15103 2009-03-12  Jim Meyering  <meyering@redhat.com>
15104
15105         avoid gcc warnings about unused macro definitions
15106         * lib/readtokens.c (STREQ): Remove unused definition.
15107         * lib/xmalloc.c (SIZE_MAX): Likewise.
15108         * lib/openat-die.c (N_): Likewise.
15109         * lib/mountlist.c (SIZE_MAX): Remove definition.
15110         Instead, include <stdint.h>.
15111         * lib/readutmp.c: Likewise.
15112         * modules/readutmp (Depends-on): Add stdint.
15113         * modules/mountlist (Depends-on): Add stdint.
15114         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
15115
15116 2009-03-10  Bruno Haible  <bruno@clisp.org>
15117
15118         Tests for module 'mbmemcasecoll'.
15119         * modules/mbmemcasecoll-tests: New file.
15120         * tests/test-mbmemcasecoll1.sh: New file.
15121         * tests/test-mbmemcasecoll2.sh: New file.
15122         * tests/test-mbmemcasecoll3.sh: New file.
15123         * tests/test-mbmemcasecoll.c: New file.
15124
15125         New module 'mbmemcasecoll'.
15126         * lib/mbmemcasecoll.h: New file.
15127         * lib/mbmemcasecoll.c: New file.
15128         * modules/mbmemcasecoll: New file.
15129
15130         * tests/test-mbmemcasecmp.h: New file, extracted from
15131         tests/test-mbmemcasecmp.c.
15132         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
15133         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
15134         (main): Update.
15135         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
15136
15137 2009-03-09  Bruno Haible  <bruno@clisp.org>
15138
15139         Tests for module 'mbmemcasecmp'.
15140         * modules/mbmemcasecmp-tests: New file.
15141         * tests/test-mbmemcasecmp1.sh: New file.
15142         * tests/test-mbmemcasecmp2.sh: New file.
15143         * tests/test-mbmemcasecmp3.sh: New file.
15144         * tests/test-mbmemcasecmp.c: New file.
15145
15146         New module 'mbmemcasecmp'.
15147         * lib/mbmemcasecmp.h: New file.
15148         * lib/mbmemcasecmp.c: New file.
15149         * modules/mbmemcasecmp: New file.
15150
15151 2009-03-09  Bruno Haible  <bruno@clisp.org>
15152
15153         Tests for module 'unicase/ulc-casecoll'.
15154         * modules/unicase/ulc-casecoll-tests: New file.
15155         * tests/unicase/test-ulc-casecoll1.sh: New file.
15156         * tests/unicase/test-ulc-casecoll2.sh: New file.
15157         * tests/unicase/test-ulc-casecoll.c: New file.
15158
15159         New module 'unicase/ulc-casecoll'.
15160         * lib/unicase.h (ulc_casecoll): New declaration.
15161         * lib/unicase/ulc-casecoll.c: New file.
15162         * modules/unicase/ulc-casecoll: New file.
15163
15164         New module 'unicase/ulc-casexfrm'.
15165         * lib/unicase.h (ulc_casexfrm): New declaration.
15166         * lib/unicase/ulc-casexfrm.c: New file.
15167         * modules/unicase/ulc-casexfrm: New file.
15168
15169 2009-03-09  Bruno Haible  <bruno@clisp.org>
15170
15171         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
15172         invocations.
15173
15174         * m4/mbscasecmp.m4: Remove file.
15175         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
15176         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
15177
15178         * m4/mbscasestr.m4: Remove file.
15179         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
15180         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
15181
15182         * m4/mbschr.m4: Remove file.
15183         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
15184         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
15185
15186         * m4/mbscspn.m4: Remove file.
15187         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
15188         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
15189
15190         * m4/mbslen.m4: Remove file.
15191         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
15192         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
15193
15194         * m4/mbsncasecmp.m4: Remove file.
15195         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
15196         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
15197
15198         * m4/mbsnlen.m4: Remove file.
15199         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
15200         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
15201
15202         * m4/mbspbrk.m4: Remove file.
15203         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
15204         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
15205
15206         * m4/mbspcasecmp.m4: Remove file.
15207         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
15208         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
15209
15210         * m4/mbsrchr.m4: Remove file.
15211         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
15212         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
15213
15214         * m4/mbssep.m4: Remove file.
15215         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
15216         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
15217
15218         * m4/mbsspn.m4: Remove file.
15219         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
15220         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
15221
15222         * m4/mbsstr.m4: Remove file.
15223         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
15224         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
15225
15226         * m4/mbstok_r.m4: Remove file.
15227         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
15228         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
15229
15230         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
15231
15232         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
15233         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
15234
15235         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
15236
15237 2009-03-08  Bruno Haible  <bruno@clisp.org>
15238
15239         Tests for module 'unicase/ulc-casecmp'.
15240         * modules/unicase/ulc-casecmp-tests: New file.
15241         * tests/unicase/test-ulc-casecmp1.sh: New file.
15242         * tests/unicase/test-ulc-casecmp2.sh: New file.
15243         * tests/unicase/test-ulc-casecmp.c: New file.
15244
15245         New module 'unicase/ulc-casecmp'.
15246         * lib/unicase.h (ulc_casecmp): New declaration.
15247         * lib/unicase/ulc-casecmp.c: New file.
15248         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
15249         'const SRC_UNIT *'.
15250         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
15251         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
15252         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
15253         * modules/unicase/ulc-casecmp: New file.
15254
15255         Tests for module 'unicase/u32-is-cased'.
15256         * modules/unicase/u32-is-cased-tests: New file.
15257         * tests/unicase/test-u32-is-cased.c: New file.
15258
15259         Tests for module 'unicase/u16-is-cased'.
15260         * modules/unicase/u16-is-cased-tests: New file.
15261         * tests/unicase/test-u16-is-cased.c: New file.
15262
15263         Tests for module 'unicase/u8-is-cased'.
15264         * modules/unicase/u8-is-cased-tests: New file.
15265         * tests/unicase/test-u8-is-cased.c: New file.
15266         * tests/unicase/test-is-cased.h: New file.
15267
15268         New module 'unicase/u32-is-cased'.
15269         * lib/unicase/u32-is-cased.c: New file.
15270         * modules/unicase/u32-is-cased: New file.
15271
15272         New module 'unicase/u16-is-cased'.
15273         * lib/unicase/u16-is-cased.c: New file.
15274         * modules/unicase/u16-is-cased: New file.
15275
15276         New module 'unicase/u8-is-cased'.
15277         * lib/unicase/u8-is-cased.c: New file.
15278         * lib/unicase/u-is-cased.h: New file.
15279         * modules/unicase/u8-is-cased: New file.
15280
15281         Tests for module 'unicase/u32-is-casefolded'.
15282         * modules/unicase/u32-is-casefolded-tests: New file.
15283         * tests/unicase/test-u32-is-casefolded.c: New file.
15284
15285         Tests for module 'unicase/u16-is-casefolded'.
15286         * modules/unicase/u16-is-casefolded-tests: New file.
15287         * tests/unicase/test-u16-is-casefolded.c: New file.
15288
15289         Tests for module 'unicase/u8-is-casefolded'.
15290         * modules/unicase/u8-is-casefolded-tests: New file.
15291         * tests/unicase/test-u8-is-casefolded.c: New file.
15292         * tests/unicase/test-is-casefolded.h: New file.
15293
15294         New module 'unicase/u32-is-casefolded'.
15295         * lib/unicase/u32-is-casefolded.c: New file.
15296         * modules/unicase/u32-is-casefolded: New file.
15297
15298         New module 'unicase/u16-is-casefolded'.
15299         * lib/unicase/u16-is-casefolded.c: New file.
15300         * modules/unicase/u16-is-casefolded: New file.
15301
15302         New module 'unicase/u8-is-casefolded'.
15303         * lib/unicase/u8-is-casefolded.c: New file.
15304         * modules/unicase/u8-is-casefolded: New file.
15305
15306         Tests for module 'unicase/u32-is-titlecase'.
15307         * modules/unicase/u32-is-titlecase-tests: New file.
15308         * tests/unicase/test-u32-is-titlecase.c: New file.
15309
15310         Tests for module 'unicase/u16-is-titlecase'.
15311         * modules/unicase/u16-is-titlecase-tests: New file.
15312         * tests/unicase/test-u16-is-titlecase.c: New file.
15313
15314         Tests for module 'unicase/u8-is-titlecase'.
15315         * modules/unicase/u8-is-titlecase-tests: New file.
15316         * tests/unicase/test-u8-is-titlecase.c: New file.
15317         * tests/unicase/test-is-titlecase.h: New file.
15318
15319         New module 'unicase/u32-is-titlecase'.
15320         * lib/unicase/u32-is-titlecase.c: New file.
15321         * modules/unicase/u32-is-titlecase: New file.
15322
15323         New module 'unicase/u16-is-titlecase'.
15324         * lib/unicase/u16-is-titlecase.c: New file.
15325         * modules/unicase/u16-is-titlecase: New file.
15326
15327         New module 'unicase/u8-is-titlecase'.
15328         * lib/unicase/u8-is-titlecase.c: New file.
15329         * modules/unicase/u8-is-titlecase: New file.
15330
15331         Tests for module 'unicase/u32-is-lowercase'.
15332         * modules/unicase/u32-is-lowercase-tests: New file.
15333         * tests/unicase/test-u32-is-lowercase.c: New file.
15334
15335         Tests for module 'unicase/u16-is-lowercase'.
15336         * modules/unicase/u16-is-lowercase-tests: New file.
15337         * tests/unicase/test-u16-is-lowercase.c: New file.
15338
15339         Tests for module 'unicase/u8-is-lowercase'.
15340         * modules/unicase/u8-is-lowercase-tests: New file.
15341         * tests/unicase/test-u8-is-lowercase.c: New file.
15342         * tests/unicase/test-is-lowercase.h: New file.
15343
15344         New module 'unicase/u32-is-lowercase'.
15345         * lib/unicase/u32-is-lowercase.c: New file.
15346         * modules/unicase/u32-is-lowercase: New file.
15347
15348         New module 'unicase/u16-is-lowercase'.
15349         * lib/unicase/u16-is-lowercase.c: New file.
15350         * modules/unicase/u16-is-lowercase: New file.
15351
15352         New module 'unicase/u8-is-lowercase'.
15353         * lib/unicase/u8-is-lowercase.c: New file.
15354         * modules/unicase/u8-is-lowercase: New file.
15355
15356         Tests for module 'unicase/u32-is-uppercase'.
15357         * modules/unicase/u32-is-uppercase-tests: New file.
15358         * tests/unicase/test-u32-is-uppercase.c: New file.
15359
15360         Tests for module 'unicase/u16-is-uppercase'.
15361         * modules/unicase/u16-is-uppercase-tests: New file.
15362         * tests/unicase/test-u16-is-uppercase.c: New file.
15363
15364         Tests for module 'unicase/u8-is-uppercase'.
15365         * modules/unicase/u8-is-uppercase-tests: New file.
15366         * tests/unicase/test-u8-is-uppercase.c: New file.
15367         * tests/unicase/test-is-uppercase.h: New file.
15368
15369         New module 'unicase/u32-is-uppercase'.
15370         * lib/unicase/u32-is-uppercase.c: New file.
15371         * modules/unicase/u32-is-uppercase: New file.
15372
15373         New module 'unicase/u16-is-uppercase'.
15374         * lib/unicase/u16-is-uppercase.c: New file.
15375         * modules/unicase/u16-is-uppercase: New file.
15376
15377         New module 'unicase/u8-is-uppercase'.
15378         * lib/unicase/u8-is-uppercase.c: New file.
15379         * modules/unicase/u8-is-uppercase: New file.
15380
15381         New module 'unicase/u32-is-invariant'.
15382         * lib/unicase/u32-is-invariant.c: New file.
15383         * modules/unicase/u32-is-invariant: New file.
15384
15385         New module 'unicase/u16-is-invariant'.
15386         * lib/unicase/u16-is-invariant.c: New file.
15387         * modules/unicase/u16-is-invariant: New file.
15388
15389         New module 'unicase/u8-is-invariant'.
15390         * lib/unicase/u8-is-invariant.c: New file.
15391         * lib/unicase/invariant.h: New file.
15392         * lib/unicase/u-is-invariant.h: New file.
15393         * modules/unicase/u8-is-invariant: New file.
15394
15395         Tests for module 'unicase/u32-casecoll'.
15396         * modules/unicase/u32-casecoll-tests: New file.
15397         * tests/unicase/test-u32-casecoll.c: New file.
15398
15399         Tests for module 'unicase/u16-casecoll'.
15400         * modules/unicase/u16-casecoll-tests: New file.
15401         * tests/unicase/test-u16-casecoll.c: New file.
15402
15403         Tests for module 'unicase/u8-casecoll'.
15404         * modules/unicase/u8-casecoll-tests: New file.
15405         * tests/unicase/test-u8-casecoll.c: New file.
15406
15407         New module 'unicase/u32-casecoll'.
15408         * lib/unicase/u32-casecoll.c: New file.
15409         * modules/unicase/u32-casecoll: New file.
15410
15411         New module 'unicase/u16-casecoll'.
15412         * lib/unicase/u16-casecoll.c: New file.
15413         * modules/unicase/u16-casecoll: New file.
15414
15415         New module 'unicase/u8-casecoll'.
15416         * lib/unicase/u8-casecoll.c: New file.
15417         * lib/unicase/u-casecoll.h: New file.
15418         * modules/unicase/u8-casecoll: New file.
15419
15420         New module 'unicase/u32-casexfrm'.
15421         * lib/unicase/u32-casexfrm.c: New file.
15422         * modules/unicase/u32-casexfrm: New file.
15423
15424         New module 'unicase/u16-casexfrm'.
15425         * lib/unicase/u16-casexfrm.c: New file.
15426         * modules/unicase/u16-casexfrm: New file.
15427
15428         New module 'unicase/u8-casexfrm'.
15429         * lib/unicase/u8-casexfrm.c: New file.
15430         * lib/unicase/u-casexfrm.h: New file.
15431         * modules/unicase/u8-casexfrm: New file.
15432
15433         Tests for module 'unicase/u32-casecmp'.
15434         * modules/unicase/u32-casecmp-tests: New file.
15435         * tests/unicase/test-u32-casecmp.c: New file.
15436
15437         Tests for module 'unicase/u16-casecmp'.
15438         * modules/unicase/u16-casecmp-tests: New file.
15439         * tests/unicase/test-u16-casecmp.c: New file.
15440
15441         Tests for module 'unicase/u8-casecmp'.
15442         * modules/unicase/u8-casecmp-tests: New file.
15443         * tests/unicase/test-u8-casecmp.c: New file.
15444         * tests/unicase/test-casecmp.h: New file.
15445
15446         New module 'unicase/u32-casecmp'.
15447         * lib/unicase/u32-casecmp.c: New file.
15448         * modules/unicase/u32-casecmp: New file.
15449
15450         New module 'unicase/u16-casecmp'.
15451         * lib/unicase/u16-casecmp.c: New file.
15452         * modules/unicase/u16-casecmp: New file.
15453
15454         New module 'unicase/u8-casecmp'.
15455         * lib/unicase/u8-casecmp.c: New file.
15456         * lib/unicase/u-casecmp.h: New file.
15457         * modules/unicase/u8-casecmp: New file.
15458
15459         Tests for module 'unicase/u32-casefold'.
15460         * modules/unicase/u32-casefold-tests: New file.
15461         * tests/unicase/test-u32-casefold.c: New file.
15462
15463         Tests for module 'unicase/u16-casefold'.
15464         * modules/unicase/u16-casefold-tests: New file.
15465         * tests/unicase/test-u16-casefold.c: New file.
15466
15467         Tests for module 'unicase/u8-casefold'.
15468         * modules/unicase/u8-casefold-tests: New file.
15469         * tests/unicase/test-u8-casefold.c: New file.
15470
15471         New module 'unicase/u32-casefold'.
15472         * lib/unicase/u32-casefold.c: New file.
15473         * modules/unicase/u32-casefold: New file.
15474
15475         New module 'unicase/u16-casefold'.
15476         * lib/unicase/u16-casefold.c: New file.
15477         * modules/unicase/u16-casefold: New file.
15478
15479         New module 'unicase/u8-casefold'.
15480         * lib/unicase/u8-casefold.c: New file.
15481         * lib/unicase/u-casefold.h: New file.
15482         * modules/unicase/u8-casefold: New file.
15483
15484         New module 'unicase/tocasefold'.
15485         * lib/unicase/casefold.h: New file.
15486         * lib/unicase/tocasefold.c: New file.
15487         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
15488         * modules/unicase/tocasefold: New file.
15489
15490         Tests for module 'unicase/u32-totitle'.
15491         * modules/unicase/u32-totitle-tests: New file.
15492         * tests/unicase/test-u32-totitle.c: New file.
15493
15494         Tests for module 'unicase/u16-totitle'.
15495         * modules/unicase/u16-totitle-tests: New file.
15496         * tests/unicase/test-u16-totitle.c: New file.
15497
15498         Tests for module 'unicase/u8-totitle'.
15499         * modules/unicase/u8-totitle-tests: New file.
15500         * tests/unicase/test-u8-totitle.c: New file.
15501
15502         New module 'unicase/u32-totitle'.
15503         * lib/unicase/u32-totitle.c: New file.
15504         * modules/unicase/u32-totitle: New file.
15505
15506         New module 'unicase/u16-totitle'.
15507         * lib/unicase/u16-totitle.c: New file.
15508         * modules/unicase/u16-totitle: New file.
15509
15510         New module 'unicase/u8-totitle'.
15511         * lib/unicase/u8-totitle.c: New file.
15512         * lib/unicase/u-totitle.h: New file.
15513         * modules/unicase/u8-totitle: New file.
15514
15515         Tests for module 'unicase/u32-tolower'.
15516         * modules/unicase/u32-tolower-tests: New file.
15517         * tests/unicase/test-u32-tolower.c: New file.
15518
15519         Tests for module 'unicase/u16-tolower'.
15520         * modules/unicase/u16-tolower-tests: New file.
15521         * tests/unicase/test-u16-tolower.c: New file.
15522
15523         Tests for module 'unicase/u8-tolower'.
15524         * modules/unicase/u8-tolower-tests: New file.
15525         * tests/unicase/test-u8-tolower.c: New file.
15526
15527         New module 'unicase/u32-tolower'.
15528         * lib/unicase/u32-tolower.c: New file.
15529         * modules/unicase/u32-tolower: New file.
15530
15531         New module 'unicase/u16-tolower'.
15532         * lib/unicase/u16-tolower.c: New file.
15533         * modules/unicase/u16-tolower: New file.
15534
15535         New module 'unicase/u8-tolower'.
15536         * lib/unicase/u8-tolower.c: New file.
15537         * modules/unicase/u8-tolower: New file.
15538
15539         Tests for module 'unicase/u32-toupper'.
15540         * modules/unicase/u32-toupper-tests: New file.
15541         * tests/unicase/test-u32-toupper.c: New file.
15542
15543         Tests for module 'unicase/u16-toupper'.
15544         * modules/unicase/u16-toupper-tests: New file.
15545         * tests/unicase/test-u16-toupper.c: New file.
15546
15547         Tests for module 'unicase/u8-toupper'.
15548         * modules/unicase/u8-toupper-tests: New file.
15549         * tests/unicase/test-u8-toupper.c: New file.
15550
15551         New module 'unicase/u32-toupper'.
15552         * lib/unicase/u32-toupper.c: New file.
15553         * modules/unicase/u32-toupper: New file.
15554
15555         New module 'unicase/u16-toupper'.
15556         * lib/unicase/u16-toupper.c: New file.
15557         * modules/unicase/u16-toupper: New file.
15558
15559         New module 'unicase/u8-toupper'.
15560         * lib/unicase/u8-toupper.c: New file.
15561         * modules/unicase/u8-toupper: New file.
15562
15563         New module 'unicase/u32-casemap'.
15564         * lib/unicase/u32-casemap.c: New file.
15565         * modules/unicase/u32-casemap: New file.
15566
15567         New module 'unicase/u16-casemap'.
15568         * lib/unicase/u16-casemap.c: New file.
15569         * modules/unicase/u16-casemap: New file.
15570
15571         New module 'unicase/u8-casemap'.
15572         * lib/unicase/unicasemap.h: New file.
15573         * lib/unicase/u8-casemap.c: New file.
15574         * lib/unicase/u-casemap.h: New file.
15575         * modules/unicase/u8-casemap: New file.
15576
15577         New module 'unicase/special-casing'.
15578         * lib/unicase/special-casing.h: New file.
15579         * lib/unicase/special-casing.c: New file.
15580         * lib/unicase/special-casing-table.gperf: New file, generated by
15581         gen-uni-tables.c.
15582         * modules/unicase/special-casing: New file.
15583
15584         Tests for module 'unicase/locale-language'.
15585         * modules/unicase/locale-language-tests: New file.
15586         * tests/unicase/test-locale-language.sh: New file.
15587         * tests/unicase/test-locale-language.c: New file.
15588
15589         New module 'unicase/locale-language'.
15590         * lib/unicase/locale-language.c: New file.
15591         * lib/unicase/locale-languages.gperf: New file.
15592         * modules/unicase/locale-language: New file.
15593
15594         Generate more tables for case conversion and case folding.
15595         * lib/gen-uni-tables.c (SCC_*): New enum items.
15596         (struct special_casing_rule): New type.
15597         (casing_rules, num_casing_rules, allocated_casing_rules): New
15598         variables.
15599         (add_casing_rule, fill_casing_rules): New functions.
15600         (struct casefold_rule): New type.
15601         (casefolding_rules, num_casefolding_rules,
15602         allocated_casefolding_rules): New variables.
15603         (fill_casefolding_rules): New function.
15604         (unicode_casefold): New variable.
15605         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
15606         sort_casing_rules, output_casing_rules): New functions.
15607         (main): Accept to more arguments: SpecialCasing.txt and
15608         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
15609         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
15610         Output mapping for casefolding.
15611
15612         * lib/unicase.h: Include stdbool.h, uninorm.h.
15613         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
15614         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
15615         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
15616         arguments.
15617         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
15618         resultp arguments.
15619         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
15620         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
15621         resultp arguments.
15622         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
15623         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
15624         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
15625         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
15626         declarations.
15627         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
15628
15629 2009-03-08  Bruno Haible  <bruno@clisp.org>
15630
15631         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15632         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
15633         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
15634         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15635
15636 2009-03-07  Bruno Haible  <bruno@clisp.org>
15637
15638         Adjust u*_normcmp, u*_normcoll API.
15639         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
15640         u16_normcoll, u32_normcoll): Change failure conventions.
15641         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
15642         errno and return -1.
15643         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
15644
15645 2009-03-07  Bruno Haible  <bruno@clisp.org>
15646
15647         Tests for module 'uninorm/u32-normcoll'.
15648         * modules/uninorm/u32-normcoll-tests: New file.
15649         * tests/uninorm/test-u32-normcoll.c: New file.
15650
15651         Tests for module 'uninorm/u16-normcoll'.
15652         * modules/uninorm/u16-normcoll-tests: New file.
15653         * tests/uninorm/test-u16-normcoll.c: New file.
15654
15655         Tests for module 'uninorm/u8-normcoll'.
15656         * modules/uninorm/u8-normcoll-tests: New file.
15657         * tests/uninorm/test-u8-normcoll.c: New file.
15658
15659 2009-03-07  Bruno Haible  <bruno@clisp.org>
15660
15661         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
15662         tests/uninorm/test-u32-normcmp.c.
15663         * tests/uninorm/test-u32-normcmp.c: Include it.
15664         (test_nonascii): New function, extracted from main. Add some more
15665         tests.
15666         (main): Invoke test_ascii and test_nonascii.
15667         * modules/uninorm/u32-normcmp-tests (Files): Add
15668         tests/uninorm/test-u32-normcmp.h.
15669         (Depends-on): Remove uninorm/u32-normcmp.
15670
15671         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
15672         tests/uninorm/test-u16-normcmp.c.
15673         * tests/uninorm/test-u16-normcmp.c: Include it.
15674         (test_nonascii): New function, extracted from main. Add some more
15675         tests.
15676         (main): Invoke test_ascii and test_nonascii.
15677         * modules/uninorm/u16-normcmp-tests (Files): Add
15678         tests/uninorm/test-u16-normcmp.h.
15679         (Depends-on): Remove uninorm/u16-normcmp.
15680
15681         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
15682         tests/uninorm/test-u8-normcmp.c.
15683         * tests/uninorm/test-u8-normcmp.c: Include it.
15684         (test_nonascii): New function, extracted from main. Add some more
15685         tests.
15686         (main): Invoke test_ascii and test_nonascii.
15687         * modules/uninorm/u8-normcmp-tests (Files): Add
15688         tests/uninorm/test-u8-normcmp.h.
15689         (Depends-on): Remove uninorm/u8-normcmp.
15690
15691 2009-03-07  Bruno Haible  <bruno@clisp.org>
15692
15693         New module 'uninorm/u32-normcoll'.
15694         * lib/uninorm/u32-normcoll.c: New file.
15695         * modules/uninorm/u32-normcoll: New file.
15696
15697         New module 'uninorm/u16-normcoll'.
15698         * lib/uninorm/u16-normcoll.c: New file.
15699         * modules/uninorm/u16-normcoll: New file.
15700
15701         New module 'uninorm/u8-normcoll'.
15702         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
15703         declarations.
15704         * lib/uninorm/u8-normcoll.c: New file.
15705         * lib/uninorm/u-normcoll.h: New file.
15706         * modules/uninorm/u8-normcoll: New file.
15707
15708         New module 'uninorm/u32-normxfrm'.
15709         * lib/uninorm/u32-normxfrm.c: New file.
15710         * modules/uninorm/u32-normxfrm: New file.
15711
15712         New module 'uninorm/u16-normxfrm'.
15713         * lib/uninorm/u16-normxfrm.c: New file.
15714         * modules/uninorm/u16-normxfrm: New file.
15715
15716         New module 'uninorm/u8-normxfrm'.
15717         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
15718         declarations.
15719         * lib/uninorm/u8-normxfrm.c: New file.
15720         * lib/uninorm/u-normxfrm.h: New file.
15721         * modules/uninorm/u8-normxfrm: New file.
15722
15723 2009-03-07  Bruno Haible  <bruno@clisp.org>
15724
15725         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
15726         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
15727         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
15728
15729 2009-03-07  Bruno Haible  <bruno@clisp.org>
15730
15731         New module 'memxfrm'.
15732         * lib/memxfrm.h: New file.
15733         * lib/memxfrm.c: New file.
15734         * modules/memxfrm: New file.
15735
15736 2009-03-07  Bruno Haible  <bruno@clisp.org>
15737
15738         New module 'memcmp2'.
15739         * lib/memcmp2.h: New file.
15740         * lib/memcmp2.c: New file.
15741         * modules/memcmp2: New file.
15742
15743 2009-03-07  Bruno Haible  <bruno@clisp.org>
15744
15745         Tests for module 'uninorm/decomposing-form'.
15746         * modules/uninorm/decomposing-form-tests: New file.
15747         * tests/uninorm/test-decomposing-form.c: New file.
15748
15749         New module 'uninorm/decomposing-form'.
15750         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
15751         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
15752         Add 'decomposing_variant' field.
15753         * lib/uninorm/decomposing-form.c: New file.
15754         * lib/uninorm/nfc.c (uninorm_nfc): Update.
15755         * lib/uninorm/nfd.c (uninorm_nfd): Update.
15756         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
15757         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
15758         * modules/uninorm/decomposing-form: New file.
15759         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
15760         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
15761
15762 2009-03-07  Bruno Haible  <bruno@clisp.org>
15763
15764         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
15765         strings.
15766
15767 2009-03-06  Bruno Haible  <bruno@clisp.org>
15768
15769         Tests for module 'uninorm/u32-normcmp'.
15770         * tests/uninorm/test-u32-normcmp.c: New file.
15771         * modules/uninorm/u32-normcmp-tests: New file.
15772
15773         Tests for module 'uninorm/u16-normcmp'.
15774         * tests/uninorm/test-u16-normcmp.c: New file.
15775         * modules/uninorm/u16-normcmp-tests: New file.
15776
15777         Tests for module 'uninorm/u8-normcmp'.
15778         * tests/uninorm/test-u8-normcmp.c: New file.
15779         * modules/uninorm/u8-normcmp-tests: New file.
15780
15781         New module 'uninorm/u32-normcmp'.
15782         * lib/uninorm/u32-normcmp.c: New file.
15783         * modules/uninorm/u32-normcmp: New file.
15784
15785         New module 'uninorm/u16-normcmp'.
15786         * lib/uninorm/u16-normcmp.c: New file.
15787         * modules/uninorm/u16-normcmp: New file.
15788
15789         New module 'uninorm/u8-normcmp'.
15790         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
15791         declarations.
15792         * lib/uninorm/u8-normcmp.c: New file.
15793         * lib/uninorm/u-normcmp.h: New file.
15794         * modules/uninorm/u8-normcmp: New file.
15795
15796 2009-03-06  Bruno Haible  <bruno@clisp.org>
15797
15798         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
15799         Reported by Eric Blake.
15800
15801 2009-03-06  Eric Blake  <ebb9@byu.net>
15802             Bruno Haible  <bruno@clisp.org>
15803
15804         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
15805         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
15806         condition.
15807         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15808         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
15809         condition.
15810         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
15811
15812 2009-03-06  Eric Blake  <ebb9@byu.net>
15813
15814         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
15815         to avoid compiler warnings.
15816         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
15817
15818 2009-03-05  Bruno Haible  <bruno@clisp.org>
15819
15820         * tests/test-ftell.c (main): Disable test beyond end of file on
15821         FreeMiNT.
15822         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
15823
15824 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
15825
15826         * lib/filevercmp.c: Move hidden files up in ordering.
15827         * tests/test-filevercmp.c: Add tests for hidden files.
15828
15829 2009-03-04  Bruno Haible  <bruno@clisp.org>
15830
15831         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
15832         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
15833         AM_CFLAGS.
15834         Reported by Simon Josefsson.
15835
15836 2009-03-03  Bruno Haible  <bruno@clisp.org>
15837
15838         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
15839         Reported by Simon Josefsson.
15840
15841         * doc/ld-version-script.texi: Update node reference.
15842
15843 2009-03-03  Bruno Haible  <bruno@clisp.org>
15844
15845         * modules/visibility (License): Change to 'unlimited'.
15846         Suggested by Simon Josefsson.
15847
15848 2009-03-03  Jim Meyering  <meyering@redhat.com>
15849
15850         unlinkdir: cannot_unlink_dir may modify process state
15851         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
15852         it's neither thread-safe nor appropriate for use in a library.
15853
15854 2009-03-03  Eric Blake  <ebb9@byu.net>
15855
15856         test-closein: silence test under Darwin
15857         * tests/test-closein.sh: Ignore stderr from cat, since we don't
15858         care if it dies from EPIPE or EBADF.
15859
15860 2009-03-03  Bruno Haible  <bruno@clisp.org>
15861
15862         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
15863         earlier.
15864         * doc/visibility.texi: Fix @node and @section.
15865
15866 2009-03-03  Simon Josefsson  <simon@josefsson.org>
15867
15868         * doc/gnulib.texi: Link to sections for ld version script and
15869         visibility.
15870         * doc/visibility.texi: Add @node and @section.
15871         * modules/ld-version-script: New module.
15872         * m4/ld-version-script.m4: New file.
15873         * doc/ld-version-script.texi: New file.
15874
15875 2009-03-02  David Lutterkort  <lutter@redhat.com>
15876
15877         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
15878         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15879
15880 2009-03-02  Bruno Haible  <bruno@clisp.org>
15881
15882         * doc/visibility.texi: Mention libtool's -export-symbols option.
15883
15884 2009-03-02  Jim Meyering  <meyering@redhat.com>
15885
15886         announce-gen: new option: --no-print-checksums
15887         * build-aux/announce-gen (usage): Describe it.
15888         (print_checksums): Print a newline here, not in the [*] footnote.
15889         (main): Honor it.
15890
15891 2009-03-01  Bruno Haible  <bruno@clisp.org>
15892
15893         Use socklen_t in the native Windows replacements prototypes.
15894         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
15895         instead of 'int'.
15896         * lib/getsockopt.c (rpl_getsockopt): Likewise.
15897         * lib/setsockopt.c (rpl_setsockopt): Likewise.
15898         * modules/getsockopt (Depends-on): Add socklen.
15899         * modules/setsockopt (Depends-on): Add socklen.
15900
15901 2009-03-01  Bruno Haible  <bruno@clisp.org>
15902
15903         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
15904         least 4.2.
15905
15906 2009-03-01  Eric Blake  <ebb9@byu.net>
15907             Bruno Haible  <bruno@clisp.org>
15908
15909         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
15910         error messages.
15911         * lib/wait-process.c (wait_subprocess): Omit error message about
15912         deadly signal sent to the child of termsigp != NULL.
15913
15914 2009-03-01  Eric Blake  <ebb9@byu.net>
15915
15916         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
15917
15918 2009-03-01  Bruno Haible  <bruno@clisp.org>
15919
15920         Avoid a gcc warning.
15921         * tests/test-sched.c (b): Make global.
15922         Reported by Eric Blake.
15923
15924 2009-01-19  Martin Lambers  <marlam@marlam.de>
15925
15926         Provide POSIX semantics for socket timeout options on W32.
15927         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
15928         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
15929         * modules/setsockopt: Depend on sys_time module for struct timeval.
15930         * modules/getsockopt: Depend on sys_time module for struct timeval.
15931
15932 2009-03-01  Simon Josefsson  <simon@josefsson.org>
15933
15934         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
15935         __USE_GNU, for consistency with netdb.in.h.
15936         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15937
15938 2009-03-01  Bruno Haible  <bruno@clisp.org>
15939
15940         More support for FreeMiNT.
15941         * lib/fseeko.c (rpl_fseeko): Complete last commit.
15942         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15943
15944 2009-03-01  Bruno Haible  <bruno@clisp.org>
15945
15946         More support for FreeMiNT.
15947         * lib/fpurge.c (fpurge): Correct last commit.
15948         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15949
15950 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15951
15952         Fix unportable awk script in vc-list-files.
15953         * build-aux/vc-list-files: In the replacement awk script, use
15954         substr with a second argument of 1, not zero.
15955         Report by Simon Josefsson.
15956
15957 2009-02-28  Bruno Haible  <bruno@clisp.org>
15958
15959         More support for FreeMiNT.
15960         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
15961         to FreeMiNT today.
15962         * lib/fwriting.c (fwriting): Likewise.
15963         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
15964
15965 2009-02-28  Bruno Haible  <bruno@clisp.org>
15966
15967         * tests/test-freadseek.c (main): Disable test beyond end of file on
15968         FreeMiNT.
15969         * tests/test-ftello.c (main): Likewise.
15970         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
15971
15972 2009-02-28  Bruno Haible  <bruno@clisp.org>
15973
15974         Add tentative support for FreeMiNT.
15975         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
15976         * lib/fpurge.c (fpurge): Likewise.
15977         * lib/freadable.c (freadable): Likewise.
15978         * lib/freading.c (freading): Likewise.
15979         * lib/freadptr.c (freadptr): Likewise.
15980         * lib/freadseek.c (freadptrinc): Likewise.
15981         * lib/fseeko.c (rpl_fseeko): Likewise.
15982         * lib/fseterr.c (fseterr): Likewise.
15983         * lib/fwritable.c (fwritable): Likewise.
15984         * lib/fwriting.c (fwriting): Likewise.
15985         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
15986         Hourihane.
15987         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
15988
15989 2009-02-28  Bruno Haible  <bruno@clisp.org>
15990
15991         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
15992         SIGCHLD.
15993         Reported by Jim Meyering.
15994
15995 2009-02-28  Bruno Haible  <bruno@clisp.org>
15996
15997         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
15998         Mention the results of these tests on various platforms.
15999         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
16000         order.
16001         * doc/posix-functions/printf.texi: Likewise.
16002         * doc/posix-functions/snprintf.texi: Likewise.
16003         * doc/posix-functions/sprintf.texi: Likewise.
16004         * doc/posix-functions/vfprintf.texi: Likewise.
16005         * doc/posix-functions/vprintf.texi: Likewise.
16006         * doc/posix-functions/vsnprintf.texi: Likewise.
16007         * doc/posix-functions/vsprintf.texi: Likewise.
16008         * doc/glibc-functions/obstack_printf.texi: Likewise.
16009         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
16010
16011 2009-02-28  Bruno Haible  <bruno@clisp.org>
16012
16013         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
16014         Reported by Loïc Minier <lool@dooz.org>.
16015
16016 2009-02-27  Bruno Haible  <bruno@clisp.org>
16017
16018         * gnulib-tool (func_import): Make the sed expression used to create the
16019         sed script for updating the .gitignore file POSIX compliant.
16020         Reported by Eric Blake.
16021
16022 2009-02-27  Bruno Haible  <bruno@clisp.org>
16023
16024         * gnulib-tool (sed): Don't alias as "sed --posix".
16025         Reported by Eric Blake.
16026
16027 2009-02-27  Bruno Haible  <bruno@clisp.org>
16028
16029         Avoid test link errors.
16030         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
16031         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
16032         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
16033         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
16034         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
16035
16036 2009-02-27  Bruno Haible  <bruno@clisp.org>
16037
16038         Avoid spurious "(cached)" in configure output.
16039         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
16040         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
16041         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
16042         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
16043         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
16044         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
16045         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
16046         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
16047         Reported by Eric Blake.
16048
16049 2009-02-27  Eric Blake  <ebb9@byu.net>
16050
16051         printf: fix regression in previous patch
16052         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
16053
16054 2009-02-27  Bruno Haible  <bruno@clisp.org>
16055
16056         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
16057         value.
16058         * lib/stdint.in.h: Likewise.
16059         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
16060
16061 2009-02-27  Eric Blake  <ebb9@byu.net>
16062
16063         doc: mention more functions added in cygwin 1.7.0
16064         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
16065         addition.
16066         * doc/posix-functions/open_wmemstream.texi: Likewise.
16067         * doc/posix-functions/wcsnlen.texi: Likewise.
16068         * doc/posix-functions/wcsnrtombs.texi: Likewise.
16069         * doc/posix-functions/wcstod.texi: Likewise.
16070         * doc/posix-functions/wcstof.texi: Likewise.
16071         * doc/posix-functions/wcstoimax.texi: Likewise.
16072         * doc/posix-functions/wcstok.texi: Likewise.
16073         * doc/posix-functions/wcstoumax.texi: Likewise.
16074
16075         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
16076         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
16077         * doc/posix-functions/fprintf.texi: Update.
16078         * doc/posix-functions/printf.texi: Update.
16079         * doc/posix-functions/snprintf.texi: Update.
16080         * doc/posix-functions/sprintf.texi: Update.
16081         * doc/posix-functions/vfprintf.texi: Update.
16082         * doc/posix-functions/vprintf.texi: Update.
16083         * doc/posix-functions/vsnprintf.texi: Update.
16084         * doc/posix-functions/vsprintf.texi: Update.
16085         * doc/glibc-functions/obstack_printf.texi: Update.
16086         * doc/glibc-functions/obstack_vprintf.texi: Update.
16087
16088 2009-02-26  Eric Blake  <ebb9@byu.net>
16089
16090         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
16091         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
16092         compilation bug by using runtime conversion.
16093         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
16094         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
16095         * modules/ceill-tests (Files): Use nan.h.
16096         * modules/floorl-tests (Files): Likewise.
16097         * modules/frexpl-tests (Files): Likewise.
16098         * modules/isnanl-tests (Files): Likewise.
16099         * modules/ldexpl-tests (Files): Likewise.
16100         * modules/roundl-tests (Files): Likewise.
16101         * modules/truncl-tests (Files): Likewise.
16102         * tests/test-ceill.c (main): Use a working NaN.
16103         * tests/test-floorl.c (main): Likewise.
16104         * tests/test-frexpl.c (main): Likewise.
16105         * tests/test-isnan.c (test_long_double): Likewise.
16106         * tests/test-isnanl.h (main): Likewise.
16107         * tests/test-ldexpl.h (main): Likewise.
16108         * tests/test-roundl.h (main): Likewise.
16109         * tests/test-truncl.h (main): Likewise.
16110         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
16111
16112 2009-02-26  Eric Blake  <ebb9@byu.net>
16113             Bruno Haible  <bruno@clisp.org>
16114
16115         Work around a *printf bug with %ls on Solaris.
16116         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
16117         precision is specified, sprintf stops converting the wide string
16118         argument when the number of bytes that have been produced by this
16119         conversion equals or exceeds the precision.
16120         * doc/posix-functions/fprintf.texi: Update.
16121         * doc/posix-functions/printf.texi: Update.
16122         * doc/posix-functions/snprintf.texi: Update.
16123         * doc/posix-functions/sprintf.texi: Update.
16124         * doc/posix-functions/vfprintf.texi: Update.
16125         * doc/posix-functions/vprintf.texi: Update.
16126         * doc/posix-functions/vsnprintf.texi: Update.
16127         * doc/posix-functions/vsprintf.texi: Update.
16128         * doc/glibc-functions/obstack_printf.texi: Update.
16129         * doc/glibc-functions/obstack_vprintf.texi: Update.
16130
16131 2009-02-26  Eric Blake  <ebb9@byu.net>
16132
16133         stdlib: favor compiler check of random.h
16134         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
16135         to avoid an ObjC random.h installed by Swarm.
16136
16137 2009-02-26  Bruno Haible  <bruno@clisp.org>
16138
16139         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
16140         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
16141         Reported by Gary V. Vaughan <gary@gnu.org>.
16142
16143 2009-02-26  Bruno Haible  <bruno@clisp.org>
16144
16145         Fix *printf behaviour regarding the %ls directive.
16146         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
16147         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
16148         NEED_PRINTF_DIRECTIVE_LS.
16149         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
16150         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
16151         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
16152         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
16153         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
16154         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
16155         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
16156         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
16157         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
16158         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
16159         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
16160         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
16161         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
16162         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
16163         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
16164         * doc/posix-functions/fprintf.texi: Update.
16165         * doc/posix-functions/printf.texi: Update.
16166         * doc/posix-functions/snprintf.texi: Update.
16167         * doc/posix-functions/sprintf.texi: Update.
16168         * doc/posix-functions/vfprintf.texi: Update.
16169         * doc/posix-functions/vprintf.texi: Update.
16170         * doc/posix-functions/vsnprintf.texi: Update.
16171         * doc/posix-functions/vsprintf.texi: Update.
16172         * doc/glibc-functions/obstack_printf.texi: Update.
16173         * doc/glibc-functions/obstack_vprintf.texi: Update.
16174         Reported by Eric Blake.
16175
16176 2009-02-25  Bruno Haible  <bruno@clisp.org>
16177
16178         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
16179         with known value.
16180         Reported by Gary V. Vaughan <gary@gnu.org>.
16181
16182 2009-02-25  Bruno Haible  <bruno@clisp.org>
16183
16184         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
16185         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
16186         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
16187         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
16188         Reported by Gary V. Vaughan <gary@gnu.org>.
16189
16190 2009-02-25  Bruno Haible  <bruno@clisp.org>
16191
16192         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
16193         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
16194         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
16195         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
16196         Reported by Gary V. Vaughan <gary@gnu.org>.
16197
16198 2009-02-25  Eric Blake  <ebb9@byu.net>
16199
16200         tests: skip fseek/ftell tests if ungetc is broken
16201         * m4/ungetc.m4: New file.
16202         * modules/fseek-tests: Split test, so ungetc dependency is
16203         separate from rest of test.
16204         * modules/fseeko-tests: Likewise.
16205         * modules/ftell-tests: Likewise.
16206         * modules/ftello-tests: Likewise.
16207         * tests/test-fseek.c (main): Isolate ungetc dependency.
16208         * tests/test-fseeko.c (main): Likewise.
16209         * tests/test-ftell.c (main): Likewise.
16210         * tests/test-ftello.c (main): Likewise.
16211         * tests/test-fseek2.sh: New file.
16212         * tests/test-fseeko2.sh: Likewise.
16213         * tests/test-ftell2.sh: Likewise.
16214         * tests/test-ftello2.sh: Likewise.
16215
16216 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
16217
16218         test-getaddrinfo: fix usage of skip return code 77
16219         * tests/test-gettaddrinfo.c: Return skip code 77 only
16220         for first occurance of skip (4x77 is not 77)
16221
16222 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
16223
16224         strtod: avoid C99 decl-after-statement
16225         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
16226
16227 2009-02-24  Eric Blake  <ebb9@byu.net>
16228
16229         strtod: detect HP-UX 11.31 bug
16230         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
16231         Reported by Gary V. Vaughan.
16232
16233 2009-02-23  Bruno Haible  <bruno@clisp.org>
16234
16235         Fix invalid read past end of memory block.
16236         * lib/vasnprintf.c (DCHAR_SET): Define.
16237         (local_wcslen): Define only when needed.
16238         (local_strnlen, local_wcsnlen): New functions.
16239         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
16240         directives that involve a conversion ourselves.
16241         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
16242         wcsnlen, mbrtowc, wcrtomb.
16243         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
16244         * tests/test-vasprintf-posix.c (test_function): Likewise.
16245         * tests/test-snprintf-posix.h (test_function): Likewise.
16246         * tests/test-sprintf-posix.h (test_function): Likewise.
16247         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16248
16249 2009-02-22  Bruno Haible  <bruno@clisp.org>
16250
16251         Implement new clarified decomposition of Hangul syllables.
16252         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
16253         of type LTV, return only a pairwise decomposition.
16254         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
16255         Likewise.
16256         * tests/uninorm/test-decomposition.c (main): Updated expected result.
16257         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
16258         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
16259
16260 2009-02-22  Bruno Haible  <bruno@clisp.org>
16261
16262         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
16263         zero-length results and shrink excess allocated memory.
16264         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
16265         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
16266         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
16267         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
16268         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
16269         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
16270         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
16271         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
16272         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
16273         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
16274         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
16275         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
16276
16277 2009-02-21  Bruno Haible  <bruno@clisp.org>
16278
16279         * doc/gnulib.texi: Include safe-alloc.texi earlier.
16280         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
16281         spaces after a period. Put a space between a macro name and its
16282         argument list. Trivial rewordings.
16283         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
16284         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
16285         (main): Return 0 explicitly.
16286
16287 2009-02-21  Bruno Haible  <bruno@clisp.org>
16288
16289         Tests for module 'uninorm/filter'.
16290         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
16291         * modules/uninorm/filter-tests: New file.
16292
16293         New module 'uninorm/filter'.
16294         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
16295         uninorm_filter_flush, uninorm_filter_free): New declarations.
16296         * lib/uninorm/uninorm-filter.c: New file.
16297         * modules/uninorm/filter: New file.
16298
16299 2009-02-21  Bruno Haible  <bruno@clisp.org>
16300
16301         Tests for module 'uninorm/nfkc'.
16302         * tests/uninorm/test-nfkc.c: New file.
16303         * tests/uninorm/test-u8-nfkc.c: New file.
16304         * tests/uninorm/test-u16-nfkc.c: New file.
16305         * tests/uninorm/test-u32-nfkc.c: New file.
16306         * tests/uninorm/test-u32-nfkc-big.sh: New file.
16307         * tests/uninorm/test-u32-nfkc-big.c: New file.
16308         * modules/uninorm/nfkc-tests: New file.
16309
16310         New module 'uninorm/nfkc'.
16311         * lib/uninorm/nfkc.c: New file.
16312         * modules/uninorm/nfkc: New file.
16313
16314         Tests for module 'uninorm/nfkd'.
16315         * tests/uninorm/test-nfkd.c: New file.
16316         * tests/uninorm/test-u8-nfkd.c: New file.
16317         * tests/uninorm/test-u16-nfkd.c: New file.
16318         * tests/uninorm/test-u32-nfkd.c: New file.
16319         * tests/uninorm/test-u32-nfkd-big.sh: New file.
16320         * tests/uninorm/test-u32-nfkd-big.c: New file.
16321         * modules/uninorm/nfkd-tests: New file.
16322
16323         New module 'uninorm/nfkd'.
16324         * lib/uninorm/nfkd.c: New file.
16325         * modules/uninorm/nfkd: New file.
16326
16327         Tests for module 'uninorm/nfc'.
16328         * tests/uninorm/test-nfc.c: New file.
16329         * tests/uninorm/test-u8-nfc.c: New file.
16330         * tests/uninorm/test-u16-nfc.c: New file.
16331         * tests/uninorm/test-u32-nfc.c: New file.
16332         * tests/uninorm/test-u32-nfc-big.sh: New file.
16333         * tests/uninorm/test-u32-nfc-big.c: New file.
16334         * modules/uninorm/nfc-tests: New file.
16335
16336         New module 'uninorm/nfc'.
16337         * lib/uninorm/nfc.c: New file.
16338         * modules/uninorm/nfc: New file.
16339
16340         Tests for module 'uninorm/nfd'.
16341         * tests/uninorm/test-nfd.c: New file.
16342         * tests/uninorm/test-u8-nfd.c: New file.
16343         * tests/uninorm/test-u16-nfd.c: New file.
16344         * tests/uninorm/test-u32-nfd.c: New file.
16345         * tests/uninorm/test-u32-nfd-big.sh: New file.
16346         * tests/uninorm/test-u32-nfd-big.c: New file.
16347         * tests/uninorm/test-u32-normalize-big.h: New file.
16348         * tests/uninorm/test-u32-normalize-big.c: New file.
16349         * tests/uninorm/NormalizationTest.txt: New file, created from
16350         Unicode 5.1.0 NormalizationTest.txt.
16351         * modules/uninorm/nfd-tests: New file.
16352
16353         New module 'uninorm/nfd'.
16354         * lib/uninorm/nfd.c: New file.
16355         * modules/uninorm/nfd: New file.
16356
16357         New module 'uninorm/u32-normalize'.
16358         * lib/uninorm/u32-normalize.c: New file.
16359         * modules/uninorm/u32-normalize: New file.
16360
16361         New module 'uninorm/u16-normalize'.
16362         * lib/uninorm/u16-normalize.c: New file.
16363         * modules/uninorm/u16-normalize: New file.
16364
16365         New module 'uninorm/u8-normalize'.
16366         * lib/uninorm/u8-normalize.c: New file.
16367         * lib/uninorm/normalize-internal.h: New file.
16368         * lib/uninorm/u-normalize-internal.h: New file.
16369         * modules/uninorm/u8-normalize: New file.
16370
16371         New module 'uninorm/decompose-internal'.
16372         * lib/uninorm/decompose-internal.c: New file.
16373         * modules/uninorm/decompose-internal: New file.
16374
16375         Tests for module 'uninorm/composition'.
16376         * tests/uninorm/test-composition.c: New file.
16377         * modules/uninorm/composition-tests: New file.
16378
16379         New module 'uninorm/composition'.
16380         * lib/uninorm/composition.c: New file.
16381         * lib/uninorm/composition-table.gperf: New file, generated by
16382         gen-uni-tables.
16383         * modules/uninorm/composition: New file.
16384
16385         Tests for module 'uninorm/compat-decomposition'.
16386         * tests/uninorm/test-compat-decomposition.c: New file.
16387         * modules/uninorm/compat-decomposition-tests: New file.
16388
16389         New module 'uninorm/compat-decomposition'.
16390         * lib/uninorm/decompose-internal.h: New file.
16391         * lib/uninorm/compat-decomposition.c: New file.
16392         * modules/uninorm/compat-decomposition: New file.
16393
16394         Tests for module 'uninorm/canonical-decomposition'.
16395         * tests/uninorm/test-canonical-decomposition.c: New file.
16396         * modules/uninorm/canonical-decomposition-tests: New file.
16397
16398         New module 'uninorm/canonical-decomposition'.
16399         * lib/uninorm/canonical-decomposition.c: New file.
16400         * modules/uninorm/canonical-decomposition: New file.
16401
16402         Tests for module 'uninorm/decomposition'.
16403         * tests/uninorm/test-decomposition.c: New file.
16404         * modules/uninorm/decomposition-tests: New file.
16405
16406         New module 'uninorm/decomposition'.
16407         * lib/uninorm/decomposition.c: New file.
16408         * modules/uninorm/decomposition: New file.
16409
16410         New module 'uninorm/decomposition-table'.
16411         * lib/uninorm/decomposition-table.h: New file.
16412         * lib/uninorm/decomposition-table.c: New file.
16413         * lib/uninorm/decomposition-table1.h: New file, generated by
16414         gen-uni-tables.
16415         * lib/uninorm/decomposition-table2.h: New file, generated by
16416         gen-uni-tables.
16417         * modules/uninorm/decomposition-table: New file.
16418
16419         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
16420         (UC_DECOMP_*): New enumeration items.
16421         (get_decomposition): New function.
16422         (struct decomp_table): New type.
16423         (output_decomposition, output_decomposition_tables): New functions.
16424         (unicode_composition_exclusions): New variable.
16425         (fill_composition_exclusions, debug_output_composition_tables): New
16426         functions.
16427         (main): Accept one more argument. Invoke fill_composition_exclusions.
16428         Output decomposition and composition tables.
16429
16430         New module 'uninorm/base'.
16431         * lib/uninorm.h: New file.
16432         * lib/unictype.h: Update comment.
16433         * modules/uninorm/base: New file.
16434
16435 2009-02-21  David Lutterkort  <lutter@redhat.com>
16436
16437         Tests for module 'safe-alloc'.
16438         * tests/test-safe-alloc.c: New file.
16439         * modules/safe-alloc-tests: New file.
16440
16441         New module 'safe-alloc'.
16442         * lib/safe-alloc.h: New file.
16443         * lib/safe-alloc.c: New file.
16444         * m4/safe-alloc.m4: New file.
16445         * modules/safe-alloc: New file.
16446         * doc/safe-alloc.texi: New file.
16447         * doc/gnulib.texi: Include it.
16448         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
16449         safe-alloc.
16450
16451 2009-02-18  Bruno Haible  <bruno@clisp.org>
16452
16453         Fix link error on non-glibc systems.
16454         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
16455         variable.
16456         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
16457
16458 2009-02-18  Jim Meyering  <meyering@redhat.com>
16459
16460         fts: avoid used-uninitialized error due to recent change
16461         * lib/fts.c (fts_read): Guard uses of the new member,
16462         parent->fts_n_dirs_remaining, since it's not relevant for
16463         the parent of a directory specified on the command-line.
16464
16465 2009-02-17  James Youngman  <jay@gnu.org>
16466             Bruno Haible  <bruno@clisp.org>
16467
16468         * m4/include_next.m4: Reformulate comment.
16469
16470 2009-02-16  Jim Meyering  <meyering@redhat.com>
16471
16472         fts: add #if guards so that the fts_lgpl module still builds
16473         * lib/fts.c: Guard just-added hash-table-using parts with
16474         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
16475         Reported by Simon Josefsson.
16476
16477 2009-02-15  Bruno Haible  <bruno@clisp.org>
16478
16479         * modules/array-mergesort-tests: New file.
16480         * tests/test-array-mergesort.c: New file.
16481
16482         New module 'array-mergesort'.
16483         * modules/array-mergesort: New file.
16484         * lib/array-mergesort.h: New file.
16485
16486 2009-02-15  Bruno Haible  <bruno@clisp.org>
16487
16488         Fix 2009-02-07 commit.
16489         * lib/gen-uni-tables.c (output_predicate, output_category,
16490         output_combclass, output_bidi_category, output_decimal_digit,
16491         output_digit, output_numeric, output_mirror, output_scripts,
16492         output_ident_category, output_simple_mapping): Fix format directives.
16493         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
16494
16495 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
16496
16497         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
16498         fixes are available from IBM.
16499
16500 2009-02-13  Jim Meyering  <meyering@redhat.com>
16501
16502         fts: arrange not to stat non-directories in more cases
16503         This makes GNU find (when it doesn't need to stat each file)
16504         *much* more efficient at traversing reiserfs file systems.
16505         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
16506         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
16507         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
16508         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
16509         (leaf_optimization_applies): New function.
16510         (LCO_hash, LCO_compare): New helper functions.
16511         (link_count_optimize_ok): New function.
16512         (fts_stat): Initialize new member (if dir).
16513         (fts_read): Decrement parent's fts_n_dirs_remaining count if
16514         we've just stat'ed a directory.  Skip the stat call when possible.
16515         ---
16516         Note this AFS-related exchange:
16517         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
16518         and note find's pioctl call in find/fstype.c.
16519         But that is necessary only if you want to enable the
16520         optimization for AFS, and for now, I don't.
16521
16522         fts: move a function definition "up" (no semantic change)
16523         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
16524         "up" to precede upcoming use of a related function.
16525
16526 2009-02-11  Jim Meyering  <meyering@redhat.com>
16527
16528         fts: correct internal computation of nlinks (optimization-related)
16529         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
16530         whether the current entry is a directory, so don't test it.
16531
16532 2009-02-10  Bruno Haible  <bruno@clisp.org>
16533
16534         Tests for module 'uniwbrk/ulc-wordbreaks'.
16535         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
16536         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
16537         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
16538
16539         Tests for module 'uniwbrk/u32-wordbreaks'.
16540         * modules/uniwbrk/u32-wordbreaks-tests: New file.
16541         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
16542
16543         Tests for module 'uniwbrk/u16-wordbreaks'.
16544         * modules/uniwbrk/u16-wordbreaks-tests: New file.
16545         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
16546
16547         Tests for module 'uniwbrk/u8-wordbreaks'.
16548         * modules/uniwbrk/u8-wordbreaks-tests: New file.
16549         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
16550
16551 2009-02-10  Bruno Haible  <bruno@clisp.org>
16552
16553         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
16554         property.
16555         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
16556         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
16557         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
16558
16559 2009-02-10  Simon Josefsson  <simon@josefsson.org>
16560
16561         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
16562         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
16563
16564 2009-02-10  Bruno Haible  <bruno@clisp.org>
16565
16566         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
16567         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
16568         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
16569         * lib/unilbrk/u8-possible-linebreaks.c: Update.
16570         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
16571         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
16572
16573 2009-02-09  Simon Josefsson  <simon@josefsson.org>
16574
16575         * lib/sockets.h (gl_fd_to_handle): New function.
16576
16577         * tests/test-sockets.c: Call gl_fd_to_handle.
16578
16579 2009-02-09  Bruno Haible  <bruno@clisp.org>
16580
16581         * doc/havelib.texi: Document the conventions on bi-arch systems.
16582
16583 2009-02-08  Bruno Haible  <bruno@clisp.org>
16584
16585         Document the AC_LIB_LINKFLAGS macro.
16586         * doc/havelib.texi: New file, mostly written on 2005-05-24.
16587         * doc/gnulib.texi: Include it.
16588
16589 2009-02-08  Bruno Haible  <bruno@clisp.org>
16590
16591         Fix wrong order of sections, compared to TOC.
16592         * doc/gnulib.texi: Include relocatable-maint.texi after the
16593         "Regular expressions" node, not before.
16594
16595 2009-02-08  Bruno Haible  <bruno@clisp.org>
16596
16597         Tests for module 'unicase/totitle'.
16598         * modules/unicase/totitle-tests: New file.
16599
16600         Tests for module 'unicase/tolower'.
16601         * modules/unicase/tolower-tests: New file.
16602
16603         Tests for module 'unicase/toupper'.
16604         * modules/unicase/toupper-tests: New file.
16605         * tests/unicase/test-mapping-part1.h: New file.
16606         * tests/unicase/test-mapping-part2.h: New file.
16607
16608         New module 'unicase/totitle'.
16609         * modules/unicase/totitle: New file.
16610         * lib/unicase/totitle.c: New file.
16611
16612         New module 'unicase/tolower'.
16613         * modules/unicase/tolower: New file.
16614         * lib/unicase/tolower.c: New file.
16615
16616         New module 'unicase/toupper'.
16617         * modules/unicase/toupper: New file.
16618         * lib/unicase/toupper.c: New file.
16619         * lib/unicase/simple-mapping.h: New file.
16620
16621         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
16622         (mapping_table): New structure.
16623         (output_simple_mapping): New function.
16624         (main): Invoke output_simple_mapping_test and output_simple_mapping.
16625         * modules/gen-uni-tables (Description): Update.
16626         * lib/unicase/toupper.h: New file, automatically generated by
16627         gen-uni-tables.
16628         * lib/unicase/tolower.h: New file, automatically generated by
16629         gen-uni-tables.
16630         * lib/unicase/totitle.h: New file, automatically generated by
16631         gen-uni-tables.
16632         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
16633         gen-uni-tables.
16634         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
16635         gen-uni-tables.
16636         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
16637         gen-uni-tables.
16638
16639         New module 'unicase/base'.
16640         * modules/unicase/base: New file.
16641         * lib/unicase.h: New file.
16642
16643 2009-02-08  Bruno Haible  <bruno@clisp.org>
16644
16645         New module 'uniwbrk/ulc-wordbreaks'.
16646         * modules/uniwbrk/ulc-wordbreaks: New file.
16647         * lib/uniwbrk/ulc-wordbreaks.c: New file.
16648
16649         New module 'uniwbrk/u32-wordbreaks'.
16650         * modules/uniwbrk/u32-wordbreaks: New file.
16651         * lib/uniwbrk/u32-wordbreaks.c: New file.
16652
16653         New module 'uniwbrk/u16-wordbreaks'.
16654         * modules/uniwbrk/u16-wordbreaks: New file.
16655         * lib/uniwbrk/u16-wordbreaks.c: New file.
16656
16657         New module 'uniwbrk/u8-wordbreaks'.
16658         * modules/uniwbrk/u8-wordbreaks: New file.
16659         * lib/uniwbrk/u8-wordbreaks.c: New file.
16660         * lib/uniwbrk/u-wordbreaks.h: New file.
16661
16662         New module 'uniwbrk/table'.
16663         * modules/uniwbrk/table: New file.
16664         * lib/uniwbrk/wbrktable.h: New file.
16665         * lib/uniwbrk/wbrktable.c: New file.
16666
16667         New module 'uniwbrk/wordbreak-property'.
16668         * modules/uniwbrk/wordbreak-property: New file.
16669         * lib/uniwbrk/wordbreak-property.c: New file.
16670
16671         * lib/gen-uni-tables.c (WBP_*): New enum items.
16672         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
16673         (unicode_org_wbp): New variable.
16674         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
16675         New functions.
16676         (wbp_table): New structure.
16677         (output_wbp, output_wbrk_tables): New functions.
16678         (main): Accept additional argument. Invoke fill_org_wbp,
16679         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
16680         output_wbrk_tables.
16681         * modules/gen-uni-tables (Description): Update.
16682         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
16683         gen-uni-tables.
16684
16685         New module 'uniwbrk/base'.
16686         * modules/uniwbrk/base: New file.
16687         * lib/uniwbrk.h: New file.
16688
16689 2009-02-08  Bruno Haible  <bruno@clisp.org>
16690
16691         Update to Unicode 5.1.0.
16692         * lib/gen-uni-tables.c (is_property_alphabetic): Include
16693         U+2185..U+2188.
16694         (is_property_default_ignorable_code_point): Don't include characters
16695         of category Cc or Cs and not-a-characters.
16696         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
16697         U+0D79, U+109E, U+109F, U+A60C.
16698         * lib/unictype/bidi_of.h: Regenerated.
16699         * lib/unictype/blocks.h: Regenerated.
16700         * lib/unictype/categ_C.h: Regenerated.
16701         * lib/unictype/categ_Cf.h: Regenerated.
16702         * lib/unictype/categ_Cn.h: Regenerated.
16703         * lib/unictype/categ_L.h: Regenerated.
16704         * lib/unictype/categ_Ll.h: Regenerated.
16705         * lib/unictype/categ_Lm.h: Regenerated.
16706         * lib/unictype/categ_Lo.h: Regenerated.
16707         * lib/unictype/categ_Lu.h: Regenerated.
16708         * lib/unictype/categ_M.h: Regenerated.
16709         * lib/unictype/categ_Mc.h: Regenerated.
16710         * lib/unictype/categ_Me.h: Regenerated.
16711         * lib/unictype/categ_Mn.h: Regenerated.
16712         * lib/unictype/categ_N.h: Regenerated.
16713         * lib/unictype/categ_Nd.h: Regenerated.
16714         * lib/unictype/categ_Nl.h: Regenerated.
16715         * lib/unictype/categ_No.h: Regenerated.
16716         * lib/unictype/categ_P.h: Regenerated.
16717         * lib/unictype/categ_Pd.h: Regenerated.
16718         * lib/unictype/categ_Pe.h: Regenerated.
16719         * lib/unictype/categ_Pf.h: Regenerated.
16720         * lib/unictype/categ_Pi.h: Regenerated.
16721         * lib/unictype/categ_Po.h: Regenerated.
16722         * lib/unictype/categ_Ps.h: Regenerated.
16723         * lib/unictype/categ_S.h: Regenerated.
16724         * lib/unictype/categ_Sk.h: Regenerated.
16725         * lib/unictype/categ_Sm.h: Regenerated.
16726         * lib/unictype/categ_So.h: Regenerated.
16727         * lib/unictype/categ_of.h: Regenerated.
16728         * lib/unictype/combining.h: Regenerated.
16729         * lib/unictype/ctype_alnum.h: Regenerated.
16730         * lib/unictype/ctype_alpha.h: Regenerated.
16731         * lib/unictype/ctype_graph.h: Regenerated.
16732         * lib/unictype/ctype_lower.h: Regenerated.
16733         * lib/unictype/ctype_print.h: Regenerated.
16734         * lib/unictype/ctype_punct.h: Regenerated.
16735         * lib/unictype/ctype_upper.h: Regenerated.
16736         * lib/unictype/decdigit.h: Regenerated.
16737         * lib/unictype/digit.h: Regenerated.
16738         * lib/unictype/mirror.h: Regenerated.
16739         * lib/unictype/numeric.h: Regenerated.
16740         * lib/unictype/pr_alphabetic.h: Regenerated.
16741         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
16742         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
16743         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
16744         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
16745         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
16746         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
16747         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
16748         * lib/unictype/pr_combining.h: Regenerated.
16749         * lib/unictype/pr_dash.h: Regenerated.
16750         * lib/unictype/pr_decimal_digit.h: Regenerated.
16751         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
16752         * lib/unictype/pr_deprecated.h: Regenerated.
16753         * lib/unictype/pr_diacritic.h: Regenerated.
16754         * lib/unictype/pr_extender.h: Regenerated.
16755         * lib/unictype/pr_format_control.h: Regenerated.
16756         * lib/unictype/pr_grapheme_base.h: Regenerated.
16757         * lib/unictype/pr_grapheme_extend.h: Regenerated.
16758         * lib/unictype/pr_grapheme_link.h: Regenerated.
16759         * lib/unictype/pr_id_continue.h: Regenerated.
16760         * lib/unictype/pr_id_start.h: Regenerated.
16761         * lib/unictype/pr_ideographic.h: Regenerated.
16762         * lib/unictype/pr_ignorable_control.h: Regenerated.
16763         * lib/unictype/pr_lowercase.h: Regenerated.
16764         * lib/unictype/pr_math.h: Regenerated.
16765         * lib/unictype/pr_numeric.h: Regenerated.
16766         * lib/unictype/pr_other_alphabetic.h: Regenerated.
16767         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
16768         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
16769         * lib/unictype/pr_other_id_continue.h: Regenerated.
16770         * lib/unictype/pr_other_lowercase.h: Regenerated.
16771         * lib/unictype/pr_other_math.h: Regenerated.
16772         * lib/unictype/pr_punctuation.h: Regenerated.
16773         * lib/unictype/pr_sentence_terminal.h: Regenerated.
16774         * lib/unictype/pr_soft_dotted.h: Regenerated.
16775         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
16776         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
16777         * lib/unictype/pr_unified_ideograph.h: Regenerated.
16778         * lib/unictype/pr_uppercase.h: Regenerated.
16779         * lib/unictype/pr_xid_continue.h: Regenerated.
16780         * lib/unictype/pr_xid_start.h: Regenerated.
16781         * lib/unictype/pr_zero_width.h: Regenerated.
16782         * lib/unictype/scripts.h: Regenerated.
16783         * lib/unictype/scripts_byname.gperf: Regenerated.
16784         * lib/unictype/sy_java_ident.h: Regenerated.
16785         * lib/unilbrk/lbrkprop1.h: Regenerated.
16786         * lib/unilbrk/lbrkprop2.h: Regenerated.
16787         * tests/unictype/test-categ_C.c: Regenerated.
16788         * tests/unictype/test-categ_Cf.c: Regenerated.
16789         * tests/unictype/test-categ_Cn.c: Regenerated.
16790         * tests/unictype/test-categ_L.c: Regenerated.
16791         * tests/unictype/test-categ_Ll.c: Regenerated.
16792         * tests/unictype/test-categ_Lm.c: Regenerated.
16793         * tests/unictype/test-categ_Lo.c: Regenerated.
16794         * tests/unictype/test-categ_Lu.c: Regenerated.
16795         * tests/unictype/test-categ_M.c: Regenerated.
16796         * tests/unictype/test-categ_Mc.c: Regenerated.
16797         * tests/unictype/test-categ_Me.c: Regenerated.
16798         * tests/unictype/test-categ_Mn.c: Regenerated.
16799         * tests/unictype/test-categ_N.c: Regenerated.
16800         * tests/unictype/test-categ_Nd.c: Regenerated.
16801         * tests/unictype/test-categ_Nl.c: Regenerated.
16802         * tests/unictype/test-categ_No.c: Regenerated.
16803         * tests/unictype/test-categ_P.c: Regenerated.
16804         * tests/unictype/test-categ_Pd.c: Regenerated.
16805         * tests/unictype/test-categ_Pe.c: Regenerated.
16806         * tests/unictype/test-categ_Pf.c: Regenerated.
16807         * tests/unictype/test-categ_Pi.c: Regenerated.
16808         * tests/unictype/test-categ_Po.c: Regenerated.
16809         * tests/unictype/test-categ_Ps.c: Regenerated.
16810         * tests/unictype/test-categ_S.c: Regenerated.
16811         * tests/unictype/test-categ_Sk.c: Regenerated.
16812         * tests/unictype/test-categ_Sm.c: Regenerated.
16813         * tests/unictype/test-categ_So.c: Regenerated.
16814         * tests/unictype/test-ctype_alnum.c: Regenerated.
16815         * tests/unictype/test-ctype_alpha.c: Regenerated.
16816         * tests/unictype/test-ctype_graph.c: Regenerated.
16817         * tests/unictype/test-ctype_lower.c: Regenerated.
16818         * tests/unictype/test-ctype_print.c: Regenerated.
16819         * tests/unictype/test-ctype_punct.c: Regenerated.
16820         * tests/unictype/test-ctype_upper.c: Regenerated.
16821         * tests/unictype/test-decdigit.h: Regenerated.
16822         * tests/unictype/test-digit.h: Regenerated.
16823         * tests/unictype/test-numeric.h: Regenerated.
16824         * tests/unictype/test-pr_alphabetic.c: Regenerated.
16825         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
16826         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
16827         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
16828         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
16829         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
16830         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
16831         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
16832         * tests/unictype/test-pr_combining.c: Regenerated.
16833         * tests/unictype/test-pr_dash.c: Regenerated.
16834         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
16835         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
16836         * tests/unictype/test-pr_deprecated.c: Regenerated.
16837         * tests/unictype/test-pr_diacritic.c: Regenerated.
16838         * tests/unictype/test-pr_extender.c: Regenerated.
16839         * tests/unictype/test-pr_format_control.c: Regenerated.
16840         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
16841         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
16842         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
16843         * tests/unictype/test-pr_id_continue.c: Regenerated.
16844         * tests/unictype/test-pr_id_start.c: Regenerated.
16845         * tests/unictype/test-pr_ideographic.c: Regenerated.
16846         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
16847         * tests/unictype/test-pr_lowercase.c: Regenerated.
16848         * tests/unictype/test-pr_math.c: Regenerated.
16849         * tests/unictype/test-pr_numeric.c: Regenerated.
16850         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
16851         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
16852         Regenerated.
16853         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
16854         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
16855         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
16856         * tests/unictype/test-pr_other_math.c: Regenerated.
16857         * tests/unictype/test-pr_punctuation.c: Regenerated.
16858         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
16859         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
16860         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
16861         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
16862         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
16863         * tests/unictype/test-pr_uppercase.c: Regenerated.
16864         * tests/unictype/test-pr_xid_continue.c: Regenerated.
16865         * tests/unictype/test-pr_xid_start.c: Regenerated.
16866         * tests/unictype/test-pr_zero_width.c: Regenerated.
16867
16868         Update to Unicode 5.1.0.
16869         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
16870         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
16871         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
16872         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
16873         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
16874         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
16875         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
16876         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
16877         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
16878         (nonspacing_table_ind): Update.
16879         * tests/uniwidth/test-uc_width2.sh: Update expected result.
16880
16881         Update to Unicode 5.1.0.
16882         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
16883         code transform.
16884         * lib/uniname/uniname.c (unicode_character_name,
16885         unicode_name_character): Add the range 0x1Fxxx to the code transform.
16886         * lib/uniname/uninames.h: Regenerated.
16887         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
16888
16889 2009-02-07  Bruno Haible  <bruno@clisp.org>
16890
16891         Merge gen-ctype and gen-lbrk into a single program.
16892         * lib/gen-uni-tables.c: New file, incorporating
16893         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
16894         Add directory prefixes to the names of the generated files.
16895         * lib/unictype/gen-ctype.c: Remove file.
16896         * lib/unilbrk/gen-lbrk.c: Remove file.
16897         * modules/gen-uni-tables: New file.
16898         * modules/unictype/gen-ctype: Remove file.
16899         * modules/unilbrk/gen-lbrk: Remove file.
16900
16901 2009-02-07  Bruno Haible  <bruno@clisp.org>
16902
16903         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
16904
16905         New module 'unistr/u32-strcoll'.
16906         * modules/unistr/u32-strcoll: New file.
16907         * lib/unistr/u32-strcoll.c: New file.
16908
16909         New module 'unistr/u16-strcoll'.
16910         * modules/unistr/u16-strcoll: New file.
16911         * lib/unistr/u16-strcoll.c: New file.
16912
16913         New module 'unistr/u8-strcoll'.
16914         * modules/unistr/u8-strcoll: New file.
16915         * lib/unistr/u8-strcoll.c: New file.
16916         * lib/unistr/u-strcoll.h: New file.
16917
16918 2009-02-07  Bruno Haible  <bruno@clisp.org>
16919
16920         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
16921         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
16922         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
16923         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
16924         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
16925         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
16926
16927 2009-02-07  Bruno Haible  <bruno@clisp.org>
16928
16929         Make 64-bit clean.
16930         * lib/unictype/gen-ctype.c (output_predicate, output_category,
16931         output_combclass, output_bidi_category, output_decimal_digit,
16932         output_digit, output_numeric, output_mirror, output_scripts,
16933         output_ident_category): Use proper width specifier in format strings.
16934
16935 2009-02-07  Bruno Haible  <bruno@clisp.org>
16936
16937         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
16938         failure behaviour.
16939
16940 2009-02-07  Jim Meyering  <meyering@redhat.com>
16941
16942         regex: avoid compilation failure with upcoming gcc-4.4
16943         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
16944         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
16945         "... error: integer overflow in preprocessor expression".
16946
16947 2009-02-05  Ben Pfaff  <blp@gnu.org>
16948
16949         Fix link errors on Windows when close module is used.
16950         * modules/close: Add $(LIB_CLOSE) to Link section.
16951         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
16952         $(LIB_CLOSE) on Windows.
16953
16954 2009-02-05  Jim Meyering  <meyering@redhat.com>
16955
16956         still avoid unused-parameter warnings, but do it cleanly
16957         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
16958         (get_fs_usage): Cast to void instead.
16959         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
16960         (dev_from_mount_options, read_file_system_list): Cast to void.
16961         Prompted by Bruno Haible.
16962
16963 2009-02-04  Jim Meyering  <meyering@redhat.com>
16964
16965         fsusage.c: correct copyright year
16966         * lib/fsusage.c: Reflect year in which the change is pushed into
16967
16968         avoid misc. warnings
16969         * lib/fsusage.c (UNUSED_PARAM): Define.
16970         (get_fs_usage): Mark parameter "disk" as unused.
16971         * lib/getugroups.c (getgrent): Use "void" in prototype.
16972         * lib/mountlist.c: Mark unused parameters.
16973         (read_file_system_list): Declare a local with "const".
16974         * lib/nanosleep.c (getnow): Declare static.
16975         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
16976
16977         dirfd: set errno upon failure
16978         * lib/dirfd.c: Include <errno.h>.
16979         Set errno to ENOTSUP when returning -1.
16980         * modules/dirfd (Depends-on): Add errno.
16981         Suggested by John Kodis <kodis@comcast.net>.
16982
16983 2009-02-01  Bruno Haible  <bruno@clisp.org>
16984
16985         Don't assume sizeof (long) >= sizeof (void *).
16986         * lib/memcmp.c: Include stdint.h.
16987         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
16988         srcp2 to 'const byte *'.
16989         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
16990         types to uintptr_t.
16991         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
16992         * modules/memcmp (Depends-on): Add stdint.
16993         Reported by Ozkan Sezer <sezeroz@gmail.com>.
16994
16995 2009-01-30  Eric Blake  <ebb9@byu.net>
16996
16997         fix more require-before-expand issues
16998         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
16999         expand, AC_PROG_AWK.
17000         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
17001
17002 2009-01-28  Eric Blake  <ebb9@byu.net>
17003
17004         version-etc: use consistent URL formatting
17005         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
17006         Improve formatting.  Use fputs for string without %.
17007
17008 2009-01-28  Jim Meyering  <meyering@redhat.com>
17009
17010         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
17011         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
17012         "underquoted definition of NAME" from autoconf-2.59.
17013
17014 2009-01-28  Bruno Haible  <bruno@clisp.org>
17015
17016         * doc/gnulib.texi: Add "Obsolete modules" to index.
17017
17018 2009-01-28  Jim Meyering  <meyering@redhat.com>
17019
17020         useless-if-before-free: recognize more variants
17021         * build-aux/useless-if-before-free: Also recognize e.g.,
17022         if (NULL != p) free (p);
17023
17024 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
17025
17026         test-getaddrinfo: skip (don't fail) this test when there's no network
17027         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
17028         on the presumption that it means you lack network access.
17029
17030 2009-01-26  Jim Meyering  <meyering@redhat.com>
17031
17032         fflush: avoid warnings on modern systems
17033         * lib/fflush.c (rpl_fflush): Move declarations of locals,
17034         pos and result, into scopes where they're used.
17035
17036 2009-01-26  Eric Blake  <ebb9@byu.net>
17037
17038         Silence warning reintroduced by recent extensions patch.
17039         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
17040         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
17041         autoconf.
17042
17043         Backport improved autoconf semantics of AC_DEFUN_ONCE.
17044         * m4/00gnulib.m4: New file.
17045         * gnulib-tool (func_get_filelist): Always use it.
17046         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
17047         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
17048
17049 2009-01-25  Bruno Haible  <bruno@clisp.org>
17050
17051         Make test-quotearg work on MacOS X and AIX.
17052         * tests/test-quotearg.sh: New file.
17053         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
17054         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
17055         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
17056         include <libintl.h>.
17057         (fake_locale): Remove variable.
17058         (gettext, dgettext, dcgettext): Remove functions.
17059         (main): Instead of setting a fake locale, set a real locale. Call
17060         textdomain and bindtextdomain.
17061         * modules/quotearg-tests (Files): Add the new files.
17062         (Depends-on): Add gettext, setenv, unsetenv.
17063         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
17064         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
17065         Augment TESTS_ENVIRONMENT.
17066
17067 2009-01-25  Bruno Haible  <bruno@clisp.org>
17068
17069         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
17070         fr_FR.ISO8859-1 locale on MacOS X.
17071         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
17072         ja_JP.eucJP locale on MacOS X.
17073         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
17074         zh_CN.GB18030 locale on MacOS X.
17075
17076 2009-01-25  Bruno Haible  <bruno@clisp.org>
17077
17078         Avoid link errors on MacOS X 10.3.
17079         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
17080         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
17081
17082 2009-01-25  Bruno Haible  <bruno@clisp.org>
17083
17084         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
17085         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
17086         * modules/pipe (Files): Remove m4/posix_spawn.m4.
17087         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
17088         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
17089         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
17090         posix_spawnattr_init, posix_spawnattr_setsigmask,
17091         posix_spawnattr_setflags, posix_spawnattr_destroy.
17092
17093         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
17094         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
17095         * modules/execute (Files): Remove m4/posix_spawn.m4.
17096         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
17097         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
17098         posix_spawnattr_init, posix_spawnattr_setsigmask,
17099         posix_spawnattr_setflags, posix_spawnattr_destroy.
17100
17101 2009-01-25  Bruno Haible  <bruno@clisp.org>
17102
17103         * lib/glthread/threadlib.c: Include <stdlib.h>.
17104
17105 2009-01-25  Bruno Haible  <bruno@clisp.org>
17106
17107         * lib/glthread/threadlib.c (dummy): New declaration.
17108
17109 2009-01-25  Bruno Haible  <bruno@clisp.org>
17110
17111         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
17112         multibyte characters also for the GB18030 encoding. Don't crash when
17113         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
17114
17115 2009-01-25  Bruno Haible  <bruno@clisp.org>
17116
17117         Avoid redefining 'struct random_data' on OSF/1 5.1.
17118         * lib/stdlib.in.h: Include <random.h> if it exists.
17119         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
17120         HAVE_RANDOM_H. Include <random.h> when testing whether
17121         'struct random_data' exists.
17122         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
17123
17124 2009-01-25  Bruno Haible  <bruno@clisp.org>
17125
17126         Don't install charset.alias on MacOS X >= 10.3.
17127         * lib/localcharset.c (DARWIN7): New macro.
17128         (get_charset_aliases): Hardcode the result for Darwin7.
17129         * modules/localcharset (install-exec-local): Don't install
17130         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
17131
17132 2009-01-25  Bruno Haible  <bruno@clisp.org>
17133
17134         Don't install charset.alias on mingw and Cygwin.
17135         * modules/localcharset (install-exec-local): Don't install
17136         charset.alias on mingw and Cygwin, if the file does not yet exist.
17137         The result for these platforms is hardcoded in localcharset.c.
17138
17139 2009-01-25  Bruno Haible  <bruno@clisp.org>
17140
17141         Make it possible again to use AC_GNU_SOURCE together with gnulib.
17142         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
17143         before requiring AC_USE_SYSTEM_EXTENSIONS.
17144
17145 2009-01-25  Jim Meyering  <meyering@redhat.com>
17146
17147         c-strtod: avoid warnings
17148         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
17149         "assignment discards qualifiers from pointer target type" warnings.
17150
17151 2009-01-24  Bruno Haible  <bruno@clisp.org>
17152
17153         Add support for non-UTF-8 locales on MacOS X.
17154         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
17155         canonical encodings. For Darwin 7 and newer, don't map traditional
17156         encodings to UTF-8.
17157         Reported by Vincent Lefevre <vincent@vinc17.org>
17158         at <http://savannah.gnu.org/bugs/?25235>.
17159
17160 2009-01-24  Bruno Haible  <bruno@clisp.org>
17161
17162         * doc/gnulib.texi (Obsolete modules): New section.
17163         Reported by Mike Frysinger <vapier@gentoo.org>.
17164
17165 2009-01-24  Bruno Haible  <bruno@clisp.org>
17166
17167         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
17168         (%.dvi): New rule.
17169
17170 2009-01-24  Bruno Haible  <bruno@clisp.org>
17171
17172         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
17173         Reported by Eric Blake.
17174
17175 2009-01-24  Bruno Haible  <bruno@clisp.org>
17176
17177         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
17178         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
17179         Reported by Gary V. Vaughan <gary@gnu.org>.
17180
17181 2009-01-24  Bruno Haible  <bruno@clisp.org>
17182
17183         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
17184
17185 2009-01-23  Bruno Haible  <bruno@clisp.org>
17186
17187         Make c-strtod, c-strtold usable in libraries.
17188         * lib/c-strtod.c: Include string.h instead of xalloc.h.
17189         (C_STRTOD): Call strdup instead of xstrdup.
17190         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
17191         * modules/c-strtold (Depends-on): Likewise.
17192         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
17193         * NEWS: Mention the change.
17194         Reported by Michael Gold <mgold@ncf.ca>.
17195
17196 2009-01-23  Jim Meyering  <meyering@redhat.com>
17197
17198         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
17199         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
17200         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
17201
17202 2009-01-23  Simon Josefsson  <simon@josefsson.org>
17203
17204         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
17205         GNU CoreUtils.
17206         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
17207         * modules/version-etc (Description): Update.
17208
17209 2009-01-22  Bruno Haible  <bruno@clisp.org>
17210
17211         Cache the C locale object.
17212         * lib/c-strtod.c (c_locale_cache): New variable.
17213         (c_locale): New function.
17214         (C_STRTOD): Use it, and don't call freelocale.
17215         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
17216         Suggested by Paolo Bonzini.
17217
17218 2009-01-21  Bruno Haible  <bruno@clisp.org>
17219
17220         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
17221         conditions other than overflow.
17222
17223 2009-01-21  Bruno Haible  <bruno@clisp.org>
17224
17225         * lib/c-strtod.c: Include errno.h.
17226         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
17227         value from STRTOD_L and STRTOD.
17228
17229 2009-01-21  Bruno Haible  <bruno@clisp.org>
17230         and Jim Meyering  <meyering@redhat.com>
17231
17232         nanosleep: skip configure test (fail it) for apple universal builds
17233         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
17234         universal builds, assume that nanosleep does not work.
17235         * modules/nanosleep (Depends-on): Add multiarch.
17236
17237         mktime: skip configure test (fail it) for apple universal builds
17238         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
17239         universal builds, assume that mktime does not work.
17240         * modules/mktime (Depends-on): Add multiarch.
17241
17242 2009-01-21  Eric Blake  <ebb9@byu.net>
17243
17244         multiarch: avoid expand-before-require warning
17245         * modules/multiarch (configure.ac): Require, rather than expand,
17246         gl_MULTIARCH.
17247         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
17248         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
17249         enforce that all clients require it.  Partial reversion of
17250         2008-12-29 patch.
17251
17252         error: avoid expand-before-require warning
17253         * modules/errno (configure.ac): Require, rather than expand,
17254         gl_HEADER_ERRNO_H.
17255         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
17256         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
17257         enforce that all clients require it.
17258
17259         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
17260         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
17261         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
17262         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
17263
17264 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
17265
17266         Revert:
17267         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
17268
17269         regex: do not depend on obsolete modules.
17270         * modules/regex: Remove memcmp and memmove.
17271
17272 2009-01-20  Bruno Haible  <bruno@clisp.org>
17273
17274         Make the 'link' module link on Windows NT 4.
17275         * lib/link.c (_WIN32_WINNT): Don't define.
17276         (CreateHardLinkFuncType): New type.
17277         (CreateHardLinkFunc, initialized): New variables.
17278         (initialize): New function.
17279         (link): Invoke CreateHardLink indirectly through the function pointer.
17280
17281 2009-01-20  Bruno Haible  <bruno@clisp.org>
17282
17283         Fix compilation failure on mingw.
17284         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
17285
17286 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
17287
17288         * doc/c-strtod.texi: Mention a couple of restrictions.
17289
17290 2009-01-20  Jim Meyering  <meyering@redhat.com>
17291
17292         gettimeofday: move more declarations out of functions
17293         * lib/gettimeofday.c: Move extern declarations of tzset and
17294         gmtime out of containing functions.  Prompted by Bruno Haible.
17295
17296 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
17297
17298         regex: do not depend on obsolete modules.
17299         * modules/regex: Remove memcmp and memmove.
17300
17301 2009-01-19  Bruno Haible  <bruno@clisp.org>
17302
17303         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
17304         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
17305         gl_BIGENDIAN, not AC_C_BIGENDIAN.
17306         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
17307         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
17308
17309 2009-01-19  Bruno Haible  <bruno@clisp.org>
17310
17311         * tests/test-link.c: Include <errno.h>.
17312         (main): Exit with code 77 when a hard link cannot be created due to
17313         the file system.
17314         * tests/test-link.sh: Skip test when a hard link cannot be created due
17315         to the file system.
17316         Suggested by Eric Blake.
17317
17318 2009-01-19  Martin Lambers  <marlam@marlam.de>
17319
17320         * modules/link-tests: New file.
17321         * tests/test-link.sh: New file.
17322         * tests/test-link.c: New file.
17323
17324 2009-01-19  Eric Blake  <ebb9@byu.net>
17325
17326         doc: mention another function added in cygwin 1.7.0
17327         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
17328         Another new function in cygwin 1.7.
17329
17330 2009-01-19  Bruno Haible  <bruno@clisp.org>
17331
17332         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
17333         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
17334         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
17335         gl_BIGENDIAN, not AC_C_BIGENDIAN.
17336         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
17337         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
17338         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
17339         * m4/md4.m4 (gl_MD4): Likewise.
17340         * m4/md5.m4 (gl_MD5): Likewise.
17341         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
17342         * m4/sha1.m4 (gl_SHA1): Likewise.
17343         * m4/sha256.m4 (gl_SHA256): Likewise.
17344         * m4/sha512.m4 (gl_SHA512): Likewise.
17345
17346 2009-01-19  Bruno Haible  <bruno@clisp.org>
17347
17348         * modules/uniname/uniname-tests (Depends-on): Add progname.
17349         * tests/uniname/test-uninames.c: Include progname.h.
17350         (main): Call set_program_name.
17351
17352         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
17353         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
17354         (main): Call set_program_name.
17355
17356         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
17357         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
17358         (main): Call set_program_name.
17359
17360         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
17361         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
17362         (main): Call set_program_name.
17363
17364         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
17365         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
17366         (main): Call set_program_name.
17367
17368         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
17369         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
17370         (main): Call set_program_name.
17371
17372         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
17373         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
17374         (main): Call set_program_name.
17375
17376         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
17377         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
17378         (main): Call set_program_name.
17379
17380         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
17381         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
17382         (main): Call set_program_name.
17383
17384 2009-01-19  Eric Blake  <ebb9@byu.net>
17385
17386         test-unistd: test previous patch
17387         * tests/test-unistd.c: Test *_FILENO macros.
17388
17389         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
17390         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
17391         Guarantee a definition.
17392         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
17393         * modules/unistd-safer (Depends-on): Add dependency on unistd.
17394         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
17395         * lib/dup-safer.c (STDERR_FILENO): Likewise.
17396         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
17397         Likewise.
17398         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
17399         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
17400         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
17401         Likewise.
17402         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
17403         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
17404         (STDERR_FILENO): Likewise.
17405         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
17406         (STDERR_FILENO): Likewise.
17407         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
17408         (STDERR_FILENO): Likewise.
17409         Reported by Elbert Pol.
17410
17411 2009-01-19  Eric Blake  <ebb9@byu.net>
17412
17413         doc: mention more functions added in cygwin 1.7.0
17414         * doc/posix-functions/abort.texi (abort): Update wording related
17415         to cygwin.
17416         * doc/posix-functions/daylight.texi (daylight): Likewise.
17417         * doc/posix-functions/optarg.texi (optarg): Likewise.
17418         * doc/posix-functions/optarg.texi (opterr): Likewise.
17419         * doc/posix-functions/optarg.texi (optind): Likewise.
17420         * doc/posix-functions/optarg.texi (optopt): Likewise.
17421         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
17422         worked in 1.5.x, and was withdrawn in 1.7.
17423         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
17424         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
17425         cygwin versions.
17426         * doc/posix-functions/perror.texi (perror): Likewise.
17427         * doc/posix-functions/printf.texi (printf): Likewise.
17428         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
17429         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
17430         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
17431         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
17432         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
17433         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
17434         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
17435         Likewise.
17436         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
17437         Likewise.
17438         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
17439         this function.
17440         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
17441         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
17442         Likewise.
17443         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
17444         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
17445         * doc/posix-functions/confstr.texi (confstr): Likewise.
17446         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
17447         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
17448         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
17449         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
17450         * doc/posix-functions/fputws.texi (fputws): Likewise.
17451         * doc/posix-functions/fwide.texi (fwide): Likewise.
17452         * doc/posix-functions/getwc.texi (getwc): Likewise.
17453         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
17454         * doc/posix-functions/putwc.texi (putwc): Likewise.
17455         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
17456         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
17457         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
17458         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
17459         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
17460         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
17461         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
17462         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
17463         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
17464         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
17465         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
17466
17467 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
17468
17469         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
17470         * lib/ioctl.c: Include <sys/ioctl.h>.
17471
17472 2009-01-19  Simon Josefsson  <simon@josefsson.org>
17473
17474         * modules/getdate-tests (Depends-on): Add progname.
17475         * tests/test-getdate.c: Use progname module, to avoid link errors
17476         on non-glibc systems.
17477
17478 2009-01-18  Simon Josefsson  <simon@josefsson.org>
17479
17480         * modules/filenamecat-tests (Depends-on): Add progname.
17481         * modules/fstrcmp-tests (Depends-on): Likewise.
17482
17483         * tests/test-filenamecat.c: Use progname module, to avoid link
17484         errors on non-glibc systems.
17485         * tests/test-fstrcmp.c: Likewise.
17486
17487 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
17488
17489         gettimeofday: avoid warning: nested extern declaration of 'localtime'
17490         * lib/gettimeofday.c: Move extern declaration out of function.
17491
17492 2009-01-18  Bruno Haible  <bruno@clisp.org>
17493
17494         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
17495         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
17496         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
17497
17498 2009-01-18  Bruno Haible  <bruno@clisp.org>
17499
17500         * lib/strftime.c (MEMPCPY): Remove unused macro.
17501         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
17502
17503 2009-01-18  Martin Lambers  <marlam@marlam.de>
17504
17505         New module 'link'.
17506         * lib/unistd.in.h (link): New declaration.
17507         * lib/link.c: New file.
17508         * m4/link.m4: New file.
17509         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
17510         HAVE_LINK.
17511         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
17512         * modules/link: New file.
17513         * doc/posix-functions/link.texi: Mention the new module.
17514
17515 2009-01-18  Bruno Haible  <bruno@clisp.org>
17516
17517         * tests/test-avltree_list.c (main): Call set_program_name.
17518         * tests/test-avltree_oset.c (main): Likewise.
17519         * tests/test-obstack-printf.c: Include progname.h.
17520         (main): Call set_program_name.
17521         * tests/test-quotearg.c: Include progname.h.
17522         (main): Call set_program_name.
17523         * tests/test-xmemdup0.c: Include progname.h.
17524         (main): Call set_program_name.
17525
17526 2009-01-18  Bruno Haible  <bruno@clisp.org>
17527
17528         New module 'alphasort'.
17529         * lib/dirent.in.h (alphasort): New declaration.
17530         * lib/alphasort.c: New file, from glibc with modifications.
17531         * m4/alphasort.m4: New file.
17532         * modules/alphasort: New file.
17533         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
17534         HAVE_ALPHASORT.
17535         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
17536         HAVE_ALPHASORT.
17537         * doc/posix-functions/alphasort.texi: Mention the new module and the
17538         portability problems.
17539
17540 2009-01-18  Bruno Haible  <bruno@clisp.org>
17541
17542         New module 'scandir'.
17543         * lib/dirent.in.h (scandir): New declaration.
17544         * lib/scandir.c: New file, from glibc with modifications.
17545         * m4/scandir.m4: New file.
17546         * modules/scandir: New file.
17547         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
17548         HAVE_SCANDIR.
17549         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
17550         HAVE_SCANDIR.
17551         * doc/posix-functions/scandir.texi: Mention the new module and the
17552         portability problems.
17553
17554 2009-01-17  Bruno Haible  <bruno@clisp.org>
17555
17556         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
17557         Update documentation.
17558         (func_remove_suffix): Escape all dots in the suffix. Update
17559         documentation.
17560         (func_filter_filelist): Update documentation.
17561         Reported by Ralf Wildenhues.
17562
17563 2009-01-17  Bruno Haible  <bruno@clisp.org>
17564
17565         * modules/dprintf-posix-tests: New file.
17566         * tests/test-dprintf-posix.sh: New file.
17567         * tests/test-dprintf-posix.c: New file.
17568
17569         New modules 'dprintf', 'dprintf-posix'.
17570         * lib/stdio.in.h (dprintf): New declaration.
17571         * lib/dprintf.c: New file.
17572         * m4/dprintf.m4: New file.
17573         * m4/dprintf-posix.m4: New file.
17574         * modules/dprintf: New file.
17575         * modules/dprintf-posix: New file.
17576         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
17577         HAVE_DPRINTF, REPLACE_DPRINTF.
17578         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
17579         HAVE_DPRINTF, REPLACE_DPRINTF.
17580         * doc/posix-functions/dprintf.texi: Mention the new modules.
17581
17582 2009-01-17  Bruno Haible  <bruno@clisp.org>
17583
17584         * modules/vdprintf-posix-tests: New file.
17585         * tests/test-vdprintf-posix.sh: New file.
17586         * tests/test-vdprintf-posix.c: New file.
17587
17588         New modules 'vdprintf', 'vdprintf-posix'.
17589         * lib/stdio.in.h (vdprintf): New declaration.
17590         * lib/vdprintf.c: New file.
17591         * m4/vdprintf.m4: New file.
17592         * m4/vdprintf-posix.m4: New file.
17593         * modules/vdprintf: New file.
17594         * modules/vdprintf-posix: New file.
17595         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
17596         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17597         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
17598         HAVE_VDPRINTF, REPLACE_VDPRINTF.
17599         * doc/posix-functions/vdprintf.texi: Mention the new modules.
17600
17601 2009-01-17  Bruno Haible  <bruno@clisp.org>
17602
17603         Fix replacement of fopen on mingw.
17604         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
17605         mingw.
17606
17607 2009-01-17  Bruno Haible  <bruno@clisp.org>
17608
17609         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
17610         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
17611
17612 2009-01-17  Bruno Haible  <bruno@clisp.org>
17613
17614         Avoid test-fflush2.sh failure on mingw.
17615         * tests/test-fflush2.c: Include binary-io.h.
17616         (main): Put standard input into binary mode.
17617         * modules/fflush-tests (Depends-on): Add binary-io.
17618
17619 2009-01-17  Bruno Haible  <bruno@clisp.org>
17620
17621         * lib/wchar.in.h: In another particular situation, include only the
17622         system's <wchar.h> file.
17623         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
17624         Reported by Albert Chin-A-Young <china@thewrittenword.com>
17625         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
17626
17627 2009-01-17  Bruno Haible  <bruno@clisp.org>
17628
17629         Support for stripping executables in --enable-relocatable.
17630         * build-aux/install-reloc: Expect one more argument, or an environment
17631         variable RELOC_STRIP_PROG. If set, strip the destination program and
17632         its wrapper.
17633         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
17634         RELOC_STRIP_PROG.
17635         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
17636         to set RELOCATABLE_STRIP.
17637         * NEWS: Mention the new Makefile requirement.
17638
17639 2009-01-17  Bruno Haible  <bruno@clisp.org>
17640
17641         * build-aux/install-reloc: Remove debugging information left over by
17642         C compiler on MacOS X.
17643
17644 2009-01-17  Bruno Haible  <bruno@clisp.org>
17645
17646         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
17647         * lib/progreloc.c (find_executable): Fix type of pointer passed to
17648         _NSGetExecutablePath.
17649
17650 2009-01-16  Jim Meyering  <meyering@redhat.com>
17651
17652         strerror: avoid warnings about discarding "const"
17653         * lib/strerror.c (rpl_strerror): Instead of returning a const
17654         string from each and every "case", use a variable, and add a single
17655         cast after the switch.
17656
17657 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
17658
17659         * lib/arpa_inet.in.h: Add extern "C" block for C++.
17660
17661 2009-01-16  Bruno Haible  <bruno@clisp.org>
17662
17663         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
17664         array initializer syntax that also works in C++ mode.
17665         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17666
17667 2009-01-16  Jim Meyering  <meyering@redhat.com>
17668
17669         poll: suppress a warning
17670         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
17671         to ignore "...unsigned expression < 0 is always false" warnings.
17672
17673 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
17674
17675         poll: remove declarations of unused variables
17676         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
17677         sockbuf and optlen.
17678
17679 2009-01-15  Bruno Haible  <bruno@clisp.org>
17680
17681         Make fflush-after-ungetc POSIX compliant on BSD systems.
17682         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
17683         (clear_ungetc_buffer): Implement also for other systems.
17684         (rpl_fflush): On glibc systems, invoke
17685         clear_ungetc_buffer_preserving_position. Otherwise, invoke
17686         clear_ungetc_buffer after fetching the stream's position, not before.
17687
17688 2009-01-15  Bruno Haible  <bruno@clisp.org>
17689
17690         Make fflush-after-ungetc POSIX compliant on glibc systems.
17691         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
17692         after ungetc.
17693         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
17694         (rpl_fflush): On glibc systems, simply call the system's fflush
17695         function after clearing the ungetc buffer.
17696         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
17697         Instead, lseek only to the end of file, then use the system's fseeko
17698         for the rest. On glibc systems, reset the EOF indicator bit.
17699
17700 2009-01-15  Jim Meyering  <meyering@redhat.com>
17701
17702         openmp.m4: revert quote-adding change, for portability to older autoconf
17703         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
17704         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
17705         Simon Josefsson noticed the problem when using autoconf-2.61.
17706
17707 2009-01-15  Bruno Haible  <bruno@clisp.org>
17708
17709         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
17710         * tests/test-fflush2.c (ASSERT): Always fail.
17711         (main): Add two tests for fflush() after ungetc(), taking into account
17712         the Austin Group's clarification.
17713         Suggested by Eric Blake.
17714
17715 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
17716
17717         mktime.m4: remove K&R-style function prototypes
17718         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
17719         for the Sun C++ compiler.
17720
17721 2009-01-14  Bruno Haible  <bruno@clisp.org>
17722
17723         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
17724         while including <wchar.h>.
17725         * lib/wchar.in.h: In two particular situations on HP-UX, include only
17726         the system's <wchar.h> file.
17727         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17728
17729 2009-01-14  Bruno Haible  <bruno@clisp.org>
17730
17731         * m4/csharp.m4: Don't mention gettext on the serial number line.
17732         * m4/csharpexec.m4: Likewise.
17733         * m4/eaccess.m4: Likewise.
17734         * m4/javaexec.m4: Likewise.
17735         * m4/sig_atomic_t.m4: Likewise.
17736         * m4/tmpdir.m4: Likewise.
17737         * m4/intldir.m4: Bump gettext version.
17738         * m4/lib-ld.m4: Likewise.
17739
17740 2009-01-14  Bruno Haible  <bruno@clisp.org>
17741
17742         * lib/progname.c (set_program_name): Add more comments.
17743         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
17744
17745 2009-01-14  Simon Josefsson  <simon@josefsson.org>
17746
17747         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
17748         were sys/stat.h does not define it.
17749
17750 2009-01-14  Jim Meyering  <meyering@redhat.com>
17751
17752         many *.m4 files: improve m4 quoting
17753         99% of this change was performed by running the following commands:
17754         git ls-files | grep '\.m4$' | xargs perl -pi \
17755           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
17756           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17757           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
17758           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
17759         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
17760         The remainder were to add Copyright dates, increment serial numbers,
17761         undo some changes in comments, exclude m4/intl.m4, and add quotes
17762         around the "1" in ",1" where the unusual spacing prohibited the
17763         above regexps from doing the job.  For more details, see
17764         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
17765         * m4/acl.m4: Modified.
17766         * m4/afs.m4: Likewise.
17767         * m4/alloca.m4: Likewise.
17768         * m4/argp.m4: Likewise.
17769         * m4/argz.m4: Likewise.
17770         * m4/atexit.m4: Likewise.
17771         * m4/bison-i18n.m4: Likewise.
17772         * m4/bison.m4: Likewise.
17773         * m4/byteswap.m4: Likewise.
17774         * m4/c-stack.m4: Likewise.
17775         * m4/c-strtod.m4: Likewise.
17776         * m4/calloc.m4: Likewise.
17777         * m4/canonicalize-lgpl.m4: Likewise.
17778         * m4/chown.m4: Likewise.
17779         * m4/clock_time.m4: Likewise.
17780         * m4/codeset.m4: Likewise.
17781         * m4/copy-file.m4: Likewise.
17782         * m4/csharp.m4: Likewise.
17783         * m4/csharpcomp.m4: Likewise.
17784         * m4/csharpexec.m4: Likewise.
17785         * m4/d-ino.m4: Likewise.
17786         * m4/d-type.m4: Likewise.
17787         * m4/dirfd.m4: Likewise.
17788         * m4/double-slash-root.m4: Likewise.
17789         * m4/eaccess.m4: Likewise.
17790         * m4/eealloc.m4: Likewise.
17791         * m4/environ.m4: Likewise.
17792         * m4/errno_h.m4: Likewise.
17793         * m4/euidaccess.m4: Likewise.
17794         * m4/execute.m4: Likewise.
17795         * m4/fatal-signal.m4: Likewise.
17796         * m4/fchdir.m4: Likewise.
17797         * m4/fcntl_h.m4: Likewise.
17798         * m4/fileblocks.m4: Likewise.
17799         * m4/filenamecat.m4: Likewise.
17800         * m4/findprog.m4: Likewise.
17801         * m4/flexmember.m4: Likewise.
17802         * m4/fnmatch.m4: Likewise.
17803         * m4/fopen.m4: Likewise.
17804         * m4/fpending.m4: Likewise.
17805         * m4/fprintf-posix.m4: Likewise.
17806         * m4/free.m4: Likewise.
17807         * m4/frexp.m4: Likewise.
17808         * m4/frexpl.m4: Likewise.
17809         * m4/fsusage.m4: Likewise.
17810         * m4/ftruncate.m4: Likewise.
17811         * m4/gc-camellia.m4: Likewise.
17812         * m4/gc-random.m4: Likewise.
17813         * m4/gc.m4: Likewise.
17814         * m4/getaddrinfo.m4: Likewise.
17815         * m4/getcwd-abort-bug.m4: Likewise.
17816         * m4/getcwd-path-max.m4: Likewise.
17817         * m4/getdate.m4: Likewise.
17818         * m4/getdomainname.m4: Likewise.
17819         * m4/getgroups.m4: Likewise.
17820         * m4/gethostname.m4: Likewise.
17821         * m4/gethrxtime.m4: Likewise.
17822         * m4/getline.m4: Likewise.
17823         * m4/getloadavg.m4: Likewise.
17824         * m4/getndelim2.m4: Likewise.
17825         * m4/getpass.m4: Likewise.
17826         * m4/gettext.m4: Likewise.
17827         * m4/gettime.m4: Likewise.
17828         * m4/gettimeofday.m4: Likewise.
17829         * m4/gnulib-common.m4: Likewise.
17830         * m4/group-member.m4: Likewise.
17831         * m4/host-os.m4: Likewise.
17832         * m4/iconv.m4: Likewise.
17833         * m4/iconv_open.m4: Likewise.
17834         * m4/inet_ntop.m4: Likewise.
17835         * m4/inet_pton.m4: Likewise.
17836         * m4/inline.m4: Likewise.
17837         * m4/intldir.m4: Likewise.
17838         * m4/intlmacosx.m4: Likewise.
17839         * m4/intmax.m4: Likewise.
17840         * m4/intmax_t.m4: Likewise.
17841         * m4/inttypes.m4: Likewise.
17842         * m4/inttypes_h.m4: Likewise.
17843         * m4/inttypes-pri.m4: Likewise.
17844         * m4/isapipe.m4: Likewise.
17845         * m4/isnand.m4: Likewise.
17846         * m4/isnanf.m4: Likewise.
17847         * m4/isnanl.m4: Likewise.
17848         * m4/javacomp.m4: Likewise.
17849         * m4/javaexec.m4: Likewise.
17850         * m4/jm-winsz1.m4: Likewise.
17851         * m4/jm-winsz2.m4: Likewise.
17852         * m4/lchown.m4: Likewise.
17853         * m4/lcmessage.m4: Likewise.
17854         * m4/ldexpl.m4: Likewise.
17855         * m4/lib-ld.m4: Likewise.
17856         * m4/lib-link.m4: Likewise.
17857         * m4/libsigsegv.m4: Likewise.
17858         * m4/link-follow.m4: Likewise.
17859         * m4/localcharset.m4: Likewise.
17860         * m4/locale-fr.m4: Likewise.
17861         * m4/locale-ja.m4: Likewise.
17862         * m4/locale-tr.m4: Likewise.
17863         * m4/locale-zh.m4: Likewise.
17864         * m4/lock.m4: Likewise.
17865         * m4/longlong.m4: Likewise.
17866         * m4/ls-mntd-fs.m4: Likewise.
17867         * m4/lstat.m4: Likewise.
17868         * m4/malloc.m4: Likewise.
17869         * m4/mathl.m4: Likewise.
17870         * m4/mbrtowc.m4: Likewise.
17871         * m4/mbstate_t.m4: Likewise.
17872         * m4/mbswidth.m4: Likewise.
17873         * m4/memchr.m4: Likewise.
17874         * m4/memcmp.m4: Likewise.
17875         * m4/memcpy.m4: Likewise.
17876         * m4/memmem.m4: Likewise.
17877         * m4/memmove.m4: Likewise.
17878         * m4/mempcpy.m4: Likewise.
17879         * m4/memrchr.m4: Likewise.
17880         * m4/memset.m4: Likewise.
17881         * m4/minmax.m4: Likewise.
17882         * m4/mkdir-slash.m4: Likewise.
17883         * m4/mkdtemp.m4: Likewise.
17884         * m4/mktime.m4: Likewise.
17885         * m4/mmap-anon.m4: Likewise.
17886         * m4/mountlist.m4: Likewise.
17887         * m4/nanosleep.m4: Likewise.
17888         * m4/nls.m4: Likewise.
17889         * m4/nocrash.m4: Likewise.
17890         * m4/open.m4: Likewise.
17891         * m4/openat.m4: Likewise.
17892         * m4/openmp.m4: Likewise.
17893         * m4/pathmax.m4: Likewise.
17894         * m4/perl.m4: Likewise.
17895         * m4/physmem.m4: Likewise.
17896         * m4/pipe.m4: Likewise.
17897         * m4/po.m4: Likewise.
17898         * m4/poll.m4: Likewise.
17899         * m4/posixtm.m4: Likewise.
17900         * m4/posixver.m4: Likewise.
17901         * m4/printf-frexp.m4: Likewise.
17902         * m4/printf-frexpl.m4: Likewise.
17903         * m4/printf-posix.m4: Likewise.
17904         * m4/printf-posix-rpl.m4: Likewise.
17905         * m4/printf.m4: Likewise.
17906         * m4/progtest.m4: Likewise.
17907         * m4/putenv.m4: Likewise.
17908         * m4/readline.m4: Likewise.
17909         * m4/readlink.m4: Likewise.
17910         * m4/readutmp.m4: Likewise.
17911         * m4/realloc.m4: Likewise.
17912         * m4/regex.m4: Likewise.
17913         * m4/relocatable.m4: Likewise.
17914         * m4/relocatable-lib.m4: Likewise.
17915         * m4/rename-dest-slash.m4: Likewise.
17916         * m4/rename.m4: Likewise.
17917         * m4/rmdir-errno.m4: Likewise.
17918         * m4/rmdir.m4: Likewise.
17919         * m4/roundf.m4: Likewise.
17920         * m4/roundl.m4: Likewise.
17921         * m4/rpmatch.m4: Likewise.
17922         * m4/save-cwd.m4: Likewise.
17923         * m4/selinux-selinux-h.m4: Likewise.
17924         * m4/setenv.m4: Likewise.
17925         * m4/settime.m4: Likewise.
17926         * m4/sig2str.m4: Likewise.
17927         * m4/sig_atomic_t.m4: Likewise.
17928         * m4/signalblocking.m4: Likewise.
17929         * m4/signbit.m4: Likewise.
17930         * m4/sigpipe.m4: Likewise.
17931         * m4/sockets.m4: Likewise.
17932         * m4/sockpfaf.m4: Likewise.
17933         * m4/st_dm_mode.m4: Likewise.
17934         * m4/stat-time.m4: Likewise.
17935         * m4/stdbool.m4: Likewise.
17936         * m4/stdint.m4: Likewise.
17937         * m4/stdint_h.m4: Likewise.
17938         * m4/stpcpy.m4: Likewise.
17939         * m4/stpncpy.m4: Likewise.
17940         * m4/strcase.m4: Likewise.
17941         * m4/strchrnul.m4: Likewise.
17942         * m4/strcspn.m4: Likewise.
17943         * m4/strdup.m4: Likewise.
17944         * m4/strftime.m4: Likewise.
17945         * m4/strndup.m4: Likewise.
17946         * m4/strnlen.m4: Likewise.
17947         * m4/strpbrk.m4: Likewise.
17948         * m4/strptime.m4: Likewise.
17949         * m4/strsep.m4: Likewise.
17950         * m4/strtod.m4: Likewise.
17951         * m4/strtoimax.m4: Likewise.
17952         * m4/strtok_r.m4: Likewise.
17953         * m4/strtol.m4: Likewise.
17954         * m4/strtoll.m4: Likewise.
17955         * m4/strtoul.m4: Likewise.
17956         * m4/strtoull.m4: Likewise.
17957         * m4/strtoumax.m4: Likewise.
17958         * m4/strverscmp.m4: Likewise.
17959         * m4/threadlib.m4: Likewise.
17960         * m4/timegm.m4: Likewise.
17961         * m4/tm_gmtoff.m4: Likewise.
17962         * m4/tmpdir.m4: Likewise.
17963         * m4/tmpfile.m4: Likewise.
17964         * m4/tzset.m4: Likewise.
17965         * m4/uintmax_t.m4: Likewise.
17966         * m4/unlinkdir.m4: Likewise.
17967         * m4/unlocked-io.m4: Likewise.
17968         * m4/uptime.m4: Likewise.
17969         * m4/userspec.m4: Likewise.
17970         * m4/utimbuf.m4: Likewise.
17971         * m4/utime.m4: Likewise.
17972         * m4/utimes-null.m4: Likewise.
17973         * m4/utimes.m4: Likewise.
17974         * m4/vararrays.m4: Likewise.
17975         * m4/vasnprintf.m4: Likewise.
17976         * m4/vfprintf-posix.m4: Likewise.
17977         * m4/vprintf-posix.m4: Likewise.
17978         * m4/wait-process.m4: Likewise.
17979         * m4/wchar_t.m4: Likewise.
17980         * m4/wint_t.m4: Likewise.
17981         * m4/write-any-file.m4: Likewise.
17982         * m4/yield.m4: Likewise.
17983
17984 2009-01-13  Bruno Haible  <bruno@clisp.org>
17985
17986         Avoid test-copy-file.sh failures when ACL support insufficient.
17987         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
17988         TESTS_ENVIRONMENT.
17989         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
17990         Reported by Jim Meyering.
17991
17992 2009-01-13  Bruno Haible  <bruno@clisp.org>
17993
17994         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
17995         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
17996         * modules/unistdio/u8-printf-parse (Files): Likewise.
17997         * modules/unistdio/u32-printf-parse (Files): Likewise.
17998         * modules/unistdio/ulc-printf-parse (Files): Likewise.
17999
18000 2009-01-13  Simon Josefsson  <simon@josefsson.org>
18001
18002         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
18003         and m4/inttypes_h.m4 too.
18004
18005 2009-01-12  Eric Blake  <ebb9@byu.net>
18006
18007         tests: IRIX 6.2 cc can't compile -0.0 into .data
18008         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
18009         rather than at compile-time.
18010         * tests/test-floorl.c (minus_zero): Likewise.
18011         * tests/test-frexpl.c (minus_zero): Likewise.
18012         * tests/test-isnan.c (minus_zerol): Likewise.
18013         * tests/test-isnanl.h (minus_zero): Likewise.
18014         * tests/test-ldexpl.c (minus_zero): Likewise.
18015         * tests/test-roundl.c (minus_zero): Likewise.
18016         * tests/test-signbit.c (minus_zerol): Likewise.
18017         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
18018         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
18019         * tests/test-truncl.c (minus_zero): Likewise.
18020         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
18021         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
18022         Reported by Tom G. Christensen and Nelson H. F. Beebe.
18023
18024 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18025
18026         regex: fix glibc bug 9697
18027         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
18028         handling.
18029
18030 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18031
18032         regex: fix glibc bug 697
18033         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
18034         being NULL also if there are no backreferences.
18035
18036 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18037
18038         regex: merge glibc changes
18039         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
18040         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
18041         re_string_skip_chars, re_string_reconstruct): Likewise.
18042         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
18043
18044 2009-01-07  Jim Meyering  <meyering@redhat.com>
18045
18046         poll: filter through cppi
18047         * lib/poll.c: Indent cpp directives to reflect nesting.
18048
18049 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
18050
18051         poll: don't return uninitialized
18052         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
18053
18054 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
18055
18056         avoid compile failure on AIX 6.1
18057         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
18058         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
18059
18060 2009-01-04  Jim Meyering  <meyering@redhat.com>
18061
18062         remove duplicate inclusion of <stdio.h>
18063         * tests/test-fprintf-posix.c: Likewise.
18064         * tests/test-printf-posix.c: Likewise.
18065         * tests/test-snprintf-posix.c: Likewise.
18066         * tests/test-sprintf-posix.c: Likewise.
18067         * tests/test-vasprintf-posix.c: Likewise.
18068         * tests/test-vfprintf-posix.c: Likewise.
18069         * tests/test-vprintf-posix.c: Likewise.
18070         * tests/test-vsnprintf-posix.c: Likewise.
18071         * tests/test-vsprintf-posix.c: Likewise.
18072
18073 2009-01-03  Jim Meyering  <meyering@redhat.com>
18074
18075         gnulib-tool: fix sed-based filtering
18076         * gnulib-tool (func_filter_filelist): Remove extra backslash
18077         in sed_fff_filter definition.
18078
18079 2009-01-02  Jim Meyering  <meyering@redhat.com>
18080
18081         strftime: avoid compilation failure on Solaris 2.6
18082         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
18083         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
18084         Don't #define mbrlen or mbsinit, since now they're guaranteed to
18085         be available.  Reported by Tom G. Christensen.  Details in
18086         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
18087
18088 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18089             Bruno Haible  <bruno@clisp.org>
18090
18091         Speed up gnulib-tool by doing more string processing through shell
18092         built-ins.
18093         * gnulib-tool (fast_func_append): New variable.
18094         (func_remove_prefix, func_remove_suffix): New functions.
18095         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
18096         (func_filter_filelist): New function.
18097         (func_get_dependencies): Use func_remove_suffix instead of sed.
18098         (func_get_automake_snippet): Use func_filter_filelist instead of a
18099         subshell and sed invocation.
18100
18101 2009-01-01  Bruno Haible  <bruno@clisp.org>
18102
18103         Fix a security bug.
18104         * gnulib-tool (func_import, import, update): Don't allow the characters
18105         '"', '$', '`', '\' in macro arguments that become part of commands that
18106         are evaluated.
18107
18108 2009-01-01  Bruno Haible  <bruno@clisp.org>
18109
18110         * gnulib-tool (func_reset_sigpipe): Add more comments.
18111
18112 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18113
18114         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
18115         func_emit_tests_Makefile_am, func_import): Abort loops early if we
18116         already know the answer.
18117
18118 2009-01-01  Jim Meyering  <meyering@redhat.com>
18119
18120         * lib/version-etc.c (version_etc_va): Update copyright year.
18121
18122 2008-12-30  Bruno Haible  <bruno@clisp.org>
18123
18124         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
18125         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
18126         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
18127
18128 2008-12-29  Eric Blake  <ebb9@byu.net>
18129
18130         multiarch: avoid autoconf AC_REQUIRE bug
18131         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
18132         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
18133         2.63 and older.
18134         Reported by Bruno Haible, and analyzed in
18135         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
18136
18137 2008-12-29  Bruno Haible  <bruno@clisp.org>
18138
18139         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
18140         files in subdirectories correctly.
18141         Reported by Ralf Wildenhues.
18142
18143 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18144
18145         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
18146         rather than 'join FILE -', for Solaris join.
18147
18148 2008-12-29  Bruno Haible  <bruno@clisp.org>
18149
18150         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
18151         quoting.
18152         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
18153         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
18154         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
18155         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
18156         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
18157         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
18158         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
18159         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
18160         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
18161         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
18162         * m4/nls.m4 (AM_NLS): Likewise.
18163         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
18164         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
18165         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
18166         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
18167         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
18168         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
18169         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
18170         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
18171         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
18172         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
18173         * m4/xsize.m4 (gl_XSIZE): Likewise.
18174         Suggested by Jim Meyering.
18175
18176 2008-11-17  Bruce Korb  <bkorb@gnu.org>
18177
18178         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
18179         * lib/parse-duration.c: use a switch instead of cascading if's.
18180
18181 2008-12-29  Eric Blake  <ebb9@byu.net>
18182
18183         wchar.h: supply WEOF on Irix 5.3
18184         * lib/wchar.in.h (wint_t): Also supply WEOF.
18185         * lib/wctype.in.h (wint_t): Likewise.
18186         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
18187         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
18188         Reported by Tom G. Christensen.
18189
18190 2008-12-26  Bruno Haible  <bruno@clisp.org>
18191
18192         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
18193         i486, i586, i686.
18194
18195 2008-12-26  Bruno Haible  <bruno@clisp.org>
18196
18197         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
18198
18199 2008-12-26  Bruno Haible  <bruno@clisp.org>
18200
18201         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
18202         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
18203         not __STDC_CONSTANT_MACROS.
18204         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
18205
18206 2008-12-25  Bruno Haible  <bruno@clisp.org>
18207
18208         Add support for universal builds to vasnprintf.
18209         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
18210         universal builds, guess no.
18211         * modules/vasnprintf-posix (Depends-on): Add multiarch.
18212         * modules/vasprintf-posix (Depends-on): Likewise.
18213         * modules/fprintf-posix (Depends-on): Likewise.
18214         * modules/vfprintf-posix (Depends-on): Likewise.
18215         * modules/snprintf-posix (Depends-on): Likewise.
18216         * modules/vsnprintf-posix (Depends-on): Likewise.
18217         * modules/sprintf-posix (Depends-on): Likewise.
18218         * modules/vsprintf-posix (Depends-on): Likewise.
18219         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
18220         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
18221         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
18222         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
18223         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
18224         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
18225         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
18226
18227         Add support for universal builds to <inttypes.h>.
18228         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
18229         _SCNu64_PREFIX): In Apple
18230         universal builds, define directly, using _LP64.
18231         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
18232         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
18233         * modules/inttypes (Depends-on): Add multiarch.
18234         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
18235
18236         Add support for universal builds to <stdint.h>.
18237         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
18238         universal builds, define directly, using _LP64.
18239         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
18240         Apple universal builds, don't test for the size and suffix of ptrdiff_t
18241         and size_t.
18242         * modules/stdint (Depends-on): Add multiarch.
18243         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
18244
18245         New module 'multiarch'.
18246         * modules/multiarch: New file.
18247         * m4/multiarch.m4: New file.
18248
18249 2008-12-25  Bruno Haible  <bruno@clisp.org>
18250
18251         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
18252
18253 2008-12-25  Bruno Haible  <bruno@clisp.org>
18254
18255         * modules/btowc (License): Relicense under LGPLv2+.
18256         * modules/mbsinit (License): Likewise.
18257         * modules/mbrtowc (License): Likewise.
18258         * modules/wcrtomb (License): Likewise.
18259         * modules/streq (License): Likewise.
18260         Reported by David Lutterkort <lutter@redhat.com>.
18261
18262 2008-12-23  Bruno Haible  <bruno@clisp.org>
18263
18264         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
18265
18266 2008-12-23  Bruno Haible  <bruno@clisp.org>
18267
18268         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
18269         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
18270         GETADDRINFO_LIB, not in LIBS.
18271         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
18272         * modules/canon-host (Link): Likewise.
18273         * NEWS: Mention the change.
18274         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
18275         GETADDRINFO_LIB.
18276
18277 2008-12-22  Bruno Haible  <bruno@clisp.org>
18278
18279         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
18280         * doc/posix-functions/iswalpha_l.texi: Likewise.
18281         * doc/posix-functions/iswblank_l.texi: Likewise.
18282         * doc/posix-functions/iswcntrl_l.texi: Likewise.
18283         * doc/posix-functions/iswctype_l.texi: Likewise.
18284         * doc/posix-functions/iswdigit_l.texi: Likewise.
18285         * doc/posix-functions/iswgraph_l.texi: Likewise.
18286         * doc/posix-functions/iswlower_l.texi: Likewise.
18287         * doc/posix-functions/iswprint_l.texi: Likewise.
18288         * doc/posix-functions/iswpunct_l.texi: Likewise.
18289         * doc/posix-functions/iswspace_l.texi: Likewise.
18290         * doc/posix-functions/iswupper_l.texi: Likewise.
18291         * doc/posix-functions/iswxdigit_l.texi: Likewise.
18292         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
18293         * doc/posix-functions/open_wmemstream.texi: Likewise.
18294         * doc/posix-functions/swscanf.texi: Likewise.
18295         * doc/posix-functions/towctrans_l.texi: Likewise.
18296         * doc/posix-functions/towlower.texi: Likewise.
18297         * doc/posix-functions/towlower_l.texi: Likewise.
18298         * doc/posix-functions/towupper.texi: Likewise.
18299         * doc/posix-functions/towupper_l.texi: Likewise.
18300         * doc/posix-functions/vfwprintf.texi: Likewise.
18301         * doc/posix-functions/vfwscanf.texi: Likewise.
18302         * doc/posix-functions/vswscanf.texi: Likewise.
18303         * doc/posix-functions/vwprintf.texi: Likewise.
18304         * doc/posix-functions/vwscanf.texi: Likewise.
18305         * doc/posix-functions/wcpcpy.texi: Likewise.
18306         * doc/posix-functions/wcpncpy.texi: Likewise.
18307         * doc/posix-functions/wcscasecmp.texi: Likewise.
18308         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
18309         * doc/posix-functions/wcscoll_l.texi: Likewise.
18310         * doc/posix-functions/wcsdup.texi: Likewise.
18311         * doc/posix-functions/wcsncasecmp.texi: Likewise.
18312         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
18313         * doc/posix-functions/wcsnlen.texi: Likewise.
18314         * doc/posix-functions/wcsnrtombs.texi: Likewise.
18315         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
18316         * doc/posix-functions/wctrans_l.texi: Likewise.
18317         * doc/posix-functions/wctype_l.texi: Likewise.
18318         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
18319         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
18320         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
18321         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
18322         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
18323         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
18324         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
18325         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
18326         * doc/glibc-functions/wcschrnul.texi: Likewise.
18327         * doc/glibc-functions/wcsftime_l.texi: Likewise.
18328         * doc/glibc-functions/wcstod_l.texi: Likewise.
18329         * doc/glibc-functions/wcstof_l.texi: Likewise.
18330         * doc/glibc-functions/wcstol_l.texi: Likewise.
18331         * doc/glibc-functions/wcstold_l.texi: Likewise.
18332         * doc/glibc-functions/wcstoll_l.texi: Likewise.
18333         * doc/glibc-functions/wcstoq.texi: Likewise.
18334         * doc/glibc-functions/wcstoul_l.texi: Likewise.
18335         * doc/glibc-functions/wcstoull_l.texi: Likewise.
18336         * doc/glibc-functions/wcstouq.texi: Likewise.
18337         * doc/glibc-functions/wmempcpy.texi: Likewise.
18338
18339 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
18340             Eric Blake  <ebb9@byu.net>
18341             Paolo Bonzini  <bonzini@gnu.org>
18342             Bruno Haible  <bruno@clisp.org>
18343
18344         Make c-stack work on Haiku.
18345         * lib/c-stack.c (SA_ONSTACK): Define fallback.
18346         (c_stack_action): Use SA_ONSTACK flag.
18347
18348 2008-12-22  Bruno Haible  <bruno@clisp.org>
18349
18350         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
18351
18352 2008-12-22  Bruno Haible  <bruno@clisp.org>
18353
18354         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
18355         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
18356         being overridden.
18357         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
18358         New macros.
18359         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
18360         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
18361         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
18362         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
18363
18364 2008-12-22  Bruno Haible  <bruno@clisp.org>
18365
18366         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
18367         from test code.
18368
18369 2008-12-22  Eric Blake  <ebb9@byu.net>
18370
18371         Avoid gcc warnings on cygwin.
18372         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
18373         Avoid unused variable.
18374         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
18375         Likewise.
18376
18377 2008-12-22  Bruno Haible  <bruno@clisp.org>
18378
18379         Remove HAVE_MBRTOWC conditionals.
18380         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
18381         (mbscasecmp): Assume mbrtowc function.
18382         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
18383         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
18384         * lib/mbschr.c: Include mbuiter.h unconditionally.
18385         (mbschr): Assume mbrtowc function.
18386         * lib/mbscspn.c: Include mbuiter.h unconditionally.
18387         (mbscspn): Assume mbrtowc function.
18388         * lib/mbslen.c: Include mbuiter.h unconditionally.
18389         (mbslen): Assume mbrtowc function.
18390         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
18391         (mbsncasecmp): Assume mbrtowc function.
18392         * lib/mbsnlen.c: Include mbiter.h unconditionally.
18393         (mbsnlen): Assume mbrtowc function.
18394         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
18395         (mbspbrk): Assume mbrtowc function.
18396         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
18397         (mbspcasecmp): Assume mbrtowc function.
18398         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
18399         (mbsrchr): Assume mbrtowc function.
18400         * lib/mbssep.c: Include mbuiter.h unconditionally.
18401         (mbssep): Assume mbrtowc function.
18402         * lib/mbsspn.c: Include mbuiter.h unconditionally.
18403         (mbsspn): Assume mbrtowc function.
18404         * lib/mbsstr.c: Include mbuiter.h unconditionally.
18405         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
18406         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
18407         (mbstok_r): Assume mbrtowc function.
18408         * lib/propername.c: Include mbuiter.h unconditionally.
18409         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
18410         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
18411         (trim2): Assume mbrtowc function.
18412         * lib/mbswidth.c (mbsinit): Remove fallback definition.
18413         (mbsnwidth): Assume mbrtowc function.
18414         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
18415         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
18416         fallback definitions.
18417         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
18418
18419 2008-12-22  Bruno Haible  <bruno@clisp.org>
18420
18421         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
18422
18423 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
18424
18425         * modules/regex: Request emulations for the mb*/wc* functions we need.
18426         * m4/regex.m4: Don't look for those functions here.
18427         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
18428
18429 2008-12-22  Bruno Haible  <bruno@clisp.org>
18430
18431         * modules/fnmatch (Depends-on): Remove duplicated dependency.
18432
18433 2008-12-21  Bruno Haible  <bruno@clisp.org>
18434
18435         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
18436         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
18437         (Include): Remove conditionalization.
18438         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
18439         (Include): Remove conditionalization.
18440         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
18441         (Include): Remove conditionalization.
18442         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
18443         * m4/mbfile.m4 (gl_MBFILE): Likewise.
18444         * NEWS: Mention the change.
18445         Reported by Alan Hourihane <alanh@fairlite.co.uk>
18446         via Sergey Poznyakoff <gray@gnu.org.ua>.
18447
18448 2008-12-21  Bruno Haible  <bruno@clisp.org>
18449
18450         * MODULES.html.sh (Extended multibyte and wide character utilities
18451         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
18452         wcrtomb, wcsrtombs.
18453         (Support for systems lacking POSIX:2008): Add accept, bind, close,
18454         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
18455         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
18456         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
18457
18458 2008-12-21  Bruno Haible  <bruno@clisp.org>
18459
18460         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
18461
18462 2008-12-21  Bruno Haible  <bruno@clisp.org>
18463
18464         * modules/wcsnrtombs-tests: New file.
18465         * tests/test-wcsnrtombs1.sh: New file.
18466         * tests/test-wcsnrtombs2.sh: New file.
18467         * tests/test-wcsnrtombs3.sh: New file.
18468         * tests/test-wcsnrtombs4.sh: New file.
18469         * tests/test-wcsnrtombs.c: New file.
18470
18471         New module 'wcsnrtombs'.
18472         * lib/wchar.in.h (wcsnrtombs): New declaration.
18473         * lib/wcsnrtombs.c: New file.
18474         * lib/wcsrtombs-state.c: New file.
18475         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
18476         (internal_state): Remove variable.
18477         * m4/wcsnrtombs.m4: New file.
18478         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
18479         compilation units.
18480         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
18481         HAVE_WCSNRTOMBS.
18482         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
18483         HAVE_WCSNRTOMBS.
18484         * modules/wcsnrtombs: New file.
18485         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
18486         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
18487
18488 2008-12-21  Bruno Haible  <bruno@clisp.org>
18489
18490         * modules/wcsrtombs-tests: New file.
18491         * tests/test-wcsrtombs1.sh: New file.
18492         * tests/test-wcsrtombs2.sh: New file.
18493         * tests/test-wcsrtombs3.sh: New file.
18494         * tests/test-wcsrtombs4.sh: New file.
18495         * tests/test-wcsrtombs.c: New file.
18496
18497         New module 'wcsrtombs'.
18498         * lib/wchar.in.h (wcsrtombs): New declaration.
18499         * lib/wcsrtombs.c: New file.
18500         * m4/wcsrtombs.m4: New file.
18501         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
18502         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
18503         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
18504         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
18505         * modules/wcsrtombs: New file.
18506         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
18507         bugs.
18508
18509 2008-12-21  Bruno Haible  <bruno@clisp.org>
18510
18511         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
18512         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
18513         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
18514         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
18515         if not correct.
18516         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
18517         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
18518         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18519         m4/locale-zh.m4, m4/codeset.m4.
18520         * doc/posix-functions/wcrtomb.texi: Document the bug.
18521
18522 2008-12-21  Bruno Haible  <bruno@clisp.org>
18523
18524         Work around a btowc() bug on IRIX 6.5.
18525         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
18526         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
18527         REPLACE_WTOBC if not.
18528         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
18529         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
18530         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
18531
18532 2008-12-21  Bruno Haible  <bruno@clisp.org>
18533
18534         * modules/wcrtomb-tests: New file.
18535         * tests/test-wcrtomb.sh: New file.
18536         * tests/test-wcrtomb.c: New file.
18537
18538         New module 'wcrtomb'.
18539         * lib/wchar.in.h (wcrtomb): New declaration.
18540         * lib/wcrtomb.c: New file.
18541         * m4/wcrtomb.m4: New file.
18542         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
18543         HAVE_WCRTOMB.
18544         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
18545         HAVE_WCRTOMB.
18546         * modules/wcrtomb: New file.
18547         * doc/posix-functions/wcrtomb.texi: Mention the new module.
18548
18549 2008-12-21  Bruno Haible  <bruno@clisp.org>
18550
18551         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
18552         * modules/mbsrtowcs (Files): Likewise.
18553         * modules/wctob (Files): Likewise.
18554         * modules/c-strcase-tests (Files): Likewise.
18555         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
18556         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
18557         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
18558         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
18559         * modules/vasnprintf-posix-tests (Files): Likewise.
18560
18561 2008-12-21  William Pursell  <bill.pursell@gmail.com>
18562
18563         gitlog-to-changelog: pass all command-line arguments to git-log
18564         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
18565         it is sometimes convenient to filter the commits in various ways.
18566         gitlog-to-changelog only allows --since to specify a start date,
18567         but git-log itself supports many other filtering mechanisms.
18568         At the moment, I want to filter by branch name.  Rather than
18569         adding a --branch option to gitlog-to-changelog, it seems more
18570         flexible to simply pass all options directly to git-log and let
18571         git do the work.  Notice that this effectively makes --since a
18572         redundant option for gitlog-to-changelog, but removing it would
18573         require current usage to change since calls would then require
18574         an additional '--'.
18575
18576 2008-12-21  Bruno Haible  <bruno@clisp.org>
18577
18578         * modules/mbsnrtowcs-tests: New file.
18579         * tests/test-mbsnrtowcs1.sh: New file.
18580         * tests/test-mbsnrtowcs2.sh: New file.
18581         * tests/test-mbsnrtowcs3.sh: New file.
18582         * tests/test-mbsnrtowcs4.sh: New file.
18583         * tests/test-mbsnrtowcs.c: New file.
18584
18585         New module 'mbsnrtowcs'.
18586         * lib/wchar.in.h (mbsnrtowcs): New declaration.
18587         * lib/mbsnrtowcs.c: New file.
18588         * lib/mbsrtowcs-state.c: New file.
18589         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
18590         (internal_state): Remove variable.
18591         * m4/mbsnrtowcs.m4: New file.
18592         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
18593         compilation units.
18594         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
18595         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18596         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
18597         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
18598         * modules/mbsnrtowcs: New file.
18599         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
18600         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
18601         portability problem.
18602
18603 2008-12-21  Bruno Haible  <bruno@clisp.org>
18604
18605         Work around mbsrtowcs bug.
18606         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
18607         (gl_FUNC_MBSRTOWCS): Invoke it.
18608         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18609         m4/locale-zh.m4.
18610         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
18611
18612 2008-12-21  Bruno Haible  <bruno@clisp.org>
18613
18614         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
18615
18616 2008-12-21  Bruno Haible  <bruno@clisp.org>
18617
18618         Update doc for AIX.
18619         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
18620         16-bit wchar_t type.
18621         * doc/posix-functions/btowc.texi: Likewise.
18622         * doc/posix-functions/fgetwc.texi: Likewise.
18623         * doc/posix-functions/fgetws.texi: Likewise.
18624         * doc/posix-functions/fputwc.texi: Likewise.
18625         * doc/posix-functions/fputws.texi: Likewise.
18626         * doc/posix-functions/fwide.texi: Likewise.
18627         * doc/posix-functions/fwprintf.texi: Likewise.
18628         * doc/posix-functions/fwscanf.texi: Likewise.
18629         * doc/posix-functions/getwchar.texi: Likewise.
18630         * doc/posix-functions/getwc.texi: Likewise.
18631         * doc/posix-functions/iswalnum.texi: Likewise.
18632         * doc/posix-functions/iswalpha.texi: Likewise.
18633         * doc/posix-functions/iswblank.texi: Likewise.
18634         * doc/posix-functions/iswcntrl.texi: Likewise.
18635         * doc/posix-functions/iswctype.texi: Likewise.
18636         * doc/posix-functions/iswdigit.texi: Likewise.
18637         * doc/posix-functions/iswgraph.texi: Likewise.
18638         * doc/posix-functions/iswlower.texi: Likewise.
18639         * doc/posix-functions/iswprint.texi: Likewise.
18640         * doc/posix-functions/iswpunct.texi: Likewise.
18641         * doc/posix-functions/iswspace.texi: Likewise.
18642         * doc/posix-functions/iswupper.texi: Likewise.
18643         * doc/posix-functions/iswxdigit.texi: Likewise.
18644         * doc/posix-functions/mbrtowc.texi: Likewise.
18645         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18646         * doc/posix-functions/mbstowcs.texi: Likewise.
18647         * doc/posix-functions/mbtowc.texi: Likewise.
18648         * doc/posix-functions/putwchar.texi: Likewise.
18649         * doc/posix-functions/putwc.texi: Likewise.
18650         * doc/posix-functions/swprintf.texi: Likewise.
18651         * doc/posix-functions/tolower.texi: Likewise.
18652         * doc/posix-functions/toupper.texi: Likewise.
18653         * doc/posix-functions/towctrans.texi: Likewise.
18654         * doc/posix-functions/ungetwc.texi: Likewise.
18655         * doc/posix-functions/vswprintf.texi: Likewise.
18656         * doc/posix-functions/wcrtomb.texi: Likewise.
18657         * doc/posix-functions/wcscat.texi: Likewise.
18658         * doc/posix-functions/wcschr.texi: Likewise.
18659         * doc/posix-functions/wcscmp.texi: Likewise.
18660         * doc/posix-functions/wcscoll.texi: Likewise.
18661         * doc/posix-functions/wcscpy.texi: Likewise.
18662         * doc/posix-functions/wcscspn.texi: Likewise.
18663         * doc/posix-functions/wcsftime.texi: Likewise.
18664         * doc/posix-functions/wcslen.texi: Likewise.
18665         * doc/posix-functions/wcsncat.texi: Likewise.
18666         * doc/posix-functions/wcsncmp.texi: Likewise.
18667         * doc/posix-functions/wcsncpy.texi: Likewise.
18668         * doc/posix-functions/wcspbrk.texi: Likewise.
18669         * doc/posix-functions/wcsrchr.texi: Likewise.
18670         * doc/posix-functions/wcsrtombs.texi: Likewise.
18671         * doc/posix-functions/wcsspn.texi: Likewise.
18672         * doc/posix-functions/wcsstr.texi: Likewise.
18673         * doc/posix-functions/wcstod.texi: Likewise.
18674         * doc/posix-functions/wcstof.texi: Likewise.
18675         * doc/posix-functions/wcstoimax.texi: Likewise.
18676         * doc/posix-functions/wcstok.texi: Likewise.
18677         * doc/posix-functions/wcstold.texi: Likewise.
18678         * doc/posix-functions/wcstoll.texi: Likewise.
18679         * doc/posix-functions/wcstol.texi: Likewise.
18680         * doc/posix-functions/wcstombs.texi: Likewise.
18681         * doc/posix-functions/wcstoull.texi: Likewise.
18682         * doc/posix-functions/wcstoul.texi: Likewise.
18683         * doc/posix-functions/wcstoumax.texi: Likewise.
18684         * doc/posix-functions/wcswidth.texi: Likewise.
18685         * doc/posix-functions/wcsxfrm.texi: Likewise.
18686         * doc/posix-functions/wctob.texi: Likewise.
18687         * doc/posix-functions/wctomb.texi: Likewise.
18688         * doc/posix-functions/wctrans.texi: Likewise.
18689         * doc/posix-functions/wctype.texi: Likewise.
18690         * doc/posix-functions/wcwidth.texi: Likewise.
18691         * doc/posix-functions/wmemchr.texi: Likewise.
18692         * doc/posix-functions/wmemcmp.texi: Likewise.
18693         * doc/posix-functions/wmemcpy.texi: Likewise.
18694         * doc/posix-functions/wmemmove.texi: Likewise.
18695         * doc/posix-functions/wmemset.texi: Likewise.
18696         * doc/posix-functions/wprintf.texi: Likewise.
18697         * doc/posix-functions/wscanf.texi: Likewise.
18698
18699 2008-12-21  Bruno Haible  <bruno@clisp.org>
18700
18701         Update doc for HP-UX 11.11.
18702         * doc/posix-functions/btowc.texi: Clarify that the function is missing
18703         in HP-UX version 11.00, not in all versions of HP-UX 11.
18704         * doc/posix-functions/fwide.texi: Likewise.
18705         * doc/posix-functions/fwprintf.texi: Likewise.
18706         * doc/posix-functions/fwscanf.texi: Likewise.
18707         * doc/posix-functions/inet_ntop.texi: Likewise.
18708         * doc/posix-functions/inet_pton.texi: Likewise.
18709         * doc/posix-functions/mbrlen.texi: Likewise.
18710         * doc/posix-functions/mbrtowc.texi: Likewise.
18711         * doc/posix-functions/mbsinit.texi: Likewise.
18712         * doc/posix-functions/mbsrtowcs.texi: Likewise.
18713         * doc/posix-functions/swprintf.texi: Likewise.
18714         * doc/posix-functions/swscanf.texi: Likewise.
18715         * doc/posix-functions/towctrans.texi: Likewise.
18716         * doc/posix-functions/vfwprintf.texi: Likewise.
18717         * doc/posix-functions/vswprintf.texi: Likewise.
18718         * doc/posix-functions/vwprintf.texi: Likewise.
18719         * doc/posix-functions/wcrtomb.texi: Likewise.
18720         * doc/posix-functions/wcsrtombs.texi: Likewise.
18721         * doc/posix-functions/wcsstr.texi: Likewise.
18722         * doc/posix-functions/wctob.texi: Likewise.
18723         * doc/posix-functions/wctrans.texi: Likewise.
18724         * doc/posix-functions/wmemchr.texi: Likewise.
18725         * doc/posix-functions/wmemcmp.texi: Likewise.
18726         * doc/posix-functions/wmemcpy.texi: Likewise.
18727         * doc/posix-functions/wmemmove.texi: Likewise.
18728         * doc/posix-functions/wmemset.texi: Likewise.
18729         * doc/posix-functions/wprintf.texi: Likewise.
18730         * doc/posix-functions/wscanf.texi: Likewise.
18731
18732 2008-12-21  Bruno Haible  <bruno@clisp.org>
18733
18734         Work around a portability problem.
18735         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
18736         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
18737
18738 2008-12-20  Bruno Haible  <bruno@clisp.org>
18739
18740         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
18741         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
18742         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
18743         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
18744         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
18745
18746         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
18747         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
18748         set.
18749         (GNULIB_defined_mbstate_t): New macro.
18750         (mbsinit): Redefine if REPLACE_MBSINIT is set.
18751         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
18752         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
18753         reuses the system's mbrtowc function but works around the bugs.
18754         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
18755         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
18756         macros.
18757         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
18758         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
18759         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
18760         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
18761         REPLACE_MBSINIT if mbsinit needs to be overridden.
18762         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
18763         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18764         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
18765         REPLACE_MBSINIT, REPLACE_MBRTOWC.
18766         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
18767         m4/locale-zh.m4.
18768         (Depends): Add mbsinit.
18769         * modules/mbsinit (Depends): Add mbrtowc.
18770         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
18771
18772 2008-12-20  Bruno Haible  <bruno@clisp.org>
18773
18774         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
18775         so that there are no conversion errors on AIX.
18776         * tests/test-mbsrtowcs.c (main): LIkewise.
18777
18778 2008-12-20  Bruno Haible  <bruno@clisp.org>
18779
18780         Work around wctob bug on Solaris <= 9.
18781         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
18782         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
18783         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
18784         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
18785         * modules/wctob (Files): Add m4/locale-fr.m4.
18786         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
18787
18788 2008-12-20  Bruno Haible  <bruno@clisp.org>
18789
18790         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
18791         /dev/null.
18792         * tests/test-select-in.sh: Likewise.
18793         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
18794
18795 2008-12-20  Bruno Haible  <bruno@clisp.org>
18796
18797         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
18798         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
18799         Cygwin 1.5.x.
18800
18801 2008-12-20  Bruno Haible  <bruno@clisp.org>
18802
18803         Ensure mbstate_t is defined on HP-UX 11.11.
18804         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
18805         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
18806         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
18807         AC_USE_SYSTEM_EXTENSIONS.
18808         * modules/fnmatch (Depends-on): Add extensions.
18809         * modules/mbrlen (Depends-on): Likewise.
18810         * modules/mbrtowc (Depends-on): Likewise.
18811         * modules/mbsinit (Depends-on): Likewise.
18812         * modules/mbsrtowcs (Depends-on): Likewise.
18813         * modules/mbswidth (Depends-on): Likewise.
18814         * modules/quotearg (Depends-on): Likewise.
18815         * modules/strftime (Depends-on): Likewise.
18816
18817 2008-12-20  Bruno Haible  <bruno@clisp.org>
18818
18819         Ensure wctob is declared on IRIX 6.5.
18820         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
18821         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
18822         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
18823         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
18824         of HAVE_WCTOB.
18825         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
18826         HAVE_WCTOB.
18827         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
18828
18829 2008-12-19  Bruno Haible  <bruno@clisp.org>
18830
18831         * modules/mbsrtowcs-tests: New file.
18832         * tests/test-mbsrtowcs1.sh: New file.
18833         * tests/test-mbsrtowcs2.sh: New file.
18834         * tests/test-mbsrtowcs3.sh: New file.
18835         * tests/test-mbsrtowcs4.sh: New file.
18836         * tests/test-mbsrtowcs.c: New file.
18837
18838         New module 'mbsrtowcs'.
18839         * lib/wchar.in.h (mbsrtowcs): New declaration.
18840         * lib/mbsrtowcs.c: New file.
18841         * m4/mbsrtowcs.m4: New file.
18842         * modules/mbsrtowcs: New file.
18843         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
18844         HAVE_MBSRTOWCS.
18845         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
18846         HAVE_MBSRTOWCS.
18847         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
18848
18849 2008-12-19  Bruno Haible  <bruno@clisp.org>
18850
18851         New module 'mbrlen'.
18852         * lib/wchar.in.h (mbrlen): New declaration.
18853         * lib/mbrlen.c: New file.
18854         * m4/mbrlen.m4: New file.
18855         * modules/mbrlen: New file.
18856         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
18857         HAVE_MBRLEN.
18858         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
18859         HAVE_MBRLEN.
18860         * doc/posix-functions/mbrlen.texi: Document the new module.
18861
18862 2008-12-19  Bruno Haible  <bruno@clisp.org>
18863
18864         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
18865         * modules/mbrtowc (Depends-on): Add verify.
18866         Suggested by Paul Eggert.
18867
18868 2008-12-18  Bruno Haible  <bruno@clisp.org>
18869
18870         * modules/mbsinit-tests: New file.
18871         * tests/test-mbsinit.sh: New file.
18872         * tests/test-mbsinit.c: New file.
18873
18874 2008-12-18  Bruno Haible  <bruno@clisp.org>
18875
18876         * modules/mbrtowc-tests: New file.
18877         * tests/test-mbrtowc1.sh: New file.
18878         * tests/test-mbrtowc2.sh: New file.
18879         * tests/test-mbrtowc3.sh: New file.
18880         * tests/test-mbrtowc4.sh: New file.
18881         * tests/test-mbrtowc.c: New file.
18882
18883         New module 'mbrtowc'.
18884         * lib/wchar.in.h (mbstate_t): Override when the system does not have
18885         mbsinit and mbrtowc.
18886         (mbrtowc): New declaration.
18887         * lib/mbrtowc.c: New file.
18888         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
18889         * modules/mbrtowc: New file.
18890         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
18891         HAVE_MBRTOWC.
18892         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
18893         HAVE_MBRTOWC.
18894         * doc/posix-functions/mbrtowc.texi: Document the new module.
18895
18896 2008-12-18  Bruno Haible  <bruno@clisp.org>
18897
18898         New module 'wctob'.
18899         * lib/wchar.in.h (wctob): New declaration.
18900         * lib/wctob.c: New file.
18901         * m4/wctob.m4: New file.
18902         * modules/wctob: New file.
18903         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
18904         HAVE_WCTOB.
18905         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
18906         * doc/posix-functions/wctob.texi: Document the new module.
18907
18908 2008-12-18  Bruno Haible  <bruno@clisp.org>
18909
18910         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
18911         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
18912
18913 2008-12-18  Simon Josefsson  <simon@josefsson.org>
18914
18915         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
18916         G. Christensen" <tgc@jupiterrise.com>.
18917
18918         * lib/flock.c: Need to include errno.h.  Reported by "Tom
18919         G. Christensen" <tgc@jupiterrise.com>.
18920
18921         * lib/flock.c: Need to include string.h.  Reported by "Tom
18922         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
18923         <ebb9@byu.net>.
18924
18925 2008-12-18  Bruno Haible  <bruno@clisp.org>
18926
18927         * m4/locale-ja.m4: New file, from GNU gettext.
18928
18929 2008-12-17  Bruno Haible  <bruno@clisp.org>
18930
18931         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
18932         Suggested by Eric Blake.
18933
18934 2008-12-17  Bruno Haible  <bruno@clisp.org>
18935
18936         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
18937
18938 2008-12-17  Bruno Haible  <bruno@clisp.org>
18939
18940         * lib/mbsinit.c: Include verify.h. Verify an assumption.
18941         * modules/mbsinit (Depends-on): Add verify.
18942         Suggested by Paul Eggert.
18943
18944 2008-12-17  Bruno Haible  <bruno@clisp.org>
18945
18946         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
18947         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
18948         gl_FUNC_MBRTOWC.
18949         * m4/mbiter.m4 (gl_MBITER): LIkewise.
18950         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
18951         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
18952         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
18953         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
18954         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
18955         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
18956         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
18957         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
18958         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
18959         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
18960         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
18961         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
18962         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
18963         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
18964         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
18965         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
18966         * modules/trim (configure.ac): Likewise.
18967
18968 2008-12-17  Bruno Haible  <bruno@clisp.org>
18969
18970         * modules/btowc-tests: New file.
18971         * tests/test-btowc1.sh: New file.
18972         * tests/test-btowc2.sh: New file.
18973         * tests/test-btowc.c: New file.
18974
18975         New module 'btowc'.
18976         * lib/wchar.in.h (btowc): New declaration.
18977         * lib/btowc.c: New file.
18978         * m4/btowc.m4: New file.
18979         * modules/btowc: New file.
18980         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
18981         HAVE_BTOWC.
18982         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
18983         * doc/posix-functions/btowc.texi: Document the new module.
18984
18985 2008-12-17  Bruno Haible  <bruno@clisp.org>
18986
18987         New module 'mbsinit'.
18988         * lib/wchar.in.h (mbsinit): New declaration.
18989         * lib/mbsinit.c: New file.
18990         * m4/mbsinit.m4: New file.
18991         * modules/mbsinit: New file.
18992         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
18993         HAVE_MBSINIT.
18994         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
18995         HAVE_MBSINIT.
18996         * doc/posix-functions/mbsinit.texi: Document the new module.
18997
18998 2008-12-16  Bruno Haible  <bruno@clisp.org>
18999
19000         * lib/unistd.in.h: Add comment.
19001         * tests/test-environ.c: Don't include <stdlib.h>.
19002
19003 2008-12-16  Bruno Haible  <bruno@clisp.org>
19004
19005         * lib/parse-duration.h (parse_duration): Document return value
19006         convention.
19007         * lib/parse-duration.c: Include specification header first. Add
19008         comments.
19009         (_): Remove macro.
19010         (parse_year_month_day, parse_hour_minute_second): Move side effects
19011         outside of strchr call.
19012         (parse_non_iso8601): Move side effects outside of isspace call.
19013         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
19014         call.
19015
19016 2008-12-16  Bruno Haible  <bruno@clisp.org>
19017
19018         * tests/test-parse-duration.sh: Produce no output when the test
19019         succeeds.
19020
19021 2008-12-16  Bruno Haible  <bruno@clisp.org>
19022
19023         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
19024         expressions.
19025
19026 2008-12-15  Bruno Haible  <bruno@clisp.org>
19027
19028         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
19029         * doc/glibc-functions/flistxattr.texi: Likewise.
19030         * doc/glibc-functions/fopencookie.texi: Likewise.
19031         * doc/glibc-functions/fremovexattr.texi: Likewise.
19032         * doc/glibc-functions/fsetxattr.texi: Likewise.
19033         * doc/glibc-functions/getxattr.texi: Likewise.
19034         * doc/glibc-functions/lgetxattr.texi: Likewise.
19035         * doc/glibc-functions/listxattr.texi: Likewise.
19036         * doc/glibc-functions/llistxattr.texi: Likewise.
19037         * doc/glibc-functions/lremovexattr.texi: Likewise.
19038         * doc/glibc-functions/lsetxattr.texi: Likewise.
19039         * doc/glibc-functions/removexattr.texi: Likewise.
19040         * doc/glibc-functions/setxattr.texi: Likewise.
19041         * doc/posix-functions/open_memstream.texi: Likewise.
19042
19043 2008-12-15  Eric Blake  <ebb9@byu.net>
19044
19045         Update doc for cygwin 1.7.
19046         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
19047         functions.
19048         * doc/posix-functions/fchmodat.texi: Likewise.
19049         * doc/posix-functions/fchownat.texi: Likewise.
19050         * doc/posix-functions/fdopendir.texi: Likewise.
19051         * doc/posix-functions/fmemopen.texi: Likewise.
19052         * doc/posix-functions/freeaddrinfo.texi: Likewise.
19053         * doc/posix-functions/fstatat.texi: Likewise.
19054         * doc/posix-functions/futimens.texi: Likewise.
19055         * doc/posix-functions/gai_strerror.texi: Likewise.
19056         * doc/posix-functions/getaddrinfo.texi: Likewise.
19057         * doc/posix-functions/getnameinfo.texi: Likewise.
19058         * doc/posix-functions/if_freenameindex.texi: Likewise.
19059         * doc/posix-functions/if_indextoname.texi: Likewise.
19060         * doc/posix-functions/if_nameindex.texi: Likewise.
19061         * doc/posix-functions/if_nametoindex.texi: Likewise.
19062         * doc/posix-functions/insque.texi: Likewise.
19063         * doc/posix-functions/linkat.texi: Likewise.
19064         * doc/posix-functions/llrint.texi: Likewise.
19065         * doc/posix-functions/llrintf.texi: Likewise.
19066         * doc/posix-functions/llrintl.texi: Likewise.
19067         * doc/posix-functions/lockf.texi: Likewise.
19068         * doc/posix-functions/lrintl.texi: Likewise.
19069         * doc/posix-functions/mkdirat.texi: Likewise.
19070         * doc/posix-functions/mkfifoat.texi: Likewise.
19071         * doc/posix-functions/mknodat.texi: Likewise.
19072         * doc/posix-functions/mq_close.texi: Likewise.
19073         * doc/posix-functions/mq_getattr.texi: Likewise.
19074         * doc/posix-functions/mq_notify.texi: Likewise.
19075         * doc/posix-functions/mq_open.texi: Likewise.
19076         * doc/posix-functions/mq_receive.texi: Likewise.
19077         * doc/posix-functions/mq_send.texi: Likewise.
19078         * doc/posix-functions/mq_setattr.texi: Likewise.
19079         * doc/posix-functions/mq_timedreceive.texi: Likewise.
19080         * doc/posix-functions/mq_timedsend.texi: Likewise.
19081         * doc/posix-functions/mq_unlink.texi: Likewise.
19082         * doc/posix-functions/open_memstream.texi: Likewise.
19083         * doc/posix-functions/openat.texi: Likewise.
19084         * doc/posix-functions/posix_fadvise.texi: Likewise.
19085         * doc/posix-functions/posix_fallocate.texi: Likewise.
19086         * doc/posix-functions/posix_madvise.texi: Likewise.
19087         * doc/posix-functions/posix_memalign.texi: Likewise.
19088         * doc/posix-functions/posix_openpt.texi: Likewise.
19089         * doc/posix-functions/readlinkat.texi: Likewise.
19090         * doc/posix-functions/remque.texi: Likewise.
19091         * doc/posix-functions/renameat.texi: Likewise.
19092         * doc/posix-functions/rintl.texi: Likewise.
19093         * doc/posix-functions/sem_unlink.texi: Likewise.
19094         * doc/posix-functions/shm_open.texi: Likewise.
19095         * doc/posix-functions/shm_unlink.texi: Likewise.
19096         * doc/posix-functions/signgam.texi: Likewise.
19097         * doc/posix-functions/sigset.texi: Likewise.
19098         * doc/posix-functions/stpcpy.texi: Likewise.
19099         * doc/posix-functions/stpncpy.texi: Likewise.
19100         * doc/posix-functions/strerror.texi: Likewise.
19101         * doc/posix-functions/strtod.texi: Likewise.
19102         * doc/posix-functions/symlinkat.texi: Likewise.
19103         * doc/posix-functions/unlinkat.texi: Likewise.
19104         * doc/posix-functions/utimensat.texi: Likewise.
19105         * doc/glibc-functions/bindresvport.texi: Likewise.
19106         * doc/glibc-functions/dn_expand.texi: Likewise.
19107         * doc/glibc-functions/exp10.texi: Likewise.
19108         * doc/glibc-functions/exp10f.texi: Likewise.
19109         * doc/glibc-functions/fgetxattr.texi: Likewise.
19110         * doc/glibc-functions/flistxattr.texi: Likewise.
19111         * doc/glibc-functions/fopencookie.texi: Likewise.
19112         * doc/glibc-functions/freeifaddrs.texi: Likewise.
19113         * doc/glibc-functions/fremovexattr.texi: Likewise.
19114         * doc/glibc-functions/fsetxattr.texi: Likewise.
19115         * doc/glibc-functions/getifaddrs.texi: Likewise.
19116         * doc/glibc-functions/getxattr.texi: Likewise.
19117         * doc/glibc-functions/lgetxattr.texi: Likewise.
19118         * doc/glibc-functions/listxattr.texi: Likewise.
19119         * doc/glibc-functions/llistxattr.texi: Likewise.
19120         * doc/glibc-functions/lremovexattr.texi: Likewise.
19121         * doc/glibc-functions/lsetxattr.texi: Likewise.
19122         * doc/glibc-functions/pow10.texi: Likewise.
19123         * doc/glibc-functions/pow10f.texi: Likewise.
19124         * doc/glibc-functions/rcmd_af.texi: Likewise.
19125         * doc/glibc-functions/removexattr.texi: Likewise.
19126         * doc/glibc-functions/res_init.texi: Likewise.
19127         * doc/glibc-functions/res_mkquery.texi: Likewise.
19128         * doc/glibc-functions/res_query.texi: Likewise.
19129         * doc/glibc-functions/res_querydomain.texi: Likewise.
19130         * doc/glibc-functions/res_send.texi: Likewise.
19131         * doc/glibc-functions/rresvport_af.texi: Likewise.
19132         * doc/glibc-functions/setxattr.texi: Likewise.
19133         * doc/glibc-functions/strcasestr.texi: Likewise.
19134
19135 2008-12-15  Bruno Haible  <bruno@clisp.org>
19136
19137         Fix compilation error on OSF/1 4.0.
19138         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
19139         <sys/time.h>, simply delegate to the system header.
19140         Reported by Daniel Richard G. <oss@teragram.com>.
19141
19142 2008-12-15  Bruno Haible  <bruno@clisp.org>
19143
19144         * doc/posix-functions/openat.texi: Mention the 'openat' module.
19145         * doc/posix-functions/fchmodat.texi: Likewise.
19146         * doc/posix-functions/fchownat.texi: Likewise.
19147         * doc/posix-functions/fdopendir.texi: Likewise.
19148         * doc/posix-functions/fstatat.texi: Likewise.
19149         * doc/posix-functions/mkdirat.texi: Likewise.
19150         * doc/posix-functions/unlinkat.texi: Likewise.
19151
19152 2008-12-14  Bruno Haible  <bruno@clisp.org>
19153
19154         Update doc for POSIX:2008.
19155         * doc/posix-functions/faccessat.texi: New file.
19156         * doc/posix-functions/fchmodat.texi: New file.
19157         * doc/posix-functions/fchownat.texi: New file.
19158         * doc/posix-functions/fdopendir.texi: New file.
19159         * doc/posix-functions/fstatat.texi: New file.
19160         * doc/posix-functions/futimens.texi: New file.
19161         * doc/posix-functions/linkat.texi: New file.
19162         * doc/posix-functions/mkdirat.texi: New file.
19163         * doc/posix-functions/mkfifoat.texi: New file.
19164         * doc/posix-functions/mknodat.texi: New file.
19165         * doc/posix-functions/open_wmemstream.texi: New file.
19166         * doc/posix-functions/openat.texi: New file.
19167         * doc/posix-functions/psiginfo.texi: New file.
19168         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
19169         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
19170         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
19171         * doc/posix-functions/readlinkat.texi: New file.
19172         * doc/posix-functions/renameat.texi: New file.
19173         * doc/posix-functions/strerror_l.texi: New file.
19174         * doc/posix-functions/symlinkat.texi: New file.
19175         * doc/posix-functions/unlinkat.texi: New file.
19176         * doc/posix-functions/utimensat.texi: New file.
19177         * doc/gnulib.texi (Function Substitutes): Add these subsections.
19178
19179 2008-12-14  Bruno Haible  <bruno@clisp.org>
19180
19181         Update doc for POSIX:2008.
19182         * doc/posix-functions/alphasort.texi: Renamed from
19183         doc/glibc-functions/alphasort.texi.
19184         * doc/posix-functions/dirfd.texi: Renamed from
19185         doc/glibc-functions/dirfd.texi.
19186         * doc/posix-functions/dprintf.texi: Renamed from
19187         doc/glibc-functions/dprintf.texi.
19188         * doc/posix-functions/duplocale.texi: Renamed from
19189         doc/glibc-functions/duplocale.texi.
19190         * doc/posix-functions/fexecve.texi: Renamed from
19191         doc/glibc-functions/fexecve.texi.
19192         * doc/posix-functions/fmemopen.texi: Renamed from
19193         doc/glibc-functions/fmemopen.texi.
19194         * doc/posix-functions/freelocale.texi: Renamed from
19195         doc/glibc-functions/freelocale.texi.
19196         * doc/posix-functions/getdate_err.texi: Renamed from
19197         doc/glibc-functions/getdate_err.texi.
19198         * doc/posix-functions/isalnum_l.texi: Renamed from
19199         doc/glibc-functions/isalnum_l.texi.
19200         * doc/posix-functions/isalpha_l.texi: Renamed from
19201         doc/glibc-functions/isalpha_l.texi.
19202         * doc/posix-functions/isblank_l.texi: Renamed from
19203         doc/glibc-functions/isblank_l.texi.
19204         * doc/posix-functions/iscntrl_l.texi: Renamed from
19205         doc/glibc-functions/iscntrl_l.texi.
19206         * doc/posix-functions/isdigit_l.texi: Renamed from
19207         doc/glibc-functions/isdigit_l.texi.
19208         * doc/posix-functions/isgraph_l.texi: Renamed from
19209         doc/glibc-functions/isgraph_l.texi.
19210         * doc/posix-functions/islower_l.texi: Renamed from
19211         doc/glibc-functions/islower_l.texi.
19212         * doc/posix-functions/isprint_l.texi: Renamed from
19213         doc/glibc-functions/isprint_l.texi.
19214         * doc/posix-functions/ispunct_l.texi: Renamed from
19215         doc/glibc-functions/ispunct_l.texi.
19216         * doc/posix-functions/isspace_l.texi: Renamed from
19217         doc/glibc-functions/isspace_l.texi.
19218         * doc/posix-functions/isupper_l.texi: Renamed from
19219         doc/glibc-functions/isupper_l.texi.
19220         * doc/posix-functions/iswalnum_l.texi: Renamed from
19221         doc/glibc-functions/iswalnum_l.texi.
19222         * doc/posix-functions/iswalpha_l.texi: Renamed from
19223         doc/glibc-functions/iswalpha_l.texi.
19224         * doc/posix-functions/iswblank_l.texi: Renamed from
19225         doc/glibc-functions/iswblank_l.texi.
19226         * doc/posix-functions/iswcntrl_l.texi: Renamed from
19227         doc/glibc-functions/iswcntrl_l.texi.
19228         * doc/posix-functions/iswctype_l.texi: Renamed from
19229         doc/glibc-functions/iswctype_l.texi.
19230         * doc/posix-functions/iswdigit_l.texi: Renamed from
19231         doc/glibc-functions/iswdigit_l.texi.
19232         * doc/posix-functions/iswgraph_l.texi: Renamed from
19233         doc/glibc-functions/iswgraph_l.texi.
19234         * doc/posix-functions/iswlower_l.texi: Renamed from
19235         doc/glibc-functions/iswlower_l.texi.
19236         * doc/posix-functions/iswprint_l.texi: Renamed from
19237         doc/glibc-functions/iswprint_l.texi.
19238         * doc/posix-functions/iswpunct_l.texi: Renamed from
19239         doc/glibc-functions/iswpunct_l.texi.
19240         * doc/posix-functions/iswspace_l.texi: Renamed from
19241         doc/glibc-functions/iswspace_l.texi.
19242         * doc/posix-functions/iswupper_l.texi: Renamed from
19243         doc/glibc-functions/iswupper_l.texi.
19244         * doc/posix-functions/iswxdigit_l.texi: Renamed from
19245         doc/glibc-functions/iswxdigit_l.texi.
19246         * doc/posix-functions/isxdigit_l.texi: Renamed from
19247         doc/glibc-functions/isxdigit_l.texi.
19248         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
19249         doc/glibc-functions/mbsnrtowcs.texi.
19250         * doc/posix-functions/mkdtemp.texi: Renamed from
19251         doc/glibc-functions/mkdtemp.texi.
19252         * doc/posix-functions/newlocale.texi: Renamed from
19253         doc/glibc-functions/newlocale.texi.
19254         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
19255         doc/glibc-functions/nl_langinfo_l.texi.
19256         * doc/posix-functions/open_memstream.texi: Renamed from
19257         doc/glibc-functions/open_memstream.texi.
19258         * doc/posix-functions/opterr.texi: Renamed from
19259         doc/glibc-functions/opterr.texi.
19260         * doc/posix-functions/optind.texi: Renamed from
19261         doc/glibc-functions/optind.texi.
19262         * doc/posix-functions/optopt.texi: Renamed from
19263         doc/glibc-functions/optopt.texi.
19264         * doc/posix-functions/psignal.texi: Renamed from
19265         doc/glibc-functions/psignal.texi.
19266         * doc/posix-functions/scandir.texi: Renamed from
19267         doc/glibc-functions/scandir.texi.
19268         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
19269         doc/glibc-functions/sched_get_priority_min.texi.
19270         * doc/posix-functions/signgam.texi: Renamed from
19271         doc/glibc-functions/signgam.texi.
19272         * doc/posix-functions/stpcpy.texi: Renamed from
19273         doc/glibc-functions/stpcpy.texi.
19274         * doc/posix-functions/stpncpy.texi: Renamed from
19275         doc/glibc-functions/stpncpy.texi.
19276         * doc/posix-functions/strcasecmp_l.texi: Renamed from
19277         doc/glibc-functions/strcasecmp_l.texi.
19278         * doc/posix-functions/strcoll_l.texi: Renamed from
19279         doc/glibc-functions/strcoll_l.texi.
19280         * doc/posix-functions/strfmon_l.texi: Renamed from
19281         doc/glibc-functions/strfmon_l.texi.
19282         * doc/posix-functions/strftime_l.texi: Renamed from
19283         doc/glibc-functions/strftime_l.texi.
19284         * doc/posix-functions/strncasecmp_l.texi: Renamed from
19285         doc/glibc-functions/strncasecmp_l.texi.
19286         * doc/posix-functions/strndup.texi: Renamed from
19287         doc/glibc-functions/strndup.texi.
19288         * doc/posix-functions/strnlen.texi: Renamed from
19289         doc/glibc-functions/strnlen.texi.
19290         * doc/posix-functions/strsignal.texi: Renamed from
19291         doc/glibc-functions/strsignal.texi.
19292         * doc/posix-functions/strxfrm_l.texi: Renamed from
19293         doc/glibc-functions/strxfrm_l.texi.
19294         * doc/posix-functions/timer_gettime.texi: Renamed from
19295         doc/glibc-functions/timer_gettime.texi.
19296         * doc/posix-functions/tolower_l.texi: Renamed from
19297         doc/glibc-functions/tolower_l.texi.
19298         * doc/posix-functions/toupper_l.texi: Renamed from
19299         doc/glibc-functions/toupper_l.texi.
19300         * doc/posix-functions/towctrans_l.texi: Renamed from
19301         doc/glibc-functions/towctrans_l.texi.
19302         * doc/posix-functions/towlower_l.texi: Renamed from
19303         doc/glibc-functions/towlower_l.texi.
19304         * doc/posix-functions/towupper_l.texi: Renamed from
19305         doc/glibc-functions/towupper_l.texi.
19306         * doc/posix-functions/uselocale.texi: Renamed from
19307         doc/glibc-functions/uselocale.texi.
19308         * doc/posix-functions/vdprintf.texi: Renamed from
19309         doc/glibc-functions/vdprintf.texi.
19310         * doc/posix-functions/wcpcpy.texi:
19311         Renamed from doc/glibc-functions/wcpcpy.texi.
19312         * doc/posix-functions/wcpncpy.texi: Renamed from
19313         doc/glibc-functions/wcpncpy.texi.
19314         * doc/posix-functions/wcscasecmp.texi: Renamed from
19315         doc/glibc-functions/wcscasecmp.texi.
19316         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
19317         doc/glibc-functions/wcscasecmp_l.texi.
19318         * doc/posix-functions/wcscoll_l.texi: Renamed from
19319         doc/glibc-functions/wcscoll_l.texi.
19320         * doc/posix-functions/wcsdup.texi: Renamed from
19321         doc/glibc-functions/wcsdup.texi.
19322         * doc/posix-functions/wcsncasecmp.texi: Renamed from
19323         doc/glibc-functions/wcsncasecmp.texi.
19324         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
19325         doc/glibc-functions/wcsncasecmp_l.texi.
19326         * doc/posix-functions/wcsnlen.texi: Renamed from
19327         doc/glibc-functions/wcsnlen.texi.
19328         * doc/posix-functions/wcsnrtombs.texi: Renamed from
19329         doc/glibc-functions/wcsnrtombs.texi.
19330         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
19331         doc/glibc-functions/wcsxfrm_l.texi.
19332         * doc/posix-functions/wctrans_l.texi: Renamed from
19333         doc/glibc-functions/wctrans_l.texi.
19334         * doc/posix-functions/wctype_l.texi: Renamed from
19335         doc/glibc-functions/wctype_l.texi.
19336         * doc/gnulib.texi (Function Substitutes): Add these subsections.
19337         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
19338         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
19339         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
19340         these subsections.
19341         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
19342         Remove sections.
19343
19344 2008-12-14  Bruno Haible  <bruno@clisp.org>
19345
19346         Update doc for POSIX:2008.
19347         * doc/posix-functions/*.texi: Update URL of POSIX specification.
19348
19349 2008-12-14  Bruno Haible  <bruno@clisp.org>
19350
19351         Update doc for POSIX:2008.
19352         * doc/pastposix-functions/bcmp.texi: Renamed from
19353         doc/posix-functions/bcmp.texi.
19354         * doc/pastposix-functions/bcopy.texi: Renamed from
19355         doc/posix-functions/bcopy.texi.
19356         * doc/pastposix-functions/bsd_signal.texi: Renamed from
19357         doc/posix-functions/bsd_signal.texi.
19358         * doc/pastposix-functions/bzero.texi: Renamed from
19359         doc/posix-functions/bzero.texi.
19360         * doc/pastposix-functions/ecvt.texi: Renamed from
19361         doc/posix-functions/ecvt.texi.
19362         * doc/pastposix-functions/fcvt.texi: Renamed from
19363         doc/posix-functions/fcvt.texi.
19364         * doc/pastposix-functions/ftime.texi: Renamed from
19365         doc/posix-functions/ftime.texi.
19366         * doc/pastposix-functions/gcvt.texi: Renamed from
19367         doc/posix-functions/gcvt.texi.
19368         * doc/pastposix-functions/getcontext.texi: Renamed from
19369         doc/posix-functions/getcontext.texi.
19370         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
19371         doc/posix-functions/gethostbyaddr.texi.
19372         * doc/pastposix-functions/gethostbyname.texi: Renamed from
19373         doc/posix-functions/gethostbyname.texi.
19374         * doc/pastposix-functions/getwd.texi: Renamed from
19375         doc/posix-functions/getwd.texi.
19376         * doc/pastposix-functions/h_errno.texi: Renamed from
19377         doc/posix-functions/h_errno.texi.
19378         * doc/pastposix-functions/index.texi: Renamed from
19379         doc/posix-functions/index.texi.
19380         * doc/pastposix-functions/makecontext.texi: Renamed from
19381         doc/posix-functions/makecontext.texi.
19382         * doc/pastposix-functions/mktemp.texi: Renamed from
19383         doc/posix-functions/mktemp.texi.
19384         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
19385         doc/posix-functions/pthread_attr_getstackaddr.texi.
19386         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
19387         doc/posix-functions/pthread_attr_setstackaddr.texi.
19388         * doc/pastposix-functions/rindex.texi: Renamed from
19389         doc/posix-functions/rindex.texi.
19390         * doc/pastposix-functions/scalb.texi: Renamed from
19391         doc/posix-functions/scalb.texi.
19392         * doc/pastposix-functions/setcontext.texi: Renamed from
19393         doc/posix-functions/setcontext.texi.
19394         * doc/pastposix-functions/swapcontext.texi: Renamed from
19395         doc/posix-functions/swapcontext.texi.
19396         * doc/pastposix-functions/ualarm.texi: Renamed from
19397         doc/posix-functions/ualarm.texi.
19398         * doc/pastposix-functions/usleep.texi: Renamed from
19399         doc/posix-functions/usleep.texi.
19400         * doc/pastposix-functions/vfork.texi: Renamed from
19401         doc/posix-functions/vfork.texi.
19402         * doc/pastposix-functions/wcswcs.texi: Renamed from
19403         doc/posix-functions/wcswcs.texi.
19404         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
19405         (Function Substitutes): Update.
19406
19407 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19408
19409         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
19410         m4/strerror.m4.
19411
19412 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19413             Bruno Haible  <bruno@clisp.org>
19414
19415         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
19416
19417 2008-12-13  Bruno Haible  <bruno@clisp.org>
19418
19419         * modules/strtoull (Depends-on): Remove unistd.
19420
19421 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19422
19423         * modules/strtoull (Depends-on): Add stdlib.
19424
19425 2008-12-11  Simon Josefsson  <simon@josefsson.org>
19426
19427         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
19428
19429 2008-12-10  Jim Meyering  <meyering@redhat.com>
19430
19431         gl_ASSERT: don't say assertions are disabled when they're not
19432         * m4/assert.m4 (gl_ASSERT): Do not make configure report
19433         "checking whether to enable assertions... no", when they are in
19434         fact enabled.  This is solely a bug in the output of configure.
19435         In spite of saying "no", NDEBUG was not defined in that case.
19436         Also, as noted by Eric Blake, leave assertions enabled upon
19437         --enable-assert=INVALID.
19438
19439 2008-12-10  Bruno Haible  <bruno@clisp.org>
19440
19441         Change MODULES.html to refer to POSIX:2008 where possible.
19442         * MODULES.html.sh (POSIX2008_URL): New variable.
19443         (posix_headers): Remove sys/timeb, ucontext.
19444         (posix2001_headers): New variable.
19445         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
19446         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
19447         index, makecontext, mktemp, pthread_attr_getstackaddr,
19448         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
19449         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
19450         (posix2001_functions): New variable.
19451         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
19452         otherwise.
19453
19454 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19455
19456         add missing include to parse-duration.c
19457         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
19458         * modules/parse-duration (Depends-on): Add xalloc.
19459
19460         fix sed script reading maint.mk
19461         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
19462         (syntax-check-rules): Use it.
19463
19464 2008-12-09  Bruno Haible  <bruno@clisp.org>
19465
19466         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
19467         MacOS X 10.4/PowerPC.
19468         Reported by Simon Josefsson.
19469
19470 2008-12-08  Jim Meyering  <meyering@redhat.com>
19471
19472         work around mingw's lack of some S_IF definitions
19473         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
19474         Reported by Simon Josefsson.
19475
19476 2008-12-08  Bruno Haible  <bruno@clisp.org>
19477
19478         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
19479         applied to variables. Needed on MacOS X 10.4/PowerPC.
19480         Reported by Simon Josefsson.
19481
19482 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
19483         and Eric Blake  <ebb9@byu.net>
19484
19485         assert: honor --enable-assert
19486         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
19487         order to honor --enable-assert, rather than treating it as a
19488         synonym for --disable-assert.
19489
19490 2008-12-08  Jim Meyering  <meyering@redhat.com>
19491
19492         * lib/posixtm.c: Remove now-useless declaration of mktime.
19493
19494         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
19495
19496 2008-12-07  Bruno Haible  <bruno@clisp.org>
19497
19498         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
19499         test_once): Mark functions as static.
19500         * tests/test-tls.c (test_tls): Likewise.
19501
19502 2008-12-07  Bruno Haible  <bruno@clisp.org>
19503
19504         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
19505         iconv_register_autodetect.
19506
19507 2008-12-07  Jim Meyering  <meyering@redhat.com>
19508
19509         posixtm.c: avoid a warning
19510         * lib/posixtm.c (posixtime): Don't initialize tm0.
19511         It's no longer needed to placate gcc4's -Wuninitialized,
19512         and the attempt to placate would elicit a new warning.
19513
19514         unicodeio.c: mark unused parameters
19515         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
19516         (fallback_failure_callback): Likewise.
19517
19518 2008-12-07  Bruno Haible  <bruno@clisp.org>
19519
19520         * gnulib-tool (func_create_testdir): When building the tests
19521         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
19522         Reported by Simon Josefsson.
19523
19524 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19525
19526         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
19527
19528 2008-12-06  Bruno Haible  <bruno@clisp.org>
19529
19530         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
19531         Suggested by Eric Blake.
19532
19533 2008-12-06  Bruno Haible  <bruno@clisp.org>
19534
19535         Fix a c-stack test failure on MacOS X.
19536         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
19537         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
19538         handler for SIGBUS as well.
19539         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
19540         install a signal handler for SIGBUS as well.
19541         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
19542
19543 2008-12-06  Bruno Haible  <bruno@clisp.org>
19544
19545         Advocacy documentation.
19546         * doc/gnulib-intro.texi (Benefits): New section.
19547         * doc/gnulib.texi: Update.
19548
19549 2008-12-06  Bruno Haible  <bruno@clisp.org>
19550
19551         Document the 'manywarnings' module.
19552         * doc/manywarnings.texi: New file.
19553         * doc/gnulib.texi: Include it.
19554
19555 2008-12-05  Eric Blake  <ebb9@byu.net>
19556
19557         tests: silence some gcc warnings
19558         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
19559         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
19560         type mismatches.
19561
19562 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19563             Bruno Haible  <bruno@clisp.org>
19564
19565         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
19566
19567 2008-11-29  Jim Meyering  <meyering@redhat.com>
19568
19569         unicodeio.c: mark unused parameters
19570         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
19571         (fallback_failure_callback): Likewise.
19572
19573         fts: fix a thinko
19574         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
19575         (set_stat_type): Return S_IF*-valued "type" directly.
19576         Prompted by James Youngman's spotting a related bug.
19577         Confirmed by further testing through find.
19578
19579         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
19580         * lib/fts.c (D_TYPE): Define.
19581         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
19582         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
19583         (s_ifmt_shift_bits): New function.
19584         (set_stat_type): New function.
19585         (fts_build): When not calling fts_stat, call set_stat_type
19586         to propagate dirent.d_type info to fts_read caller.
19587         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
19588         fts_statp->st_mode type information may be valid.
19589
19590 2008-11-28  Simon Josefsson  <simon@josefsson.org>
19591
19592         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
19593         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
19594         <sds@gnu.org>.
19595
19596 2008-11-20  Bruno Haible  <bruno@clisp.org>
19597
19598         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
19599         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
19600         INCLUDE_NEXT.
19601         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
19602         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
19603         * modules/math (Makefile.am): Substitute
19604         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
19605         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
19606
19607 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
19608             Bruno Haible  <bruno@clisp.org>
19609
19610         * lib/stdint.in.h: Define all type macros so that their expansion is
19611         a single typedef'ed token. Fixes a compilation failure in Boost which
19612         does "using ::int8_t;".
19613
19614 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19615
19616         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
19617         gl_MANYWARN_ALL_GCC.
19618         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
19619         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
19620         * modules/manywarnings: New file.
19621         * MODULES.html.sh: Mention manywarnings module.
19622
19623 2008-11-18  Bruno Haible  <bruno@clisp.org>
19624
19625         * doc/gnulib-tool.texi (Unit tests): New section.
19626
19627 2008-11-18  Simon Josefsson  <simon@josefsson.org>
19628
19629         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
19630         paths like 'lib/po/foo.po'.
19631
19632 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19633
19634         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
19635         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
19636
19637 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19638
19639         * m4/warnings.m4: Use CPPFLAGS to really check whether the
19640         parameter works.
19641
19642 2008-11-17  Simon Josefsson  <simon@josefsson.org>
19643
19644         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
19645
19646 2008-11-17  Bruce Korb  <bkorb@gnu.org>
19647
19648         * modules/parse-duration-tests: New file.
19649         * tests/test-parse-duration.sh: New file.
19650         * tests/test-parse-duration.c: New file.
19651
19652         New module 'parse-duration'.
19653         * lib/parse-duration.h: New file.
19654         * lib/parse-duration.c: New file.
19655         * modules/parse-duration: New file.
19656
19657 2008-11-17  Bruno Haible  <bruno@clisp.org>
19658
19659         * tests/test-select-out.sh: Comment out the first pipe test.
19660         Reported by Simon Josefsson.
19661
19662 2008-11-17  Bruno Haible  <bruno@clisp.org>
19663
19664         * modules/getaddrinfo (Depends-on): Add servent, hostent.
19665         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
19666         gl_HOSTENT.
19667
19668 2008-11-17  Bruno Haible  <bruno@clisp.org>
19669
19670         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
19671         -lnetwork and -lnet. Needed for Haiku and BeOS.
19672
19673 2008-11-16  Bruno Haible  <bruno@clisp.org>
19674
19675         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
19676
19677 2008-11-16  Bruno Haible  <bruno@clisp.org>
19678
19679         Avoid test failure on Haiku.
19680         * tests/test-fsync.c: Include <errno.h>.
19681         (main): Don't require that fsync (0) fails.
19682
19683 2008-11-15  Bruno Haible  <bruno@clisp.org>
19684
19685         New module 'hostent'.
19686         * modules/hostent: New file.
19687         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
19688
19689 2008-11-15  Bruno Haible  <bruno@clisp.org>
19690
19691         New module 'servent'.
19692         * modules/servent: New file.
19693         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
19694
19695 2008-11-15  Bruno Haible  <bruno@clisp.org>
19696
19697         Avoid generating same test program with two different rules.
19698         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
19699         test-frexp to test-frexp-nolibm.
19700         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
19701         test-frexpl to test-frexpl-nolibm.
19702
19703 2008-11-15  Bruno Haible  <bruno@clisp.org>
19704
19705         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
19706         $(FREXPL_LIBM).
19707
19708 2008-11-15  Bruno Haible  <bruno@clisp.org>
19709
19710         * lib/netdb.in.h: Activate the definitions also when the system's
19711         <netdb.h> has 'struct addrinfo'.
19712         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
19713         EAI_OVERFLOW or AI_NUMERICSERV.
19714         * doc/posix-headers/netdb.texi: Document the problem.
19715
19716 2008-11-15  Bruno Haible  <bruno@clisp.org>
19717
19718         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
19719
19720         Make the 'sched' module work on platforms where <sched.h> exists but
19721         is incomplete (such as Haiku).
19722         * lib/sched.in.h; Include the system's <sched.h> if it exists.
19723         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
19724         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
19725         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
19726         HAVE_STRUCT_SCHED_PARAM.
19727         * modules/sched (Depends-on): Add include_next.
19728         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
19729         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
19730         * doc/posix-headers/sched.texi: Document the issue.
19731
19732 2008-11-13  Jim Meyering  <meyering@redhat.com>
19733
19734         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
19735         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
19736         test would fail due to the difference in the Report bugs to ...
19737         line.  The expected address is empty, "<>", while the actual
19738         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
19739
19740 2008-11-12  Bruno Haible  <bruno@clisp.org>
19741
19742         lstat: don't compile lstat.c on systems lacking lstat
19743         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
19744         which don't have lstat; this is handled by lib/sys_stat.in.h already.
19745         Reported by Daniel P. Berrange via Jim Meyering.
19746
19747 2008-11-12  Jim Meyering  <meyering@redhat.com>
19748
19749         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
19750
19751 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19752
19753         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
19754         instead.
19755
19756 2008-11-12  Bruno Haible  <bruno@clisp.org>
19757
19758         * lib/unicodeio.c: Include unistr.h.
19759         (utf8_wctomb): Remove function.
19760         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
19761
19762 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19763
19764         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
19765         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
19766         <bruno@clisp.org>.
19767         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
19768
19769 2008-11-12  Simon Josefsson  <simon@josefsson.org>
19770
19771         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
19772         * doc/gnulib.texi: Add section for warnings.
19773
19774 2008-11-11  Bruno Haible  <bruno@clisp.org>
19775
19776         * lib/sockets.h: Add a comment.
19777
19778 2008-11-11  Karl Berry  <karl@gnu.org>
19779
19780         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
19781
19782 2008-11-11  Eric Blake  <ebb9@byu.net>
19783
19784         fdl.texi: avoid git symlinks
19785         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
19786
19787 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19788
19789         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
19790
19791 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19792
19793         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
19794         (gl_WARN_ADD): Substitute $2 if literal.
19795
19796 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19797
19798         * m4/warning.m4: Remove.
19799
19800 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
19801
19802         * m4/warnings.m4: Almost complete rewrite. :-)
19803
19804 2008-11-10  Simon Josefsson  <simon@josefsson.org>
19805
19806         * modules/warnings: New module.
19807         * m4/warnings.m4: New file.
19808         * MODULES.html.sh: Mention warnings module.
19809         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
19810         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19811
19812 2008-11-10  Eric Blake  <ebb9@byu.net>
19813
19814         fdl.texi: make a symlink to the latest version
19815         * doc/standards.texi: Revert today's earlier change.
19816         * doc/fdl-1.2.texi: Rename from old fdl.texi...
19817         * doc/fdl.texi: ...and replace this with a symlink to the newer
19818         fdl-1.3.texi.
19819
19820 2008-11-10  Bruno Haible  <bruno@clisp.org>
19821
19822         * tests/test-select-fd.c (main): Accept the result file name as fourth
19823         argument.
19824         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
19825         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
19826
19827 2008-11-10  Bruno Haible  <bruno@clisp.org>
19828
19829         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
19830         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
19831         as autoconf-substituted macros.
19832         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
19833         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
19834         gl_NETDB_H_DEFAULTS. Set these variables.
19835         * modules/netdb (Makefile.am): Substitute these variables.
19836
19837 2008-11-10  Eric Blake  <ebb9@byu.net>
19838
19839         standards.texi: include correct file for FDL 1.3
19840         * doc/standards.texi (GNU Free Documentation License): Change
19841         include file to pull in FDL 1.3, not 1.2.
19842
19843         fdl.texi: revert accidental change to license
19844         * doc/fdl.texi: This is FDL 1.2, not 1.3.
19845
19846 2008-11-10  Bruno Haible  <bruno@clisp.org>
19847
19848         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
19849         cross-compiling guesses also when the native compile gives no result.
19850
19851 2008-11-10  Bruno Haible  <bruno@clisp.org>
19852
19853         * lib/spawni.c (__spawni): Force variable into the stack.
19854
19855 2008-11-10  Bruno Haible  <bruno@clisp.org>
19856
19857         Add support for Haiku.
19858         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
19859         glibc and BeOS, but also on Haiku.
19860         * lib/fpurge.c (fpurge): Likewise.
19861         * lib/freadable.c (freadable): Likewise.
19862         * lib/freadahead.c (freadahead): Likewise.
19863         * lib/freading.c (freading): Likewise.
19864         * lib/freadptr.c (freadptr): Likewise.
19865         * lib/freadseek.c (freadptrinc): Likewise.
19866         * lib/fseeko.c (rpl_fseeko): Likewise.
19867         * lib/fseterr.c (fseterr): Likewise.
19868         * lib/fwritable.c (fwritable): Likewise.
19869         * lib/fwriting.c (fwriting): Likewise.
19870         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
19871
19872 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
19873
19874         * lib/config.charset: Treat Haiku like BeOS.
19875
19876 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
19877
19878         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
19879         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
19880
19881 2008-11-08  Bruno Haible  <bruno@clisp.org>
19882
19883         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
19884         AC_CACHE_CHECK.
19885
19886 2008-11-08  Bruno Haible  <bruno@clisp.org>
19887
19888         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
19889
19890 2008-11-08  Bruno Haible  <bruno@clisp.org>
19891
19892         * tests/test-select-fd.c: New file.
19893         * tests/test-select-in.sh: New file.
19894         * tests/test-select-out.sh: New file.
19895         * tests/test-select-stdin.c: New file.
19896         * modules/select-tests (Files): Add the new files.
19897         (Depends-on): Add gettimeofday.
19898         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
19899         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
19900         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
19901
19902 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
19903             Bruno Haible  <bruno@clisp.org>
19904
19905         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
19906
19907 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
19908
19909         * build-aux/pmccabe2html: Added support for C++ source files.
19910
19911 2008-11-05  Ben Pfaff  <blp@gnu.org>
19912
19913         Fix lib/close.c build on Windows.
19914         * modules/close (Files): Add lib/w32sock.h.
19915
19916 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
19917
19918         Accept Bison's NEWS format.
19919         * build-aux/announce-gen (print_news_deltas): Tweak
19920         $re_prefix.
19921
19922 2008-11-04  Bruno Haible  <bruno@clisp.org>
19923
19924         * modules/random_r (Maintainer): Add glibc.
19925
19926 2008-11-04  Simon Josefsson  <simon@josefsson.org>
19927
19928         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
19929         by karl@freefriends.org (Karl Berry).
19930         * doc/alloca.texi: Likewise.
19931         * doc/c-ctype.texi: Likewise.
19932         * doc/c-strcase.texi: Likewise.
19933         * doc/c-strcaseeq.texi: Likewise.
19934         * doc/c-strcasestr.texi: Likewise.
19935         * doc/c-strstr.texi: Likewise.
19936         * doc/c-strtod.texi: Likewise.
19937         * doc/c-strtold.texi: Likewise.
19938         * doc/ctime.texi: Likewise.
19939         * doc/error.texi: Likewise.
19940         * doc/fdl.texi: Likewise.
19941         * doc/gcd.texi: Likewise.
19942         * doc/getdate.texi: Likewise.
19943         * doc/gnulib-intro.texi: Likewise.
19944         * doc/gnulib-tool.texi: Likewise.
19945         * doc/gnulib.texi: Likewise.
19946         * doc/inet_ntoa.texi: Likewise.
19947         * doc/maintain.texi: Likewise.
19948         * doc/make-stds.texi: Likewise.
19949         * doc/quote.texi: Likewise.
19950         * doc/regexprops-generic.texi: Likewise.
19951         * doc/standards.texi: Likewise.
19952         * doc/verify.texi: Likewise.
19953         * doc/visibility.texi: Likewise.
19954         * doc/gnulib.texi (GNU Free Documentation License): Include
19955         fdl-1.3.texi instead of fdl.texi.
19956
19957 2008-11-04  Simon Josefsson  <simon@josefsson.org>
19958
19959         * doc/fdl-1.3.texi: New file, from
19960         <http://www.gnu.org/licenses/fdl-1.3.texi>.
19961         * modules/fdl-1.3: Add.
19962         * MODULES.html.sh: Add fdl-1.3.
19963
19964 2008-11-03  Bruno Haible  <bruno@clisp.org>
19965
19966         Make determination of absolute name of header file work with AIX xlc.
19967         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
19968         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
19969         preprocessing.
19970         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19971         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
19972
19973 2008-11-03  Simon Josefsson  <simon@josefsson.org>
19974
19975         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
19976         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
19977         <ludo@gnu.org>.
19978
19979 2008-11-02  Bruno Haible  <bruno@clisp.org>
19980
19981         Mark 'strpbrk' obsolete.
19982         * modules/strpbrk (Status, Notice): New sections.
19983         * modules/strtok_r (Depends-on): Add strpbrk.
19984
19985 2008-11-02  Bruno Haible  <bruno@clisp.org>
19986
19987         Mark 'strdup' obsolete.
19988         * modules/strdup (Status, Notice): New sections.
19989         * modules/findprog (Depends-on): Add strdup.
19990         * modules/getaddrinfo (Depends-on): Likewise.
19991         * modules/localename (Depends-on): Likewise.
19992         * modules/relocatable-lib (Depends-on): Likewise.
19993         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
19994         * modules/relocatable-prog (Depends-on): Likewise.
19995         * modules/trim (Depends-on): Likewise.
19996         * modules/unictype/gen-ctype (Depends-on): Likewise.
19997         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
19998
19999 2008-11-02  Bruno Haible  <bruno@clisp.org>
20000
20001         Mark 'strcspn' obsolete.
20002         * modules/strcspn (Status, Notice): New sections.
20003
20004 2008-11-02  Bruno Haible  <bruno@clisp.org>
20005
20006         Mark 'rmdir' obsolete.
20007         * modules/rmdir (Status, Notice): New sections.
20008         * modules/clean-temp (Depends-on): Add rmdir.
20009         * modules/openat (Depends-on): Likewise.
20010
20011 2008-11-02  Bruno Haible  <bruno@clisp.org>
20012
20013         Mark 'raise' obsolete.
20014         * modules/raise (Status, Notice): New sections.
20015         (Include): Specify <signal.h>.
20016         * modules/stdio (Depends-on): Add raise.
20017         * modules/write (Depends-on): Likewise.
20018
20019 2008-11-02  Bruno Haible  <bruno@clisp.org>
20020
20021         Mark 'memset' obsolete.
20022         * modules/memset (Status, Notice): New sections.
20023
20024 2008-11-02  Bruno Haible  <bruno@clisp.org>
20025
20026         Mark 'memmove' obsolete.
20027         * modules/memmove (Status, Notice): New sections.
20028         * modules/argp (Depends-on): Add memmove.
20029         * modules/argz (Depends-on): Likewise.
20030         * modules/canonicalize (Depends-on): Likewise.
20031         * modules/canonicalize-lgpl (Depends-on): Likewise.
20032         * modules/fts (Depends-on): Likewise.
20033         * modules/getcwd (Depends-on): Likewise.
20034         * modules/human (Depends-on): Likewise.
20035         * modules/regex (Depends-on): Likewise.
20036         * modules/striconveh (Depends-on): Likewise.
20037         * modules/trim (Depends-on): Likewise.
20038         * modules/unistr/u8-move (Depends-on): Likewise.
20039         * modules/unistr/u16-move (Depends-on): Likewise.
20040         * modules/unistr/u32-move (Depends-on): Likewise.
20041
20042 2008-11-02  Bruno Haible  <bruno@clisp.org>
20043
20044         Mark 'memcpy' obsolete.
20045         * modules/memcpy (Status, Notice): New sections.
20046
20047 2008-11-02  Bruno Haible  <bruno@clisp.org>
20048
20049         Mark 'memcmp' obsolete.
20050         * modules/memcmp (Status, Notice): New sections.
20051         * modules/argmatch (Depends-on): Add memchr.
20052         * modules/backupfile (Depends-on): Likewise.
20053         * modules/c-strcasestr (Depends-on): Likewise.
20054         * modules/crypto/des (Depends-on): Likewise.
20055         * modules/csharpcomp (Depends-on): Likewise.
20056         * modules/fnmatch (Depends-on): Likewise.
20057         * modules/git-merge-changelog (Depends-on): Likewise.
20058         * modules/isnand (Depends-on): Likewise.
20059         * modules/isnand-nolibm (Depends-on): Likewise.
20060         * modules/isnanf (Depends-on): Likewise.
20061         * modules/isnanf-nolibm (Depends-on): Likewise.
20062         * modules/isnanl (Depends-on): Likewise.
20063         * modules/isnanl-nolibm (Depends-on): Likewise.
20064         * modules/mbchar (Depends-on): Likewise.
20065         * modules/memcoll (Depends-on): Likewise.
20066         * modules/quotearg (Depends-on): Likewise.
20067         * modules/regex (Depends-on): Likewise.
20068         * modules/relocatable-prog (Depends-on): Likewise.
20069         * modules/same (Depends-on): Likewise.
20070         * modules/signbit (Depends-on): Likewise.
20071         * modules/strcasestr-simple (Depends-on): Likewise.
20072         * modules/unictype/gen-ctype (Depends-on): Likewise.
20073         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
20074         * modules/uniname/uniname (Depends-on): Likewise.
20075         * modules/unistr/u8-cmp (Depends-on): Likewise.
20076
20077 2008-11-02  Bruno Haible  <bruno@clisp.org>
20078
20079         Mark 'memchr' obsolete.
20080         * modules/memchr (Status, Notice): New sections.
20081         * modules/argp (Depends-on): Add memchr.
20082         * modules/base64 (Depends-on): Likewise.
20083         * modules/c-strcasestr (Depends-on): Likewise.
20084         * modules/chdir-long (Depends-on): Likewise.
20085         * modules/fnmatch (Depends-on): Likewise.
20086         * modules/getsubopt (Depends-on): Likewise.
20087         * modules/git-merge-changelog (Depends-on): Likewise.
20088         * modules/glob (Depends-on): Likewise.
20089         * modules/strcasestr-simple (Depends-on): Likewise.
20090         * modules/strnlen (Depends-on): Likewise.
20091
20092 2008-11-02  Bruno Haible  <bruno@clisp.org>
20093
20094         Mark 'atexit' obsolete.
20095         * modules/atexit (Status, Notice): New sections.
20096         * modules/chdir-long (Depends-on): Add atexit.
20097         * modules/wait-process (Depends-on): Likewise.
20098
20099 2008-11-02  Bruno Haible  <bruno@clisp.org>
20100
20101         * gnulib-tool: New option --with-obsolete.
20102         (func_usage): Document it.
20103         (func_modules_transitive_closure): Drop obsolete dependencies if
20104         incobsolete is not true.
20105         (func_import): Read and save the incobsolete variable to the cache.
20106
20107 2008-11-02  Bruno Haible  <bruno@clisp.org>
20108
20109         * modules/TEMPLATE-EXTENDED: New field 'Status'.
20110         * gnulib-tool: New option --extract-status.
20111         (func_usage): Document it.
20112         (sed_extract_prog): Recognize it.
20113         (func_get_status): New function.
20114
20115 2008-10-30  Simon Josefsson  <simon@josefsson.org>
20116
20117         * modules/sockets (License): Change from LGPL to LGPLv2+.
20118
20119 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20120
20121         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
20122
20123 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20124
20125         * MODULES.html.sh (Support for systems lacking POSIX:2001):
20126         Mention times and sys_times.
20127         * modules/sys_times, modules/sys_times-tests: New modules.
20128         * modules/times, modules/times-tests: Likewise
20129         * m4/sys_times_h.m4: New file.
20130         * lib/sys_times.in.h: Likewise
20131         * lib/times.c: Likewise.
20132         * tests/test-sys_times.c: Likewise.
20133         * tests/test-times.c: Likewise.
20134         * doc/posix-headers/sys_times.texi: Update.
20135         * doc/posix-functions/times.texi: Update.
20136
20137 2008-10-28  Jim Meyering  <meyering@redhat.com>
20138
20139         * modules/tempname (Depends-on): Add lstat.
20140
20141         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
20142
20143 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20144
20145         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
20146         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
20147         using idiom used elsewhere in gnulib.
20148
20149 2008-10-27  Jim Meyering  <meyering@redhat.com>
20150
20151         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
20152
20153 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20154
20155         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
20156         TESTS_ENVIRONMENT, for shell scripts that needs to call built
20157         programs.
20158         * tests/test-argp-2.sh: Use $EXEEXT when needed.
20159
20160 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20161
20162         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
20163
20164 2008-10-27  Bruno Haible  <bruno@clisp.org>
20165
20166         * tests/test-lstat.c: Include <stdio.h>.
20167
20168 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20169
20170         * modules/lstat-tests: New module.
20171         * tests/test-lstat.c: New file.
20172
20173 2008-10-26  Jim Meyering  <meyering@redhat.com>
20174
20175         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
20176
20177 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20178             Bruno Haible  <bruno@clisp.org>
20179
20180         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
20181         * modules/configmake (Include): Add a note that the include must come
20182         after all system headers.
20183         * lib/javaversion.c: Include configmake.h after all other includes.
20184
20185 2008-10-26  Bruno Haible  <bruno@clisp.org>
20186
20187         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
20188         HAVE_STRUCT_RANDOM_DATA to 1.
20189         (gl_STDLIB_H): Simplify.
20190
20191 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20192
20193         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
20194         substitute HAVE_STRUCT_RANDOM_DATA.
20195         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
20196         random_data.
20197         * modules/stdlib (Makefile.am): Substitute
20198         HAVE_STRUCT_RANDOM_DATA.
20199
20200 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20201
20202         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
20203         * doc/gnulib-intro.texi (Copyright): Likewise.
20204
20205 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20206
20207         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
20208         findings.
20209
20210 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
20211             Bruno Haible  <bruno@clisp.org>
20212
20213         * lib/unistd.in.h: Include <winsock2.h>.
20214         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
20215         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
20216         Provide dummy declarations.
20217         (gethostname): Override.
20218         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
20219         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
20220         gl_PREREQ_SYS_H_WINSOCK2.
20221         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
20222         * doc/posix-functions/gethostname.texi: More details.
20223
20224 2008-10-25  Bruno Haible  <bruno@clisp.org>
20225
20226         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
20227         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
20228         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
20229
20230         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
20231         here ...
20232         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
20233         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
20234         gl_UNISTD_H_DEFAULTS.
20235
20236 2008-10-25  Eric Blake  <ebb9@byu.net>
20237
20238         signbit: avoid spurious compiler failure
20239         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
20240         declarations inside function.
20241
20242 2008-10-24  Simon Josefsson  <simon@josefsson.org>
20243             Bruno Haible  <bruno@clisp.org>
20244
20245         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
20246         * modules/random_r (Depends-on): Add stdint.
20247
20248 2008-10-24  Bruno Haible  <bruno@clisp.org>
20249
20250         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
20251         Eggert.
20252         * modules/strerror (License): Likewise.
20253
20254 2008-10-24  Jim Meyering  <meyering@redhat.com>
20255
20256         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
20257         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
20258
20259 2008-10-24  Eric Blake  <ebb9@byu.net>
20260
20261         getgroups: fix compilation when getgroups is available
20262         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
20263         but with <config.h> override of getgroups disabled.
20264
20265 2008-10-24  Simon Josefsson  <simon@josefsson.org>
20266
20267         * doc/gnulib.texi (Header files): Add note about C++ problems.
20268         Explained by Bruno Haible <bruno@clisp.org>.
20269
20270 2008-10-23  Bruno Haible  <bruno@clisp.org>
20271
20272         Define a dummy SA_NODEFER macro on Interix.
20273         * lib/signal.in.h (SA_NODEFER): Define fallback.
20274         Reported by Aleksey Cheusov <cheusov@tut.by> via
20275         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
20276
20277 2008-10-23  Bruno Haible  <bruno@clisp.org>
20278
20279         * modules/freadahead (License): Change to LGPLv2+.
20280         Suggested by Simon Josefsson.
20281
20282 2008-10-23  Jim Meyering  <meyering@redhat.com>
20283
20284         random_r: new module
20285         * modules/random_r: New file.
20286         * m4/random_r.m4: New file.
20287         * lib/random_r.c: New file, from glibc.
20288         * modules/random_r-tests: New file.
20289         * tests/test-random_r.c: New file.
20290         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
20291          Declare.
20292         (RAND_MAX): Define.
20293         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
20294         * modules/stdlib: Substitute them, too.
20295         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
20296         * doc/glibc-functions/initstate_r.texi: Mention the new module.
20297         * doc/glibc-functions/random_r.texi: Likewise.
20298         * doc/glibc-functions/setstate_r.texi: Likewise.
20299         * doc/glibc-functions/srandom_r.texi: Likewise.
20300         * config/srclist.txt: Mention it.
20301
20302 2008-10-23  David Lutterkort  <lutter@redhat.com>
20303
20304         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
20305         link requirement
20306
20307 2008-10-23  Jim Meyering  <meyering@redhat.com>
20308
20309         selinux-h: mark parameters of stub functions as intentionally unused
20310         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
20311         * lib/se-context.in.h: Likewise.
20312
20313 2008-10-22  Simon Josefsson  <simon@josefsson.org>
20314
20315         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
20316
20317 2008-10-22  Simon Josefsson  <simon@josefsson.org>
20318
20319         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
20320
20321 2008-10-22  Eric Blake  <ebb9@byu.net>
20322
20323         glthread/thread: avoid compiler warning
20324         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
20325         Add unreachable abort to silence compiler.
20326
20327 2008-10-22  Eric Blake  <ebb9@byu.net>
20328
20329         netdb: also supply struct addrinfo for cygwin 1.5.x
20330         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
20331         older cygwin.
20332         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
20333         cygwin.
20334         * doc/posix-headers/netdb.texi (netdb.h): Document this.
20335
20336 2008-10-22  Bruno Haible  <bruno@clisp.org>
20337
20338         * users.txt: Update entry about pspp.
20339
20340 2008-10-21  Bruno Haible  <bruno@clisp.org>
20341
20342         Simplification.
20343         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
20344         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
20345
20346         Simplification.
20347         * lib/ioctl.c (ioctl): Don't undefine.
20348         * lib/socket.c (socket): Don't undefine.
20349
20350         Remove unused module indicator macros.
20351         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
20352         GNULIB_$1 as a C macro.
20353
20354         * doc/posix-functions/close.texi: Undo last change.
20355         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
20356         Windows platforms.
20357
20358 2008-10-21  Bruno Haible  <bruno@clisp.org>
20359
20360         Add gethostname() declaration to <unistd.h>.
20361         * lib/unistd.in.h (gethostname): New declaration.
20362         * lib/gethostname.c: Include <unistd.h>.
20363         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
20364         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
20365         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
20366         and HAVE_GETHOSTNAME.
20367         * modules/gethostname (Depends-on): Add unistd.
20368         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20369         (Include): Specify <unistd.h>.
20370         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
20371         HAVE_GETHOSTNAME.
20372         * tests/test-gethostname.c: Include <unistd.h> first.
20373
20374 2008-10-21  Bruno Haible  <bruno@clisp.org>
20375
20376         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
20377         * modules/select-tests (Depends-on): Likewise.
20378         Reported by Simon Josefsson.
20379
20380 2008-10-21  Simon Josefsson  <simon@josefsson.org>
20381
20382         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
20383         * lib/accept.c: New file, based on winsock.c.
20384         * lib/bind.c: New file, based on winsock.c.
20385         * lib/connect.c: New file, based on winsock.c.
20386         * lib/getpeername.c: New file, based on winsock.c.
20387         * lib/getsockname.c: New file, based on winsock.c.
20388         * lib/getsockopt.c: New file, based on winsock.c.
20389         * lib/ioctl.c: New file, based on winsock.c.
20390         * lib/listen.c: New file, based on winsock.c.
20391         * lib/recv.c: New file, based on winsock.c.
20392         * lib/recvfrom.c: New file, based on winsock.c.
20393         * lib/send.c: New file, based on winsock.c.
20394         * lib/sendto.c: New file, based on winsock.c.
20395         * lib/setsockopt.c: New file, based on winsock.c.
20396         * lib/shutdown.c: New file, based on winsock.c.
20397         * lib/socket.c: New file, based on winsock.c.
20398         * lib/w32sock.h: New file, based on winsock.c.
20399         * lib/winsock.c: Remove file.
20400         * modules/accept: Likewise.
20401         * modules/bind: Likewise.
20402         * modules/connect: Likewise.
20403         * modules/getpeername: Likewise.
20404         * modules/getsockname: Likewise.
20405         * modules/getsockopt: Likewise.
20406         * modules/ioctl: Likewise.
20407         * modules/listen: Likewise.
20408         * modules/recv: Likewise.
20409         * modules/recvfrom: Likewise.
20410         * modules/send: Likewise.
20411         * modules/sendto: Likewise.
20412         * modules/setsockopt: Likewise.
20413         * modules/shutdown: Likewise.
20414         * modules/socket: Use socket.c instead of winsock.c.
20415         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
20416         * doc/posix-functions/accept.texi: Doc fix.
20417         * doc/posix-functions/bind.texi: Doc fix.
20418         * doc/posix-functions/close.texi: Doc fix.
20419         * doc/posix-functions/connect.texi: Doc fix.
20420         * doc/posix-functions/getpeername.texi: Doc fix.
20421         * doc/posix-functions/getsockname.texi: Doc fix.
20422         * doc/posix-functions/getsockopt.texi: Doc fix.
20423         * doc/posix-functions/ioctl.texi: Doc fix.
20424         * doc/posix-functions/listen.texi: Doc fix.
20425         * doc/posix-functions/recv.texi: Doc fix.
20426         * doc/posix-functions/recvfrom.texi: Doc fix.
20427         * doc/posix-functions/send.texi: Doc fix.
20428         * doc/posix-functions/sendto.texi: Doc fix.
20429         * doc/posix-functions/setsockopt.texi: Doc fix.
20430         * doc/posix-functions/shutdown.texi: Doc fix.
20431         * doc/posix-functions/socket.texi: Doc fix.
20432
20433 2008-10-20  Bruno Haible  <bruno@clisp.org>
20434
20435         Take into account the role of SIGABRT_COMPAT on Windows 2008.
20436         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
20437         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
20438         as an alias for SIGABRT.
20439         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
20440         (sigaction): Map it to SIGABRT.
20441         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
20442
20443 2008-10-20  Bruno Haible  <bruno@clisp.org>
20444
20445         * lib/fts.c: Don't include lstat.h.
20446         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
20447
20448         Move the lstat() declaration to <sys/stat.h>.
20449         * lib/lstat.h: Remove file.
20450         * lib/sys_stat.in.h: Add special invocation convention.
20451         (lstat): New declaration.
20452         * lib/lstat.c (orig_lstat): New function.
20453         (rpl_lstat): Use orig_lstat instead of lstat.
20454         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
20455         AC_C_INLINE. Set REPLACE_LSTAT.
20456         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
20457         and REPLACE_LSTAT.
20458         * modules/lstat (Files): Remove lib/lstat.h.
20459         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
20460         (Include): Specify <sys/stat.h> instead of lstat.h.
20461         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
20462         REPLACE_LSTAT.
20463         * NEWS: Mention the change.
20464
20465 2008-10-20  Bruno Haible  <bruno@clisp.org>
20466
20467         * modules/posix_spawn-tests: New file.
20468         * tests/test-posix_spawn3.c: New file.
20469
20470 2008-10-20  Bruno Haible  <bruno@clisp.org>
20471
20472         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
20473         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
20474         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
20475         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
20476         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
20477
20478 2008-10-20  Bruno Haible  <bruno@clisp.org>
20479
20480         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
20481         of posix_spawn on AIX 5.3.
20482
20483 2008-10-20  Bruno Haible  <bruno@clisp.org>
20484
20485         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
20486
20487 2008-10-20  Bruno Haible  <bruno@clisp.org>
20488
20489         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
20490         of AC_LANG_PROGRAM.
20491
20492 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20493
20494         * lib/netdb.in.h: Don't define GNU specific constants until they
20495         are supported or needed.  Reported by Bruno Haible
20496         <bruno@clisp.org>.
20497
20498 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20499
20500         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
20501
20502 2008-10-20  Simon Josefsson  <simon@josefsson.org>
20503
20504         * lib/getaddrinfo.h: Remove file.
20505         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
20506         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
20507         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
20508         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
20509         * modules/netdb: Substitute GNULIB_GETADDRINFO.
20510         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
20511         * tests/test-getaddrinfo.c: Likewise.
20512         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
20513         * NEWS: Mention change.
20514
20515 2008-10-19  Bruno Haible  <bruno@clisp.org>
20516
20517         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
20518
20519 2008-10-19  Bruno Haible  <bruno@clisp.org>
20520
20521         * lib/wait-process.c: Include simply <sys/wait.h>.
20522         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
20523         WIFSTOPPED): Remove fallback definitions.
20524         * modules/wait-process (Depends-on): Add sys_wait.
20525
20526         New module 'sys_wait'.
20527         * modules/sys_wait: New file.
20528         * lib/sys_wait.in.h: New file, partially copied from
20529         lib/wait-process.c.
20530         * m4/sys_wait_h.m4: New file.
20531         * doc/posix-headers/sys_wait.texi: Mention the new module.
20532
20533 2008-10-19  Bruno Haible  <bruno@clisp.org>
20534
20535         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
20536
20537 2008-10-19  Bruno Haible  <bruno@clisp.org>
20538
20539         Assume that waitpid() fills an 'int' status, not a 'union wait'.
20540         * lib/wait-process.c (WAIT_T): Remove type.
20541         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
20542         (wait_subprocess): Update.
20543
20544 2008-10-19  Bruno Haible  <bruno@clisp.org>
20545
20546         New module 'atoll'.
20547         * modules/atoll: New file.
20548         * lib/stdlib.in.h (atoll): New declaration.
20549         * lib/atoll.c: New file, from glibc with modifications.
20550         * m4/atoll.m4: New file.
20551         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
20552         HAVE_ATOLL.
20553         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
20554         * doc/posix-functions/atoll.texi: Mention the new module.
20555
20556 2008-10-19  Bruno Haible  <bruno@clisp.org>
20557
20558         Add strtoull() declaration to <stdlib.h>.
20559         * lib/stdlib.in.h (strtoull): New declaration.
20560         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20561         Set HAVE_STRTOULL.
20562         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
20563         HAVE_STRTOULL.
20564         * modules/strtoull (Depends-on): Add stdlib.
20565         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20566         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
20567         HAVE_STRTOULL.
20568
20569 2008-10-19  Bruno Haible  <bruno@clisp.org>
20570
20571         Add strtoll() declaration to <stdlib.h>.
20572         * lib/stdlib.in.h (strtoll): New declaration.
20573         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
20574         Set HAVE_STRTOLL.
20575         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
20576         HAVE_STRTOLL.
20577         * modules/strtoll (Depends-on): Add stdlib.
20578         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20579         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
20580
20581 2008-10-19  Bruno Haible  <bruno@clisp.org>
20582
20583         * modules/bcopy (Depends-on): Add strings.
20584         (Include): Specify <strings.h>.
20585
20586 2008-10-19  Bruno Haible  <bruno@clisp.org>
20587
20588         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
20589
20590 2008-10-19  Bruno Haible  <bruno@clisp.org>
20591
20592         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
20593         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
20594         mingw.
20595
20596 2008-10-19  Bruno Haible  <bruno@clisp.org>
20597
20598         * lib/atanl.c: Don't include isnanl.h.
20599         * lib/cosl.c: Likewise.
20600         * lib/ldexpl.c: Likewise.
20601         * lib/logl.c: Likewise.
20602         * lib/sinl.c: Likewise.
20603         * lib/sqrtl.c: Likewise.
20604         * lib/tanl.c: Likewise.
20605
20606         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
20607         * lib/isnanf.h: Remove file.
20608         * lib/isnand.h: Remove file.
20609         * lib/isnanl.h: Remove file.
20610         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
20611         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
20612         macros.
20613         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
20614         HAVE_ISNANF, don't define it as a C macro.
20615         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
20616         HAVE_ISNAND, don't define it as a C macro.
20617         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
20618         HAVE_ISNANL, don't define it as a C macro.
20619         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
20620         HAVE_ISNAN[FDL].
20621         * modules/isnanf (Files): Remove lib/isnanf.h.
20622         (Depends-on): Add math.
20623         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20624         (Include): Specify <math.h> instead of isnanf.h.
20625         * modules/isnand (Files): Remove lib/isnand.h.
20626         (Depends-on): Add math.
20627         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20628         (Include): Specify <math.h> instead of isnand.h.
20629         * modules/isnanl (Files): Remove lib/isnanl.h.
20630         (Depends-on): Add math.
20631         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
20632         (Include): Specify <math.h> instead of isnanl.h.
20633         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
20634         HAVE_ISNAN[FDL].
20635         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
20636         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
20637         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
20638         * NEWS: Mention the change.
20639
20640 2008-10-18  Bruno Haible  <bruno@clisp.org>
20641
20642         Add getusershell(), setusershell(), endusershell() declarations to
20643         <unistd.h>.
20644         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
20645         declarations.
20646         * lib/getusershell.c: Include unistd.h.
20647         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
20648         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20649         HAVE_GETUSERSHELL.
20650         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
20651         and HAVE_GETUSERSHELL.
20652         * modules/getusershell (Depends-on): Add unistd, extensions.
20653         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20654         (Include): Specify <unistd.h>.
20655         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
20656         HAVE_GETUSERSHELL.
20657
20658 2008-10-18  Bruno Haible  <bruno@clisp.org>
20659
20660         Add a getloadavg() declaration to <stdlib.h>.
20661         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
20662         getloadavg declaration.
20663         (getloadavg): New declaration.
20664         * lib/getloadavg.c: Include <stdlib.h> first.
20665         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
20666         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
20667         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
20668         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
20669         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20670         * modules/getloadavg (Depends-on): Add stdlib, extensions.
20671         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20672         (Include): Specify <stdlib.h>.
20673         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
20674         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
20675
20676 2008-10-18  Bruno Haible  <bruno@clisp.org>
20677
20678         * lib/dirchownmod.c: Don't include lchmod.h.
20679
20680         Move the lchmod() declaration to <sys/stat.h>.
20681         * lib/lchmod.h: Remove file.
20682         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
20683         (lchmod): New declaration, moved here from lib/lchown.h.
20684         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
20685         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
20686         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
20687         and HAVE_LCHMOD.
20688         * modules/lchmod (Files): Remove lib/lchmod.h.
20689         (Depends-on): Add sys_stat, extensions.
20690         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
20691         (Include): Specify <sys/stat.h> instead of lchmod.h.
20692         * modules/sys_stat (Depends-on): Add link-warning.
20693         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
20694         definition of GL_LINK_WARNING.
20695         * NEWS: Mention the change.
20696
20697 2008-10-18  Bruno Haible  <bruno@clisp.org>
20698
20699         * lib/fchdir.c: Don't include dirfd.h.
20700         * lib/fts.c: Likewise.
20701         * lib/getcwd.c: Likewise.
20702         * lib/glob.c: Likewise.
20703
20704         Move the dirfd() declaration to <dirent.h>.
20705         * lib/dirfd.h: Remove file.
20706         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
20707         (dirfd): New declaration.
20708         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
20709         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
20710         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
20711         HAVE_DECL_DIRFD.
20712         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
20713         HAVE_DECL_DIRFD.
20714         * modules/dirfd (Files): Remove lib/dirfd.h.
20715         (Depends-on): Add dirent, extensions.
20716         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
20717         (Include): Specify <dirent.h> instead of dirfd.h.
20718         * modules/dirent (Depends-on): Add link-warning.
20719         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
20720         definition of GL_LINK_WARNING.
20721         * NEWS: Mention the change.
20722
20723 2008-10-18  Bruno Haible  <bruno@clisp.org>
20724
20725         Move the euidaccess() declaration to <unistd.h>.
20726         * lib/euidaccess.h: Remove file.
20727         * lib/unistd.in.h (euidaccess): New declaration.
20728         * lib/euidaccess.c: Don't include euidaccess.h.
20729         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
20730         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
20731         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
20732         and HAVE_EUIDACCESS.
20733         * modules/euidaccess (Files): Remove lib/euidaccess.h.
20734         (Depends-on): Add unistd.
20735         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20736         (Include): Specify <unistd.h> instead of euidaccess.h.
20737         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
20738         HAVE_EUIDACCESS.
20739         * NEWS: Mention the change.
20740
20741 2008-10-18  Bruno Haible  <bruno@clisp.org>
20742
20743         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
20744
20745         Move the getdomainname() declaration to <unistd.h>.
20746         * lib/getdomainname.h: Remove file.
20747         * lib/unistd.in.h (getdomainname): New declaration.
20748         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
20749         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
20750         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
20751         HAVE_GETDOMAINNAME.
20752         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20753         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
20754         * modules/getdomainname (Files): Remove lib/getdomainname.h.
20755         (Depends-on): Add unistd, extensions.
20756         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
20757         (Includes): Specify <unistd.h> instead of getdomainname.h.
20758         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
20759         HAVE_GETDOMAINNAME.
20760         * NEWS: Mention the change.
20761
20762 2008-10-18  Bruno Haible  <bruno@clisp.org>
20763
20764         * modules/dirent: New file.
20765         * m4/dirent_h.m4: New file.
20766         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
20767         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
20768         * modules/fchdir (Files): Remove lib/dirent.in.h.
20769         (Depends-on): Add dirent.
20770         (Makefile.am): Move rules to modules/dirent.
20771         * doc/posix-headers/dirent.texi: Mention the new module.
20772
20773 2008-10-18  Bruno Haible  <bruno@clisp.org>
20774
20775         Avoid -Wunused-parameter warnings in public gnulib header files.
20776         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
20777         macro.
20778         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
20779
20780 2008-10-18  Bruno Haible  <bruno@clisp.org>
20781
20782         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
20783         * doc/glibc-functions/error.texi: Mention the module 'error'.
20784         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
20785         * doc/glibc-functions/getdomainname.texi: Mention the module
20786         'getdomainname'.
20787         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
20788         * doc/glibc-functions/getpagesize.texi: Mention the module
20789         'getpagesize'.
20790         * doc/glibc-functions/getusershell.texi: Mention the module
20791         'getusershell'.
20792         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
20793         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
20794         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
20795         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
20796         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
20797         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
20798         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
20799         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
20800         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
20801         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
20802         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
20803         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
20804         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
20805         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
20806
20807 2008-10-17  Bruno Haible  <bruno@clisp.org>
20808
20809         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
20810         HP-UX and IRIX, use -0.0L.
20811         * tests/test-ceill.c (minus_zero): Likewise.
20812         * tests/test-floorl.c (minus_zero): Likewise.
20813         * tests/test-frexpl.c (minus_zero): Likewise.
20814         * tests/test-isnan.c (minus_zerol): Likewise.
20815         * tests/test-isnanl.h (minus_zero): Likewise.
20816         * tests/test-ldexpl.c (minus_zero): Likewise.
20817         * tests/test-roundl.c (minus_zero): Likewise.
20818         * tests/test-signbit.c (minus_zerol): Likewise.
20819         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
20820         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
20821         * tests/test-truncl.c (minus_zero): Likewise.
20822         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
20823         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
20824         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
20825         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
20826
20827 2008-10-17  Bruno Haible  <bruno@clisp.org>
20828
20829         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
20830         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
20831         that it gets activated only for gcc >= 3.0.
20832         * lib/dirent.in.h: Likewise.
20833         * lib/errno.in.h: Likewise.
20834         * lib/fcntl.in.h: Likewise.
20835         * lib/float.in.h: Likewise.
20836         * lib/iconv.in.h: Likewise.
20837         * lib/inttypes.in.h: Likewise.
20838         * lib/locale.in.h: Likewise.
20839         * lib/math.in.h: Likewise.
20840         * lib/netdb.in.h: Likewise.
20841         * lib/netinet_in.in.h: Likewise.
20842         * lib/search.in.h: Likewise.
20843         * lib/signal.in.h: Likewise.
20844         * lib/spawn.in.h: Likewise.
20845         * lib/stdarg.in.h: Likewise.
20846         * lib/stdint.in.h: Likewise.
20847         * lib/stdio.in.h: Likewise.
20848         * lib/stdlib.in.h: Likewise.
20849         * lib/string.in.h: Likewise.
20850         * lib/strings.in.h: Likewise.
20851         * lib/sys_file.in.h: Likewise.
20852         * lib/sys_ioctl.in.h: Likewise.
20853         * lib/sys_select.in.h: Likewise.
20854         * lib/sys_socket.in.h: Likewise.
20855         * lib/sys_stat.in.h: Likewise.
20856         * lib/sys_time.in.h: Likewise.
20857         * lib/sysexits.in.h: Likewise.
20858         * lib/time.in.h: Likewise.
20859         * lib/unistd.in.h: Likewise.
20860         * lib/wchar.in.h: Likewise.
20861         * lib/wctype.in.h: Likewise.
20862         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
20863
20864 2008-10-17  Jim Meyering  <meyering@redhat.com>
20865
20866         ignore-value: don't depend on inline module
20867         * modules/ignore-value (Depends-on): Remove 'inline'.
20868         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
20869         Suggestion from Bruno Haible.
20870
20871 2008-10-17  Bruno Haible  <bruno@clisp.org>
20872
20873         New implementation of condition variables for Win32.
20874         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
20875         (gl_linked_waitqueue_t): New type.
20876         (gl_cond_t): Use it.
20877         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
20878         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
20879         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
20880         (glthread_cond_init_func, glthread_cond_wait_func,
20881         glthread_cond_timedwait_func, glthread_cond_signal_func,
20882         glthread_cond_broadcast_func, glthread_cond_destroy_func):
20883         Reimplemented on the basis of gl_linked_waitqueue_t.
20884         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
20885         gl_waitqueue_t.
20886         (gl_rwlock_t): Update.
20887         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
20888
20889 2008-10-17  Simon Josefsson  <simon@josefsson.org>
20890
20891         * modules/recvfrom (Depends-on): Add dependency on getpeername.
20892         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20893
20894 2008-10-17  Jim Meyering  <meyering@redhat.com>
20895
20896         ignore-value: new module
20897         * modules/ignore-value: New file.
20898         * lib/ignore-value.h: New file.
20899         * MODULES.html.sh (Compiler warning management): New section,
20900         just for this module.  More to come.
20901
20902 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
20903
20904         open-safer.c: avoid 'signed and unsigned in conditional...' warning
20905         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
20906         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
20907
20908 2008-10-16  Jim Meyering  <meyering@redhat.com>
20909
20910         openat-die.c: avoid 'no previous prototype' warning
20911         * lib/openat-die.c: Include "openat.h".
20912         Reported by Reuben Thomas <rrt@sc3d.org>.
20913
20914 2008-10-16  Simon Josefsson  <simon@josefsson.org>
20915
20916         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
20917         * lib/netdb.in.h: Fix typo.
20918         Reported by Bruno Haible  <bruno@clisp.org>
20919
20920         * lib/netdb.in.h: Include sys/socket.h for platforms without
20921         netdb.h, to get structures like hostent on MinGW.
20922         * modules/netdb (Depends-on): Add sys_socket.
20923
20924 2008-10-15  Simon Josefsson  <simon@josefsson.org>
20925
20926         * modules/netdb, modules/netdb-tests: New file.
20927         * m4/netdb_h.m4: New file.
20928         * lib/netdb.in.h: Add, currently just an empty file pending
20929         definitions.
20930         * tests/test-netdb.c: New file.
20931         * doc/posix-headers/netdb.texi: Mention that we replace it if
20932         needed.
20933         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20934         netdb.
20935
20936 2008-10-15  Simon Josefsson  <simon@josefsson.org>
20937
20938         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
20939         with code.
20940
20941 2008-10-13  Bruno Haible  <bruno@clisp.org>
20942
20943         * lib/glthread/cond.c (glthread_cond_wait_func,
20944         glthread_cond_timedwait_func): Add a comment.
20945
20946 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20947
20948         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
20949         * tests/test-select.c: Likewise,
20950
20951 2008-10-13  Bruno Haible  <bruno@clisp.org>
20952
20953         * lib/glthread/cond.c (glthread_cond_wait_func,
20954         glthread_cond_timedwait_func): Fix variable name.
20955         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20956
20957 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
20958
20959         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
20960         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
20961         struct sockaddr.sa_len.
20962         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
20963
20964 2008-10-13  Simon Josefsson  <simon@josefsson.org>
20965
20966         * build-aux/pmccabe2html: Add css and css_url parameters.
20967
20968 2008-10-12  Bruno Haible  <bruno@clisp.org>
20969
20970         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
20971         calling aclx_get.
20972         Reported by Rainer Tammer <tammer@tammer.net>.
20973
20974 2008-10-12  Bruno Haible  <bruno@clisp.org>
20975
20976         Use msvcrt aware primitives for creation/termination of Win32 threads.
20977         * lib/glthread/thread.c: Include <process.h>.
20978         (glthread_create_func): Use _beginthreadex instead of CreateThread.
20979         (wrapper_func): Update signature.
20980         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
20981
20982 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
20983             Bruno Haible  <bruno@clisp.org>
20984
20985         Provide a Win32 implementation of the 'cond' module.
20986         * lib/glthread/cond.h [USE_WIN32]: New implementation.
20987         * lib/glthread/cond.c (glthread_cond_init_func,
20988         glthread_cond_wait_func, glthread_cond_timedwait_func,
20989         glthread_cond_signal_func, glthread_cond_broadcast_func,
20990         glthread_cond_destroy_func) [USE_WIN32]: New functions.
20991         * modules/cond (Dependencies): Add gettimeofday.
20992
20993 2008-10-11  Bruno Haible  <bruno@clisp.org>
20994
20995         Make sleep work on older versions of mingw.
20996         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
20997         only whether it exists.
20998         * doc/posix-functions/sleep.texi: Mention the problem with older
20999         versions of mingw.
21000
21001 2008-10-11  Bruno Haible  <bruno@clisp.org>
21002
21003         New module 'shutdown'.
21004         * modules/shutdown: New file.
21005         * lib/sys_socket.in.h (shutdown): New declaration.
21006         * lib/winsock.c (shutdown): New function.
21007         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
21008         GNULIB_SHUTDOWN.
21009         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
21010         * doc/posix-functions/shutdown.texi: Document the new module.
21011
21012 2008-10-11  Jim Meyering  <meyering@redhat.com>
21013
21014         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
21015
21016 2008-10-11  Bruno Haible  <bruno@clisp.org>
21017
21018         New module 'fclose'.
21019         * modules/fclose: New file.
21020         * lib/stdio.in.h (fclose): New declaration.
21021         * lib/fclose.c: New file.
21022         * m4/fclose.m4: New file.
21023         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
21024         REPLACE_FCLOSE.
21025         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
21026         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
21027         REPLACE_FCLOSE.
21028         * modules/close (Depends-on): fclose.
21029         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
21030
21031 2008-10-11  Bruno Haible  <bruno@clisp.org>
21032
21033         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
21034         set errno and don't call _close.
21035
21036 2008-10-10  Bruno Haible  <bruno@clisp.org>
21037
21038         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
21039         ACL, not afterwards. Fixes test failure on Cygwin.
21040
21041 2008-10-09  Ben Pfaff  <blp@gnu.org>
21042
21043         * build-aux/announce-gen: Fix gnulib version related part of usage
21044         message.  Die with a useful error message if no tarballs are
21045         found.
21046
21047 2008-10-10  Jim Meyering  <meyering@redhat.com>
21048
21049         bootstrap: use git's --depth=N option only if it's supported
21050         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
21051         recognize the --depth option.  Reported by Pádraig Brady.
21052
21053 2008-10-09  Bruno Haible  <bruno@clisp.org>
21054
21055         New module 'ioctl'.
21056         * modules/ioctl: New file.
21057         * lib/sys_socket.in.h (ioctl): Remove declaration.
21058         * lib/winsock.c: Include <sys/ioctl.h>.
21059         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
21060         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
21061         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
21062         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
21063         * doc/posix-functions/ioctl.texi: Mention the new module.
21064
21065 2008-10-09  Bruno Haible  <bruno@clisp.org>
21066
21067         New module 'sys_ioctl'.
21068         * lib/sys_ioctl.in.h: New file.
21069         * m4/sys_ioctl_h.m4: New file.
21070         * modules/sys_ioctl: New file.
21071         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
21072
21073 2008-10-09  Bruno Haible  <bruno@clisp.org>
21074
21075         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
21076         * lib/winsock.c: Include <stdarg.h>.
21077         (rpl_ioctl): Change to second argument 'int' and then varargs.
21078
21079 2008-10-09  Bruno Haible  <bruno@clisp.org>
21080
21081         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
21082         when the sys_socket module is present and the system has <winsock2.h>.
21083
21084 2008-10-09  Bruno Haible  <bruno@clisp.org>
21085
21086         * doc/posix-functions/close.texi: Mention module 'close' instead of
21087         module 'sys_socket'.
21088
21089 2008-10-09  Bruno Haible  <bruno@clisp.org>
21090
21091         * doc/glibc-headers/sys_ioctl.texi: New file.
21092         * doc/gnulib.texi: Include it.
21093
21094 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21095             Bruno Haible  <bruno@clisp.org>
21096
21097         Combine the two replacements of 'close'.
21098         * lib/sys_socket.in.h (close): Define to a reminder to include
21099         <unistd.h>.
21100         (_gl_close_fd_maybe_socket): New declaration.
21101         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
21102         * lib/winsock.c (close): Remove undefinition.
21103         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
21104         needed for the gnulib module 'close'.
21105         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
21106         define to an error symbol or to a warning, if suitable.
21107         * lib/close.c: Include <sys/socket.h>.
21108         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
21109         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
21110         UNISTD_H_HAVE_WINSOCK2_H.
21111         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
21112         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21113         UNISTD_H_HAVE_WINSOCK2_H.
21114         * modules/sys_socket (Files): Add m4/unistd_h.m4.
21115         (configure.ac): Set a module indicator.
21116         (Makefile.am): Substitute GNULIB_CLOSE.
21117         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
21118         * modules/poll-tests (Depends-on): Add close.
21119         * modules/select-tests (Depends-on): Likewise.
21120
21121 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21122             Bruno Haible  <bruno@clisp.org>
21123
21124         New module 'close'.
21125         * modules/close: New file.
21126         * lib/unistd.in.h (close): Move declaration out of the
21127         FCHDIR_REPLACEMENT scope.
21128         (_gl_unregister_fd): New declaration.
21129         * lib/close.c: New file.
21130         * lib/fchdir.c (rpl_close): Remove function.
21131         * m4/close.m4: New file.
21132         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
21133         close.
21134         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
21135         REPLACE_CLOSE.
21136         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
21137         REPLACE_CLOSE.
21138         * modules/fchdir (Depends-on): Add close.
21139
21140 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21141             Bruno Haible  <bruno@clisp.org>
21142
21143         * lib/fcntl.in.h (open): Simplify conditionals.
21144         (_gl_register_fd): New declaration.
21145         * lib/fchdir.c (rpl_open): Remove function.
21146         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
21147         also.
21148         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
21149         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
21150         open.
21151
21152 2008-10-09  Jim Meyering  <meyering@redhat.com>
21153
21154         GNUmakefile: use the more name-space-friendly "_version"
21155         * top/GNUmakefile (_dummy): Update.
21156         (_version): Rename from "version".
21157
21158 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21159             Bruno Haible  <bruno@clisp.org>
21160
21161         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
21162         rpl_close.
21163         (_gl_register_fd): New function, extracted from rpl_open.
21164         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
21165         (rpl_open, rpl_opendir): Use _gl_register_fd.
21166
21167 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21168
21169         Fix organization of 'open' replacement.
21170         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
21171         (gl_FUNC_OPEN): Use it.
21172         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
21173
21174 2008-10-08  Bruno Haible  <bruno@clisp.org>
21175
21176         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
21177
21178 2008-10-08  Simon Josefsson  <simon@josefsson.org>
21179
21180         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
21181         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
21182         listen).
21183
21184 2008-10-08  Eric Blake  <ebb9@byu.net>
21185
21186         GNUmakefile: add 'make version' target
21187         * top/GNUmakefile (_curr-ver): Split version update rules...
21188         (version): ...into a target.
21189
21190 2008-10-07  Bruno Haible  <bruno@clisp.org>
21191
21192         Use a more portable replacement expression for -0.0L.
21193         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
21194         instead of -0.0L. Fix m4 quotation.
21195
21196         * tests/test-signbit.c: Include <float.h>.
21197         (minus_zero): New variable.
21198         (test_signbitl): Use minus_zero instead of -zero.
21199         * modules/signbit-tests (Depends-on): Add float.
21200
21201         * tests/test-ceill.c: Include <float.h>.
21202         (zero): Remove variable.
21203         (minus_zero): New variable.
21204         (main): Use minus_zero instead of -zero.
21205         * modules/ceill-tests (Depends-on): Add float.
21206
21207         * tests/test-floorl.c: Include <float.h>.
21208         (zero): Remove variable.
21209         (minus_zero): New variable.
21210         (main): Use minus_zero instead of -zero.
21211         * modules/floorl-tests (Depends-on): Add float.
21212
21213         * tests/test-roundl.c: Include <float.h>.
21214         (zero): Remove variable.
21215         (minus_zero): New variable.
21216         (main): Use minus_zero instead of -zero.
21217         * modules/roundl-tests (Depends-on): Add float.
21218
21219         * tests/test-truncl.c: Include <float.h>.
21220         (zero): Remove variable.
21221         (minus_zero): New variable.
21222         (main): Use minus_zero instead of -zero.
21223         * modules/truncl-tests (Depends-on): Add float.
21224
21225         * tests/test-frexpl.c (zero): Remove variable.
21226         (minus_zero): New variable.
21227         (main): Use minus_zero instead of -zero.
21228         * modules/frexpl-tests (Depends-on): Add float.
21229
21230         * tests/test-isnan.c (zerol): Remove variable.
21231         (minus_zerol): New variable.
21232         (test_long_double): Use minus_zerol instead of -zerol.
21233         * modules/isnan-tests (Depends-on): Add float.
21234
21235         * tests/test-isnanl.h (zero): Remove variable.
21236         (minus_zero): New variable.
21237         (main): Use minus_zero instead of -zero.
21238         * modules/isnanl-nolibm-tests (Depends-on): Add float.
21239         * modules/isnanl-tests (Depends-on): Add float.
21240
21241         * tests/test-ldexpl.c (zero): Remove variable.
21242         (minus_zero): New variable.
21243         (main): Use minus_zero instead of -zero.
21244         * modules/ldexpl-tests (Depends-on): Add float.
21245
21246         * tests/test-snprintf-posix.h (zerol): Remove variable.
21247         (minus_zerol): New variable.
21248         (test_function): Use minus_zerol instead of -zerol.
21249         * modules/snprintf-posix-tests (Depends-on): Add float.
21250         * modules/vsnprintf-posix-tests (Depends-on): Add float.
21251
21252         * tests/test-sprintf-posix.h (zerol): Remove variable.
21253         (minus_zerol): New variable.
21254         (test_function): Use minus_zerol instead of -zerol.
21255         * modules/sprintf-posix-tests (Depends-on): Add float.
21256         * modules/vsprintf-posix-tests (Depends-on): Add float.
21257
21258         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
21259         (minus_zerol): New variable.
21260         (test_function): Use minus_zerol instead of -zerol.
21261         * modules/vasnprintf-posix-tests (Depends-on): Add float.
21262
21263         * tests/test-vasprintf-posix.c (zerol): Remove variable.
21264         (minus_zerol): New variable.
21265         (test_function): Use minus_zerol instead of -zerol.
21266         * modules/vasprintf-posix-tests (Depends-on): Add float.
21267
21268 2008-10-07  Simon Josefsson  <simon@josefsson.org>
21269
21270         * MODULES.html.sh (Support for building documentation): Mention
21271         pmccabe2html.  Sort entries.
21272
21273         Add pmccabe2html module, from gnupdf.
21274         * build-aux/pmccabe.css: New file.
21275         * build-aux/pmccabe2html: New file.
21276         * m4/pmccabe2html.m4: New file.
21277         * modules/pmccabe2html: New file.
21278
21279 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
21280
21281         flock: new module
21282         * MODULES.html.sh: Add to list of modules.
21283         * lib/flock.c: flock implementation for Windows and Unix systems
21284         which have fcntl.
21285         * doc/glibc-functions/flock.texi: Update documentation.
21286         * lib/sys_file.in.h: <sys/file.h> header file.
21287         * m4/flock.m4: M4 macros.
21288         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
21289         * modules/flock: flock module.
21290         * modules/flock-tests: flock tests module.
21291         * modules/sys_file: sys/file.h module.
21292         * tests/test-flock.c: test suite for flock.
21293
21294 2008-10-06  Jim Meyering  <meyering@redhat.com>
21295
21296         bootstrap: check for LT_INIT more portably still ;-)
21297         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
21298         Spotted by Bruno Haible.
21299
21300 2008-10-06  Eric Blake  <ebb9@byu.net>
21301
21302         test-signbit: avoid tripping Irix cc bug on -0.0L
21303         * tests/test-signbit.c (minus_zerol): Delete, and replace with
21304         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
21305         entire testsuite consistent and avoids an Irix 6.2 bug.
21306
21307 2008-10-05  Bruno Haible  <bruno@clisp.org>
21308             Jim Meyering  <jim@meyering.net>
21309
21310         Add an option for ignoring EPIPE during close_stdout.
21311         * lib/closeout.h: Include <stdbool.h>.
21312         (close_stdout_set_ignore_EPIPE): New declaration.
21313         * lib/closeout.c: Include <stdbool.h>.
21314         (ignore_EPIPE): New variable.
21315         (close_stdout_set_ignore_EPIPE): New function.
21316         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
21317         * lib/close-stream.c (close_stream): Mention the possible EPIPE
21318         failure.
21319         * modules/closeout (Depends-on): Add stdbool.
21320
21321 2008-10-05  Bruno Haible  <bruno@clisp.org>
21322
21323         * modules/accept: New file.
21324         * modules/bind: New file.
21325         * modules/connect: New file.
21326         * modules/getpeername: New file.
21327         * modules/getsockname: New file.
21328         * modules/getsockopt: New file.
21329         * modules/listen: New file.
21330         * modules/recv: New file.
21331         * modules/recvfrom: New file.
21332         * modules/send: New file.
21333         * modules/sendto: New file.
21334         * modules/setsockopt: New file.
21335         * modules/socket: New file.
21336         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
21337         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
21338         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
21339         the particular module is requested. Add a link warning when the
21340         particular module is not requested.
21341         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
21342         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
21343         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
21344         the particular module is requested.
21345         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
21346         gl_SYS_SOCKET_H_DEFAULTS): New macros.
21347         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
21348         * modules/sys_socket (Depends-on): Add link-warning.
21349         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
21350         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
21351         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
21352         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
21353         GL_LINK_WARNING.
21354         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
21355         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
21356         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
21357         * doc/posix-functions/getpeername.texi: Mention the new module
21358         'getpeername'.
21359         * doc/posix-functions/getsockname.texi: Mention the new module
21360         'getsockname'.
21361         * doc/posix-functions/getsockopt.texi: Mention the new module
21362         'getsockopt'.
21363         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
21364         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
21365         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
21366         * doc/posix-functions/send.texi: Mention the new module 'send'.
21367         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
21368         * doc/posix-functions/setsockopt.texi: Mention the new module
21369         'setsockopt'.
21370         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
21371         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
21372         listen, connect, accept.
21373         * modules/select-tests (Depends-on): Likewise.
21374
21375 2008-10-05  Bruno Haible  <bruno@clisp.org>
21376
21377         * lib/winsock.c (strerror): Remove unused #undef.
21378         (rpl_close): Remove unused local variable.
21379
21380         * modules/sys_socket (Depends-on); Add errno.
21381
21382 2008-10-05  Bruno Haible  <bruno@clisp.org>
21383
21384         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
21385         (select): Add a link warning when the 'select' module is not used.
21386         * modules/sys_select (Depends-on): Add link-warning.
21387         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
21388         Suggested by Paolo Bonzini.
21389
21390 2008-10-05  Jim Meyering  <meyering@redhat.com>
21391
21392         bootstrap: check for LT_INIT more portably
21393         * build-aux/bootstrap: Avoid using grep -E, since it's not
21394         portable enough.  Suggestion from Bruno Haible.
21395
21396 2008-10-05  Bruno Haible  <bruno@clisp.org>
21397
21398         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
21399         as being fixed by gnulib.
21400
21401 2008-10-05  Bruno Haible  <bruno@clisp.org>
21402
21403         * modules/select-tests: New file, mostly copied from
21404         modules/sys_select-tests.
21405         * tests/test-select.c: New file, mostly copied from
21406         tests/test-sys_select.c.
21407         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
21408         * modules/sys_select-tests (Depends-on): Remove all dependencies.
21409         (Makefile.am): Remove test_sys_select_LDADD.
21410
21411         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
21412         to an undefined symbol, for an error message.
21413         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
21414         (gl_SYS_SELECT_H_DEFAULTS): New macro.
21415         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
21416         winsock-select.c here.
21417         * modules/sys_select (Files): Remove lib/winsock-select.c.
21418         (Depends-on): Remove alloca.
21419         (Makefile.am): Substitute GNULIB_SELECT.
21420         * modules/select: New file.
21421         * doc/posix-functions/select.texi: Update.
21422
21423 2008-10-05  Bruno Haible  <bruno@clisp.org>
21424
21425         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
21426         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
21427         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
21428         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
21429         getdtablesize.
21430         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
21431         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
21432
21433 2008-10-05  Bruno Haible  <bruno@clisp.org>
21434
21435         * modules/getdtablesize-tests: New file.
21436         * tests/test-getdtablesize.c: New file.
21437
21438         New module 'getdtablesize'.
21439         * lib/unistd.in.h (getdtablesize): New declaration.
21440         * lib/getdtablesize.c: New file.
21441         * m4/getdtablesize.m4: New file.
21442         * modules/getdtablesize: New file.
21443         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21444         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
21445         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
21446         HAVE_GETDTABLESIZE.
21447         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
21448
21449 2008-10-05  Bruno Haible  <bruno@clisp.org>
21450
21451         * modules/sched (Makefile.am): Fix typo.
21452         Reported by Simon Josefsson.
21453
21454 2008-10-05  Jim Meyering  <meyering@redhat.com>
21455
21456         bootstrap: check for LT_INIT, too
21457         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
21458         are deprecated.  Suggestion from Ralf Wildenhues.
21459
21460 2008-10-05  Bruno Haible  <bruno@clisp.org>
21461
21462         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
21463         overriding them by ours.
21464         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
21465
21466 2008-10-05  Jim Meyering  <meyering@redhat.com>
21467
21468         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
21469         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
21470         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
21471
21472 2008-10-04  Bruno Haible  <bruno@clisp.org>
21473
21474         * modules/dup2 (License): Change to LGPLv2+.
21475         * modules/sleep (License): Likewise.
21476         * modules/perror (License): Likewise.
21477         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
21478         Blake.
21479         * modules/signal (License): Likewise.
21480         * modules/sigprocmask (License): Likewise.
21481         * modules/raise (License): Change to LGPLv2+, with approval by Jim
21482         Meyering.
21483
21484 2008-10-04  Bruno Haible  <bruno@clisp.org>
21485
21486         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
21487         Reported by Rainer Tammer <tammer@tammer.net>.
21488
21489 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
21490             Bruno Haible  <bruno@clisp.org>
21491
21492         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
21493         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
21494         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
21495
21496 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
21497
21498         filevercmp: new module
21499         * lib/filevercmp.h: New function filevercmp comparing version strings.
21500         * lib/filevercmp.c: Implementation of filevercmp function.
21501         * modules/filevercmp: Module metadata.
21502         * tests/test-filevercmp.c: Unit test for new module.
21503         * modules/filevercmp-tests: Unit test metadata.
21504         * MODULES.html.sh: Add filevercmp module.
21505
21506 2008-10-03  Bruno Haible  <bruno@clisp.org>
21507
21508         * lib/c-ctype.h: Add comment.
21509         Reported by Jim Meyering.
21510
21511 2008-10-02  Bruno Haible  <bruno@clisp.org>
21512
21513         * modules/posix_spawn-internal (Depends-on): Add 'open'.
21514
21515 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21516
21517         * build-aux/bootstrap: Allow renaming bootstrap, and change the
21518         name of bootstrap.conf accordingly.
21519
21520 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21521
21522         * build-aux/bootstrap: Install git-merge-changelog configuration
21523         items into .gitconfig if needed.
21524
21525 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
21526
21527         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
21528         git repository, and initialize/update it accordingly.
21529
21530 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
21531
21532         * modules/fsync-tests: New file.
21533         * tests/test-fsync.c: New file.
21534
21535         New module 'fsync'.
21536         * lib/fsync.c: New file.
21537         * m4/fsync.m4: New file.
21538         * modules/fsync: New file.
21539         * lib/unistd.in.h (fsync): New declaration.
21540         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
21541         GNULIB_FSYNC and HAVE_FSYNC.
21542         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
21543         * MODULES.html.sh (posix_functions): Add fsync.
21544         * doc/posix-functions/fsync.texi: Mention the new module.
21545
21546 2008-10-02  Jim Meyering  <meyering@redhat.com>
21547
21548         fts.c: sync with similar code from coreutils' remove.c
21549         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
21550         Guard also with "#if defined __linux__", since for now at least,
21551         this code is Linux-kernel-specific.
21552
21553 2008-10-02  Jim Meyering  <meyering@redhat.com>
21554
21555         fts: bug fixes
21556         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
21557         Include <sys/vfs.h>, not <sys/statfs.h>.
21558
21559         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
21560         Include <sys/vfs.h>, not <sys/statfs.h>.
21561
21562 2008-10-01  Bruno Haible  <bruno@clisp.org>
21563
21564         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
21565         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
21566         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
21567         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
21568         * doc/posix-functions/posix_spawnp.texi: Likewise.
21569         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
21570         whether posix_spawn actually works.
21571         * m4/pipe.m4 (gl_PIPE): Likewise.
21572         * modules/execute (Files): Add m4/posix_spawn.m4.
21573         * modules/pipe (Files): Add m4/posix_spawn.m4.
21574         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
21575
21576 2008-10-01  Jim Meyering  <meyering@redhat.com>
21577
21578         remove trailing spaces
21579         * NEWS: Likewise.
21580         * lib/poll.c (poll): Likewise.
21581         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
21582         * lib/winsock.c (rpl_close): Likewise.
21583         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
21584         * modules/yield: Likewise.
21585         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
21586         * tests/test-sys_select.c (connect_to_socket): Likewise.
21587
21588         fts.c: adjust a new interface to be more generally useful
21589         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
21590         (fts_build): Adjust caller.
21591
21592 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21593
21594         * modules/cond-tests: New file.
21595         * tests/test-cond.c: New file.
21596
21597 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21598             Bruno Haible  <bruno@clisp.org>
21599
21600         * modules/cond (Dependencies): Add errno, time.
21601         * lib/glthread/cond.h: Include <time.h>.
21602         (gl_cond_define, gl_cond_define_initialized): Use the same definition
21603         across platforms.
21604
21605 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21606             Bruno Haible  <bruno@clisp.org>
21607
21608         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
21609
21610 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21611             Bruno Haible  <bruno@clisp.org>
21612
21613         * modules/tls-tests (Depends-on): Add thread, yield.
21614         (configure.ac): Remove all checks.
21615         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
21616         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21617         gl_thread_self): Remove definitions. Include glthread/thread.h and
21618         glthread/yield.h instead.
21619         (test_tls): Pass an additional NULL argument to gl_thread_join.
21620
21621 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21622             Bruno Haible  <bruno@clisp.org>
21623
21624         * modules/lock-tests (Depends-on): Add thread, yield.
21625         (configure.ac): Remove all checks.
21626         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
21627         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
21628         gl_thread_self): Remove definitions. Include glthread/thread.h and
21629         glthread/yield.h instead.
21630         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
21631         additional NULL argument to gl_thread_join.
21632
21633 2008-09-30  Bruno Haible  <bruno@clisp.org>
21634
21635         Fix the Win32 implementation of the 'thread' module.
21636         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
21637         pointer type.
21638         (gl_thread_self): Invoke gl_thread_self_func.
21639         (gl_thread_self_func): New declaration.
21640         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
21641         (do_init_self_key, init_self_key): New functions.
21642         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
21643         Remove some fields.
21644         (running_threads, running_lock): Remove variables.
21645         (get_current_thread_handle): New function.
21646         (gl_thread_self_func, wrapper_func, glthread_create_func,
21647         glthread_join_func, gl_thread_exit_func): Largely rewritten and
21648         simplified.
21649
21650 2008-09-30  Bruno Haible  <bruno@clisp.org>
21651
21652         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
21653         files.
21654
21655 2008-09-30  Jim Meyering  <meyering@redhat.com>
21656
21657         fts.m4: correct the test for statfs.f_type
21658         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
21659         when checking for statfs.f_type.
21660
21661 2008-09-15  Simon Josefsson  <simon@josefsson.org>
21662
21663         tests: avoid some compiler warnings
21664         * tests/test-memchr.c (main): Pass NULL indirectly.
21665         * tests/test-getdate.c (main): Remove unused variable 'ret'.
21666
21667 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
21668
21669         getdate.y: disallow countable dayshifts like "4 yesterday ago"
21670         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
21671         exactly specified dayshifts.
21672         (dayshift): New rule.
21673         (rel): Add dayshift.
21674         (relative_time_table) [tomorrow, yesterday, today, now]:
21675         Use tDAY_SHIFT in place of tDAY_UNIT.
21676         * tests/test-getdate.c: Add tests for now-disallowed countable
21677         dayshifts, e.g., "4 yesterday ago".
21678
21679 2008-09-29  Bruno Haible  <bruno@clisp.org>
21680
21681         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
21682         * tests/test-posix_spawn1.in.sh: Renamed from
21683         tests/test-posix_spawn.in.sh.
21684         * tests/test-posix_spawn2.c: New file.
21685         * tests/test-posix_spawn2.in.sh: New file.
21686         * modules/posix_spawnp-tests (Files): Update.
21687         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
21688
21689 2008-09-29  Bruno Haible  <bruno@clisp.org>
21690
21691         Propagate effects of putenv/setenv/unsetenv to child processes.
21692         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
21693         * lib/pipe.c (create_pipe): Likewise.
21694
21695 2008-09-29  Bruno Haible  <bruno@clisp.org>
21696
21697         Enable use of shell scripts as executables in mingw.
21698         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
21699         run the program as a shell script.
21700         * lib/pipe.c (create_pipe): Likewise.
21701         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
21702         resulting array.
21703
21704 2008-09-29  Eric Blake  <ebb9@byu.net>
21705
21706         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
21707
21708 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
21709
21710         * doc/posix-functions/accept.texi: Update mingw problems.
21711         * doc/posix-functions/bind.texi: Update mingw problems.
21712         * doc/posix-functions/close.texi: Update mingw problems.
21713         * doc/posix-functions/connect.texi: Update mingw problems.
21714         * doc/posix-functions/getpeername.texi: Update mingw problems.
21715         * doc/posix-functions/getsockname.texi: Update mingw problems.
21716         * doc/posix-functions/getsockopt.texi: Update mingw problems.
21717         * doc/posix-functions/ioctl.texi: Update mingw problems.
21718         * doc/posix-functions/listen.texi: Update mingw problems.
21719         * doc/posix-functions/recv.texi: Update mingw problems.
21720         * doc/posix-functions/recvfrom.texi: Update mingw problems.
21721         * doc/posix-functions/select.texi: Update mingw problems.
21722         * doc/posix-functions/send.texi: Update mingw problems.
21723         * doc/posix-functions/sendto.texi: Update mingw problems.
21724         * doc/posix-functions/setsockopt.texi: Update mingw problems.
21725         * doc/posix-functions/socket.texi: Update mingw problems.
21726
21727 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
21728             Bruno Haible  <bruno@clisp.org>
21729
21730         * lib/sys_select.in.h: Include sys/time.h.
21731         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
21732         * modules/sys_select: Depend on sys_time.
21733         * tests/test-sys_select.c: Test that sys/select.h defines struct
21734         timeval fully.
21735
21736 2008-09-29  Bruno Haible  <bruno@clisp.org>
21737
21738         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
21739         * lib/sys_select.in.h: Likewise.
21740
21741 2008-09-29  Bruno Haible  <bruno@clisp.org>
21742
21743         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
21744
21745 2008-09-29  Bruno Haible  <bruno@clisp.org>
21746
21747         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
21748         Set LIBSOCKET instead of augmenting LIBS.
21749         * modules/sockets (Link): New section.
21750         * modules/sockets-tests (test_sockets_LDADD): New variable.
21751         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
21752         * modules/poll-tests (test_poll_LDADD): New variable.
21753         * NEWS: Document the change.
21754
21755 2008-09-29  Bruno Haible  <bruno@clisp.org>
21756
21757         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
21758         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
21759         ARPA_INET_H directly.
21760         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
21761
21762 2008-09-28  Bruno Haible  <bruno@clisp.org>
21763
21764         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
21765         from gl_HEADER_SYS_SOCKET.
21766         (gl_HEADER_SYS_SOCKET): Invoke it.
21767         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
21768
21769 2008-09-28  Bruno Haible  <bruno@clisp.org>
21770
21771         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
21772         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
21773         Needed on OSF/1 4.0.
21774
21775 2008-09-28  Bruno Haible  <bruno@clisp.org>
21776
21777         Override open more carefully.
21778         * lib/open.c (orig_open): New function.
21779         (rpl_open): Use orig_open instead of open.
21780         * lib/fcntl.in.h: Add special invocation convention.
21781         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
21782         (gl_FUNC_OPEN): Invoke it.
21783
21784         Override freopen more carefully.
21785         * lib/freopen.c (orig_freopen): New function.
21786         (rpl_freopen): Use orig_freopen instead of freopen.
21787         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
21788         (gl_FUNC_FREOPEN): Invoke it.
21789
21790         Override fopen more carefully.
21791         * lib/fopen.c (orig_fopen): New function.
21792         (rpl_fopen): Use orig_fopen instead of fopen.
21793         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
21794         (gl_FUNC_FOPEN): Invoke it.
21795         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
21796
21797 2008-09-28  Bruno Haible  <bruno@clisp.org>
21798
21799         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
21800         SIGPIPE.
21801
21802 2008-09-28  Bruno Haible  <bruno@clisp.org>
21803
21804         * tests/test-sigaction.c (handler, main): Disable the check whether
21805         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
21806         glibc systems with LinuxThreads.
21807
21808 2008-09-28  Bruno Haible  <bruno@clisp.org>
21809
21810         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
21811
21812         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
21813         with AIX xlc.
21814         * lib/fcntl.in.h (open): Likewise.
21815         Reported by Rainer Tammer <tammer@tammer.net>.
21816
21817 2008-09-28  Bruno Haible  <bruno@clisp.org>
21818
21819         * modules/posix_spawnp-tests: New file.
21820         * tests/test-posix_spawn.c: New file.
21821         * tests/test-posix_spawn.in.sh: New file.
21822
21823         New module 'posix_spawnp'.
21824         * modules/posix_spawnp: New file.
21825         * lib/spawnp.c: New file, from GNU libc with modifications.
21826         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
21827
21828         New module 'posix_spawn'.
21829         * modules/posix_spawn: New file.
21830         * lib/spawn.c: New file, from GNU libc with modifications.
21831         * doc/posix-functions/posix_spawn.texi: Mention the new module.
21832
21833         New module 'posix_spawnattr_destroy'.
21834         * modules/posix_spawnattr_destroy: New file.
21835         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
21836         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
21837         module.
21838
21839         New module 'posix_spawnattr_setsigmask'.
21840         * modules/posix_spawnattr_setsigmask: New file.
21841         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
21842         modifications.
21843         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
21844         new module.
21845
21846         New module 'posix_spawnattr_getsigmask'.
21847         * modules/posix_spawnattr_getsigmask: New file.
21848         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
21849         modifications.
21850         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
21851         new module.
21852
21853         New module 'posix_spawnattr_setsigdefault'.
21854         * modules/posix_spawnattr_setsigdefault: New file.
21855         * lib/spawnattr_setdefault.c: New file, from GNU libc with
21856         modifications.
21857         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
21858         new module.
21859
21860         New module 'posix_spawnattr_getsigdefault'.
21861         * modules/posix_spawnattr_getsigdefault: New file.
21862         * lib/spawnattr_getdefault.c: New file, from GNU libc with
21863         modifications.
21864         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
21865         new module.
21866
21867         New module 'posix_spawnattr_setschedpolicy'.
21868         * modules/posix_spawnattr_setschedpolicy: New file.
21869         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
21870         modifications.
21871         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
21872         new module.
21873
21874         New module 'posix_spawnattr_getschedpolicy'.
21875         * modules/posix_spawnattr_getschedpolicy: New file.
21876         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
21877         modifications.
21878         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
21879         new module.
21880
21881         New module 'posix_spawnattr_setschedparam'.
21882         * modules/posix_spawnattr_setschedparam: New file.
21883         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
21884         modifications.
21885         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
21886         new module.
21887
21888         New module 'posix_spawnattr_getschedparam'.
21889         * modules/posix_spawnattr_getschedparam: New file.
21890         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
21891         modifications.
21892         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
21893         new module.
21894
21895         New module 'posix_spawnattr_setpgroup'.
21896         * modules/posix_spawnattr_setpgroup: New file.
21897         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
21898         modifications.
21899         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
21900         module.
21901
21902         New module 'posix_spawnattr_getpgroup'.
21903         * modules/posix_spawnattr_getpgroup: New file.
21904         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
21905         modifications.
21906         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
21907         module.
21908
21909         New module 'posix_spawnattr_setflags'.
21910         * modules/posix_spawnattr_setflags: New file.
21911         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
21912         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
21913         module.
21914
21915         New module 'posix_spawnattr_getflags'.
21916         * modules/posix_spawnattr_getflags: New file.
21917         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
21918         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
21919         module.
21920
21921         New module 'posix_spawnattr_init'.
21922         * modules/posix_spawnattr_init: New file.
21923         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
21924         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
21925         module.
21926
21927         New module 'posix_spawn_file_actions_destroy'.
21928         * modules/posix_spawn_file_actions_destroy: New file.
21929         * lib/spawn_faction_destroy.c: New file, from GNU libc with
21930         modifications.
21931         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
21932         the new module.
21933
21934         New module 'posix_spawn_file_actions_addopen'.
21935         * modules/posix_spawn_file_actions_addopen: New file.
21936         * lib/spawn_faction_addopen.c: New file, from GNU libc with
21937         modifications.
21938         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
21939         the new module.
21940
21941         New module 'posix_spawn_file_actions_adddup2'.
21942         * modules/posix_spawn_file_actions_adddup2: New file.
21943         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
21944         modifications.
21945         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
21946         the new module.
21947
21948         New module 'posix_spawn_file_actions_addclose'.
21949         * modules/posix_spawn_file_actions_addclose: New file.
21950         * lib/spawn_faction_addclose.c: New file, from GNU libc with
21951         modifications.
21952         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
21953         the new module.
21954
21955         New module 'posix_spawn_file_actions_init'.
21956         * modules/posix_spawn_file_actions_init: New file.
21957         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
21958         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
21959         new module.
21960
21961         New module 'posix_spawn-internal'.
21962         * modules/posix_spawn-internal: New file.
21963         * lib/spawn_int.h: New file, from GNU libc with modifications.
21964         * lib/spawni.c: New file, from GNU libc with modifications.
21965         * m4/posix_spawn.m4: New file.
21966
21967         New module 'spawn'.
21968         * modules/spawn: New file.
21969         * lib/spawn.in.h: New file, from GNU libc with modifications.
21970         * m4/spawn_h.m4: New file.
21971         * doc/posix-headers/spawn.texi: Mention the new module.
21972
21973 2008-09-28  Bruno Haible  <bruno@clisp.org>
21974
21975         * modules/sched-tests: New file.
21976         * tests/test-sched.c: New file.
21977
21978         New module 'sched'.
21979         * modules/sched: New file.
21980         * lib/sched.in.h: New file.
21981         * m4/sched_h.m4: New file.
21982         * doc/posix-headers/sched.texi: Mention the new module.
21983
21984 2008-09-27  Eric Blake  <ebb9@byu.net>
21985
21986         Fix previous patch, and tweak references to $0.
21987         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
21988         (func_version, func_gnulib_dir): Don't call this program
21989         gnulib-tool.
21990         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
21991         with using $0 in function.
21992         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
21993         (func_fatal_error): Reuse the name the user invoked us with.
21994
21995 2008-09-27  Bruno Haible  <bruno@clisp.org>
21996
21997         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
21998         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
21999         (gl_ICONV_H): Not here.
22000         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
22001         instead of assigning ICONV_H directly.
22002
22003         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
22004         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
22005         WCHAR_H directly.
22006
22007 2008-09-27  Bruno Haible  <bruno@clisp.org>
22008
22009         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
22010         * modules/arpa_inet (Depends-on): Add link-warning.
22011         (Makefile.am): Insert the definition of GL_LINK-WARNING.
22012         * modules/unistd (Makefile.am): Likewise.
22013
22014 2008-09-26  Bruno Haible  <bruno@clisp.org>
22015
22016         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
22017         variables.
22018         (func_version): Essentially copied from gnulib-tool.
22019         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
22020         func_readlink): Copied from gnulib-tool.
22021
22022 2008-09-26  Bruno Haible  <bruno@clisp.org>
22023
22024         * gnulib-tool (func_version): Change directory to $gnulib_dir before
22025         invoking git-version-gen.
22026
22027 2008-09-26  Bruno Haible  <bruno@clisp.org>
22028
22029         * posix-modules: Update to directory names changed on 2008-01-19.
22030         Remove commas in output before splitting into words. No more need to
22031         avoid 'ftruncate' since 2007-02-19.
22032
22033 2008-09-26  Bruno Haible  <bruno@clisp.org>
22034
22035         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
22036
22037 2008-09-26  Bruno Haible  <bruno@clisp.org>
22038
22039         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
22040         * modules/fwriteerror (Depends-on): Add errno.
22041
22042 2008-09-26  Bruno Haible  <bruno@clisp.org>
22043
22044         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
22045         * tests/test-vc-list-files-cvs.sh: Likewise.
22046
22047 2008-09-26  Bruno Haible  <bruno@clisp.org>
22048
22049         * doc/posix-headers/sys_resource.texi: Reorder items.
22050
22051 2008-09-26  Jim Meyering  <meyering@redhat.com>
22052
22053         fts: tweak inode comparison function
22054         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
22055         inode numbers, as documented.
22056
22057         fts: sort dirent entries on inode number before traversing
22058         This avoids a quadratic, seek-related performance penalty when
22059         operating on a directory containing many entries (measurable at 10k;
22060         3.5 hours at 2 million entries with a cold cache) on certain types
22061         of file systems, including ext3 and ext4, but not tmpfs.
22062         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
22063         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
22064         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
22065         (fs_handles_readdir_ordered_dirents_efficiently): New function.
22066         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
22067         (fts_build): Set the stat.st_ino member from D_INO.
22068         If it is likely to be useful, sort dirent entries on inode number.
22069
22070         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
22071         and the struct statfs.f_type member.
22072         * modules/fts (Depends-on): Add d-ino.
22073
22074 2008-09-26  Bruno Haible  <bruno@clisp.org>
22075
22076         * modules/sigpipe-die (Depends-on): Add sigpipe.
22077
22078         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
22079         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
22080         and GNULIB_STDIO_H_SIGPIPE are set.
22081         * lib/stdio-write.c: New file.
22082         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
22083         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22084         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22085         REPLACE_STDIO_WRITE_FUNCS.
22086         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
22087         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22088         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22089         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
22090         * modules/stdio (Files): Add lib/stdio-write.c.
22091         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
22092         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22093         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22094         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
22095         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
22096         REPLACE_FPRINTF_POSIX.
22097         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
22098         REPLACE_PRINTF_POSIX.
22099         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
22100         REPLACE_VFPRINTF_POSIX.
22101         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
22102         REPLACE_VPRINTF_POSIX.
22103         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
22104         SIGPIPE issue.
22105         * doc/posix-functions/fputc.texi: Likewise.
22106         * doc/posix-functions/fputs.texi: Likewise.
22107         * doc/posix-functions/fwrite.texi: Likewise.
22108         * doc/posix-functions/printf.texi: Likewise.
22109         * doc/posix-functions/putc.texi: Likewise.
22110         * doc/posix-functions/putchar.texi: Likewise.
22111         * doc/posix-functions/puts.texi: Likewise.
22112         * doc/posix-functions/vfprintf.texi: Likewise.
22113         * doc/posix-functions/vprintf.texi: Likewise.
22114
22115         * modules/safe-write (Depends-on): Add write.
22116
22117         * modules/sigpipe-tests: New file.
22118         * tests/test-sigpipe.c: New file.
22119         * tests/test-sigpipe.sh: New file.
22120
22121         * modules/write: New file.
22122         * lib/unistd.in.h: Include <sys/types.h>.
22123         (write): New declaration.
22124         * lib/write.c: New file.
22125         * m4/write.m4: New file.
22126         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
22127         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
22128         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
22129         GNULIB_WRITE, REPLACE_WRITE.
22130         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
22131         and the SIGPIPE issue.
22132
22133         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
22134         (raise): New declaration.
22135         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
22136         (ext_signal): New function.
22137         (rpl_raise): New function.
22138         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
22139         GNULIB_SIGNAL_H_SIGPIPE.
22140         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
22141         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
22142
22143         * modules/sigpipe: New file.
22144         * m4/sigpipe.m4: New file.
22145
22146 2008-09-25  Derek Price  <derek@ximbiot.com>
22147             Bruno Haible  <bruno@clisp.org>
22148
22149         * gnulib-tool (func_import): Report all license incompatibilities, not
22150         just the first one.
22151
22152 2008-09-25  Bruno Haible  <bruno@clisp.org>
22153
22154         * gnulib-tool (func_import): When computing the edits, consider not
22155         only the Makefile.ams that exist but also those that will be generated.
22156
22157 2008-09-25  Simon Josefsson  <simon@josefsson.org>
22158
22159         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
22160         fixes gnulib-tool --test warning about duplicate dependency.
22161
22162 2008-09-25  Bruno Haible  <bruno@clisp.org>
22163
22164         * gnulib-tool: Don't ask the user to perform edits in the generated
22165         Makefile.ams.
22166         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
22167         apply to the Makefile.am being generated.
22168         (func_emit_tests_Makefile_am): Execute edits that apply to the
22169         Makefile.am being generated.
22170         (func_import): Setup list of Makefile.am edits before emitting the
22171         Makefile.ams, not at the end.
22172         (func_create_testdir): Update.
22173         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22174
22175 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22176
22177         * gnulib-tool (func_import): Store the --tests-base option in the
22178         comment in gnulib-cache.m4.
22179
22180 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
22181
22182         * NEWS: Document increased portability that sys_select now provides.
22183
22184         * lib/sys_select.in.h: Install select wrapper.
22185         * lib/sys_socket.in.h: Use more descriptive name when there is no
22186         select wrapper.
22187         * lib/winsock-select.c: New.
22188         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
22189         Require gl_HEADER_SYS_SOCKET.
22190         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
22191         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
22192         * tests/test-sys_select.c: Add functional tests.
22193
22194 2008-09-24  Eric Blake  <ebb9@byu.net>
22195
22196         open, fopen: close fd leak in last patch
22197         * lib/open.c (rpl_open): Close fd before returning error.
22198         * lib/fopen.c (rpl_fopen): Close fd before returning error.
22199         * doc/posix-functions/open.texi (open): Document that Irix also
22200         has the bug.
22201         * doc/posix-functions/fopen.texi (fopen): Likewise.
22202         Reported by Paolo Bonzini.
22203
22204 2008-09-24  Bruno Haible  <bruno@clisp.org>
22205
22206         Ensure that a filename ending in a slash cannot be used to access a
22207         non-directory.
22208         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
22209         to check whether it's really a directory.
22210         * lib/fopen.c: Include fcntl.h, unistd.h.
22211         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
22212         and fdopen().
22213         * modules/fopen (Depends-on): Add unistd.
22214         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
22215         * tests/test-fopen.c (main): Likewise.
22216         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
22217         * doc/posix-functions/fopen.texi: Likewise.
22218         Reported by Eric Blake.
22219
22220 2008-09-23  Eric Blake  <ebb9@byu.net>
22221
22222         c-stack: avoid compiler optimizations when provoking overflow
22223         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
22224         recursion harder to optimize, to ensure a stack overflow occurs.
22225         * tests/test-c-stack.c (recurse): Likewise.
22226         Borrowed from libsigsegv.
22227
22228         c-stack: work around Irix sigaltstack bug
22229         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
22230         whether sigaltstack uses wrong end of stack_t (copied in part from
22231         libsigsegv).
22232         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
22233         Irix bug, without requiring an over-allocation.
22234         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
22235         bug.
22236
22237         fopen: document mingw bug on directories
22238         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
22239         not allowing a stream visiting a directory, even though reading
22240         from such a stream is not portable.
22241
22242 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
22243
22244         * lib/poll.c: Rewrite.
22245         * modules/poll: Depend on alloca.
22246
22247 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
22248
22249         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
22250         instead define prototypes for a full set of wrappers.  Ensure
22251         that Cygwin does not use the compatibility code, which is only
22252         for MinGW.
22253         * lib/winsock.c: New.
22254         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
22255         * modules/sys_socket: Add lib/winsock.c.
22256
22257         * modules/poll-tests: Add errno and perror.
22258         * tests/test-poll.c: Use ioctl, not ioctlsocket.
22259
22260 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
22261
22262         * tests/test-poll.c: Downgrade minimum needed Winsock version.
22263
22264 2008-09-23  Bruno Haible  <bruno@clisp.org>
22265
22266         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
22267         * doc/glibc-functions/*: Likewise.
22268
22269 2008-09-23  Simon Josefsson  <simon@josefsson.org>
22270
22271         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
22272         success.
22273
22274 2008-09-22  Eric Blake  <ebb9@byu.net>
22275             Bruno Haible  <bruno@clisp.org>
22276
22277         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
22278         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
22279         supply %A but mishandle pseudo-NaN.
22280         Reported by Simon Josefsson.
22281
22282 2008-09-21  Bruno Haible  <bruno@clisp.org>
22283
22284         * tests/test-lock.c (main): Tweak skip message.
22285         * tests/test-tls.c (main): Likewise.
22286
22287 2008-09-21  Bruno Haible  <bruno@clisp.org>
22288
22289         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
22290         whether 'struct sigaction' has sa_sigaction here...
22291         (gl_PREREQ_SIG_HANDLER_H): ... not here.
22292         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
22293
22294 2008-09-21  Bruno Haible  <bruno@clisp.org>
22295
22296         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
22297         section.
22298         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
22299         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
22300         the new section.
22301         (Support for obsolete systems lacking POSIX:2001): New section.
22302         (String handling <string.h>): Move strdup to the new section.
22303         Suggested by Simon Josefsson and Paolo Bonzini.
22304
22305 2008-09-21  Bruno Haible  <bruno@clisp.org>
22306
22307         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
22308         exponents in %e and %g results on 'long double'. Needed for mingw's
22309         improved *printf functions.
22310         * tests/test-vasprintf-posix.c (test_function): Likewise.
22311         * tests/test-snprintf-posix.h (test_function): Likewise.
22312         * tests/test-sprintf-posix.h (test_function): Likewise.
22313         Reported by Eric Blake.
22314
22315 2008-09-21  Bruno Haible  <bruno@clisp.org>
22316
22317         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
22318         * tests/test-sprintf-posix.h (test_function): Likewise.
22319
22320 2008-09-21  Bruno Haible  <bruno@clisp.org>
22321
22322         * modules/getpass (Depends-on): Add strdup-posix.
22323
22324         New module 'strdup-posix'.
22325         * modules/strdup-posix: New file.
22326         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
22327         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
22328         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
22329         REPLACE_STRDUP.
22330         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
22331         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
22332         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
22333         strdup-posix.
22334
22335         * modules/strdup (Depends-on): Remove malloc-posix.
22336
22337 2008-09-20  Bruno Haible  <bruno@clisp.org>
22338
22339         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
22340         Wildenhues.
22341
22342 2008-09-20  Bruno Haible  <bruno@clisp.org>
22343
22344         Ensure that wint_t gets defined on IRIX 5.3.
22345         * lib/wchar.in.h (wint_t): Define if not defined by the system.
22346         * lib/wctype.in.h (wint_t): Likewise.
22347         (__wctype_wint_t): Remove type.
22348         (isw*): Use wint_t instead of __wctype_wint_t.
22349         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
22350         * modules/wchar (Files): Add m4/wint_t.m4.
22351         (Makefile.am): Substitute HAVE_WINT_T.
22352         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
22353         * tests/test-wctype.c: Check that wint_t is defined.
22354         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
22355         * doc/posix-headers/wctype.texi: Likewise.
22356         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
22357
22358 2008-09-18  Bruno Haible  <bruno@clisp.org>
22359
22360         * gnulib-tool (func_exit): Update comment.
22361
22362 2008-09-18  Simon Josefsson  <simon@josefsson.org>
22363
22364         * modules/getaddrinfo (Depends-on): Remove strdup, this module
22365         assumes strdup exists and does not depend on strdup to return
22366         ENOMEM on out of memory conditions.
22367
22368 2008-09-18  Bruno Haible  <bruno@clisp.org>
22369
22370         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
22371         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
22372         digits for the exponent.
22373
22374 2008-09-18  Jim Meyering  <meyering@redhat.com>
22375             Bruno Haible  <bruno@clisp.org>
22376
22377         * lib/vasnprintf.c (decimal_point_char): Define also if
22378         NEED_PRINTF_INFINITE_LONG_DOUBLE.
22379
22380 2008-09-16  Bruno Haible  <bruno@clisp.org>
22381         and Eric Blake  <ebb9@byu.net>
22382
22383         vasnprintf: support Irix 5.3
22384         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
22385         that mishandle long double infinity.
22386         Reported by Tom G. Christensen.
22387
22388 2008-09-16  Bruno Haible  <bruno@clisp.org>
22389
22390         * doc/glibc-functions/scandir.texi: Mention the function is missing on
22391         Solaris 9.
22392         * doc/glibc-functions/alphasort.texi: Likewise.
22393         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
22394
22395 2008-09-16  Jim Meyering  <meyering@redhat.com>
22396
22397         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
22398         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
22399         a umask modification leak out of a subshell.  Otherwise, the
22400         opensolaris /bin/sh would be accepted and thus cause unwarranted
22401         failures in the coreutils test suite.
22402
22403 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
22404
22405         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
22406         to succeed.
22407
22408 2008-09-16  Jim Meyering  <meyering@redhat.com>
22409
22410         avoid spurious test failure when library is built without ACL support
22411         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
22412         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
22413         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
22414         * tests/test-copy-acl.sh: Likewise.
22415
22416 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22417
22418         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
22419         based on character occurrence counts.
22420
22421 2008-09-15  Eric Blake  <ebb9@byu.net>
22422
22423         tests: avoid some compiler warnings
22424         * tests/test-memchr.c (main): Pass NULL indirectly.
22425         * tests/test-closein.c (main): Avoid unused variable.
22426
22427 2008-09-15  Bruno Haible  <bruno@clisp.org>
22428
22429         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
22430         are missing on OpenBSD 4.0 individually.
22431         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22432
22433 2008-09-15  Bruno Haible  <bruno@clisp.org>
22434
22435         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
22436         * doc/posix-functions/strerror.texi: Mention also Cygwin.
22437         * doc/posix-functions/perror.texi: Likewise.
22438         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
22439         is missing.
22440         Reported by Eric Blake.
22441
22442         * lib/errno.in.h: Use replacement values >= 2000.
22443         Reported by Eric Blake.
22444
22445 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22446
22447         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
22448         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
22449         limit.
22450         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
22451         compareseq was aborted.
22452
22453 2008-09-14  Bruno Haible  <bruno@clisp.org>
22454
22455         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
22456         yvec_edit_count.
22457         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
22458         (fstrcmp_bounded): Simplify result computation accordingly.
22459
22460 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22461
22462         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
22463         (fstrcmp): Define in terms of fstrcmp_bounded.
22464         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
22465         lower_bound argument.
22466         Return quickly if the result is certainly < lower_bound.
22467         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
22468
22469 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22470
22471         * lib/diffseq.h (EARLY_ABORT): New macro.
22472         (compareseq): Change return type to bool. Return true when EARLY_ABORT
22473         evaluates to true.
22474
22475 2008-09-14  Bruno Haible  <bruno@clisp.org>
22476
22477         * modules/perror-tests: New file.
22478         * tests/test-perror.sh: New file.
22479         * tests/test-perror.c: New file.
22480
22481         New module 'perror'.
22482         * lib/stdio.in.h (perror): New declaration.
22483         * lib/perror.c: New file.
22484         * m4/perror.m4: New file.
22485         * modules/perror: New file.
22486         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
22487         * doc/posix-functions/perror.texi: Mention the perror module.
22488         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
22489         REPLACE_PERROR.
22490         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
22491         REPLACE_PERROR.
22492
22493 2008-09-14  Bruno Haible  <bruno@clisp.org>
22494
22495         * modules/stdio (Makefile.am): Reorder to match the order in
22496         lib/stdio.in.h.
22497         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
22498
22499 2008-09-13  Bruno Haible  <bruno@clisp.org>
22500
22501         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
22502
22503 2008-09-13  Bruno Haible  <bruno@clisp.org>
22504
22505         Extend strerror to cover the added errno values.
22506         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
22507         (rpl_strerror): Provide error messages for the added errno values and
22508         for the WSA* values.
22509         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
22510         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
22511         strerror.
22512         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
22513         * modules/strerror (Depends-on): Add errno.
22514         * doc/posix-functions/strerror.texi: Document the change.
22515         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
22516         and EOVERFLOW.
22517
22518 2008-09-13  Bruno Haible  <bruno@clisp.org>
22519
22520         * modules/EOVERFLOW: Remove file.
22521         * m4/eoverflow.m4: Remove file.
22522         * modules/EOVERFLOW-tests: Remove file.
22523         * tests/test-EOVERFLOW.c: Remove file.
22524         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
22525         * modules/ftell (Depends-on): Likewise.
22526         * modules/getdelim (Depends-on): Likewise.
22527         * modules/getugroups (Depends-on): Likewise.
22528         * modules/poll (Depends-on): Likewise.
22529         * modules/snprintf (Depends-on): Likewise.
22530         * modules/sprintf-posix (Depends-on): Likewise.
22531         * modules/vasnprintf (Depends-on): Likewise.
22532         * modules/vasprintf (Depends-on): Likewise.
22533         * modules/vfprintf-posix (Depends-on): Likewise.
22534         * modules/vsnprintf (Depends-on): Likewise.
22535         * modules/vsprintf-posix (Depends-on): Likewise.
22536         * modules/xvasprintf (Depends-on): Likewise.
22537         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22538         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
22539         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
22540         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
22541         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22542         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
22543         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
22544         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
22545         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22546         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
22547         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
22548         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
22549         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22550         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
22551         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
22552         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
22553         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22554         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
22555         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
22556         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
22557         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22558         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
22559         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
22560         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
22561         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
22562         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22563         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
22564         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
22565         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
22566         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
22567         * MODULES.html.sh: Remove EOVERFLOW.
22568         * NEWS: Mention the change.
22569
22570 2008-09-13  Bruno Haible  <bruno@clisp.org>
22571
22572         * modules/errno-tests: New file.
22573         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
22574
22575         * lib/errno.in.h: New file.
22576         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
22577         * modules/errno: New file.
22578         * doc/posix-headers/errno.texi: Update documentation.
22579         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
22580
22581 2008-09-13  Bruno Haible  <bruno@clisp.org>
22582
22583         * tests/test-poll.c: Use #if for native Windows, rather than testing
22584         __MSVCRT__.
22585
22586 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22587             Bruno Haible  <bruno@clisp.org>
22588
22589         * lib/glob.c: Don't include <pwd.h> on native Windows.
22590         (WINDOWS32): New macro.
22591         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
22592
22593 2008-09-13  Bruno Haible  <bruno@clisp.org>
22594
22595         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
22596         (ETIMEDOUT): Remove macro.
22597         (glthread_cond_timedwait_multithreaded): New declaration.
22598         (glthread_cond_timedwait): Use it.
22599         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
22600         (glthread_cond_timedwait_multithreaded): New function.
22601
22602 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22603
22604         * modules/poll-tests: Do not check for io.h.
22605         * tests/test-poll.c: Check for __MSVCRT__ instead.
22606
22607 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22608
22609         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
22610         * modules/poll-tests: Add inet_pton, stdbool, sockets.
22611         * tests/test-poll.c: Use them.  Use _pipe on Windows.
22612
22613 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
22614
22615         * modules/poll-tests: New.
22616         * tests/test-poll.c: New.
22617
22618 2008-09-12  Eric Blake  <ebb9@byu.net>
22619
22620         frexp: test for NetBSD failure on -0.0
22621         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
22622         not all, bugs from NetBSD 3.0 have been fixed.
22623         * doc/posix-functions/frexp.texi (frexp): Document bug.
22624         Reported by Thomas Klausner.
22625
22626         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
22627         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
22628         literal -0.0.
22629         Reported by Jonathan C. Patschke <jp@centtech.com>.
22630
22631 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22632
22633         * lib/glthread/cond.h: Use dummy implementation also if
22634         USE_WIN32_THREADS.
22635
22636 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22637
22638         * modules/fnmatch-posix (License): Change to LGPLv2+.
22639         * modules/fnmatch-gnu (License): Likewise.
22640
22641 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22642
22643         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
22644
22645 2008-09-11  Jim Meyering  <meyering@redhat.com>
22646
22647         * users.txt: Add gtk-vnc.
22648
22649 2008-09-08  Simon Josefsson  <simon@josefsson.org>
22650
22651         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
22652         rotate amounts.
22653
22654         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
22655         required for 16-bit and 8-bit rotates.
22656         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
22657         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
22658         UINT8_MAX instead of hard-coded constants.
22659         Suggested by Paul Eggert.
22660
22661 2008-09-07  Bruno Haible  <bruno@clisp.org>
22662
22663         * tests/test-striconveh.c (main): Check behaviour when converting from
22664         UTF-7.
22665
22666         Make striconveh work better with stateful encodings.
22667         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
22668         that iconv does not increment the inptr when returning -1/EINVAL.
22669
22670 2008-09-07  Bruno Haible  <bruno@clisp.org>
22671
22672         * build-aux/config.rpath: Update according to libtool-2.2.6.
22673         * build-aux/config.libpath: Likewise.
22674
22675 2008-09-06  Bruno Haible  <bruno@clisp.org>
22676
22677         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
22678         * lib/freadptr.c (freadptr): Likewise.
22679         * lib/freadseek.c (freadptrinc): Likewise.
22680         Reported by Simon Josefsson.
22681
22682 2008-09-06  Bruno Haible  <bruno@clisp.org>
22683
22684         * modules/freadptr (License): Change to LGPLv2+.
22685         * modules/freadseek (License): Likewise.
22686         Suggested by Eric Blake.
22687
22688         * modules/memchr2 (License): Change to LGPLv2+.
22689         Approved by Eric Blake.
22690
22691 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22692             Bruno Haible  <bruno@clisp.org>
22693
22694         Make gnulib-tool work with native 'sed' on AIX.
22695         * gnulib-tool (sed_noop): New variable.
22696         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
22697         func_add_or_update, func_create_testdir): Use it to initialize sed
22698         script variables.
22699         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
22700
22701 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
22702             Bruno Haible  <bruno@clisp.org>
22703
22704         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
22705         also works after #include directives.
22706
22707 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
22708
22709         getdate.y: reject an out-of-range timezone value
22710         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
22711         the range [-24...+24].  When specified with only one or two digits,
22712         * tests/test-getdate.c: Tests for the fix.
22713         * doc/getdate.texi: Document this change.
22714
22715 2008-09-03  Bruno Haible  <bruno@clisp.org>
22716
22717         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
22718
22719 2008-09-02  Simon Josefsson  <simon@josefsson.org>
22720
22721         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
22722         <bruce.korb@gmail.com> with ideas from Ben Pfaff
22723         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
22724         Blake <ebb9@byu.net>.
22725
22726         * tests/test-bitrotate.c: Add more test vectors.
22727
22728 2008-09-02  Eric Blake  <ebb9@byu.net>
22729
22730         vasnprintf-posix: handle large precision via %.*d
22731         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
22732         when handling it ourselves.
22733         * tests/test-vasnprintf-posix.c (test_function): Add test.
22734         * tests/test-snprintf-posix.h (test_function): Likewise.
22735         * tests/test-sprintf-posix.h (test_function): Likewise.
22736         * tests/test-vasprintf-posix.c (test_function): Likewise.
22737         Reported by Alain Guibert.
22738
22739 2008-09-01  Eric Blake  <ebb9@byu.net>
22740
22741         c-stack: make configure-time check more robust
22742         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
22743         successful sigaction call.
22744         Reported by Tom G. Christensen.
22745
22746 2008-09-01  Bruno Haible  <bruno@clisp.org>
22747
22748         New module 'findprog-lgpl'.
22749         * modules/findprog-lgpl: New file.
22750         * lib/findprog-lgpl.c: New file.
22751         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
22752         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
22753         to decide whether to use strdup or xstrdup, concatenated_filename or
22754         xconcatenated_filename.
22755
22756 2008-09-01  Bruno Haible  <bruno@clisp.org>
22757
22758         Split module 'concat-filename' into 'concat-filename' (LGPL) and
22759         'xconcat-filename' (GPL).
22760         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
22761         (License): Change to LGPLv2+.
22762         * modules/xconcat-filename: New file.
22763         * lib/concat-filename.h (concatenated_filename): Change specification.
22764         (xconcatenated_filename): New declaration.
22765         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
22766         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
22767         memory situations.
22768         * lib/xconcat-filename.c: New file.
22769         * NEWS: Mention the change.
22770         * lib/findprog.c: Include concat-filename.h, not filename.h.
22771         (find_in_path): Use xconcatenated_filename instead of
22772         concatenated_filename.
22773         * lib/javacomp.c: Include concat-filename.h, not filename.h.
22774         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
22775         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
22776         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
22777         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
22778         instead of concatenated_filename.
22779         * lib/javaexec.c: Include concat-filename.h, not filename.h.
22780         (execute_java_class): Use xconcatenated_filename instead of
22781         concatenated_filename.
22782         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
22783         * modules/javacomp (Depends-on): Likewise.
22784         * modules/javaexec (Depends-on): Likewise.
22785
22786 2008-09-01  Bruno Haible  <bruno@clisp.org>
22787
22788         Split module 'filename' into 'filename' and 'concat-filename'.
22789         * modules/filename: Keep only lib/filename.h.
22790         (License): Change to LGPLv2+.
22791         * modules/concat-filename: New file, extracted from modules/filename.
22792         * lib/filename.h (concatenated_filename): Remove declaration.
22793         * lib/concat-filename.h: New file, extracted from lib/filename.h.
22794         * lib/concat-filename.c: Include concat-filename.h.
22795         * NEWS: Mention the change.
22796
22797 2008-09-01  Simon Josefsson  <simon@josefsson.org>
22798
22799         * lib/bitrotate.h (rotl8, rotr8): Add.
22800
22801         * modules/bitrotate (configure.ac): Need
22802         AC_REQUIRE([AC_C_INLINE]).
22803         (Description): Mention stdint.h.  Reported by Bruno Haible
22804         <bruno@clisp.org>.
22805
22806         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
22807         Paolo Bonzini <bonzini@gnu.org>.
22808
22809 2008-08-31  Bruno Haible  <bruno@clisp.org>
22810
22811         Assume Solaris specific bi-arch conventions on Solaris systems.
22812         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
22813         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
22814         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
22815         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
22816         like acl_libdirstem.
22817         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
22818         acl_libdirstem.
22819         * NEWS: Mention the change.
22820         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
22821
22822 2008-08-31  Jim Meyering  <meyering@redhat.com>
22823
22824         * lib/strftime.h: Add comments describing the two added arguments.
22825
22826         remove duplicate #include directives
22827         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
22828         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
22829
22830 2008-08-31  Bruno Haible  <bruno@clisp.org>
22831
22832         New module 'sigpipe-die'.
22833         * modules/sigpipe-die: New file.
22834         * lib/sigpipe-die.h: New file.
22835         * lib/sigpipe-die.c: New file.
22836         * MODULES.html.sh (Signal handling): Add sigpipe-die.
22837
22838 2008-08-31  Bruno Haible  <bruno@clisp.org>
22839
22840         Don't override previously installed signal handlers.
22841         * lib/fatal-signal.c (saved_sigactions): New variable.
22842         (uninstall_handlers): Reset the signal to the saved handler, not
22843         to SIG_DFL (except when ignored).
22844         (install_handlers): Save the previous handlers.
22845
22846 2008-08-30  Bruno Haible  <bruno@clisp.org>
22847
22848         * gnulib-tool (func_reset_sigpipe): New function.
22849         (func_get_automake_snippet, func_modules_transitive_closure,
22850         func_import): Invoke it before a join command that reads from stdin,
22851         to avoid "echo: write error: Broken pipe" error messages on stderr.
22852         Reported by Sam Steingold <sds@gnu.org>.
22853
22854 2008-08-30  Bruno Haible  <bruno@clisp.org>
22855
22856         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
22857         Code copied from m4/open.m4.
22858         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
22859         access and the filename ends in a slash. Code copied from lib/open.c.
22860         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
22861         * tests/test-fopen.c (main): Check against bug with trailing slash.
22862
22863 2008-08-29  Bruno Haible  <bruno@clisp.org>
22864
22865         Avoid some "gcc -pedantic" warnings.
22866         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
22867         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
22868         * lib/dirent.in.h: Likewise.
22869         * lib/fcntl.in.h: Likewise.
22870         * lib/float.in.h: Likewise.
22871         * lib/iconv.in.h: Likewise.
22872         * lib/inttypes.in.h: Likewise.
22873         * lib/locale.in.h: Likewise.
22874         * lib/math.in.h: Likewise.
22875         * lib/netinet_in.in.h: Likewise.
22876         * lib/search.in.h: Likewise.
22877         * lib/signal.in.h: Likewise.
22878         * lib/stdarg.in.h: Likewise.
22879         * lib/stdint.in.h: Likewise.
22880         * lib/stdio.in.h: Likewise.
22881         * lib/stdlib.in.h: Likewise.
22882         * lib/string.in.h: Likewise.
22883         * lib/strings.in.h: Likewise.
22884         * lib/sys_select.in.h: Likewise.
22885         * lib/sys_socket.in.h: Likewise.
22886         * lib/sys_stat.in.h: Likewise.
22887         * lib/sys_time.in.h: Likewise.
22888         * lib/sysexits.in.h: Likewise.
22889         * lib/time.in.h: Likewise.
22890         * lib/unistd.in.h: Likewise.
22891         * lib/wchar.in.h: Likewise.
22892         * lib/wctype.in.h: Likewise.
22893         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
22894         * modules/fchdir (Makefile.am): Likewise.
22895         * modules/fcntl (Makefile.am): Likewise.
22896         * modules/float (Makefile.am): Likewise.
22897         * modules/iconv_open (Makefile.am): Likewise.
22898         * modules/inttypes (Makefile.am): Likewise.
22899         * modules/locale (Makefile.am): Likewise.
22900         * modules/math (Makefile.am): Likewise.
22901         * modules/netinet_in (Makefile.am): Likewise.
22902         * modules/search (Makefile.am): Likewise.
22903         * modules/signal (Makefile.am): Likewise.
22904         * modules/stdarg (Makefile.am): Likewise.
22905         * modules/stdint (Makefile.am): Likewise.
22906         * modules/stdio (Makefile.am): Likewise.
22907         * modules/stdlib (Makefile.am): Likewise.
22908         * modules/string (Makefile.am): Likewise.
22909         * modules/strings (Makefile.am): Likewise.
22910         * modules/sys_select (Makefile.am): Likewise.
22911         * modules/sys_socket (Makefile.am): Likewise.
22912         * modules/sys_stat (Makefile.am): Likewise.
22913         * modules/sys_time (Makefile.am): Likewise.
22914         * modules/sysexits (Makefile.am): Likewise.
22915         * modules/time (Makefile.am): Likewise.
22916         * modules/unistd (Makefile.am): Likewise.
22917         * modules/wchar (Makefile.am): Likewise.
22918         * modules/wctype (Makefile.am): Likewise.
22919         Reported by Reuben Thomas <rrt@sc3d.org>.
22920
22921 2008-08-29  Bruno Haible  <bruno@clisp.org>
22922
22923         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
22924         any more.
22925
22926 2008-08-29  Simon Josefsson  <simon@josefsson.org>
22927
22928         * MODULES.html.sh (Misc): Add bitrotate.
22929
22930         * modules/bitrotate: New file.
22931
22932         * lib/bitrotate.h: New file.
22933
22934         * modules/bitrotate-tests: New file.
22935
22936         * tests/test-bitrotate.c: New file.
22937
22938         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
22939         on the bitrotate module.
22940
22941         * lib/arctwo.c: Use new bitrotate module.
22942
22943 2008-08-29  Jim Meyering  <meyering@redhat.com>
22944
22945         bootstrap: merge changes from coreutils
22946         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
22947         of copied files.  Remove a kludge, now that this is fixed.
22948         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
22949         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
22950         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
22951
22952 2008-08-29  Bruno Haible  <bruno@clisp.org>
22953
22954         * MODULES.html.sh: Remove --cvs-urls option.
22955
22956 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
22957
22958         maint.mk: adjust to file name change
22959         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
22960
22961 2008-08-28  Jim Meyering  <meyering@redhat.com>
22962
22963         * modules/getndelim2 (License): Relicense to LGPLv2+.
22964         Approved by Richard Stallman for the version of 1995, and by
22965         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
22966
22967 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
22968
22969         * lib/getdelim.c (flockfile, funlockfile): Make all of them
22970         dummy if one is not available.  Do not touch them if
22971         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
22972         (getc_maybe_unlocked): New.
22973         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
22974
22975 2008-08-26  Eric Blake  <ebb9@byu.net>
22976
22977         doc/INSTALL: resync from autoconf
22978         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
22979         (INSTALL_PRELUDE): Delete; this is done more efficiently by
22980         moving...
22981         * install.texi [!autoconf]: ...here.  Resync from autoconf.
22982         * INSTALL: Regenerate.
22983         * INSTALL.ISO: New file.
22984         * INSTALL.UTF-8: Likewise.
22985
22986 2008-08-26  Jim Meyering  <meyering@redhat.com>
22987
22988         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
22989         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
22990         these definitions conditional, so that they may be overridden, too.
22991
22992 2008-08-26  Bruno Haible  <bruno@clisp.org>
22993
22994         Generate INSTALL file variants with prettier quotes.
22995         * doc/Makefile (INSTALL_PRELUDE): New macro.
22996         (INSTALL): Use it.
22997         (INSTALL.ISO, INSTALL.UTF-8): New rules.
22998
22999 2008-08-26  Bruno Haible  <bruno@clisp.org>
23000
23001         Run makeinfo in an English locale.
23002         * doc/Makefile (MAKEINFO): New variable.
23003
23004 2008-08-26  Bruno Haible  <bruno@clisp.org>
23005
23006         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
23007         Suggested by Eric Blake.
23008
23009 2008-08-25  Bruno Haible  <bruno@clisp.org>
23010
23011         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
23012
23013 2008-08-25  Eric Blake  <ebb9@byu.net>
23014
23015         c-stack: test that stack overflow can be caught
23016         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
23017         that platform allows handling stack overflow; at least OS/2 EMX
23018         has sigaltstack, but crashes before transferring control to
23019         handler on stack overflow.
23020         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
23021         check for HAVE_STACK_OVERFLOW_HANDLING.
23022         Reported by Elbert Pol.
23023
23024 2008-08-25  Bruno Haible  <bruno@clisp.org>
23025
23026         * doc/posix-functions/strftime.texi: Fix description of strftime
23027         module.
23028
23029 2008-08-24  Bruno Haible  <bruno@clisp.org>
23030
23031         * tests/uniwidth/test-uc_width2.c: New file.
23032         * tests/uniwidth/test-uc_width2.sh: New file.
23033         * modules/uniwidth/width-tests (Files): Add the new files.
23034         (TESTS): Add uniwidth/test-uc_width2.sh.
23035         (TESTS_ENVIRONMENT): New variable.
23036         (check_PROGRAMS): Add test-uc_width2.
23037         (test_uc_width2_SOURCES): New variable.
23038
23039         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
23040         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
23041         not 0x00AB.
23042         Reported by Alexander V. Lukyanov <lav@netis.ru>.
23043
23044 2008-08-22  Eric Blake  <ebb9@byu.net>
23045
23046         test-lock, test-tls: mention why a test is skipped
23047         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
23048         skipped.
23049         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
23050
23051         count-one-bits: relax license
23052         * modules/count-one-bits (License): Relicense to LGPLv2+.
23053         Suggested by Ludovic Courtès, approved by Ben Pfaff.
23054
23055 2008-08-22  Andreas Schwab  <schwab@suse.de>
23056
23057         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
23058         Remove spurious space in assignment.
23059
23060 2008-08-21  Simon Josefsson  <simon@josefsson.org>
23061
23062         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
23063         Paul Eggert <eggert@CS.UCLA.EDU>.
23064
23065 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
23066
23067         * modules/gettext: Add m4/threadlib.m4.
23068
23069 2008-08-19  Eric Blake  <ebb9@byu.net>
23070
23071         test-c-stack: fix compilation failure on FreeBSD 5.0
23072         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
23073         headers before <sys/resource.h>.
23074         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
23075         the bug.
23076         Reported by Nelson H. F. Beebe.
23077
23078         strverscmp: migrate from "strverscmp.h" to <string.h>
23079         * modules/string (Makefile.am): Add new hooks.
23080         * modules/strverscmp (Files): Remove strverscmp.h.
23081         (Depends-on): Add string.
23082         (configure.ac): Add indicator.
23083         (Include): Mention new header.
23084         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
23085         defaults.
23086         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
23087         results.
23088         * lib/strverscmp.h: Delete.
23089         * lib/string.in.h (strverscmp): Provide declaration, when needed.
23090         * tests/test-strverscmp.c (includes): Adjust client.
23091         * lib/check-version.c (includes): Likewise.
23092         * NEWS: Document the change.
23093
23094         strverscmp: add unit test
23095         * modules/strverscmp-tests: New file.
23096         * tests/test-strverscmp.c: Likewise.
23097
23098 2008-08-19  Simon Josefsson  <simon@josefsson.org>
23099
23100         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
23101         regarding Windows crypto stuff, from Mono.
23102
23103 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
23104
23105         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
23106         if present, for intel RND.  Return error on failures.
23107
23108 2008-08-18  Ben Pfaff  <blp@gnu.org>
23109
23110         gitlog-to-changelog: give better diagnostic for failed pipe-open
23111         * build-aux/gitlog-to-changelog: Improve error message: suggest
23112         that the version of Git may be too old.
23113
23114 2008-08-18  Simon Josefsson  <simon@josefsson.org>
23115
23116         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
23117         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
23118
23119 2008-08-18  Bruno Haible  <bruno@clisp.org>
23120
23121         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
23122         pthread_in_use().
23123
23124 2008-08-18  Bruno Haible  <bruno@clisp.org>
23125
23126         * lib/glthread/threadlib.c: Include <pthread.h>.
23127
23128 2008-08-18  Bruno Haible  <bruno@clisp.org>
23129
23130         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
23131         glthread_recursive_lock_* macros.
23132         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
23133         Fix syntax error.
23134
23135 2008-08-18  Bruno Haible  <bruno@clisp.org>
23136
23137         * lib/glthread/thread.c: Avoid forcing a context switch right after
23138         thread creation.
23139
23140 2008-08-17  Bruno Haible  <bruno@clisp.org>
23141
23142         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
23143         * lib/glthread/thread.h: Provide Win32 specific implementation.
23144         * modules/thread (Files): Add lib/glthread/thread.c.
23145         (Depends-on): Add lock.
23146         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
23147
23148 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23149
23150         New module 'yield'.
23151         * modules/yield: New file.
23152         * lib/glthread/yield.h: New file.
23153         * m4/yield.m4: New file.
23154         * MODULES.html.sh (Multithreading): Add yield.
23155
23156 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23157
23158         New module 'thread'.
23159         * modules/thread: New file.
23160         * lib/glthread/thread.h: New file.
23161         * m4/thread.m4: New file.
23162         * MODULES.html.sh (Multithreading): Add thread.
23163
23164 2008-08-17  Bruno Haible  <bruno@clisp.org>
23165
23166         * lib/glthread/lock.h: Include <stdlib.h> always.
23167         * lib/glthread/tls.h: Likewise.
23168         * lib/glthread/cond.h: Likewise.
23169
23170 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23171
23172         New module 'cond'.
23173         * modules/cond: New file.
23174         * lib/glthread/cond.h: New file.
23175         * lib/glthread/cond.c: New file.
23176         * m4/cond.m4: New file.
23177         * MODULES.html.sh (Multithreading): Add cond.
23178
23179 2008-08-16  Eric Blake  <ebb9@byu.net>
23180
23181         c-stack: fix regression on Irix 5.3 from 2008-06-21
23182         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
23183         sa_sigaction...
23184         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
23185         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
23186         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
23187         * modules/signal (Makefile.am): Use the value.
23188         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
23189         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
23190         * doc/posix-headers/signal.texi (signal.h): Document this
23191         portability issue.
23192         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
23193         Reported by Tom G. Christensen.
23194
23195 2008-08-17  Bruno Haible  <bruno@clisp.org>
23196
23197         New module 'threadlib'.
23198         * modules/threadlib: New file.
23199         * lib/glthread/threadlib.c: New file, extracted from
23200         lib/glthread/lock.c.
23201         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
23202         functions.
23203         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
23204         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
23205         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
23206         macros.
23207         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
23208         (gl_DISABLE_THREADS): Remove macro.
23209         * modules/lock (Files): Remove build-aux/config.rpath.
23210         (Depends-on): Remove havelib. Add threadlib.
23211         (configure.ac-early): Remove section.
23212         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
23213         * modules/tls (Depends-on): Remove lock. Add threadlib.
23214         (Link): New section, copied from threadlib.
23215         * MODULES.html.sh (Multithreading): Add threadlib.
23216
23217 2008-08-14  Bruno Haible  <bruno@clisp.org>
23218
23219         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
23220         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
23221         glthread_rwlock_unlock, glthread_rwlock_destroy,
23222         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
23223         glthread_recursive_lock_destroy): Define as macros always.
23224         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
23225         glthread_lock_lock.
23226         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
23227         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
23228         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
23229         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
23230         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
23231         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
23232         (glthread_recursive_lock_lock_func): Renamed from
23233         glthread_recursive_lock_lock.
23234         (glthread_recursive_lock_unlock_func): Renamed from
23235         glthread_recursive_lock_unlock.
23236         (glthread_recursive_lock_destroy_func): Renamed from
23237         glthread_recursive_lock_destroy.
23238
23239 2008-08-14  Bruno Haible  <bruno@clisp.org>
23240
23241         * lib/glthread/lock.h: Renamed from lib/lock.h.
23242         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
23243         * lib/glthread/tls.h: Renamed from lib/tls.h.
23244         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
23245         * lib/fstrcmp.c: Update includes.
23246         * lib/strsignal.c: Update includes.
23247         * modules/lock (Files, Makefile.am): Update.
23248         (Include): Change to "glthread/lock.h".
23249         * modules/tls (Files, Makefile.am): Update.
23250         (Include): Change to "glthread/tls.h".
23251         * tests/test-lock.c: Update includes.
23252         * tests/test-tls.c: Update includes.
23253         * NEWS: Mention the renamed header files.
23254
23255 2008-08-11  Jim Meyering  <meyering@redhat.com>
23256
23257         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
23258
23259 2008-08-11  Eric Blake  <ebb9@byu.net>
23260
23261         test-c-stack: avoid C99-ism
23262         * tests/test-c-stack.c (main): Fix whitespace, move declaration
23263         before statement.
23264         Reported by Alain Guibert.
23265
23266 2008-08-10  Jim Meyering  <meyering@redhat.com>
23267
23268         ensure that return value of uinttostr et al are not ignored
23269         * lib/inttostr.h (__GNUC_PREREQ): Define.
23270         (__attribute_warn_unused_result__): Define.
23271         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
23272
23273 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
23274
23275         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
23276         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
23277
23278 2008-08-07  Jim Meyering  <meyering@redhat.com>
23279
23280         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
23281
23282         * modules/mkstemp (License): Relicense under LGPLv2+.
23283         * modules/tempname (License): Likewise.
23284
23285 2008-08-06  Bruno Haible  <bruno@clisp.org>
23286
23287         * lib/poll.c (poll): Further micro-optimization.
23288
23289 2008-08-06  Jim Meyering  <meyering@redhat.com>
23290
23291         inet_pton.c: use locale-independent tolower
23292         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
23293         (inet_pton6): Use c_tolower rather than tolower.
23294         * modules/inet_pton (Depends-on): Add c-ctype.
23295
23296 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
23297
23298         * lib/poll.c (poll): Avoid division when timeout is 0, cache
23299         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
23300
23301 2008-08-06  Jim Meyering  <meyering@redhat.com>
23302
23303         * modules/inet_pton (License): Relicense under LGPLv2+.
23304
23305 2008-08-03  Bruno Haible  <bruno@clisp.org>
23306
23307         Additional non-aborting API for lock and tls.
23308         * lib/lock.h: Include <errno.h>.
23309         (glthread_lock_init): New macro/function.
23310         (gl_lock_init): Define as wrapper around glthread_lock_init.
23311         (glthread_lock_lock): New macro/function.
23312         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
23313         (glthread_lock_unlock): New macro/function.
23314         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
23315         (glthread_lock_destroy): New macro/function.
23316         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
23317         (glthread_rwlock_init): New macro/function.
23318         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
23319         (glthread_rwlock_rdlock): New macro/function.
23320         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
23321         (glthread_rwlock_wrlock): New macro/function.
23322         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
23323         (glthread_rwlock_unlock): New macro/function.
23324         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
23325         (glthread_rwlock_destroy): New macro/function.
23326         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
23327         (glthread_recursive_lock_init): New macro/function.
23328         (gl_recursive_lock_init): Define as wrapper around
23329         glthread_recursive_lock_init.
23330         (glthread_recursive_lock_lock): New macro/function.
23331         (gl_recursive_lock_lock): Define as wrapper around
23332         glthread_recursive_lock_lock.
23333         (glthread_recursive_lock_unlock): New macro/function.
23334         (gl_recursive_lock_unlock): Define as wrapper around
23335         glthread_recursive_lock_unlock.
23336         (glthread_recursive_lock_destroy): New macro/function.
23337         (gl_recursive_lock_destroy): Define as wrapper around
23338         glthread_recursive_lock_destroy.
23339         (glthread_once): New macro/function.
23340         (gl_once): Define as wrapper around glthread_once.
23341         Update function declarations.
23342         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
23343         glthread_rwlock_init. Return error code.
23344         (glthread_rwlock_rdlock_multithreaded): Renamed from
23345         glthread_rwlock_rdlock. Return error code.
23346         (glthread_rwlock_wrlock_multithreaded): Renamed from
23347         glthread_rwlock_wrlock. Return error code.
23348         (glthread_rwlock_unlock_multithreaded): Renamed from
23349         glthread_rwlock_unlock. Return error code.
23350         (glthread_rwlock_destroy_multithreaded): Renamed from
23351         glthread_rwlock_destroy. Return error code.
23352         (glthread_recursive_lock_init_multithreaded): Renamed from
23353         glthread_recursive_lock_init. Return error code.
23354         (glthread_recursive_lock_lock_multithreaded): Renamed from
23355         glthread_recursive_lock_lock. Return error code.
23356         (glthread_recursive_lock_unlock_multithreaded): Renamed from
23357         glthread_recursive_lock_unlock. Return error code.
23358         (glthread_recursive_lock_destroy_multithreaded): Renamed from
23359         glthread_recursive_lock_destroy. Return error code.
23360         (glthread_once_call): Make static.
23361         (glthread_once_multithreaded): Renamed from glthread_once.
23362         * lib/tls.h: Include <errno.h>.
23363         (glthread_tls_key_init): New macro/function.
23364         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
23365         (glthread_tls_set): New macro/function.
23366         (gl_tls_set): Define as wrapper around glthread_tls_set.
23367         (glthread_tls_key_destroy): New macro/function.
23368         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
23369         Update function declarations.
23370         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
23371         glthread_tls_get.
23372         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
23373
23374 2008-08-04  Eric Blake  <ebb9@byu.net>
23375
23376         gnumakefile: use space, not TAB, outside of targets
23377         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
23378
23379 2008-08-02  Jim Meyering  <meyering@redhat.com>
23380
23381         getdate.y: avoid locale-dependent date parsing failure
23382         In Turkish locales, getdate would fail to recognize keywords
23383         containing a lowercase "i".  The solution is not to rely on
23384         locale-sensitive case-conversion.
23385         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
23386         (lookup_word): Use c_toupper in place of toupper.
23387         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
23388         Reported by Vefa Bicakci <bicave@superonline.com> in
23389         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
23390         * modules/getdate (Depends-on): Add c-ctype.
23391
23392 2008-08-02  Bruno Haible  <bruno@clisp.org>
23393
23394         * gnulib-tool (func_import): When updating or creating a .gitignore
23395         file, prepend each added line with a slash, and ignore leading slashes
23396         from the existing lines.
23397         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
23398
23399 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23400
23401         Portability fix for GNU make 3.79.1.
23402         * top/GNUmakefile: Avoid 'else COND', which older GNU make
23403         versions do not understand.
23404
23405 2008-08-01  Bruno Haible  <bruno@clisp.org>
23406
23407         Work around bug of HP-UX 10.20 cc with -0.0 literal.
23408         * tests/test-isnanf.h (zero): New variable.
23409         (main): Avoid literal -0.0f.
23410         * tests/test-isnand.h (zero): New variable.
23411         (main): Avoid literal -0.0.
23412         * tests/test-isnanl.h (zero): New variable.
23413         (main): Avoid literal -0.0L.
23414         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
23415         (test_float, test_double, test_long_double): Avoid literals -0.0f,
23416         -0.0, -0.0L.
23417         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
23418         (test_signbitd): Avoid literal -0.0.
23419         (test_signbitl): Avoid literal -0.0L.
23420         * tests/test-ceilf1.c (zero): New variable.
23421         (main): Avoid literal -0.0f.
23422         * tests/test-ceill.c (zero): New variable.
23423         (main): Avoid literal -0.0L.
23424         * tests/test-floorf1.c (zero): New variable.
23425         (main): Avoid literal -0.0f.
23426         * tests/test-floorl.c (zero): New variable.
23427         (main): Avoid literal -0.0L.
23428         * tests/test-roundf1.c (zero): New variable.
23429         (main): Avoid literal -0.0f.
23430         * tests/test-round1.c (zero): New variable.
23431         (main): Avoid literal -0.0.
23432         * tests/test-roundl.c (zero): New variable.
23433         (main): Avoid literal -0.0L.
23434         * tests/test-truncf1.c (zero): New variable.
23435         (main): Avoid literal -0.0f.
23436         * tests/test-trunc1.c (zero): New variable.
23437         (main): Avoid literal -0.0.
23438         * tests/test-truncl.c (zero): New variable.
23439         (main): Avoid literal -0.0L.
23440         * tests/test-frexp.c (zero): New variable.
23441         (main): Avoid literal -0.0.
23442         * tests/test-frexpl.c (zero): New variable.
23443         (main): Avoid literal -0.0L.
23444         * tests/test-ldexpl.c (zero): New variable.
23445         (main): Avoid literal -0.0L.
23446         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
23447         (zerod, zerol): New variables.
23448         (test_function): Avoid literals -0.0, -0.0L.
23449         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
23450         (zerod, zerol): New variables.
23451         (test_function): Avoid literals -0.0, -0.0L.
23452         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
23453         (zerod, zerol): New variables.
23454         (test_function): Avoid literals -0.0, -0.0L.
23455         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
23456         (zerod, zerol): New variables.
23457         (test_function): Avoid literals -0.0, -0.0L.
23458         * tests/test-strtod.c (zero): New variable.
23459         (main): Avoid literal -0.0.
23460         Reported by Jonathan C. Patschke <jp@centtech.com>.
23461
23462 2008-07-31  Jim Meyering  <meyering@redhat.com>
23463
23464         sha256.h: correct definition of SHA224_DIGEST_SIZE
23465         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
23466         Reported by Paulie Pena IV <paulie4@gmail.com>.
23467         Define as 224 / 8, rather than as a literal.
23468         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
23469         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
23470         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
23471
23472 2008-07-31  Bruno Haible  <bruno@clisp.org>
23473
23474         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
23475         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
23476         Reported by Jonathan Patschke <jp@centtech.com>.
23477
23478 2008-07-31  Bruno Haible  <bruno@clisp.org>
23479
23480         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
23481         Reported by Paolo Bonzini <bonzini@gnu.org>.
23482
23483 2008-07-30  Eric Blake  <ebb9@byu.net>
23484
23485         test-strtod: allow compilation without -lm
23486         * tests/test-strtod.c (main): Avoid link dependence on fabs.
23487         Reported by Dennis Clarke <blastwave@gmail.com>.
23488
23489 2008-07-28  Jim Meyering  <meyering@redhat.com>
23490
23491         bootstrap: work also when there are no .po files in po/
23492         * build-aux/bootstrap (update_po_files): Complete the change
23493         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
23494
23495 2008-07-27  Jim Meyering  <meyering@redhat.com>
23496
23497         * users.txt: Add zile.
23498
23499 2008-07-26  Ben Pfaff  <blp@gnu.org>
23500
23501         Add missing dependencies on new m4/exponent[fdl].m4 files.
23502         * modules/isnanf-nolibm: Add m4/exponentf.m4.
23503         * modules/isnand-nolibm: Add m4/exponentd.m4.
23504         * modules/isnanl-nolibm: Add m4/exponentl.m4.
23505         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
23506         m4/isnan[fdl].m4, because the macros actually used moved.
23507         Reported by Jim Meyering.
23508
23509 2008-07-14  Ben Pfaff  <blp@gnu.org>
23510
23511         Add isinf module.
23512         * lib/isinf.c: New file.
23513         * lib/math.in.h: Define isinf macro if we have decided to replace
23514         it.
23515         * m4/isinf.m4: New file.
23516         * m4/math_h.m4: Initialize and substitute variables for isinf
23517         module.
23518         * modules/isinf: New file.
23519         * modules/isinf-tests: New file.
23520         * modules/math: Add substitutions for new module.
23521         * tests/test-isinf.c: New file.
23522         * doc/posix-functions/isinf.texi: Mention new module.
23523         * MODULES.html.sh: Mention new module.
23524
23525 2008-07-14  Ben Pfaff  <blp@gnu.org>
23526
23527         Factor out some macros for use by additional modules.
23528         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
23529         exponentf.m4.
23530         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
23531         exponentd.m4.
23532         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
23533         file exponentl.m4.
23534         * m4/exponentf.m4: New file.
23535         * m4/exponentd.m4: New file.
23536         * m4/exponentl.m4: New file.
23537         * modules/isnanf: Use new file m4/exponentf.m4.
23538         * modules/isnand: Use new file m4/exponentd.m4.
23539         * modules/isnanl: Use new file m4/exponentl.m4.
23540
23541 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
23542
23543         mktime.c: normalize tp->tm_isdst value to -1/0/1.
23544         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
23545         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
23546         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
23547
23548         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
23549         readlink on platforms without PATH_MAX.
23550
23551 2008-07-21  Eric Blake  <ebb9@byu.net>
23552
23553         Warn, not fail, on stale version.
23554         * top/GNUmakefile (_curr-ver): Tone down previous patch.
23555
23556         Don't allow installation with stale devel version number.
23557         * top/GNUmakefile (_is-install-target): New macro.
23558         (_curr-ver): Forbid installation with stale version number.
23559
23560 2008-07-20  Bruno Haible  <bruno@clisp.org>
23561
23562         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
23563         TESTS_ENVIRONMENT.
23564         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
23565
23566 2008-07-20  Bruno Haible  <bruno@clisp.org>
23567
23568         * lib/c-stack.h (c_stack_action): Add documentation.
23569         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
23570
23571 2008-07-20  Bruno Haible  <bruno@clisp.org>
23572
23573         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
23574         * modules/readlink (License): Likewise.
23575
23576 2008-07-17  Eric Blake  <ebb9@byu.net>
23577
23578         * modules/c-stack (Link): Fix typo.
23579
23580         Make c-stack use libsigsegv, when available.
23581         * modules/c-stack (Depends-on): Add libsigsegv.
23582         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
23583         needed.
23584         * lib/c-stack.c (SIGSTKSZ): Define fallback.
23585         (segv_handler, overflow_handler, c_stack_action)
23586         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
23587         implementation when libsigsegv is available, but only when using
23588         the library is necessary.
23589         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
23590         comment, explaining why XSI check fails on Linux.
23591         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
23592         * tests/test-c-stack2.sh: Tweak skip message.
23593         * NEWS: Document new link-time requirements.
23594
23595 2008-07-16  Eric Blake  <ebb9@byu.net>
23596
23597         c-stack: Expose false positives when not using libsigsegv.
23598         * modules/c-stack-tests (Files): Expand test.
23599         * tests/test-c-stack.c (main): Add means to conditionally trigger
23600         non-overflow SIGSEGV.
23601         * tests/test-c-stack2.sh: New file.
23602
23603 2008-07-14  Bruno Haible  <bruno@clisp.org>
23604
23605         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
23606         Reported by Eric Blake.
23607
23608 2008-07-14  Sam Steingold  <sds@gnu.org>
23609             Bruno Haible  <bruno@clisp.org>
23610
23611         New module libsigsegv.
23612         * modules/libsigsegv: New file.
23613         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
23614         modifications.
23615         * MODULES.html.sh (Signal handling): New section.
23616
23617 2008-07-14  Bruno Haible  <bruno@clisp.org>
23618
23619         * modules/unictype/ctype-* (Description): Add the word "function".
23620         Improves the resulting doc in MODULES.html.
23621
23622 2008-07-12  Ben Pfaff  <blp@gnu.org>
23623
23624         Add longlong module.
23625         * modules/longlong: New file.
23626
23627 2008-07-12  Bruno Haible  <bruno@clisp.org>
23628
23629         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
23630         to empty.
23631
23632 2008-07-10  Ben Pfaff  <blp@gnu.org>
23633
23634         Add isnan module.
23635         * doc/posix-functions/isnan.texi: Mention new module.
23636         * lib/math.in.h: Define isnan macro if we have decided to replace
23637         it.
23638         * m4/isnan.m4: New file.
23639         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
23640         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
23641         also.
23642         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
23643         redundancy.
23644         * m4/math_h.m4: Initialize and substitute variables for isnan
23645         module.
23646         * modules/isnan: New file.
23647         * modules/isnan-tests: New file.
23648         * modules/math: Add substitutions for new module.
23649         * tests/test-isnan.c: New file.
23650         * MODULES.html.sh: Mention new module.
23651
23652 2008-07-10  Ben Pfaff  <blp@gnu.org>
23653
23654         Add isnanf module.
23655         * lib/isnanf.m4: New file.
23656         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
23657         (gl_HAVE_ISNANF_IN_LIBM): New macro.
23658         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
23659         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
23660         * modules/isnanf: New file.
23661         * modules/isnanf-tests: New file.
23662         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
23663         files.
23664         * tests/test-isnanf-nolibm.c: factored most of its contents into
23665         new file tests/test-isnanf.h.
23666         * tests/test-isnanf.h: New file.
23667         * tests/test-isnanf.c: New file.
23668         * MODULES.html.sh: Mention new module.
23669         * doc/glibc-functions/isnanf.texi: Mention new module.
23670
23671 2008-07-10  Ben Pfaff  <blp@gnu.org>
23672
23673         Add isnand module.
23674         * lib/isnand.h: New file.
23675         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
23676         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
23677         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
23678         functionality also.
23679         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
23680         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
23681         (gl_HAVE_ISNAND_IN_LIBM): New macro.
23682         * modules/isnand: New file.
23683         * modules/isnand-tests: New file.
23684         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
23685         files.
23686         * tests/test-isnand-nolibm.c: factored most of its contents into
23687         new file tests/test-isnand.h.
23688         * tests/test-isnand.h: New file.
23689         * tests/test-isnand.c: New file.
23690         * MODULES.html.sh: Mention new module.
23691
23692 2008-07-10  Ben Pfaff  <blp@gnu.org>
23693
23694         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
23695         * lib/isnand.h: Rename lib/isnand-nolibm.h.
23696         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
23697         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
23698         * modules/isnanf-nolibm: Update references to renamed files.
23699         * modules/isnand-nolibm: Likewise.
23700         * modules/isnanf-nolibm-tests: Likewise.
23701         * modules/isnand-nolibm-tests: Likewise.
23702         * lib/frexp.c: Likewise.
23703         * lib/isfinite.c: Likewise.
23704         * lib/signbitd.c: Likewise.
23705         * lib/signbitf.c: Likewise.
23706         * lib/vasnprintf.c: Likewise.
23707         * tests/test-ceilf1.c: Likewise.
23708         * tests/test-ceilf2.c: Likewise.
23709         * tests/test-floorf1.c: Likewise.
23710         * tests/test-floorf2.c: Likewise.
23711         * tests/test-frexp.c: Likewise.
23712         * tests/test-round1.c: Likewise.
23713         * tests/test-round2.c: Likewise.
23714         * tests/test-roundf1.c: Likewise.
23715         * tests/test-strtod.c: Likewise.
23716         * tests/test-trunc1.c: Likewise.
23717         * tests/test-trunc2.c: Likewise.
23718         * tests/test-truncf1.c: Likewise.
23719         * tests/test-truncf2.c: Likewise.
23720         * NEWS: Mention the renamed header files.
23721
23722 2008-07-11  Jim Meyering  <meyering@redhat.com>
23723
23724         vc-list-files: make the last-resort awk code more portable
23725         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
23726         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
23727         does not support it.
23728
23729 2008-07-10  Eric Blake  <ebb9@byu.net>
23730
23731         Work with tar's bootstrap.
23732         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
23733         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
23734         an m4 comment.
23735
23736 2008-07-09  Jim Meyering  <meyering@redhat.com>
23737
23738         posix-shell.m4: fix typo that made this test malfunction
23739         * m4/posix-shell.m4: Remove capitalization in variable name.
23740
23741 2008-07-08  Bruno Haible  <bruno@clisp.org>
23742
23743         * m4/onceonly.m4: Update comments.
23744         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23745
23746 2008-07-04  Jim Meyering  <meyering@redhat.com>
23747
23748         * users.txt: Add vc-dwim.
23749         (bison, coreutils): Use the gitweb URL.
23750
23751 2008-07-03  Jim Meyering  <meyering@redhat.com>
23752
23753         * users.txt: Add libffcall.  From Sam Steingold.
23754
23755 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
23756
23757         getdate.y: do not ignore TZ with relative day, month or year offset
23758         * lib/getdate.y (get_date): Move the tz-handling block to follow the
23759         relative-date-handling, since otherwise, the latter would clobber the
23760         sole output (an updated Start value) of the tz-handling block.
23761         * tests/test-getdate.c: Tests for the fix
23762
23763 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23764
23765         Recognize 'foo_LIBRARIES += libgnu.a'.
23766         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
23767         makefile snippet has already specified an installation location,
23768         also using '+='.
23769
23770 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
23771
23772         getdate.y: factor out common actions
23773         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
23774         Use them in place of open-coded actions.
23775
23776 2008-07-01  Simon Josefsson  <simon@josefsson.org>
23777
23778         Add self-test for getdate module.
23779         * modules/getdate-tests: New file.
23780         * tests/test-getdate.c: New file.
23781
23782 2008-06-29  Bruno Haible  <bruno@clisp.org>
23783
23784         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
23785         .gitignore.
23786         Reported by Sylvain Beucler <beuc@beuc.net>.
23787
23788 2008-06-29  Bruno Haible  <bruno@clisp.org>
23789
23790         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
23791         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
23792
23793 2008-06-29  Bruno Haible  <bruno@clisp.org>
23794
23795         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
23796         EXTRA_DIST.
23797         Reported by Sylvain Beucler <beuc@beuc.net>.
23798
23799 2008-06-26  Jim Meyering  <meyering@redhat.com>
23800
23801         make several modules depend on the "open" module
23802         This provides slightly increased consistency when opening-for-write
23803         the name of a non-directory spelled with a trailing slash.
23804         * modules/chdir-safer: Likewise.
23805         * modules/chown: Likewise.
23806         * modules/clean-temp: Likewise.
23807         * modules/copy-file: Likewise.
23808         * modules/fchdir: Likewise.
23809         * modules/fcntl-safer: Likewise.
23810         * modules/pipe: Likewise.
23811         * modules/utime: Likewise.
23812         Prompted by Eric Blake and Bruno Haible.
23813
23814 2008-06-24  Andreas Schwab  <schwab@suse.de>
23815
23816         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
23817         literals can be used as initializers for global variables.
23818
23819 2008-06-23  Eric Blake  <ebb9@byu.net>
23820
23821         Make gnulib-cache.m4 easier to diff.
23822         * gnulib-tool (func_import): Allow newlines when reading cached
23823         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
23824
23825 2008-06-23  Bruno Haible  <bruno@clisp.org>
23826
23827         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
23828         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
23829         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
23830         m4/signalblocking.m4.
23831         (gl_PREREQ_SIGACTION): Don't invoke it.
23832         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
23833         gl_PREREQ_SIG_HANDLER_H.
23834         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
23835         Don't check for sigaction here.
23836
23837 2008-06-23  Bruno Haible  <bruno@clisp.org>
23838
23839         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
23840         (install_handlers): Don't set the SA_RESETHAND flag.
23841
23842 2008-06-23  Bruno Haible  <bruno@clisp.org>
23843
23844         * m4/sigaction.m4: Comment fixes.
23845         * lib/signal.in.h: Likewise.
23846
23847 2008-06-23  Eric Blake  <ebb9@byu.net>
23848
23849         Fix typo.
23850         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
23851
23852         Avoid SA_ namespace.
23853         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
23854         Reported by Ralf Wildenhues.
23855
23856         Avoid test failure due to SA_RESTORER.
23857         * tests/test-sigaction.c (SA_MASK): New macro.
23858         (main): Avoid failing due to extension flags being set.
23859         Reported by Jim Meyering.
23860
23861         Revert use of sig-handler.h in sigprocmask.c.
23862         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
23863         it requires the existence of struct sigaction.
23864         * lib/sigprocmask.c (handler_t): Restore typedef.
23865         (rpl_signal, old_handlers): Use local type.
23866
23867 2008-06-22  Bruno Haible  <bruno@clisp.org>
23868
23869         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
23870         conditionally.
23871         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23872
23873 2008-06-22  Bruno Haible  <bruno@clisp.org>
23874
23875         * doc/posix-functions/siginterrupt.texi: Move note.
23876
23877         * lib/signal.in.h (SA_RESTART): New macro.
23878         * lib/sigaction.c: Update comment.
23879
23880         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
23881
23882         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
23883         (gl_PREREQ_SIGPROCMASK): Invoke it.
23884         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
23885
23886         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
23887
23888         * lib/sigprocmask.c: Update a comment.
23889
23890 2008-06-21  Eric Blake  <ebb9@byu.net>
23891
23892         Use sigaction module rather than signal().
23893         * modules/c-stack (Depends-on): Add sigaction.
23894         * modules/fatal-signal (Depends-on): Likewise.
23895         * modules/nanosleep (Depends-on): Likewise.
23896         * modules/sigprocmask (Files): Add sig-handler.h.
23897         * modules/sigaction (Files): Likewise.
23898         * lib/sig-handler.h (get_handler): New file, suggested by Paul
23899         Eggert.
23900         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
23901         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
23902         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
23903         (init_fatal_signals): Likewise.
23904         * lib/nanosleep.c (rpl_nanosleep): Likewise.
23905         (siginterrupt): Delete fallback.
23906         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
23907         instead.
23908         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
23909         siginterrupt.
23910
23911         New module sigaction, for mingw.
23912         * modules/sigaction: New module...
23913         * modules/sigaction-tests: ...and its test.
23914         * m4/sigaction.m4: New file.
23915         * lib/sigaction.c: Likewise.
23916         * tests/test-sigaction.c: Likewise.
23917         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
23918         * modules/signal (Makefile.am): Likewise.
23919         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
23920         needed.
23921         * doc/posix-headers/signal.texi (signal.h): Mention provided
23922         types.
23923         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
23924         that sigaction is preferable.
23925         * doc/posix-functions/sigaction.texi (sigaction): Mention new
23926         module.
23927         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23928         sigaction.
23929
23930         Improve robustness of sigprocmask by overriding signal.
23931         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
23932         is in use.
23933         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
23934         (SIGKILL, SIGSTOP): Provide fallbacks.
23935         (rpl_signal): Implement.
23936         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
23937         signal can be called inside handlers.
23938
23939         Fix nanosleep module on mingw.
23940         * modules/nanosleep (Depends-on): Add sys_select.
23941         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
23942
23943         Fix licensing of sigprocmask.
23944         * modules/raise (License): Relicense as LGPL.
23945
23946 2008-06-21  Bruno Haible  <bruno@clisp.org>
23947
23948         * lib/propername.c (proper_name_utf8): Don't use the transliterated
23949         result if it contains question marks.
23950         Reported by Michael Geng <linux@michaelgeng.de>.
23951
23952 2008-06-19  Bruno Haible  <bruno@clisp.org>
23953
23954         Fix CVS-ism.
23955         * doc/gnulib.texi: Include updated-stamp.texi.
23956         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
23957         (updated-stamp.texi): New rule.
23958         (gnulib.info): Depend on it.
23959         * doc/.gitignore: Add updated-stamp.texi.
23960         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
23961
23962 2008-06-19  Bruno Haible  <bruno@clisp.org>
23963
23964         * doc/Makefile (gnulib.info): Update and simplify dependencies.
23965         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
23966
23967 2008-06-19  Eric Blake  <ebb9@byu.net>
23968
23969         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
23970         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
23971         Reported by Stepan Kasal.
23972
23973 2008-06-18  Bruno Haible  <bruno@clisp.org>
23974
23975         * lib/fatal-signal.c (init_fatal_signals): Add comment.
23976         Reported by Eric Blake.
23977
23978 2008-06-18  Eric Blake  <ebb9@byu.net>
23979
23980         Work around cygwin 1.5.25 strsignal bug.
23981         * tests/test-strsignal.c: Allow for const char *.
23982         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
23983
23984 2008-06-18  Simon Josefsson  <simon@josefsson.org>
23985
23986         * users.txt: Update URL to article and add author/date
23987         information.
23988
23989 2008-06-17  Bruno Haible  <bruno@clisp.org>
23990
23991         New macro gl_DISABLE_THREADS.
23992         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
23993         if the user did not pass --enable-threads or --disable-threads option.
23994         (gl_DISABLE_THREADS): New macro.
23995         Reported by Eric Blake <ebb9@byu.net>.
23996
23997 2008-06-17  Bruno Haible  <bruno@clisp.org>
23998
23999         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
24000         when the macro ignores it.
24001         Based on a patch by Eric Blake <ebb9@byu.net>.
24002
24003 2008-06-17  Bruno Haible  <bruno@clisp.org>
24004
24005         * modules/tls (License): Change to LGPLv2+.
24006         Reported by Eric Blake.
24007
24008 2008-06-17  Eric Blake  <ebb9@byu.net>
24009
24010         Simplify c-stack prerequisites.
24011         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
24012         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
24013         no longer requires <ucontext.h> to exist.  Optimize setrlimit
24014         check.
24015         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
24016         <sys/resource.h>.
24017
24018         Move c-stack test into testsuite.
24019         * modules/c-stack-tests: New file.
24020         * lib/c-stack.c [DEBUG]: Move test program...
24021         * tests/test-c-stack.c: ...into this new file.  Skip rather than
24022         fail test if sigaltstack is lacking.
24023         * tests/test-c-stack.sh: New driver file.
24024
24025 2008-06-16  Eric Blake  <ebb9@byu.net>
24026
24027         Use raise module consistently.
24028         * modules/fatal-signal (Depends-on): Add raise.
24029         * modules/sigprocmask (Depends-on): Likewise.
24030         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
24031         * lib/sigprocmask.c (sigprocmask): Likewise.
24032         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
24033         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
24034
24035         Fix compliance bug in sigpending.
24036         * lib/sigprocmask.c (sigpending): Return pending array via
24037         parameter, not return value.
24038
24039 2008-06-14  Eric Blake  <ebb9@byu.net>
24040
24041         Improve obstack-printf test code.
24042         * tests/test-obstack-printf.c (test_function): Fix comment, and
24043         simplify usage of obstack_* in macros.  Add a test for coverage.
24044         Reported by Bruno Haible.
24045
24046 2008-06-14  Bruno Haible  <bruno@clisp.org>
24047
24048         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
24049         array size as a constant, not as a const variable.
24050         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
24051         AC_USE_SYSTEM_EXTENSIONS.
24052         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
24053         Test whether the obstack_printf function actually exists.
24054         * modules/obstack-printf (Depends-on): Add extensions.
24055         (Include): Remove obstack.h.
24056         * modules/obstack-printf-posix (Depends-on): Add extensions.
24057         (Include): Remove obstack.h.
24058
24059 2008-06-13  Eric Blake  <ebb9@byu.net>
24060
24061         Add obstack-printf and obstack-printf-posix modules.
24062         * modules/obstack-printf: New file.
24063         * modules/obstack-printf-posix: Likewise.
24064         * MODULES.html.sh (Misc): Mention them.
24065         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
24066         Likewise.
24067         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
24068         Likewise.
24069         * modules/stdio (Makefile.am): Accomodate new modules.
24070         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
24071         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
24072         Declare.
24073         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
24074         functions.
24075         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
24076         (gl_REPLACE_OBSTACK_PRINTF): New macros
24077         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
24078         * tests/test-obstack-printf.c: New file.
24079         * modules/obstack-printf-tests: Likewise.
24080         * modules/obstack-printf-posix-tests: Likewise.
24081
24082 2008-06-11  Bruno Haible  <bruno@clisp.org>
24083
24084         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
24085         * lib/open.c: Include errno.h.
24086         (open): Fail when attempting to write to a file that has a trailing
24087         slash.
24088         * tests/test-open.c (main): Test against trailing slash bug.
24089         * doc/posix-functions/open.texi: Mention the trailing slash bug.
24090
24091 2008-06-10  Bruno Haible  <bruno@clisp.org>
24092
24093         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
24094         for $? to work inside the trap command, with various /bin/sh-s.
24095         * tests/test-vc-list-files-cvs.sh: Likewise.
24096
24097 2008-06-10  Bruno Haible  <bruno@clisp.org>
24098
24099         * lib/acl-internal.h: Don't include gettext.h here.
24100         * lib/set-mode-acl.c: Include gettext.h here.
24101         * lib/copy-acl.c: Likewise.
24102
24103 2008-06-10  Bruno Haible  <bruno@clisp.org>
24104
24105         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
24106         * lib/wait-process.c (wait_subprocess): Likewise.
24107         * lib/execute.h (execute): Add termsigp argument.
24108         * lib/execute.c (execute): Likewise.
24109         * lib/csharpcomp.c (compile_csharp_using_pnet,
24110         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
24111         * lib/csharpexec.c (execute_csharp_using_pnet,
24112         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
24113         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
24114         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
24115         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
24116         is_jikes_present): Update.
24117         * lib/javaexec.c (execute_java_class): Update.
24118         * lib/javaversion.c (execute_and_read_line): Update.
24119         * NEWS: Document the changes.
24120         Reported by Eric Blake.
24121
24122 2008-06-10  Eric Blake  <ebb9@byu.net>
24123
24124         Add missing include.
24125         * tests/test-strstr.c (includes): Add <signal.h>.
24126         * tests/test-strcasestr.c (includes): Likewise.
24127         * tests/test-memmem.c (includes): Likewise.
24128
24129 2008-06-10  Bruno Haible  <bruno@clisp.org>
24130
24131         * lib/wait-process.c (wait_subprocess): Add an assertion.
24132
24133 2008-06-10  Bruno Haible  <bruno@clisp.org>
24134
24135         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
24136
24137 2008-06-10  Bruno Haible  <bruno@clisp.org>
24138
24139         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
24140         using alarm().
24141         * tests/test-strcasestr.c (main): Likewise.
24142         * tests/test-strstr.c (main): Likewise.
24143
24144 2008-06-09  Bruno Haible  <bruno@clisp.org>
24145
24146         Work around the Solaris 10 ACE ACLs ABI change.
24147         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
24148         declare if ACL_NO_TRIVIAL is present.
24149         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
24150         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
24151         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
24152         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
24153         define if ACL_NO_TRIVIAL is present.
24154         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
24155         and use the current ABI.
24156         (file_has_acl): Use same #if condition as elsewhere.
24157         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
24158         in use, and use the current ABI.
24159         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
24160         Reported by Jim Meyering.
24161
24162 2008-06-09  Eric Blake  <ebb9@byu.net>
24163
24164         Work around environments that (stupidly) ignore SIGALRM.
24165         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
24166         before using alarm().
24167         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24168         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
24169         Reported by Ian Beckwith <ianb@erislabs.net>.
24170
24171         Produce autobuild blurb earlier in log.
24172         * modules/autobuild (configure.ac-early): Move AB_INIT here.
24173
24174 2008-06-09  Jim Meyering  <meyering@redhat.com>
24175         and OndÅ™ej Vašík  <ovasik@redhat.com>
24176
24177         utimens.c: correct kernel bug work-around
24178         OndÅ™ej Vašík found that the invalid return value of 280 indicates
24179         failure, not success, and the kernel bug we're trying to work
24180         around affects not just the utimensat call, but also the fallback
24181         futimens call.
24182         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
24183         not success.
24184         [HAVE_FUTIMENS]: Use the same work-around, here.
24185
24186 2008-06-09  Jim Meyering  <meyering@redhat.com>
24187
24188         add more guards around definition of ACE_-related code
24189         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
24190         ALLOW and ACE_OWNER are also defined.
24191
24192 2008-06-08  Bruno Haible  <bruno@clisp.org>
24193
24194         * lib/acl-internal.h: Add me as co-author.
24195         * lib/file-has-acl.c: Likewise.
24196         * lib/set-mode-acl.c: Likewise.
24197         * lib/copy-acl.c: Likewise.
24198
24199 2008-06-08  Bruno Haible  <bruno@clisp.org>
24200
24201         Add support for AIX ACLs.
24202         * lib/acl-internal.h (acl_nontrivial): New declaration.
24203         * lib/file-has-acl.c (acl_nontrivial): New function.
24204         (file_has_acl): Add implementation using AIX 4 ACL API.
24205         * lib/set-mode-acl.c (qset_acl): Likewise.
24206         * lib/copy-acl.c (qcopy_acl): Likewise.
24207
24208 2008-06-08  Bruno Haible  <bruno@clisp.org>
24209
24210         Add support for HP-UX ACLs.
24211         * lib/acl-internal.h (acl_nontrivial): New declaration.
24212         * lib/file-has-acl.c (acl_nontrivial): New function.
24213         (file_has_acl): Add implementation using HP-UX 11 ACL API.
24214         * lib/set-mode-acl.c (qset_acl): Likewise.
24215         * lib/copy-acl.c (qcopy_acl): Likewise.
24216
24217 2008-06-08  Bruno Haible  <bruno@clisp.org>
24218
24219         Add support for Cygwin ACLs.
24220         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
24221         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
24222         the chmod_or_fchmod call.
24223         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
24224
24225 2008-06-08  Bruno Haible  <bruno@clisp.org>
24226
24227         Fix bug with setuid modes in Solaris 10+ code.
24228         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
24229         succeeded, when the mode contains some special bits.
24230
24231 2008-06-08  Bruno Haible  <bruno@clisp.org>
24232
24233         Add support for Solaris 7..10 ACLs.
24234         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
24235         declarations.
24236         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
24237         functions.
24238         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
24239         * lib/set-mode-acl.c (qset_acl): Likewise.
24240         * lib/copy-acl.c (qcopy_acl): Likewise.
24241
24242 2008-06-08  Bruno Haible  <bruno@clisp.org>
24243
24244         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
24245         declaration.
24246         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
24247         (acl_access_nontrivial): Remove MacOS X case.
24248         (file_has_acl): Use acl_extended_nontrivial.
24249         * lib/copy-acl.c (qcopy_acl): Likewise.
24250
24251 2008-06-08  Bruno Haible  <bruno@clisp.org>
24252
24253         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
24254
24255 2008-06-08  Jim Meyering  <meyering@redhat.com>
24256
24257         * modules/acl (Maintainer): Add Bruno Haible.
24258
24259 2008-06-07  Bruno Haible  <bruno@clisp.org>
24260
24261         Improve support for Tru64 ACLs.
24262         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
24263         ACL on OSF/1.
24264
24265 2008-06-07  Bruno Haible  <bruno@clisp.org>
24266
24267         Add support for MacOS X ACLs.
24268         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
24269         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
24270         * lib/set-mode-acl.c (qset_acl): Likewise.
24271         * lib/copy-acl.c (qcopy_acl): Likewise.
24272
24273 2008-06-07  Bruno Haible  <bruno@clisp.org>
24274
24275         Fix memory leak introduced on 2008-05-22.
24276         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
24277         use.
24278
24279 2008-06-07  Bruno Haible  <bruno@clisp.org>
24280
24281         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
24282         to construct an empty ACL.
24283
24284 2008-06-07  Bruno Haible  <bruno@clisp.org>
24285
24286         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
24287         precisely.
24288         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
24289
24290 2008-06-07  Bruno Haible  <bruno@clisp.org>
24291
24292         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
24293         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
24294
24295 2008-06-07  Bruno Haible  <bruno@clisp.org>
24296
24297         * doc/posix-functions/_setjmp.texi: Explain the use of this function
24298         regardless of POSIX.
24299         * doc/posix-functions/_longjmp.texi: Likewise.
24300         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
24301         SystemV platform in this case.
24302
24303 2008-06-06  Eric Blake  <ebb9@byu.net>
24304
24305         Document abort() bugs.
24306         * doc/posix-functions/abort.texi (abort): Mention anomalies.
24307
24308         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
24309         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
24310         sigsetjmp.
24311         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
24312         siglongjmp, but only as a macro.
24313         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
24314         is obsolete.
24315         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
24316
24317         Tweak documentation to cover cygwin argz bugs.
24318         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
24319         argz bug fix; no code change needed since no cygwin releases
24320         occurred between the last fix and the bug being tested.
24321         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
24322         module and recently fixed cygwin bugs.
24323         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
24324         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
24325         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
24326         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
24327         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
24328         Likewise.
24329         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
24330         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
24331         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
24332         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
24333         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
24334         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
24335         Likewise.
24336
24337         Avoid gcc warning on cygwin.
24338         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
24339         !ACL_NO_TRIVIAL]: Avoid unused variable.
24340
24341 2008-06-05  Eric Blake  <ebb9@byu.net>
24342
24343         Be tolerant of UNKNOWN version in gnulib-tool test dir.
24344         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
24345         git-version-gen fails to come up with a version.
24346         Reported by Simon Josefsson.
24347
24348 2008-06-05  Jim Meyering  <meyering@redhat.com>
24349             Paul Eggert  <eggert@cs.ucla.edu>
24350
24351         utimens.c: work around a probable Linux kernel bug
24352         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
24353         appears to be a kernel bug that causes utimensat to return 280
24354         instead of 0, indicating success.
24355
24356 2008-06-04  Bruno Haible  <bruno@clisp.org>
24357
24358         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
24359         2008-06-01 commit.
24360
24361 2008-06-04  Bruno Haible  <bruno@clisp.org>
24362
24363         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
24364         * lib/file-has-acl.c (acl_access_nontrivial): New function.
24365         (file_has_acl): Use it. Save errno afterwards.
24366         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
24367
24368 2008-06-03  Bruno Haible  <bruno@clisp.org>
24369
24370         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
24371         draft code. Simplify #ifs.
24372         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
24373         Put Solaris code after POSIX-draft code. Fix comments regarding
24374         Solaris 10, HP-UX. Mention Cygwin.
24375         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
24376
24377 2008-06-03  Eric Blake  <ebb9@byu.net>
24378
24379         Provide fallback for older kernels.
24380         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
24381         Provide runtime fallback if kernel lacks support.
24382         Reported by Mike Frysinger.
24383
24384 2008-06-02  Bruno Haible  <bruno@clisp.org>
24385
24386         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
24387         it exists.
24388
24389 2008-06-02  Bruno Haible  <bruno@clisp.org>
24390
24391         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
24392         * lib/copy-acl.c (qcopy_acl): Update comment.
24393
24394 2008-06-02  Bruno Haible  <bruno@clisp.org>
24395
24396         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
24397         like ACL APIs.
24398
24399 2008-06-02  Bruno Haible  <bruno@clisp.org>
24400
24401         * tests/test-file-has-acl.sh: Use different code for Cygwin.
24402         * tests/test-set-mode-acl.sh: Likewise.
24403         * tests/test-copy-acl.sh: Likewise.
24404         * tests/test-copy-file.sh: Likewise.
24405
24406 2008-06-02  Bruno Haible  <bruno@clisp.org>
24407
24408         * tests/test-file-has-acl.sh: Remove unused code.
24409
24410 2008-06-01  Bruno Haible  <bruno@clisp.org>
24411
24412         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
24413         (copy_acl): Just a wrapper around qcopy_acl that emits the error
24414         messages.
24415         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
24416
24417 2008-06-01  Bruno Haible  <bruno@clisp.org>
24418
24419         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
24420         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
24421         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
24422         APIs.
24423         * modules/acl-tests (configure.ac): Remove tests now contained in
24424         m4/acl.m4.
24425
24426 2008-06-02  Jim Meyering  <meyering@redhat.com>
24427
24428         announce-gen: use a better key-server host name
24429         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
24430         it may be more consistently reliable.  Suggested by Werner Koch
24431         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
24432
24433 2008-06-01  Bruno Haible  <bruno@clisp.org>
24434
24435         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
24436         Reported by Voroskoi Andras <voroskoi@gmail.com>.
24437
24438 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
24439
24440         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
24441
24442 2008-06-01  Bruno Haible  <bruno@clisp.org>
24443
24444         New ACL tests.
24445         * tests/test-file-has-acl.sh: New file.
24446         * tests/test-file-has-acl.c: New file.
24447         * tests/test-set-mode-acl.sh: New file.
24448         * tests/test-set-mode-acl.c: New file.
24449         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
24450         * tests/test-copy-acl.c: New file.
24451         * modules/acl-tests: New file, based on modules/copy-file-tests.
24452         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
24453         (Depends-on): Add acl-tests.
24454         (configure.ac): Remove checks.
24455         (Makefile.am): Don't create test-sameacls program here any more.
24456
24457 2008-06-01  Bruno Haible  <bruno@clisp.org>
24458
24459         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
24460         * tests/test-sameacls.c: Include progname.h.
24461         (main): Invoke set_program_name. Portability fixes for MacOS X,
24462         Solaris, HP-UX.
24463
24464 2008-06-01  Bruno Haible  <bruno@clisp.org>
24465
24466         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
24467         function.
24468         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
24469
24470 2008-06-01  Bruno Haible  <bruno@clisp.org>
24471
24472         * modules/rpmatch (Depends-on): Add strdup.
24473
24474 2008-06-01  Bruno Haible  <bruno@clisp.org>
24475
24476         * lib/pipe.c: Include unistd-safer.h.
24477         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
24478         * modules/pipe (Depends-on): Add unistd-safer.
24479
24480 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24481
24482         * modules/autobuild (configure.ac): Call AB_INIT.
24483
24484 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24485
24486         * tests/test-getaddrinfo.c: Don't print debug messages by default.
24487         Suggested by Bruno Haible <bruno@clisp.org>.
24488
24489 2008-05-30  Simon Josefsson  <simon@josefsson.org>
24490
24491         * tests/test-base64.c: Cast size_t to unsigned long when invoking
24492         printf.  Use %lu instead of %d.  Reported by Bruno Haible
24493         <bruno@clisp.org>.
24494
24495 2008-05-29  Eric Blake  <ebb9@byu.net>
24496
24497         Prefer new POSIX 200x interfaces over futimesat.
24498         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
24499         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
24500         when available.
24501         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
24502
24503 2008-05-28  Bruno Haible  <bruno@clisp.org>
24504
24505         * modules/stpcpy (License): Change to LGPLv2+.
24506         Requested by David Lutterkort <dlutter@redhat.com>.
24507
24508 2008-05-27  Bruno Haible  <bruno@clisp.org>
24509
24510         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
24511         current mingw.
24512         Reported by Jose E. Marchesi <jemarch@gnu.org>.
24513
24514 2008-05-27  Bruno Haible  <bruno@clisp.org>
24515
24516         * modules/iconv_open (Link): New section, from module 'iconv'.
24517         * modules/striconv (Link): Likewise.
24518         * modules/striconveh (Link): Likewise.
24519         * modules/xstriconv (Link): Likewise.
24520         * modules/unicodeio (Link): Likewise.
24521         * modules/propername (Link): Likewise.
24522         Reported by Jim Meyering.
24523
24524 2008-05-26  Jim Meyering  <meyering@redhat.com>
24525
24526         sha256: do not artificially restrict buffer length to be < 2^32
24527         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
24528         uint32_t to size_t.
24529         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
24530         to match.
24531
24532         avoid unaligned access errors, e.g., on sparc
24533         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
24534         direct access through a possibly-unaligned uint64* pointer.
24535         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
24536         direct access through a possibly-unaligned uint32* pointer.
24537         Prompted by this patch from Tom "spot" Callaway:
24538         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
24539
24540         sha512.c: fix typo in comment
24541         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
24542
24543 2008-05-25  Bruno Haible  <bruno@clisp.org>
24544
24545         * lib/set-mode-acl.c: Renamed from lib/acl.c.
24546         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
24547         (Makefile.am): Update lib_SOURCES.
24548
24549 2008-05-25  Bruno Haible  <bruno@clisp.org>
24550
24551         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
24552
24553 2008-05-25  Jim Meyering  <meyering@redhat.com>
24554
24555         useless-if-before-free: freed expr may have white-space differences
24556         * build-aux/useless-if-before-free: Recognize cases in which the
24557         freed expression differs from the tested one in embedded white
24558         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
24559         $1 was used, so we can't make any regexp shy.  Improved tests now
24560         detect this.
24561
24562         useless-if-before-free: accept white space in the expression.
24563         * build-aux/useless-if-before-free: For now, any white space
24564         in the expression must be identical in the free argument.
24565
24566         useless-if-before-free: efficiency tweak
24567         * build-aux/useless-if-before-free: Make the expression-matching
24568         regexp "shy".
24569         Make the *outer* regexp shy, not the expr-matching one.
24570
24571         update code-in-comment to accept cast of free arg
24572         * build-aux/useless-if-before-free: Update regexp.
24573
24574 2008-05-25  Bruno Haible  <bruno@clisp.org>
24575
24576         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
24577         * modules/copy-file-tests (Files, Makefile.am): Update.
24578         * tests/test-copy-file.c (func_test_copy): Update.
24579
24580 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
24581
24582         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
24583
24584 2008-05-23  Bruno Haible  <bruno@clisp.org>
24585
24586         Improve support for ACLs on OSF/1.
24587         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
24588         Remove fallback for unknown flavors of ACLs.
24589
24590 2008-05-22  Bruno Haible  <bruno@clisp.org>
24591
24592         Add support for ACLs on OSF/1.
24593         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
24594         replacements.
24595         (acl_free_text): New macro fallback.
24596         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
24597         acl_free.
24598         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
24599         acl_free_text function. Require AC_C_INLINE.
24600
24601 2008-05-22  Bruno Haible  <bruno@clisp.org>
24602
24603         Make copy_acl work on MacOS X 10.5.
24604         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
24605         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
24606         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
24607         If MODE_INSIDE_ACL, don't assume that every system has the same text
24608         representation for ACLs as FreeBSD.
24609         * lib/copy-acl.c (copy_acl): Add support for platforms with
24610         !MODE_INSIDE_ACL.
24611         * lib/file-has-acl.c (file_has_acl): Likewise.
24612         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
24613         FreeBSD, MacOS X, or IRIX, respectively.
24614
24615 2008-05-22  Bruno Haible  <bruno@clisp.org>
24616
24617         * lib/acl.h: Don't include <sys/acl.h>.
24618         (GETACLCNT): Move fallback to lib/acl-internal.h.
24619         * lib/acl-internal.h: Include <sys/acl.h> here.
24620         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
24621
24622 2008-05-22  Bruno Haible  <bruno@clisp.org>
24623
24624         Split off copy_acl function to separate file.
24625         * lib/copy-acl.c: New file, extracted from lib/acl.c.
24626         * lib/acl.c (copy_acl): Moved function to separate file.
24627         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
24628         * modules/acl (Files): Add lib/copy-acl.c.
24629         (Makefiles.am): Augment lib_SOURCES.
24630
24631 2008-05-22  Bruno Haible  <bruno@clisp.org>
24632
24633         * modules/copy-file-tests: New file.
24634         * tests/test-copy-file.sh: New file.
24635         * tests/test-copy-file.c: New file.
24636         * tests/test-copy-file-sameacls.c: New file.
24637
24638 2008-05-22  Eric Blake  <ebb9@byu.net>
24639
24640         Avoid gcc warning.
24641         * tests/test-memcmp.c (main): Pass NULL indirectly.
24642
24643 2008-05-21  Bruno Haible  <bruno@clisp.org>
24644
24645         Add reference doc about ACLs.
24646         * doc/acl-resources.txt: New file.
24647         * doc/acl-cygwin.txt: New file.
24648
24649 2008-05-21  Bruno Haible  <bruno@clisp.org>
24650
24651         Avoid one more warning from gcc.
24652         * lib/vasnprintf.c (IF_LINT): Update comments.
24653         (VASNPRINTF): Use it also for the 'prefix' array initializer.
24654
24655 2008-05-21  Jim Meyering  <meyering@redhat.com>
24656
24657         avoid a warning from gcc
24658         * lib/vasnprintf.c (IF_LINT): Define.
24659         (scale10_round_decimal_long_double):
24660         Use it to avoid a "may be used uninitialized" warning.
24661         (scale10_round_decimal_double): Likewise.
24662
24663 2008-05-21  Simon Josefsson  <simon@josefsson.org>
24664
24665         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
24666         declared.
24667
24668 2008-05-20  Bruno Haible  <bruno@clisp.org>
24669
24670         * tests/test-memcmp.c (main): Test also the sign of the result. Test
24671         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
24672
24673 2008-05-20  Simon Josefsson  <simon@josefsson.org>
24674
24675         * modules/memcmp-tests: New file.
24676         * tests/test-memcmp.c: New file.
24677
24678 2008-05-19  Bruno Haible  <bruno@clisp.org>
24679
24680         * modules/propername (Notice, configure.ac): Put quoted "..." into
24681         --keyword option.
24682         * lib/propername.h: Update comments accordingly.
24683         Reported by Eric Blake.
24684
24685 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
24686
24687         * modules/getpass-gnu (Depends-on): Add fseeko.
24688
24689 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24690
24691         * modules/base64-tests: New file.
24692
24693 2008-05-19  Bo Borgerson <gigabo@gmail.com>
24694
24695         * lib/base64.c (base64_decode_ctx): If a decode context structure
24696         was passed in use it to ignore newlines.  If a context structure
24697         was _not_ passed in, continue to treat newlines as garbage (this
24698         is the historical behavior).  Formerly base64_decode.
24699         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24700         takes a decode context structure.
24701         * lib/base64.h (base64_decode): Macro for four-argument calls.
24702         (base64_decode_alloc): Likewise.
24703         * lib/base64.c (base64_decode_ctx): If a decode context structure
24704         was passed in use it to ignore newlines.  If a context structure
24705         was _not_ passed in, continue to treat newlines as garbage (this
24706         is the historical behavior).  Formerly base64_decode.
24707         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
24708         takes a decode context structure.
24709         * lib/base64.h (base64_decode): Macro for four-argument calls.
24710         (base64_decode_alloc): Likewise.
24711
24712 2008-05-19  Jim Meyering  <meyering@redhat.com>
24713
24714         avoid a warning from gcc
24715         * lib/trim.c (IF_LINT): Define.
24716         (trim2): Use it to avoid a "may be used uninitialized" warning.
24717
24718         Fix doc typo.
24719         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
24720
24721 2008-05-19  Bruno Haible  <bruno@clisp.org>
24722
24723         * doc/glibc-functions/getpass.texi: Document limits of other
24724         implementations.
24725
24726 2008-05-19  Simon Josefsson  <simon@josefsson.org>
24727             Bruno Haible <bruno@clisp.org>
24728
24729         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
24730
24731 2008-05-18  Bruno Haible  <bruno@clisp.org>
24732
24733         * modules/propername: New file, from GNU gettext.
24734         * lib/propername.h: New file, from GNU gettext.
24735         * lib/propername.c: New file, from GNU gettext.
24736         * MODULES.html.sh (Internationalization functions): Add propername.
24737
24738 2008-05-16  Jim Meyering  <meyering@redhat.com>
24739             Bruno Haible  <bruno@clisp.org>
24740
24741         Avoid some warnings from "gcc -Wshadow".
24742         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
24743
24744 2008-05-15  Eric Blake  <ebb9@byu.net>
24745
24746         Extend previous patch to cygwin 1.7.0.
24747         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
24748         fast implementation in cygwin >= 1.7.0.
24749         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24750         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24751
24752 2008-05-15  Bruno Haible  <bruno@clisp.org>
24753
24754         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
24755         implementation in glibc >= 2.9.
24756         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
24757         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24758
24759 2008-05-15  Bruno Haible  <bruno@clisp.org>
24760
24761         * MODULES.html.sh (Internationalization functions): Remove linebreak.
24762         (Unicode string functions): Add unilbrk/*.
24763         Reported by Karl Berry.
24764
24765 2008-05-15  Eric Blake  <ebb9@byu.net>
24766
24767         Fix violation of <stdbool.h> replacement in regex.
24768         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
24769         * lib/regexec.c (re_search_internal): Likewise.
24770         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
24771
24772 2008-05-15  Jim Meyering  <meyering@redhat.com>
24773
24774         avoid distracting test output when git or cvs is not found
24775         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
24776         * tests/test-vc-list-files-git.sh: Likewise.
24777
24778 2008-05-15  Eric Blake  <ebb9@byu.net>
24779
24780         Glibc finally accepted the memmem speedup code, bugzilla #5514.
24781         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
24782         glibc version.
24783         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
24784         * doc/posix-functions/strstr.texi (strstr): Likewise.
24785         * lib/str-two-way.h (MAX): Sychronize with glibc.
24786
24787 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
24788
24789         * lib/regcomp.c (optimize_utf8): Add a note on why we test
24790         opr.ctx_type.
24791         (calc_first): Initialize constraint field.
24792         (duplicate_node_closure): Use it instead of special casing ANCHORS.
24793         Fix grammar.
24794         (duplicate_node): Merge constraint field for all node types.
24795         (calc_eclosure_iter): Look at constraint field for all node types.
24796         * lib/regex_internal.c (create_cd_newstate): Don't look at
24797         opr.ctx_type.
24798
24799 2008-05-14  Bruno Haible  <bruno@clisp.org>
24800
24801         Help GCC to do better code generation.
24802         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
24803         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
24804         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
24805         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
24806         Declare with attribute 'malloc' if supported.
24807
24808 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
24809
24810         use "echo STR|wc -c" rather than unportable "expr length STR"
24811         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
24812         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
24813
24814 2008-05-14  Jim Meyering  <meyering@redhat.com>
24815
24816         use dd ibs=$n count=1 ... rather than less-portable head -c$n
24817         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
24818         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
24819         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
24820         via Collin Lasse.
24821
24822 2008-05-14  Eric Blake  <ebb9@byu.net>
24823
24824         Avoid quadratic growth in gl_LIBSOURCES.
24825         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
24826         Suggested by Bruno Haible.
24827
24828         Test xmemdup0.
24829         * modules/xmemdup0-tests: New file.
24830         * tests/test-xmemdup0.c: Likewise.
24831
24832 2008-05-13  Eric Blake  <ebb9@byu.net>
24833
24834         Split xmemdup0 into its own module.
24835         * modules/xmemdup0: New file.
24836         * lib/xmemdup0.h: Likewise.
24837         * lib/xmemdup0.c: Likewise.
24838         * MODULES.html.sh (Memory management functions): Add xmemdup0.
24839         * lib/xalloc.h (xmemdup0): Remove.
24840         * lib/xmalloc.c (xmemdup0): Likewise.
24841
24842 2008-05-13  Eric Blake  <ebb9@byu.net>
24843             Bruno Haible  <bruno@clisp.org>
24844
24845         Reduce number of forks required during autoconf.
24846         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
24847         and gl_LIBSOURCES_DIR.
24848         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
24849         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
24850         m4_syscmd per file.
24851         <m4_foreach_w>: Move...
24852         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
24853
24854 2008-05-13  Eric Blake  <ebb9@byu.net>
24855
24856         * gnulib-tool: Fix various comment typos.
24857
24858 2008-05-12  Bruno Haible  <bruno@clisp.org>
24859
24860         Tailor the linebreaking algorithm.
24861         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
24862
24863 2008-05-12  Bruno Haible  <bruno@clisp.org>
24864
24865         Update to Unicode 5.0.0.
24866         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
24867         LBP_JV, LBP_JT. Redistribute values.
24868         (unilbrk_table): Change size.
24869         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
24870         Unicode TR#14 rev. 22.
24871         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
24872         LBP_JV, LBP_JT. Redistribute values.
24873         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
24874         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
24875         Update.
24876         * lib/unilbrk/lbrkprop1.h: Regenerated.
24877         * lib/unilbrk/lbrkprop2.h: Regenerated.
24878         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
24879         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
24880         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
24881         Likewise.
24882         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
24883         Likewise.
24884         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
24885         result.
24886         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
24887         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
24888         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
24889         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
24890         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
24891         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
24892
24893 2008-05-11  Bruno Haible  <bruno@clisp.org>
24894
24895         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
24896
24897 2008-05-11  Bruno Haible  <bruno@clisp.org>
24898
24899         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
24900         * modules/unilbrk/gen-lbrk: New file.
24901
24902 2008-05-11  Bruno Haible  <bruno@clisp.org>
24903
24904         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
24905         * m4/sha512.m4 (gl_SHA512): Likewise.
24906
24907 2008-05-11  Jim Meyering  <meyering@redhat.com>
24908
24909         New modules: crypto/sha256, crypto/sha512 (from coreutils)
24910         * modules/crypto/sha256: New file.
24911         * modules/crypto/sha512: Likewise.
24912         * lib/sha256.c: Likewise.
24913         * lib/sha256.h: Likewise.
24914         * lib/sha512.c: Likewise.
24915         * lib/sha512.h: Likewise.
24916         * lib/u64.h: Likewise.
24917         * m4/sha256.m4: Likewise.
24918         * m4/sha512.m4: Likewise.
24919         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
24920
24921 2008-05-10  Bruno Haible  <bruno@clisp.org>
24922
24923         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
24924         (Input/Output <stdio.h>): Add xprintf.
24925         (Signal handling <signal.h>): Add strsignal.
24926         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
24927         (Core language properties): Add func.
24928         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
24929         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
24930         strings.
24931         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
24932         (Input/output): New section.
24933         (File system functions): Add openat-die, stat-macros.
24934         (Networking functions): Add sockets.
24935         (Unicode string functions): Add unictype/*.
24936         (Support for building libraries and executables): Add gperf.
24937         (Support for building documentation): Add agpl-3.0.
24938         (Misc): Add nocrash.
24939
24940 2008-05-10  Bruno Haible  <bruno@clisp.org>
24941
24942         * modules/unictype/gen-ctype: New file.
24943
24944 2008-05-10  Jim Meyering  <meyering@redhat.com>
24945
24946         Make chdir-safer.c more efficient on a system with no symlinks.
24947         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
24948         also if ELOOP is zero.  Suggested by Bruno Haible.
24949
24950         Make chdir-safer.c slightly safer.
24951         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
24952         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
24953
24954         Avoid compile failure on systems without ELOOP (like mingw).
24955         * lib/chdir-safer.c (ELOOP): Define if not already defined.
24956         Reported by Bruno Haible.
24957
24958 2008-05-10  Bruno Haible  <bruno@clisp.org>
24959
24960         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
24961         (is_utf8_encoding): Use a case-insensitive comparison.
24962         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
24963         streq.
24964
24965 2008-05-10  Bruno Haible  <bruno@clisp.org>
24966
24967         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
24968         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
24969         * lib/unilbrk/ulc-common.h (iconv_string_length,
24970         iconv_string_keeping_offsets): Remove declarations.
24971         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
24972         Don't include <iconv.h>, streq.h, xsize.h.
24973         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
24974         conversion.
24975         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
24976         <iconv.h>, streq.h, xsize.h.
24977         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
24978         conversion.
24979         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
24980         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
24981         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
24982         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
24983
24984 2008-05-10  Bruno Haible  <bruno@clisp.org>
24985
24986         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
24987         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
24988
24989         * modules/unilbrk/u32-width-linebreaks-tests: New file.
24990         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
24991
24992         * modules/unilbrk/u16-width-linebreaks-tests: New file.
24993         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
24994
24995         * modules/unilbrk/u8-width-linebreaks-tests: New file.
24996         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
24997
24998         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
24999         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
25000
25001         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
25002         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
25003
25004         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
25005         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
25006
25007         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
25008         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
25009
25010 2008-05-10  Bruno Haible  <bruno@clisp.org>
25011
25012         Split up 'linebreak' module.
25013         * lib/unilbrk.h: New file, based on lib/linebreak.h.
25014         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
25015         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
25016         modifications.
25017         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
25018         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
25019         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
25020         lib/linebreak.c.
25021         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
25022         lib/linebreak.c.
25023         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
25024         lib/linebreak.c.
25025         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
25026         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
25027         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
25028         lib/linebreak.c.
25029         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
25030         lib/linebreak.c.
25031         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
25032         lib/linebreak.c.
25033         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
25034         lib/linebreak.c.
25035         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
25036         lib/linebreak.c.
25037         * modules/unilbrk/base: New file.
25038         * modules/unilbrk/tables: New file.
25039         * modules/unilbrk/u8-possible-linebreaks: New file.
25040         * modules/unilbrk/u16-possible-linebreaks: New file.
25041         * modules/unilbrk/u32-possible-linebreaks: New file.
25042         * modules/unilbrk/ulc-common: New file.
25043         * modules/unilbrk/ulc-possible-linebreaks: New file.
25044         * modules/unilbrk/u8-width-linebreaks: New file.
25045         * modules/unilbrk/u16-width-linebreaks: New file.
25046         * modules/unilbrk/u32-width-linebreaks: New file.
25047         * modules/unilbrk/ulc-width-linebreaks: New file.
25048         * lib/linebreak.h: Remove file.
25049         * lib/linebreak.c: Remove file.
25050         * m4/linebreak.m4: Remove file.
25051         * modules/linebreak: Remove file.
25052         * NEWS: Mention the changes.
25053
25054 2008-05-09  Eric Blake  <ebb9@byu.net>
25055
25056         Add xmemdup0.
25057         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
25058         implementation.
25059         * lib/xmalloc.c (xmemdup0): New C implementation.
25060
25061 2008-05-08  Bruno Haible  <bruno@clisp.org>
25062
25063         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
25064
25065 2008-05-07  Eric Blake  <ebb9@byu.net>
25066
25067         Support cross-compilation of <wctype.h>.
25068         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
25069         AC_CACHE_CHECK.
25070
25071 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
25072
25073         * build-aux/vc-list-files: Add support for bzr.
25074
25075 2008-05-03  Jim Meyering  <meyering@redhat.com>
25076
25077         avoid failed assertion with tight malloc
25078         * tests/test-getndelim2.c: Correct an off-by-one assertion.
25079
25080 2008-05-03  Simon Josefsson  <simon@josefsson.org>
25081
25082         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
25083         are needed from arpa/inet.h.
25084         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
25085         Reported by Bruno Haible.
25086
25087 2008-05-02  Jim Meyering  <meyering@redhat.com>
25088
25089         avoid compilation error on FreeBSD 6
25090         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
25091
25092 2008-05-01  Jim Meyering  <meyering@redhat.com>
25093
25094         useless-if-before-free: correct --help's exit status description
25095         * build-aux/useless-if-before-free (usage): Like grep, exit 0
25096         for one or more matches, etc.  Reported by Bruno Haible.
25097
25098         vc-list-files: make the stand-alone gnulib test work
25099         * modules/vc-list-files-tests (configure.ac):
25100         Define and AC_SUBST abs_aux_dir.
25101         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
25102         $(abs_top_srcdir) to each script and having each of them
25103         duplicate the work of setting PATH, set PATH here, using
25104         the new variable, abs_aux_dir instead.
25105         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
25106         * tests/test-vc-list-files-git.sh: Likewise.
25107         Reported by Bruno Haible.
25108
25109 2008-05-01  Bruno Haible  <bruno@clisp.org>
25110
25111         * lib/getndelim2.c (getndelim2): Fix newsize computation during
25112         reallocation. Rename 'done' to 'found_delimiter'.
25113
25114 2008-05-01  Jim Meyering  <meyering@redhat.com>
25115
25116         vc-list-files: accommodate /bin/sh like the one from Solaris 10
25117         * build-aux/vc-list-files: Use `...`, not $(...).
25118
25119 2008-04-30  Jim Meyering  <meyering@redhat.com>
25120
25121         add tests for vc-list-files
25122         * modules/vc-list-files-tests: New module.
25123         * tests/test-vc-list-files-cvs.sh: New file.
25124         * tests/test-vc-list-files-git.sh: New file.
25125
25126         avoid a warning from gcc
25127         * lib/getndelim2.c (IF_LINT): Define.
25128         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
25129
25130         vc-list-files: work properly with build-aux/cvsu, too
25131         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
25132         to all cvs-based clauses.
25133
25134         vc-list-files: work properly in the CVS+awk case, too
25135         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
25136
25137         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
25138         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
25139         take more than one file argument, so .  Add quotes, just in case $dir
25140         ever contains a shell meta-character.  Prompted by Soren Hansen in
25141         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
25142
25143 2008-04-29  Eric Blake  <ebb9@byu.net>
25144
25145         Optimize getndelim2 to use block operations when possible.
25146         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
25147         freadseek, and memchr2.
25148         * lib/getndelim2.c (getndelim2): Use them for block reads.
25149
25150 2008-04-29  Bruno Haible  <bruno@clisp.org>
25151
25152         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
25153         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
25154         * modules/inet_ntop (Depends-on): Add extensions.
25155         * modules/inet_pton (Depends-on): Likewise.
25156         Reported by Simon Josefsson.
25157
25158 2008-04-29  Jim Meyering  <meyering@redhat.com>
25159
25160         When the is more than one match in a block, match all of them.
25161         * build-aux/useless-if-before-free: Iterate through each block
25162         until there are no more matches.
25163
25164         Fix broken useless-if-before-free script.
25165         * build-aux/useless-if-before-free: Fix typo: missing "?" after
25166         the expression to match cast of argument to free-like function.
25167
25168 2008-04-29  Eric Blake  <ebb9@byu.net>
25169
25170         Use new header.
25171         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
25172
25173 2008-04-29  Jim Meyering  <meyering@redhat.com>
25174
25175         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
25176         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
25177         by gnulib to exist and to declare e.g., inet_ntop.
25178         Don't include "inet_ntop.h", now removed.
25179
25180         * m4/arpa_inet_h.m4: Remove trailing blanks.
25181
25182 2008-04-29  Eric Blake  <ebb9@byu.net>
25183
25184         Silence valgrind on safe reads beyond potential array bounds.
25185         * lib/rawmemchr.valgrind: New file.
25186         * lib/strchrnul.valgrind: Likewise.
25187         * modules/rawmemchr (Files): Distribute new file.
25188         * modules/strchrnul (Files): Likewise.
25189         Suggested by Bruno Haible.
25190
25191 2008-04-29  Bruno Haible  <bruno@clisp.org>
25192
25193         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
25194         (inet_ntop, inet_pton): Change portability warning's wording.
25195         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
25196         Invoke gl_CHECK_NEXT_HEADERS.
25197         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
25198         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
25199         set ARPA_INET_H.
25200         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
25201         * modules/arpa_inet (Description): No longer only for systems that
25202         lack it.
25203         (Depends-on): Add include_next.
25204         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
25205         HAVE_ARPA_INET_H.
25206
25207 2008-04-29  Jim Meyering  <meyering@redhat.com>
25208
25209         * modules/mkdir (License): Re-license as LGPLv2+.
25210
25211 2008-04-29  Bruno Haible  <bruno@clisp.org>
25212
25213         * modules/rawmemchr (Maintainer): Set to Eric.
25214         * modules/strchrnul (Maintainer): Likewise.
25215
25216 2008-04-29  Simon Josefsson  <simon@josefsson.org>
25217
25218         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
25219         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
25220
25221         * modules/arpa_inet (arpa/inet.h): Use them.
25222
25223 2008-04-28  Eric Blake  <ebb9@byu.net>
25224
25225         Test getndelim2.
25226         * modules/getndelim2-tests: New file.
25227         * tests/test-getndelim2.c: Likewise.
25228         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
25229         stream.
25230         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
25231
25232         * MODULES.html.sh: Document new module.
25233
25234 2008-04-20  Bruno Haible  <bruno@clisp.org>
25235
25236         * lib/c-stack.c (die): Use raise.
25237         * modules/c-stack (Depends-on): Add raise.
25238
25239 2008-04-28  Bruno Haible  <bruno@clisp.org>
25240
25241         Expect rpmatch to be declared.
25242         * lib/yesno.c (rpmatch): Remove declaration.
25243
25244         Declare rpmatch.
25245         * lib/stdlib.in.h (rpmatch): New declaration.
25246         * lib/rpmatch.c: Include <stdlib.h> first.
25247         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
25248         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
25249         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
25250         HAVE_RPMATCH.
25251         * modules/rpmatch (Depends-on): Add stdlib, extensions.
25252         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25253         (Include): Set to <stdlib.h>.
25254         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
25255         HAVE_RPMATCH.
25256         * NEWS: Document the change.
25257
25258 2008-04-28  Bruno Haible  <bruno@clisp.org>
25259
25260         Change rpmatch to use nl_langinfo when appropriate.
25261         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
25262         (N_): New macro.
25263         (localized_pattern): New function/macro.
25264         (try): Remove match, nomatch arguments. Copy the pattern into safe
25265         memory before caching it.
25266         (rpmatch): Use localized_pattern. Add translator comments.
25267         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
25268         Suggested by Eric Blake.
25269         * modules/rpmatch (Depends-on): Add stdbool.
25270
25271 2008-04-28  Eric Blake  <ebb9@byu.net>
25272
25273         Add rawmemchr module, matching glibc.
25274         * modules/string (Makefile.am): New indicator.
25275         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
25276         * lib/string.in.h (rawmemchr): Declare when appropriate.
25277         * modules/rawmemchr: New file.
25278         * m4/rawmemchr.m4: Likewise.
25279         * lib/rawmemchr.c: Likewise.
25280         * modules/rawmemchr-tests: Likewise.
25281         * tests/test-rawmemchr.c: Likewise.
25282         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
25283         module.
25284         * modules/strchrnul (Depends-on): Add rawmemchr.
25285         * lib/strchrnul.c (strchrnul): Optimize a corner case.
25286
25287         Whitespace cleanup.
25288         * tests/test-strchrnul.c: Reindent.
25289         * lib/strchrnul.c: Likewise.
25290
25291         Optimize and test strchrnul.
25292         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
25293         * modules/strchrnul-tests: New file.
25294         * tests/test-strchrnul.c: Likewise.
25295
25296         Remove intprops dependency.
25297         * modules/memchr (Depends-on): Remove intprops.
25298         * modules/memrchr (Depends-on): Likewise.
25299         * modules/memchr2 (Depends-on): Likewise.
25300         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
25301         * lib/memrchr.c (__memrchr): Likewise.
25302         * lib/memrchr2.c (memchr2): Likewise.
25303         Reported by Simon Josefsson.
25304
25305 2008-04-28  Simon Josefsson  <simon@josefsson.org>
25306
25307         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
25308         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25309
25310 2008-04-28  Simon Josefsson  <simon@josefsson.org>
25311
25312         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
25313
25314         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
25315
25316         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
25317
25318         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
25319         declarations.
25320         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
25321
25322         * m4/inet_pton.m4: Don't check for header files.
25323
25324         * m4/inet_ntop.m4: Don't check for header files.
25325
25326 2008-04-28  Simon Josefsson  <simon@josefsson.org>
25327
25328         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
25329         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
25330         trigger for cygwin).
25331         Reported by Bruno Haible  <bruno@clisp.org>.
25332
25333 2008-04-28  Bruno Haible  <bruno@clisp.org>
25334
25335         * doc/posix-functions/strdup.texi: Mention mingw problem.
25336
25337 2008-04-27  Bruno Haible  <bruno@clisp.org>
25338
25339         * modules/stat-time-tests (Depends-on): Add sleep.
25340         * tests/test-stat-time.c (force_unlink): New function.
25341         (cleanup): Use it.
25342         (test_mtime): Remove the ctime related tests.
25343         (test_ctime): New function, containing the ctime related tests.
25344         (main): Call test_ctime, except on native Windows platforms.
25345
25346 2008-04-27  Bruno Haible  <bruno@clisp.org>
25347
25348         * lib/rpmatch.c (rpmatch): Add some comments.
25349         Reported by James Youngman <jay@gnu.org>.
25350
25351 2008-04-27  Bruno Haible  <bruno@clisp.org>
25352
25353         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
25354         quiet NaNs.
25355
25356 2008-04-27  Bruno Haible  <bruno@clisp.org>
25357
25358         Make test-yesno.sh work on mingw.
25359         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
25360         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
25361         (main): Set stdin to binary mode.
25362         * modules/yesno-tests (Depends-on): Add binary-io.
25363
25364 2008-04-27  Bruno Haible  <bruno@clisp.org>
25365
25366         Fix 'isfinite' on x86, x86_64, ia64 platforms.
25367         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
25368         argument that lie outside the IEEE 854 domain.
25369         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
25370         (gl_ISFINITE): Use it.
25371         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
25372
25373 2008-04-27  Bruno Haible  <bruno@clisp.org>
25374
25375         Allow local renaming in config.h.
25376         * lib/memrchr.c (memrchr): Don't undefine outside libc.
25377
25378 2008-04-27  Bruno Haible  <bruno@clisp.org>
25379
25380         * lib/memchr.c (__memchr): Change type of 'i'.
25381         * lib/memchr2.c (memchr2): Likewise.
25382
25383 2008-04-26  Eric Blake  <ebb9@byu.net>
25384         and Bruno Haible  <bruno@clisp.org>
25385
25386         Optimize and test memrchr.
25387         * modules/memrchr (Depends-on): Add intprops.
25388         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
25389         * modules/memrchr-tests: New file.
25390         * tests/test-memrchr.c: New file.
25391
25392 2008-04-26  Bruno Haible  <bruno@clisp.org>
25393
25394         Add tentative support for DragonFly BSD.
25395         * lib/stdio-impl.h: Add macros for DragonFly BSD.
25396         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
25397         fp.
25398         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
25399         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
25400         * lib/fpurge.c (fpurge): Likewise.
25401         * lib/freadable.c (freaadable): Likewise.
25402         * lib/freadahead.c (freadahead): Likewise.
25403         * lib/freading.c (freading): Likewise.
25404         * lib/freadptr.c (freadptr): Likewise.
25405         * lib/freadseek.c (freadptrinc): Likewise.
25406         * lib/fseeko.c (fseeko): Likewise.
25407         * lib/fseterr.c (fseterr): Likewise.
25408         * lib/fwritable.c (fwritable): Likewise.
25409         * lib/fwriting.c (fwriting): Likewise.
25410
25411 2008-04-26  Bruno Haible  <bruno@clisp.org>
25412
25413         * lib/stdio-impl.h: New file.
25414         * lib/fbufmode.c: Include stdio-impl.h.
25415         (fbufmode): Use fp_, remove redundant #defines.
25416         * lib/fflush.c: Include stdio-impl.h.
25417         (clear_ungetc_buffer): Remove redundant #defines.
25418         * lib/fpurge.c: Include stdio-impl.h.
25419         (fpurge): Remove redundant #defines.
25420         * lib/freadable.c: Include stdio-impl.h.
25421         (freadable): Remove redundant #defines.
25422         * lib/freadahead.c: Include stdio-impl.h.
25423         (freadahead): Remove redundant #defines.
25424         * lib/freading.c: Include stdio-impl.h.
25425         (freading): Remove redundant #defines.
25426         * lib/freadptr.c: Include stdio-impl.h.
25427         (freadptr): Remove redundant #defines.
25428         * lib/freadseek.c: Include stdio-impl.h.
25429         (freadptrinc): Remove redundant #defines.
25430         * lib/fseeko.c: Include stdio-impl.h.
25431         (rpl_fseeko): Remove redundant #defines.
25432         * lib/fseterr.c: Include stdio-impl.h.
25433         (fseterr): Remove redundant #defines.
25434         * lib/fwritable.c: Include stdio-impl.h.
25435         (fwritable: Remove redundant #defines.
25436         * lib/fwriting.c: Include stdio-impl.h.
25437         (fwriting): Remove redundant #defines.
25438         * modules/fbufmode (Files): Add lib/stdio-impl.h.
25439         * modules/fflush (Files): Likewise.
25440         * modules/fpurge (Files): Likewise.
25441         * modules/freadable (Files): Likewise.
25442         * modules/freadahead (Files): Likewise.
25443         * modules/freading (Files): Likewise.
25444         * modules/freadptr (Files): Likewise.
25445         * modules/freadseek (Files): Likewise.
25446         * modules/fseeko (Files): Likewise.
25447         * modules/fseterr (Files): Likewise.
25448         * modules/fwritable (Files): Likewise.
25449         * modules/fwriting (Files): Likewise.
25450
25451 2008-04-26  Bruno Haible  <bruno@clisp.org>
25452
25453         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
25454         restore_seek_optimization, update_fpos_cache): New functions, extracted
25455         from rpl_fflush.
25456         (rpl_fflush): Use them.
25457         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
25458         (gl_REPLACE_FFLUSH): Use it.
25459
25460 2008-04-26  Bruno Haible  <bruno@clisp.org>
25461
25462         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
25463         on Solaris.
25464         * tests/test-xstrtoimax.sh: Likewise.
25465         * tests/test-xstrtoumax.sh: Likewise.
25466         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25467
25468 2008-04-26  Bruno Haible  <bruno@clisp.org>
25469
25470         * modules/memchr-tests: New file.
25471         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
25472
25473 2008-04-26  Eric Blake  <ebb9@byu.net>
25474             Bruno Haible  <bruno@clisp.org>
25475
25476         * lib/memchr.c: Include intprops.h.
25477         (__memchr): Optimize parallel detection of matching bytes. Rename local
25478         variables. Add explanatory comments.
25479
25480 2008-04-26  Bruno Haible  <bruno@clisp.org>
25481
25482         Fix module 'memchr', broken since 2000-10-28.
25483         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
25484
25485 2008-04-26  Bruno Haible  <bruno@clisp.org>
25486
25487         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
25488         comments.
25489
25490 2008-04-25  Eric Blake  <ebb9@byu.net>
25491
25492         Use native fstatat on cygwin 1.7.0.
25493         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
25494         first.
25495
25496 2008-04-23  Eric Blake  <ebb9@byu.net>
25497
25498         Improve memchr2 performance.
25499         * lib/memchr2.c (memchr2): Further optimize parallel detection of
25500         NUL bytes.
25501         * modules/memchr2 (Depends-on): Use intprops.h.
25502
25503 2008-04-23  Simon Josefsson  <simon@josefsson.org>
25504
25505         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
25506         an inline function instead of a CPP macro.  Patch by Ben Pfaff
25507         <blp@cs.stanford.edu>.
25508
25509 2008-04-23  Simon Josefsson  <simon@josefsson.org>
25510
25511         * lib/arpa_inet.in.h: New file.
25512
25513         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
25514         (Makefile.am): Sed in substitute header file.
25515
25516         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
25517         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
25518
25519         * modules/inet_ntop (configure.ac): Use
25520         gl_ARPA_INET_MODULE_INDICATOR.
25521
25522         * modules/inet_pton (configure.ac): Use
25523         gl_ARPA_INET_MODULE_INDICATOR.
25524
25525 2008-04-22  Jim Meyering  <meyering@redhat.com>
25526
25527         * modules/verify (License): Re-license as LGPLv2+.
25528
25529 2008-04-22  Simon Josefsson  <simon@josefsson.org>
25530
25531         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
25532         parameter to void* as per POSIX standard (MinGW uses char*).
25533
25534 2008-04-21  Bruno Haible  <bruno@clisp.org>
25535
25536         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
25537         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
25538         Define to replacements if REPLACE_ISWCNTRL is 1.
25539         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
25540         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
25541         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
25542         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
25543         what it fixes.
25544         * doc/posix-functions/iswalpha.texi: Likewise.
25545         * doc/posix-functions/iswblank.texi: Likewise.
25546         * doc/posix-functions/iswcntrl.texi: Likewise.
25547         * doc/posix-functions/iswdigit.texi: Likewise.
25548         * doc/posix-functions/iswgraph.texi: Likewise.
25549         * doc/posix-functions/iswlower.texi: Likewise.
25550         * doc/posix-functions/iswprint.texi: Likewise.
25551         * doc/posix-functions/iswpunct.texi: Likewise.
25552         * doc/posix-functions/iswspace.texi: Likewise.
25553         * doc/posix-functions/iswupper.texi: Likewise.
25554         * doc/posix-functions/iswxdigit.texi: Likewise.
25555         Reported by Alain Guibert.
25556
25557 2008-04-21  Bruno Haible  <bruno@clisp.org>
25558
25559         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
25560         Patch by Alain Guibert.
25561
25562 2008-04-21  Bruno Haible  <bruno@clisp.org>
25563
25564         Fix test failures on mingw.
25565         * tests/test-xstrtol.c (print_no_progname): New function.
25566         (main): Install it in error_print_progname hook.
25567         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
25568         * tests/test-xstrtoimax.sh: Likewise.
25569         * tests/test-xstrtoumax.sh: Likewise.
25570
25571 2008-04-21  Bruno Haible  <bruno@clisp.org>
25572
25573         Fix test failure on mingw.
25574         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
25575
25576 2008-04-21  Bruno Haible  <bruno@clisp.org>
25577
25578         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
25579         Actually assign a value.
25580
25581 2008-04-20  Bruno Haible  <bruno@clisp.org>
25582
25583         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
25584         take 2.
25585         * lib/canonicalize.c (canonicalize_file_name): Elide if the
25586         'canonicalize-lgpl' module is also used.
25587         * lib/canonicalize-lgpl.c: Undo last change.
25588         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
25589
25590 2008-04-20  Bruno Haible  <bruno@clisp.org>
25591
25592         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
25593         config.h. Provide _mkdir based fallback for mingw.
25594         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
25595         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
25596         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
25597         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
25598         rather than defining mkdir in config.h.
25599         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
25600         (gl_SYS_STAT_H_DEFAULTS): New macro.
25601         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
25602         HAVE_IO_H any more.
25603         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
25604         HAVE_DECL_MKDIR and HAVE_IO_H.
25605
25606 2008-04-20  Bruno Haible  <bruno@clisp.org>
25607
25608         * lib/isapipe.c: Port to native Windows platforms.
25609
25610 2008-04-20  Bruno Haible  <bruno@clisp.org>
25611
25612         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
25613
25614 2008-04-21  Eric Blake  <ebb9@byu.net>
25615
25616         Work around preprocessors that don't handle UINTMAX_MAX.
25617         * lib/memchr2.c (memchr2): Avoid embedded #if.
25618         Reported by Alain Guibert, fix suggested by Bruno Haible.
25619
25620 2008-04-21  Simon Josefsson  <simon@josefsson.org>
25621
25622         * doc/posix-functions/strftime.texi (strftime): Explain better
25623         Windows incompatibility.  Suggested by Micah Cowan
25624         <micah@cowan.name>.
25625
25626 2008-04-20  Bruno Haible  <bruno@clisp.org>
25627
25628         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
25629         unistr/u8-mblen.
25630
25631 2008-04-20  Bruno Haible  <bruno@clisp.org>
25632
25633         Fix test failure on platforms with non-GNU iconv.
25634         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
25635         (U_TO_U8): Use it, rather than u16_to_u8.
25636         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
25637         units at the end of the input string.
25638         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
25639
25640 2008-04-20  Bruno Haible  <bruno@clisp.org>
25641
25642         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
25643         when the resulting length is 0.
25644         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
25645
25646 2008-04-20  Bruno Haible  <bruno@clisp.org>
25647
25648         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
25649         works.
25650         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
25651
25652 2008-04-20  Bruno Haible  <bruno@clisp.org>
25653
25654         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
25655         * modules/tsearch-tests (configure.ac): Test for initstate function.
25656
25657 2008-04-20  Bruno Haible  <bruno@clisp.org>
25658
25659         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
25660         for nlink_t if missing.
25661         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
25662
25663 2008-04-19  Bruno Haible  <bruno@clisp.org>
25664
25665         Work around snprintf bug on Linux libc5.
25666         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
25667         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
25668         gl_SNPRINTF_SIZE1.
25669         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25670         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
25671         that test failed.
25672         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
25673         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
25674         * modules/snprintf (Files): Add m4/printf.m4.
25675         * modules/vsnprintf (Files): Likewise.
25676         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
25677         * doc/posix-functions/vsnprintf.texi: Likewise.
25678
25679 2008-04-19  Bruno Haible  <bruno@clisp.org>
25680
25681         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
25682         from 0.0058 to less than 10^-7.
25683
25684 2008-04-19  Bruno Haible  <bruno@clisp.org>
25685
25686         Fix rounding when a precision is given.
25687         * lib/vasnprintf.c (is_borderline): New function.
25688         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
25689         9...9x.
25690         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
25691         %e, %g.
25692         * tests/test-vasprintf-posix.c (test_function): Likewise.
25693         * tests/test-snprintf-posix.h (test_function): Likewise.
25694         * tests/test-sprintf-posix.h (test_function): Likewise.
25695         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
25696         * tests/test-printf-posix.h (test_function): Likewise.
25697         * tests/test-printf-posix.output: Update.
25698         Reported by John Darrington <john@darrington.wattle.id.au> via
25699         Ben Pfaff <blp@cs.stanford.edu>.
25700
25701 2008-04-18  Simon Josefsson  <simon@josefsson.org>
25702
25703         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
25704         Suggested by Bruno Haible <bruno@clisp.org>.
25705
25706 2008-04-17  Bruno Haible  <bruno@clisp.org>
25707
25708         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
25709         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
25710         implementation.
25711         Patch by Bruce Merry <bmerry@gmail.com>.
25712
25713 2008-04-17  Simon Josefsson  <simon@josefsson.org>
25714
25715         * doc/posix-functions/strftime.texi (strftime): Mention that %e
25716         doesn't work under Windows.
25717
25718 2008-04-16  Bruno Haible  <bruno@clisp.org>
25719
25720         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
25721         New macros.
25722         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
25723         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
25724         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
25725         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
25726         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
25727         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
25728         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
25729         macros.
25730         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
25731         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
25732         Northern Sotho, Uighur.
25733
25734 2008-04-16  Bruno Haible  <bruno@clisp.org>
25735
25736         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
25737         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
25738         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
25739         Reported by Daniel Bergström <daniel@octocode.com>.
25740
25741 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
25742             Bruno Haible  <bruno@clisp.org>
25743
25744         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
25745         function.
25746         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
25747         New functions, mostly extracted from gl_locale_name_default.
25748         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
25749
25750 2008-04-16  Eric Blake  <ebb9@byu.net>
25751
25752         Adjust strtod detection to catch glibc 2.7 bug.
25753         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
25754         Reported by John Gatewood Ham.
25755
25756 2008-04-16  Bruno Haible  <bruno@clisp.org>
25757
25758         Add tentative support for Linux libc5.
25759         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
25760         * lib/fpurge.c (fpurge): Likewise.
25761         * lib/freadable.c (freadable): Likewise.
25762         * lib/freadahead.c (freadahead): Likewise.
25763         * lib/freading.c (freading): Likewise.
25764         * lib/freadptr.c (freadptr): Likewise.
25765         * lib/freadseek.c (freadptrinc): Likewise.
25766         * lib/fseeko.c (rpl_fseeko): Likewise.
25767         * lib/fseterr.c (fseterr): Likewise.
25768         * lib/fwritable.c (fwritable): Likewise.
25769         * lib/fwriting.c (fwriting): Likewise.
25770         Reported by Alain Guibert <alguibert+bts@free.fr>.
25771
25772 2008-04-15  Bruno Haible  <bruno@clisp.org>
25773
25774         * modules/mathl (configure.ac): Define module indicator.
25775
25776 2008-04-15  Bruno Haible  <bruno@clisp.org>
25777
25778         * lib/logl.c (logl): Remove unused variables.
25779
25780 2008-04-15  Bruno Haible  <bruno@clisp.org>
25781
25782         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
25783         fails.
25784
25785 2008-04-15  Bruno Haible  <bruno@clisp.org>
25786
25787         * lib/trim.c (trim2): Fix argument of isspace() macro.
25788
25789 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
25790
25791         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
25792         to 0.
25793         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
25794
25795 2008-04-14  Bruno Haible  <bruno@clisp.org>
25796
25797         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
25798         AC_LANG_PROGRAM argument.
25799         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
25800         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
25801         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
25802         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
25803         * m4/math_h.m4 (gl_MATH_H): Likewise.
25804         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
25805         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25806         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
25807         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
25808         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
25809         * m4/regex.m4 (gl_REGEX): Likewise.
25810         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
25811         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
25812         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25813         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
25814         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25815         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25816         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
25817         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
25818
25819 2008-04-14  Jim Meyering  <meyering@redhat.com>
25820
25821         test-strtod: fix typos: s/abs/fabs/
25822         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
25823
25824 2008-04-13  Bruno Haible  <bruno@clisp.org>
25825
25826         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
25827         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
25828         module is also used and while not building the reloc-wrapper.
25829
25830 2008-04-13  Bruno Haible  <bruno@clisp.org>
25831
25832         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
25833
25834 2008-04-13  Bruno Haible  <bruno@clisp.org>
25835
25836         Fix AIX compilation failure introduced on 2008-04-02.
25837         * tests/test-frexp.c (exp): Undefine before redefining.
25838         * tests/test-frexpl.c (exp): Likewise.
25839
25840 2008-04-13  Bruno Haible  <bruno@clisp.org>
25841
25842         Work around a HP-UX stdio bug.
25843         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
25844         * tests/test-ftello.c (main): Likewise.
25845         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
25846         * doc/posix-functions/ftello.texi: Likewise.
25847
25848 2008-04-13  Bruno Haible  <bruno@clisp.org>
25849
25850         Make test-signbit pass on HP-UX/hppa.
25851         * tests/test-signbit.c (minus_zerol): New variable.
25852         (test_signbitl): Use it.
25853
25854 2008-04-13  Bruno Haible  <bruno@clisp.org>
25855
25856         Make truncl work on OSF/1 4.0.
25857         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
25858         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
25859         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
25860         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
25861         HAVE_DECL_TRUNCL.
25862         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
25863         HAVE_DECL_TRUNCL.
25864         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
25865
25866 2008-04-13  Bruno Haible  <bruno@clisp.org>
25867
25868         * lib/unictype.h: Remove trailing comma from enumeration definitions.
25869
25870 2008-04-13  Bruno Haible  <bruno@clisp.org>
25871
25872         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
25873         expression, so as to avoid HP-UX 11 cc compiler bug.
25874
25875 2008-04-13  Bruno Haible  <bruno@clisp.org>
25876
25877         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
25878
25879 2008-04-13  Bruno Haible  <bruno@clisp.org>
25880
25881         * lib/git-merge-changelog.c: Remove empty declaration outside of
25882         functions.
25883
25884 2008-04-13  Bruno Haible  <bruno@clisp.org>
25885
25886         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
25887
25888 2008-04-13  Bruno Haible  <bruno@clisp.org>
25889
25890         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
25891         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
25892         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
25893         also if it exists but lacks definitions of the SHUT_* macros.
25894         * modules/sys_socket (Description): Update.
25895         Reported by Elbert Pol <e.pol@chello.nl>.
25896
25897 2008-04-13  Bruno Haible  <bruno@clisp.org>
25898
25899         * lib/localcharset.c (OS2): Don't redefine if already defined.
25900         Reported by Elbert Pol <e.pol@chello.nl>.
25901
25902 2008-04-13  Bruno Haible  <bruno@clisp.org>
25903
25904         * lib/binary-io.h [__EMX__]: Include <io.h>.
25905         Reported by Elbert Pol <e.pol@chello.nl>.
25906
25907 2008-04-12  Bruno Haible  <bruno@clisp.org>
25908
25909         * lib/fpucw.h: Enable the definitions also for x86_64.
25910         Needed for NetBSD/x86_64.
25911         Reported by Thomas Klausner <tk@giga.or.at>.
25912
25913 2008-04-12  Bruno Haible  <bruno@clisp.org>
25914
25915         * tests/test-strtod.c: Include isnand.h.
25916         (main): Use isnand instead of isnan.
25917         Reported by Jim Meyering.
25918
25919 2008-04-12  Bruno Haible  <bruno@clisp.org>
25920
25921         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
25922         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
25923
25924 2008-04-12  Jim Meyering  <meyering@redhat.com>
25925
25926         * m4/math_h.m4 (gl_MATH_H): Fix typos.
25927
25928 2008-04-12  Bruno Haible  <bruno@clisp.org>
25929
25930         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
25931         Reported by Elbert Pol <e.pol@chello.nl>.
25932
25933 2008-04-12  Eric Blake  <ebb9@byu.net>
25934
25935         Work around Solaris 10 math.h bug.
25936         * m4/math_h.m4 (gl_MATH_H): Check for bug.
25937         (gl_MATH_H_DEFAULTS): Set up default.
25938         * modules/math (Makefile.am): Replace new indicators.
25939         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
25940         * tests/test-math.c (main): Test this.
25941         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
25942         * doc/posix-headers/math.texi (math.h): Mention bug.
25943         Reported by Nelson H. F. Beebe and Jim Meyering.
25944
25945 2008-04-11  Bruno Haible  <bruno@clisp.org>
25946
25947         Adapt to future versions of Apple GCC.
25948         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
25949         Reported by Peter O'Gorman <peter@pogma.com>.
25950
25951 2008-04-11  Bruno Haible  <bruno@clisp.org>
25952
25953         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
25954
25955 2008-04-11  Bruno Haible  <bruno@clisp.org>
25956
25957         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
25958
25959         * modules/getaddrinfo-tests (Makefile.am): Define
25960         test_getaddrinfo_LDADD.
25961
25962 2008-04-11  Bruno Haible  <bruno@clisp.org>
25963
25964         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
25965         (init): Fix syntax error.
25966         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
25967         is declared.
25968
25969 2008-04-11  Bruno Haible  <bruno@clisp.org>
25970
25971         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
25972         * modules/glob (Depends-on): Add stdbool.
25973
25974 2008-04-11  Bruno Haible  <bruno@clisp.org>
25975
25976         * lib/trim.c: Include <string.h>.
25977
25978 2008-04-11  Eric Blake  <ebb9@byu.net>
25979
25980         Avoid compile failure on OS/2.
25981         * lib/regex_internal.h (internal_function): Disable optimization
25982         on OS/2 (__EMX__), where it caused compiler error.
25983         Reported by Elbert Pol.
25984
25985 2008-04-11  Bruno Haible  <bruno@clisp.org>
25986
25987         Flush the standard error stream before aborting. Needed on mingw.
25988         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
25989         * tests/test-array_list.c (ASSERT): Likewise.
25990         * tests/test-array_oset.c (ASSERT): Likewise.
25991         * tests/test-avltree_list.c (ASSERT): Likewise.
25992         * tests/test-avltree_oset.c (ASSERT): Likewise.
25993         * tests/test-avltreehash_list.c (ASSERT): Likewise.
25994         * tests/test-binary-io.c (ASSERT): Likewise.
25995         * tests/test-byteswap.c (ASSERT): Likewise.
25996         * tests/test-c-ctype.c (ASSERT): Likewise.
25997         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
25998         * tests/test-c-strcasestr.c (ASSERT): Likewise.
25999         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
26000         * tests/test-c-strstr.c (ASSERT): Likewise.
26001         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
26002         * tests/test-canonicalize.c (ASSERT): Likewise.
26003         * tests/test-carray_list.c (ASSERT): Likewise.
26004         * tests/test-ceilf1.c (ASSERT): Likewise.
26005         * tests/test-ceilf2.c (ASSERT): Likewise.
26006         * tests/test-ceill.c (ASSERT): Likewise.
26007         * tests/test-count-one-bits.c (ASSERT): Likewise.
26008         * tests/test-fbufmode.c (ASSERT): Likewise.
26009         * tests/test-fflush2.c (ASSERT): Likewise.
26010         * tests/test-floorf1.c (ASSERT): Likewise.
26011         * tests/test-floorf2.c (ASSERT): Likewise.
26012         * tests/test-floorl.c (ASSERT): Likewise.
26013         * tests/test-fopen.c (ASSERT): Likewise.
26014         * tests/test-fpending.c (ASSERT): Likewise.
26015         * tests/test-fprintf-posix.c (ASSERT): Likewise.
26016         * tests/test-fpurge.c (ASSERT): Likewise.
26017         * tests/test-freadable.c (ASSERT): Likewise.
26018         * tests/test-freadahead.c (ASSERT): Likewise.
26019         * tests/test-freading.c (ASSERT): Likewise.
26020         * tests/test-freadptr.c (ASSERT): Likewise.
26021         * tests/test-freadptr2.c (ASSERT): Likewise.
26022         * tests/test-freadseek.c (ASSERT): Likewise.
26023         * tests/test-freopen.c (ASSERT): Likewise.
26024         * tests/test-frexp.c (ASSERT): Likewise.
26025         * tests/test-frexpl.c (ASSERT): Likewise.
26026         * tests/test-fseek.c (ASSERT): Likewise.
26027         * tests/test-fseeko.c (ASSERT): Likewise.
26028         * tests/test-fstrcmp.c (ASSERT): Likewise.
26029         * tests/test-ftell.c (ASSERT): Likewise.
26030         * tests/test-ftello.c (ASSERT): Likewise.
26031         * tests/test-func.c (ASSERT): Likewise.
26032         * tests/test-fwritable.c (ASSERT): Likewise.
26033         * tests/test-fwriting.c (ASSERT): Likewise.
26034         * tests/test-getdelim.c (ASSERT): Likewise.
26035         * tests/test-getline.c (ASSERT): Likewise.
26036         * tests/test-i-ring.c (ASSERT): Likewise.
26037         * tests/test-iconv-utf.c (ASSERT): Likewise.
26038         * tests/test-iconv.c (ASSERT): Likewise.
26039         * tests/test-isfinite.c (ASSERT): Likewise.
26040         * tests/test-isnand.c (ASSERT): Likewise.
26041         * tests/test-isnanf.c (ASSERT): Likewise.
26042         * tests/test-isnanl.h (ASSERT): Likewise.
26043         * tests/test-ldexpl.c (ASSERT): Likewise.
26044         * tests/test-linked_list.c (ASSERT): Likewise.
26045         * tests/test-linkedhash_list.c (ASSERT): Likewise.
26046         * tests/test-localename.c (ASSERT): Likewise.
26047         * tests/test-lseek.c (ASSERT): Likewise.
26048         * tests/test-mbscasecmp.c (ASSERT): Likewise.
26049         * tests/test-mbscasestr1.c (ASSERT): Likewise.
26050         * tests/test-mbscasestr2.c (ASSERT): Likewise.
26051         * tests/test-mbscasestr3.c (ASSERT): Likewise.
26052         * tests/test-mbscasestr4.c (ASSERT): Likewise.
26053         * tests/test-mbschr.c (ASSERT): Likewise.
26054         * tests/test-mbscspn.c (ASSERT): Likewise.
26055         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
26056         * tests/test-mbspbrk.c (ASSERT): Likewise.
26057         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
26058         * tests/test-mbsrchr.c (ASSERT): Likewise.
26059         * tests/test-mbsspn.c (ASSERT): Likewise.
26060         * tests/test-mbsstr1.c (ASSERT): Likewise.
26061         * tests/test-mbsstr2.c (ASSERT): Likewise.
26062         * tests/test-mbsstr3.c (ASSERT): Likewise.
26063         * tests/test-memchr2.c (ASSERT): Likewise.
26064         * tests/test-memmem.c (ASSERT): Likewise.
26065         * tests/test-open.c (ASSERT): Likewise.
26066         * tests/test-printf-frexp.c (ASSERT): Likewise.
26067         * tests/test-printf-frexpl.c (ASSERT): Likewise.
26068         * tests/test-printf-posix.c (ASSERT): Likewise.
26069         * tests/test-quotearg.c (ASSERT): Likewise.
26070         * tests/test-rbtree_list.c (ASSERT): Likewise.
26071         * tests/test-rbtree_oset.c (ASSERT): Likewise.
26072         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
26073         * tests/test-round1.c (ASSERT): Likewise.
26074         * tests/test-roundf1.c (ASSERT): Likewise.
26075         * tests/test-roundl.c (ASSERT): Likewise.
26076         * tests/test-signbit.c (ASSERT): Likewise.
26077         * tests/test-sleep.c (ASSERT): Likewise.
26078         * tests/test-snprintf-posix.c (ASSERT): Likewise.
26079         * tests/test-snprintf.c (ASSERT): Likewise.
26080         * tests/test-sprintf-posix.c (ASSERT): Likewise.
26081         * tests/test-stat-time.c (ASSERT): Likewise.
26082         * tests/test-strcasestr.c (ASSERT): Likewise.
26083         * tests/test-strerror.c (ASSERT): Likewise.
26084         * tests/test-striconv.c (ASSERT): Likewise.
26085         * tests/test-striconveh.c (ASSERT): Likewise.
26086         * tests/test-striconveha.c (ASSERT): Likewise.
26087         * tests/test-strsignal.c (ASSERT): Likewise.
26088         * tests/test-strstr.c (ASSERT): Likewise.
26089         * tests/test-strtod.c (ASSERT): Likewise.
26090         * tests/test-trunc1.c (ASSERT): Likewise.
26091         * tests/test-trunc2.c (ASSERT): Likewise.
26092         * tests/test-truncf1.c (ASSERT): Likewise.
26093         * tests/test-truncf2.c (ASSERT): Likewise.
26094         * tests/test-truncl.c (ASSERT): Likewise.
26095         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
26096         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
26097         * tests/test-vasnprintf.c (ASSERT): Likewise.
26098         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
26099         * tests/test-vasprintf.c (ASSERT): Likewise.
26100         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
26101         * tests/test-vprintf-posix.c (ASSERT): Likewise.
26102         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
26103         * tests/test-vsnprintf.c (ASSERT): Likewise.
26104         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
26105         * tests/test-wcwidth.c (ASSERT): Likewise.
26106         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
26107         * tests/test-xprintf-posix.c (ASSERT): Likewise.
26108         * tests/test-xvasprintf.c (ASSERT): Likewise.
26109         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
26110         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
26111         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
26112         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
26113         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
26114         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
26115         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
26116         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
26117         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
26118         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
26119         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
26120         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
26121         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
26122         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
26123         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
26124         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
26125         * tests/unictype/test-block_list.c (ASSERT): Likewise.
26126         * tests/unictype/test-block_of.c (ASSERT): Likewise.
26127         * tests/unictype/test-block_test.c (ASSERT): Likewise.
26128         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
26129         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
26130         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
26131         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
26132         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
26133         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
26134         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
26135         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
26136         * tests/unictype/test-combining.c (ASSERT): Likewise.
26137         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
26138         * tests/unictype/test-digit.c (ASSERT): Likewise.
26139         * tests/unictype/test-mirror.c (ASSERT): Likewise.
26140         * tests/unictype/test-numeric.c (ASSERT): Likewise.
26141         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
26142         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
26143         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
26144         * tests/unictype/test-scripts.c (ASSERT): Likewise.
26145         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
26146         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
26147         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
26148         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
26149         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
26150         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
26151         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
26152         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
26153         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
26154         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
26155         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
26156         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
26157         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
26158         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
26159         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
26160         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
26161         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
26162         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
26163         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
26164         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
26165         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
26166         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
26167         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
26168         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
26169         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
26170         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
26171         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
26172         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
26173         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
26174         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
26175         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
26176         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
26177         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
26178         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
26179         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
26180         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
26181         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
26182         Reported by Eric Blake.
26183
26184 2008-04-11  Bruno Haible  <bruno@clisp.org>
26185
26186         * lib/wchar.in.h: Tweak comment.
26187
26188 2008-04-11  Bruno Haible  <bruno@clisp.org>
26189
26190         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
26191         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
26192         gl_COMMON.
26193         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
26194
26195 2008-04-11  Bruno Haible  <bruno@clisp.org>
26196
26197         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
26198
26199 2008-04-11  Simon Josefsson  <simon@josefsson.org>
26200
26201         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
26202         of attempting to use non-existing /dev/*random.  Based on patch
26203         from Adam Strzelecki <ono@java.pl> in
26204         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
26205
26206 2008-04-08  Bruno Haible  <bruno@clisp.org>
26207
26208         Add tentative support for emx+gcc.
26209         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
26210         * lib/fpurge.c (fpurge): Likewise.
26211         * lib/freadable.c (freadable): Likewise.
26212         * lib/freadahead.c (freadahead): Likewise.
26213         * lib/freading.c (freading): Likewise.
26214         * lib/freadptr.c (freadptr): Likewise.
26215         * lib/freadseek.c (freadptrinc): Likewise.
26216         * lib/fseeko.c (rpl_fseeko): Likewise.
26217         * lib/fseterr.c (fseterr): Likewise.
26218         * lib/fwritable.c (fwritable): Likewise.
26219         * lib/fwriting.c (fwriting): Likewise.
26220         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
26221
26222 2008-04-09  Eric Blake  <ebb9@byu.net>
26223
26224         Avoid some autoconf warnings.
26225         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
26226         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
26227         * m4/afs.m4 (gl_AFS): Likewise.
26228         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
26229         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
26230         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
26231         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
26232         (gl_INTEGER_TYPE_SUFFIX): Likewise.
26233         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
26234         (AC_CHECK_DECLS_ONCE): Likewise.
26235         Rename file...
26236         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
26237         gnulib-tool requires autoconf 2.59 or better.
26238         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
26239
26240 2008-04-08  Eric Blake  <ebb9@byu.net>
26241
26242         Use 'git describe --match' if present (added in git 1.5.5).
26243         * build-aux/git-version-gen: Limit result to tags that match 'v*'
26244         if possible.
26245
26246 2008-04-08  Bruno Haible  <bruno@clisp.org>
26247
26248         Add tentative support for OpenServer.
26249         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
26250         _ptr, _cnt.
26251         * lib/fpurge.c (fpurge): Likewise.
26252         * lib/freadable.c (freadable): Likewise.
26253         * lib/freadahead.c (freadahead): Likewise.
26254         * lib/freading.c (freading): Likewise.
26255         * lib/freadptr.c (freadptr): Likewise.
26256         * lib/freadseek.c (freadptrinc): Likewise.
26257         * lib/fseeko.c (rpl_fseeko): Likewise.
26258         * lib/fseterr.c (fseterr): Likewise.
26259         * lib/fwritable.c (fwritable): Likewise.
26260         * lib/fwriting.c (fwriting): Likewise.
26261         Reported by Roger Cornelius <rac@tenzing.org> and
26262         Brian K. White <brian@aljex.com>.
26263
26264 2008-04-06  Jim Meyering  <meyering@redhat.com>
26265
26266         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
26267
26268 2008-04-06  Bruno Haible  <bruno@clisp.org>
26269
26270         Avoid possible error with non-ASCII bytes in UTF-8 locales.
26271         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
26272         * tests/test-printf-posix.sh: Likewise.
26273         * tests/test-vfprintf-posix.sh: Likewise.
26274         * tests/test-vprintf-posix.sh: Likewise.
26275         * tests/test-xprintf-posix.sh: Likewise.
26276
26277 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26278
26279         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
26280         hide error from 'ls', needed on OS/2.
26281         Report by Elbert Pol <elbert.pol@gmail.com>.
26282
26283 2008-04-04  Eric Blake  <ebb9@byu.net>
26284
26285         Make test-fseeko.c failures meaningful.
26286         * tests/test-fseeko.c: Print line number on failure.
26287         * tests/test-fseek.c: Likewise.
26288         Reported by Nelson H. F. Beebe.
26289
26290         Improve strtod bug detection check.
26291         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
26292         required for Solaris 10.
26293         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
26294
26295 2008-04-04  Bruno Haible  <bruno@clisp.org>
26296
26297         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
26298         by m4/setenv.m4.
26299
26300 2008-04-03  Eric Blake  <ebb9@byu.net>
26301
26302         Ensure sane .version contents.
26303         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
26304         version string.
26305         * build-aux/git-version-gen: Improve documentation.
26306
26307         Make GNU make output nicer.
26308         * top/GNUmakefile [!_have-Makefile]: Add dependency on
26309         MAKECMDGOALS to enforce message for all command line targets.  Set
26310         srcdir for use in maint.mk.
26311
26312         Another maintainer tweak.
26313         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
26314         a target that regenerates version.
26315
26316 2008-04-03  Jim Meyering  <meyering@redhat.com>
26317
26318         vc-list-files: don't cause coreutils "make po-check" failure
26319         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
26320
26321 2008-04-03  Eric Blake  <ebb9@byu.net>
26322
26323         Allow VPATH usage of vc-list-files.
26324         * build-aux/vc-list-files (scriptversion): Add timestamp.
26325         (options): Add --help, --version, -C.
26326         (CVS): Support installed cvsu.
26327
26328 2008-04-02  Bruno Haible  <bruno@clisp.org>
26329
26330         Avoid some "statement with no effect" warnings from gcc.
26331         * tests/test-wctype.c (main): Explicitly ignore unused values.
26332         Reported by Jim Meyering.
26333
26334 2008-04-02  Jim Meyering  <meyering@redhat.com>
26335
26336         Avoid some warnings from "gcc -Wshadow".
26337         * tests/test-frexp.c (exp): Define to a different identifier.
26338         * tests/test-frexpl.c (exp): Likewise.
26339
26340 2008-04-03  Jim Meyering  <meyering@redhat.com>
26341
26342         bootstrap: remove dangling *.[ch] symlinks from lib
26343         * build-aux/bootstrap [dangling symlink removal]: Move find's
26344         -depth option to precede all others, to avoid a warning.
26345         Remove *.[ch] files too, and from "$source_base" (usually lib/).
26346
26347 2008-04-02  Bruno Haible  <bruno@clisp.org>
26348
26349         Avoid some warnings from "gcc -Wshadow".
26350         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
26351         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
26352         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
26353         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
26354         Reported by Jim Meyering.
26355
26356 2008-04-01  Bruno Haible  <bruno@clisp.org>
26357
26358         Fix test to work on IRIX 6.5 with cc.
26359         * tests/test-math.c (numeric_equal): New function.
26360         (main): Use it.
26361
26362 2008-04-01  Bruno Haible  <bruno@clisp.org>
26363
26364         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
26365
26366 2008-04-01  Bruno Haible  <bruno@clisp.org>
26367
26368         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
26369         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
26370         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
26371         (Depends-on): Remove math.
26372
26373         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
26374         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
26375         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
26376         (Depends-on): Remove math.
26377
26378         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
26379         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
26380         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
26381         (Depends-on): Remove math.
26382         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
26383         (Depends-on): Remove math.
26384
26385         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
26386         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
26387         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
26388         (Depends-on): Remove math.
26389         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
26390         (Depends-on): Remove math.
26391
26392         * tests/test-round1.c: Include nan.h.
26393         (main): Use NaNd instead of NAN.
26394         * modules/round-tests (Files): Add tests/nan.h.
26395
26396         * tests/test-trunc1.c: Include nan.h.
26397         (main): Use NaNd instead of NAN.
26398         * modules/trunc-tests (Files): Add tests/nan.h.
26399
26400         * tests/test-roundf1.c: Include nan.h.
26401         (main): Use NaNf instead of NAN.
26402         * modules/roundf-tests (Files): Add tests/nan.h.
26403
26404         * tests/test-truncf1.c: Include nan.h.
26405         (main): Use NaNf instead of NAN.
26406         * modules/truncf-tests (Files): Add tests/nan.h.
26407
26408         * tests/test-ceilf1.c: Include nan.h.
26409         (main): Use NaNf instead of NAN.
26410         * modules/ceilf-tests (Files): Add tests/nan.h.
26411
26412         * tests/test-floorf1.c: Include nan.h.
26413         (main): Use NaNf instead of NAN.
26414         * modules/floorf-tests (Files): Add tests/nan.h.
26415
26416         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
26417         (main): Use NaNf instead of NAN.
26418         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
26419
26420         * tests/test-isnand.c: Include nan.h instead of <math.h>.
26421         (main): Use NaNd instead of NAN.
26422         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
26423
26424         * tests/test-frexp.c: Include nan.h.
26425         (main): Use NaNd instead of NAN.
26426         * modules/frexp-tests (Files): Add tests/nan.h.
26427
26428         * lib/isnan.c: Don't include <math.h>.
26429         (FUNC): Don't use NAN macro.
26430         * modules/isnand-nolibm (Depends-on): Remove math.
26431         * modules/isnanf-nolibm (Depends-on): Remove math.
26432         * modules/isnanl (Depends-on): Remove math.
26433         * modules/isnanl-nolibm (Depends-on): Remove math.
26434
26435         * tests/nan.h: New file.
26436
26437 2008-04-01  Eric Blake  <ebb9@byu.net>
26438
26439         Fix typos.
26440         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
26441         values to be the right type.
26442
26443         For now, cater to gnulib strtod inaccuracies.
26444         * tests/test-strtod.c (main): Allow 1-ulp error on expected
26445         fractional results.  While not as nice from a QoI perspective, it
26446         is a quicker patch than correctly implementing decimal to binary
26447         rounding.
26448
26449 2008-03-31  Eric Blake  <ebb9@byu.net>
26450
26451         Guarantee a definition of NAN.
26452         * lib/math.in.h (NAN): Define if missing.
26453         * tests/test-math.c (main): Test it.
26454         * doc/posix-headers/math.texi (math.h): Document this.
26455         * lib/isnan.c (rpl_isnand): Use it.
26456         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
26457         * tests/test-floorf1.c (NaN): Likewise.
26458         * tests/test-frexp.c (NaN): Likewise.
26459         * tests/test-isnand.c (NaN): Likewise.
26460         * tests/test-isnanf.c (NaN): Likewise.
26461         * tests/test-round1.c (NaN): Likewise.
26462         * tests/test-roundf1.c (NaN): Likewise.
26463         * tests/test-snprintf-posix.h (NaN): Likewise.
26464         * tests/test-sprintf-posix.h (NaN): Likewise.
26465         * tests/test-trunc1.c (NaN): Likewise.
26466         * tests/test-truncf1.c (NaN): Likewise.
26467         * tests/test-vasnprintf-posix.c (NaN): Likewise.
26468         * tests/test-vasprintf-posix.c (NaN): Likewise.
26469         * modules/isnand-nolibm (Depends-on): Add math.
26470         * modules/isnanf-nolibm (Depends-on): Likewise.
26471         * modules/isnanl (Depends-on): Likewise.
26472         * modules/isnanl-nolibm (Depends-on): Likewise.
26473         * modules/snprintf-posix-tests (Depends-on): Likewise.
26474         * modules/sprintf-posix-tests (Depends-on): Likewise.
26475         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
26476         * modules/vsprintf-posix-tests (Depends-on): Likewise.
26477         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
26478         * modules/vasprintf-posix-tests (Depends-on): Likewise.
26479
26480 2008-03-31  Bruno Haible  <bruno@clisp.org>
26481
26482         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
26483         * doc/posix-functions/strtod.texi: Likewise.
26484
26485 2008-03-31  Bruno Haible  <bruno@clisp.org>
26486
26487         * tests/test-strtod.c (main): Don't use C99 syntax.
26488
26489 2008-03-31  Bruno Haible  <bruno@clisp.org>
26490
26491         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
26492         Reported by Eric Blake.
26493
26494 2008-03-31  Jim Meyering  <meyering@redhat.com>
26495
26496         Don't compare actual signbit return values.
26497         * tests/test-strtod.c (main): Rather, compare only their
26498         zero/non-zero nature.
26499
26500 2008-03-31  Eric Blake  <ebb9@byu.net>
26501
26502         More strtod documentation.
26503         * doc/posix-functions/strtod.texi (strtod): Interpret more test
26504         failures as distinct bugs.
26505
26506 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
26507
26508         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
26509         Problem reported by Erik Benada in
26510         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
26511
26512 2008-03-30  Bruno Haible  <bruno@clisp.org>
26513
26514         * tests/test-strtod.c: Add comments about which assertion fails on which
26515         platform.
26516         * doc/posix-functions/strtod.texi: Add info about many more platforms.
26517
26518 2008-03-30  Eric Blake  <ebb9@byu.net>
26519
26520         Test signbit behavior on zeros.
26521         * tests/test-signbit.c (test_signbitf): Add tests for zero.
26522         (test_signbitd, test_signbitl): Likewise.
26523
26524         More strtod touchups.
26525         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
26526         sign of negative underflow, for now.  Use .5, not .1.
26527         * doc/posix-functions/strtod.texi (strtod): Mention these
26528         limitations.
26529         Reported by Jim Meyering.
26530
26531 2008-03-30  Bruno Haible  <bruno@clisp.org>
26532
26533         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
26534         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
26535
26536 2008-03-30  Bruno Haible  <bruno@clisp.org>
26537
26538         Avoid failure when attempting to return empty iconv results on some
26539         platforms.
26540         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
26541         allocation, don't report ENOMEM when the resulting string is empty.
26542
26543 2008-03-30  Bruno Haible  <bruno@clisp.org>
26544
26545         Fix buffer overrun.
26546         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
26547         Don't consider the width for tmp_length. Check count against tmp_length
26548         before doing the padding. Ensure enough allocation during padding.
26549
26550 2008-03-30  Eric Blake  <ebb9@byu.net>
26551
26552         strtod touchups.
26553         * lib/strtod.c (strtod): Avoid compiler warnings.
26554         Reported by Jim Meyering.
26555
26556 2008-03-30  Bruno Haible  <bruno@clisp.org>
26557
26558         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
26559         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
26560         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
26561         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
26562         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
26563         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
26564         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
26565         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
26566
26567         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
26568         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
26569         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
26570         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
26571         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
26572         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
26573         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
26574         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
26575
26576         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
26577         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
26578         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
26579         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
26580         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
26581         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
26582         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
26583         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
26584
26585         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
26586         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
26587
26588         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
26589         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
26590
26591         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
26592         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
26593
26594         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
26595         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
26596         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
26597
26598         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
26599         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
26600         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
26601
26602         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
26603         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
26604         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
26605
26606         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
26607         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
26608         * modules/vasprintf (Depends-on): Add EOVERFLOW.
26609
26610         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
26611         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
26612         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
26613         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
26614         (Depends-on): Add EOVERFLOW.
26615         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
26616         (Depends-on): Add EOVERFLOW.
26617         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26618         (Depends-on): Add EOVERFLOW.
26619         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
26620         (Depends-on): Add EOVERFLOW.
26621         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26622         (Depends-on): Add EOVERFLOW.
26623         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
26624         (Depends-on): Add EOVERFLOW.
26625         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26626         (Depends-on): Add EOVERFLOW.
26627         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
26628         (Depends-on): Add EOVERFLOW.
26629
26630         * lib/sprintf.c (EOVERFLOW): Remove fallback.
26631         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
26632         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
26633
26634         * lib/snprintf.c (EOVERFLOW): Remove fallback.
26635         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
26636         * modules/snprintf (Depends-on): Add EOVERFLOW.
26637
26638         * lib/poll.c (EOVERFLOW): Remove fallback.
26639         * modules/poll (Depends-on): Add EOVERFLOW.
26640
26641         * lib/getugroups.c (EOVERFLOW): Remove fallback.
26642         * modules/getugroups (Depends-on): Add EOVERFLOW.
26643
26644         * lib/getdelim.c (EOVERFLOW): Remove fallback.
26645         * modules/getdelim (Depends-on): Add EOVERFLOW.
26646
26647         * lib/ftell.c (EOVERFLOW): Remove fallback.
26648         * modules/ftell (Depends-on): Add EOVERFLOW.
26649
26650         * lib/fprintf.c (EOVERFLOW): Remove fallback.
26651         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
26652         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
26653
26654         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
26655
26656         * modules/EOVERFLOW-tests: New file.
26657         * tests/test-EOVERFLOW.c: New file.
26658
26659         * modules/EOVERFLOW: New file.
26660         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
26661
26662 2008-03-30  Bruno Haible  <bruno@clisp.org>
26663
26664         Fix bug introduced on 2007-06-10.
26665         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
26666         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
26667
26668 2008-03-30  Bruno Haible  <bruno@clisp.org>
26669
26670         Improve freadseek's efficiency after ungetc.
26671         * lib/freadseek.c: Include freadahead.h.
26672         (freadptrinc): New function, extracted from freadseek.
26673         (freadseek): Use it in a loop. Use freadahead to determine the number
26674         of loop iterations.
26675         * modules/freadseek (Depends-on): Add freadahead.
26676         (configure.ac): Require AC_C_INLINE.
26677
26678 2008-03-30  Bruno Haible  <bruno@clisp.org>
26679
26680         * lib/freadseek.c (freadseek): Don't ignore the return value of
26681         freadptr.
26682
26683 2008-03-29  Eric Blake  <ebb9@byu.net>
26684
26685         Add hex float support.
26686         * modules/strtod (Depends-on): Add c-ctype.
26687         (Link): Mention POW_LIB.
26688         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
26689         whitespace between 'e' and exponent.
26690         * tests/test-strtod.c (main): Enable hex float tests.
26691         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
26692         now provides.
26693
26694         Document various strtod bugs, with some fixes.
26695         * doc/posix-functions/strtod.texi (strtod): Document bugs with
26696         "-0x", "inf", "nan", and hex constants.
26697         * doc/posix-functions/atof.texi (atof): Likewise.
26698         * modules/stdlib (Makefile.am): Support strtod.
26699         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
26700         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
26701         detect additional strtod bugs.
26702         * lib/stdlib.in.h (rpl_strtod): Add declarations.
26703         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
26704         bool where appropriate.  Parse 'inf' and 'nan'.
26705         * tests/test-strtod.c: New file.
26706         * modules/strtod (Depends-on): Add stdbool, stdlib.
26707         (configure.ac): Turn on module indicator.
26708         * modules/strtod-tests: New module.
26709
26710 2008-03-29  Eric Blake  <ebb9@byu.net>
26711
26712         Fix ftell on mingw.
26713         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
26714         * modules/ftell-tests (Depends-on): Add binary-io.
26715         * modules/ftello-tests (Depends-on): Likewise.
26716         * tests/test-ftell.c (main): Enhance test to cover behavior after
26717         ungetc.  Enforce binary mode.
26718         * tests/test-ftello.c (main): Likewise.
26719
26720         Pass test-freadseek on cygwin.
26721         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
26722         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
26723         ungetc buffer.
26724
26725         * tests/test-fflush2.c (main): Fix typo.
26726
26727 2008-03-29  Bruno Haible  <bruno@clisp.org>
26728
26729         * tests/test-fflush2.c (main): Temporarily disable the contents of
26730         this test.
26731         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
26732         Reported by Eric Blake.
26733
26734 2008-03-28  Simon Josefsson  <simon@josefsson.org>
26735
26736         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
26737         (GC_SHA224_DIGEST_SIZE): Add.
26738
26739         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
26740         (gc_hash_digest_length): Likewise.
26741         (gc_hash_buffer): Likewise.
26742
26743 2008-03-25  Bruno Haible  <bruno@clisp.org>
26744
26745         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
26746         detail which gettext release to use.
26747         Reported by Simon Josefsson.
26748
26749 2008-03-26  Jim Meyering  <meyering@redhat.com>
26750
26751         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
26752         * modules/gnumakefile (clean-GNUmakefile): Also, use
26753         test ... && ... || : syntax rather than if-then ... fi.
26754
26755         gnumakefile: Don't double-quote-expand $(VPATH) value.
26756         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
26757
26758 2008-03-24  Eric Blake  <ebb9@byu.net>
26759
26760         Alter GNUmakefile to install into top directory.
26761         * modules/maintainer-makefile: Split, and add dependency...
26762         * modules/gnumakefile: to this new module.
26763         * build-aux/GNUmakefile: Move...
26764         * top/GNUmakefile: ...here.
26765         * build-aux/maint.mk: Move...
26766         * top/maint.mk: ...here.
26767         * MODULES.html.sh (Support for maintaining...): Document new
26768         module.
26769
26770 2008-03-23  Bruno Haible  <bruno@clisp.org>
26771
26772         * gnulib-tool: New options --vc-files, --no-vc-files.
26773         (func_usage): Document them.
26774         (vc_files): New variable.
26775         (func_import): Consider vc_files.
26776         (func_create_testdir): Set vc_files to empty.
26777         Suggested by Jim Meyering and Karl Berry.
26778
26779 2008-03-23  Bruno Haible  <bruno@clisp.org>
26780
26781         Fix regex compilation error on HP-UX 11.
26782         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
26783         * modules/regex (Files): Add m4/mbstate_t.m4.
26784         Reported by Ton Voon <ton.voon@altinity.com>.
26785
26786 2008-03-23  Bruno Haible  <bruno@clisp.org>
26787
26788         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
26789
26790 2008-03-23  Eric Blake  <ebb9@byu.net>
26791             Bruno Haible  <bruno@clisp.org>
26792
26793         Install files from top/ in the destination directory.
26794         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
26795         augmentation also for the files from top/.
26796         (func_import, func_create_testdir): Rewrite file names:
26797         top/filename -> filename.
26798
26799 2008-03-23  Bruno Haible  <bruno@clisp.org>
26800
26801         Tweak "gnulib --version" output.
26802         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
26803
26804 2008-03-23  Bruno Haible  <bruno@clisp.org>
26805
26806         Tweak "gnulib --version" output.
26807         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
26808         rather than contents of ChangeLog, when possible.
26809
26810 2008-03-21  Eric Blake  <ebb9@byu.net>
26811
26812         More --version tweaks.
26813         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
26814         date of last ChangeLog entry.
26815
26816 2008-03-21  Jim Meyering  <meyering@redhat.com>
26817
26818         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
26819
26820 2008-03-20  Eric Blake  <ebb9@byu.net>
26821
26822         VPATH fix.
26823         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
26824
26825 2008-03-20  Simon Josefsson  <simon@josefsson.org>
26826
26827         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
26828         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
26829
26830 2008-03-20  Eric Blake  <ebb9@byu.net>
26831
26832         Sync GNUmakefile with coreutils.
26833         * build-aux/GNUmakefile (have-Makefile): Rename...
26834         (_have-Makefile): ...to this, for namespace consideration.
26835         (GNUmakefile.cfg): Include, if present.
26836         (_autoreconf): Define a default.
26837         (_is-dist-target): New rule for rebuilds to pick up intra-release
26838         version.
26839         (maint-cfg.mk): Rename...
26840         (cfg.mk): ...to this.
26841
26842 2008-03-18  Jim Meyering  <meyering@redhat.com>
26843
26844         New script and module: mktempd
26845         * MODULES.html.sh (maint+release support): Add mktempd.
26846         * build-aux/mktempd: New file.
26847         * modules/mktempd: New file.
26848
26849 2008-03-15  Jim Meyering  <meyering@redhat.com>
26850
26851         Undo last change.
26852         * lib/sha1.c, lib/md5.c: 63 != ~63.
26853         Reported by Andreas Schwab.
26854
26855         sha1.c, md5.c: Hoist a redundant expression.
26856         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
26857         "ctx->buflen" only once, before calling *_process_block.
26858         * lib/md5.c (md5_process_bytes): Likewise.
26859
26860 2008-03-14  Eric Blake  <ebb9@byu.net>
26861
26862         Bump copyright year in files generated by gnulib-tool.
26863         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
26864         gnulib-tool, rather than hard-coding it.
26865
26866         Fix 'gnulib-tool --version' output to work with git.
26867         * gnulib-tool (func_gnulib_dir): New function, extracted from...
26868         (startup): ...here.
26869         (func_version): Use it to invoke git-version-gen, rather than
26870         relying on CVS keyword expansion.  Modernize wording.
26871         (cvsdatestamp, last_checkin_date, version): Kill unused
26872         variables.
26873
26874 2008-03-12  Jim Meyering  <meyering@redhat.com>
26875
26876         Recognize optional cast of the argument to free.
26877         * build-aux/useless-if-before-free: Update regexps.
26878
26879         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
26880
26881 2008-03-11  Bruno Haible  <bruno@clisp.org>
26882
26883         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
26884         by a single package.
26885         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
26886         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
26887         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
26888         Reported by Sam Steingold <sds@gnu.org>.
26889
26890 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
26891
26892         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
26893         repositories.
26894
26895 2008-03-11  Bruno Haible  <bruno@clisp.org>
26896
26897         Avoid conflicts between local macro definitions.
26898         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
26899         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
26900
26901 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
26902             Bruno Haible  <bruno@clisp.org>
26903
26904         Make va_copy work with some version of xlc on AIX 5.1.
26905         * lib/stdarg.in.h: New file.
26906         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
26907         On AIX, use a <stdarg.h> file substitute.
26908         * modules/stdarg (Files): Add lib/stdarg.in.h.
26909         (Depends-on): Add include_next.
26910         (Makefile.am): Build a stdarg.h substitute if requested.
26911         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
26912
26913 2008-03-10  Bruno Haible  <bruno@clisp.org>
26914
26915         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
26916         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
26917         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
26918
26919 2008-03-10  Bruno Haible  <bruno@clisp.org>
26920
26921         * modules/stdlib (Depends-on): Add include_next, remove
26922         absolute-header.
26923
26924 2008-03-09  Bruno Haible  <bruno@clisp.org>
26925
26926         * lib/freadahead.h (freadahead): Document more precisely.
26927         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
26928         the sum of both buffer sizes.
26929         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
26930         * NEWS: Document the change.
26931
26932 2008-03-09  Bruno Haible  <bruno@clisp.org>
26933
26934         Extend freadptr to return also the buffer size.
26935         * lib/freadptr.h (freadptr): Add sizep argument.
26936         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
26937         (freadptr): Add sizep argument. Determine buffer size like freadahead
26938         does.
26939         * tests/test-freadptr.c: Don't include freadahead.h.
26940         (main): Adapt for new calling convention of freadptr.
26941         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
26942         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
26943         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
26944         tests/test-freadptr2.sh.
26945         (Depends): Remove freadahead.
26946         (TESTS): Add test-freadptr2.sh.
26947         (check_PROGRAMS): Add test-freadptr2.
26948
26949 2008-03-09  Bruno Haible  <bruno@clisp.org>
26950
26951         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
26952         Report and solution by Simon Josefsson.
26953
26954 2008-03-06  Bruno Haible  <bruno@clisp.org>
26955
26956         Make fflush after ungetc work on BSD platforms.
26957         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
26958         * tests/test-fflush2.c: New file.
26959         * tests/test-fflush2.sh: New file.
26960         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
26961         tests/test-fflush2.c.
26962         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
26963         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
26964
26965 2008-03-06  Eric Blake  <ebb9@byu.net>
26966
26967         Likewise for ftello.
26968         * modules/ftello (Dependencies): Add extensions.
26969         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
26970
26971 2008-03-06  Bruno Haible  <bruno@clisp.org>
26972
26973         * modules/fseeko (Dependencies): Add extensions.
26974         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
26975         Needed on glibc systems.
26976
26977 2008-03-06  Bruno Haible  <bruno@clisp.org>
26978
26979         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
26980         email address.
26981         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
26982
26983 2008-03-06  Bruno Haible  <bruno@clisp.org>
26984
26985         * users.txt: Add libgnupdf.
26986
26987 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
26988
26989         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
26990         (Header File Substitutes, Function Substitutes,
26991         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
26992         (Build robot for gnulib): Fix typo.
26993
26994 2008-03-06  Bruno Haible  <bruno@clisp.org>
26995
26996         * doc/gnulib-tool.texi (VCS Issues): Small updates.
26997         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
26998
26999 2008-03-06  Bruno Haible  <bruno@clisp.org>
27000
27001         * doc/func.texi: New file, extracted from doc/gnulib.texi.
27002         * doc/gnulib.texi: Include it.
27003
27004 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27005
27006         * modules/func (License): Change license to unlimited; there was
27007         no LGPL parts in the module anyway.
27008
27009 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27010
27011         * modules/__func__: Renamed to modules/func.
27012         * modules/__func__-tests: Renamed to modules/func-tests.
27013         * tests/test-__func__.c: Renamed to tests/test-func.c.
27014         * m4/__func__.m4: Renamed to m4/func.m4.
27015         * doc/gnulib.texi (__func__): Section renamed to func.
27016         Suggested by Eric Blake <ebb9@byu.net>.
27017
27018 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27019
27020         * doc/gnulib.texi (__func__): Use C99 terminology when talking
27021         about __func__.  Make example self-contained.  Suggested by Eric
27022         Blake <ebb9@byu.net>.
27023
27024         * tests/test-__func__.c (main): Avoid extraneous () around __func.
27025         Suggested by Eric Blake <ebb9@byu.net>.
27026
27027 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27028
27029         * modules/__func__: New file.
27030         * modules/__func__-tests: New file.
27031         * tests/test-__func__.c: New file.
27032         * m4/__func__.m4: New file.
27033         * doc/gnulib.texi (__func__): Document __func__ module.
27034
27035 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27036
27037         * modules/byteswap (License): Re-license as LGPLv2+.
27038
27039 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27040
27041         * doc/Makefile: Add pdf target.
27042
27043 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27044
27045         * modules/inline (License): Use 'unlimited', since there are only
27046         *.m4 files in this module.
27047
27048 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
27049             Bruno Haible  <bruno@clisp.org>
27050
27051         Add support for HP C 7.1 on OpenVMS 8.3.
27052         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
27053
27054 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
27055
27056         Update VMS specifics.
27057         * lib/getopt.c [VMS]: Remove include of unixlib.h.
27058
27059 2008-03-02  Jim Meyering  <meyering@redhat.com>
27060
27061         Remove the last dependency on the "free" module.
27062         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
27063         Reported by Bob Proulx.
27064
27065         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
27066
27067         Remove useless "if" tests before free.  Deprecate "free" module.
27068         * doc/posix-functions/free.texi: Mention that this
27069         module is no longer useful.
27070         * modules/free (Notice): Say this module is obsolete.
27071         * modules/readutmp (Depends-on): Remove free.
27072         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
27073         * lib/putenv.c (putenv): Likewise.
27074         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
27075         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
27076         * tests/test-c-strcasestr.c (main): Likewise.
27077         * tests/test-c-strstr.c (main): Likewise.
27078         * tests/test-mbscasestr1.c (main): Likewise.
27079         * tests/test-mbscasestr2.c (main): Likewise.
27080         * tests/test-mbsstr1.c (main): Likewise.
27081         * tests/test-mbsstr2.c (main): Likewise.
27082         * tests/test-memmem.c (main): Likewise.
27083         * tests/test-strcasestr.c (main): Likewise.
27084         * tests/test-striconv.c (main): Likewise.
27085         * tests/test-striconveh.c (main): Likewise.
27086         * tests/test-striconveha.c (main): Likewise.
27087         * tests/test-strstr.c (main): Likewise.
27088
27089         * build-aux/git-version-gen: Adjust a comment and the Usage string.
27090
27091         bootstrap: sync from coreutils again
27092         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
27093
27094 2008-03-01  Jim Meyering  <meyering@redhat.com>
27095
27096         bootstrap: sync from coreutils
27097         * build-aux/bootstrap (update_po_files): Copy a .po file into place
27098         also when the target doesn't exist.
27099
27100 2008-03-01  Eric Blake  <ebb9@byu.net>
27101
27102         Fix bugs in last patch.
27103         * lib/memchr2.c (memchr2): Fix typo.
27104         * tests/test-memchr2.c: Test previous bug, and don't use GNU
27105         extension.
27106         Reported by Bruce Korb.
27107
27108         New module 'memchr2'.
27109         * modules/memchr2: New file.
27110         * modules/memchr2-tests: Likewise.
27111         * lib/memchr2.h: Likewise.
27112         * lib/memchr2.c: Likewise, based on memchr.c.
27113         * tests/test-memchr2.c: New test.
27114         * MODULES.html.sh (String handling): Add memchr2.
27115
27116 2008-02-29  Bruno Haible  <bruno@clisp.org>
27117
27118         * modules/freadseek-tests: New file.
27119         * tests/test-freadseek.sh: New file.
27120         * tests/test-freadseek.c: New file.
27121
27122         New module 'freadseek'.
27123         * modules/freadseek: New file.
27124         * lib/freadseek.h: New file.
27125         * lib/freadseek.c: New file.
27126         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
27127
27128 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
27129
27130         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
27131         wydawca.
27132
27133         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
27134         program_invocation_name and program_invocation_short_name are
27135         present.
27136
27137 2008-02-28  Bruno Haible  <bruno@clisp.org>
27138
27139         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
27140         * tests/test-freadptr.sh: Also test non-seekable stdin.
27141
27142 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
27143
27144         * build-aux/bootstrap (source_base, m4_base)
27145         (doc_base, tests_base): New variables.
27146         (gnulib_tool_options): Do not hardcode base directories, use
27147         the above variables instead.
27148
27149 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
27150
27151         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
27152
27153 2008-02-28  Bruno Haible  <bruno@clisp.org>
27154
27155         * modules/freadptr-tests: New file.
27156         * tests/test-freadptr.sh: New file.
27157         * tests/test-freadptr.c: New file.
27158
27159         New module 'freadptr'.
27160         * modules/freadptr: New file.
27161         * lib/freadptr.h: New file.
27162         * lib/freadptr.c: New file.
27163         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
27164
27165 2008-02-26  Karl Berry  <karl@freefriends.org>
27166
27167         Sync from Libtool:
27168         * libltdl/argz.c (argz_add, argz_count): New functions.
27169         * libltdl/argz.in.h: Declare them.
27170         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
27171
27172 2008-02-22  Bruno Haible  <bruno@clisp.org>
27173
27174         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
27175         is a pointer type.  Needed for HP-UX 10.
27176         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
27177         * doc/posix-functions/gmtime_r.texi: Likewise.
27178         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
27179
27180 2008-02-24  Bruno Haible  <bruno@clisp.org>
27181
27182         * modules/environ-tests: New file.
27183         * tests/test-environ.c: New file.
27184
27185         New module 'environ'.
27186         * modules/environ: New file.
27187         * lib/unistd.in.h (environ): New declaration.
27188         * m4/environ.m4: New file.
27189         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
27190         after use.
27191         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
27192         HAVE_DECL_ENVIRON.
27193         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
27194         HAVE_DECL_ENVIRON.
27195         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
27196         wrong claim that 'environ' is missing on some systems.
27197         * modules/execute (Depends-on): Add environ.
27198         * lib/execute.c (environ): Remove fallback declaration.
27199         * modules/pipe (Depends-on): Add environ.
27200         * lib/pipe.c (environ): Remove fallback declaration.
27201         * modules/setenv (Depends-on): Add environ.
27202         * lib/setenv.c (environ): Remove fallback declaration.
27203         * modules/unsetenv (Depends-on): Add environ.
27204         * lib/unsetenv.c (environ): Remove fallback declaration.
27205         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
27206         m4/environ.m4.
27207         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
27208         (gl_PREREQ_UNSETENV): Likewise.
27209
27210 2008-02-24  Bruno Haible  <bruno@clisp.org>
27211
27212         * doc/posix-functions/environ.texi: Document the MacOS X problem.
27213
27214 2008-02-20  Bob Proulx  <bob@proulx.com>
27215
27216         Enable use of older two part flavor 'git describe'.
27217         * build-aux/git-version-gen: If using the older two part flavor of
27218         git version then recreate the third part now present in the
27219         newer three part flavor of git describe.
27220
27221 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
27222
27223         * lib/fts.c (fts_build): Typo correction to comment.
27224
27225 2008-02-17  Bruno Haible  <bruno@clisp.org>
27226
27227         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
27228         generating no-op conflicts.
27229
27230 2008-02-17  Bruno Haible  <bruno@clisp.org>
27231
27232         Speed up by 10%.
27233         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
27234         result_entries, rather than an index-based loop.
27235
27236 2008-02-17  Bruno Haible  <bruno@clisp.org>
27237
27238         Speed up by 25%.
27239         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
27240         'hashcode_cached'.
27241         (entry_create): New function.
27242         (entry_hashcode): Use the cached hashcode if possible.
27243         (read_changelog_file, try_split_merged_entry): Use entry_create.
27244
27245 2008-02-17  Bruno Haible  <bruno@clisp.org>
27246
27247         Speed up from O(n^2) to O(n) for long ChangeLog files.
27248         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
27249         (read_changelog_file): Change implementation of entries_reversed list
27250         to rbtreehash.
27251         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
27252
27253 2008-02-17  Bruno Haible  <bruno@clisp.org>
27254
27255         New option --split-merged-entry.
27256         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
27257         (find_paragraph_end, try_split_merged_entry): New functions.
27258         (long_options): Add option --split-merged-entry.
27259         (usage): Document option --split-merged-entry.
27260         (main): Implement option --split-merged-entry.
27261         Reported by Eric Blake.
27262
27263 2008-02-17  Bruno Haible  <bruno@clisp.org>
27264
27265         * lib/git-merge-changelog.c: Include c-strstr.h.
27266         (main): Support the "git pull --rebase" situation.
27267         * modules/git-merge-changelog (Depends-on): Add c-strstr.
27268         Reported by Eric Blake.
27269
27270 2008-02-16  Eric Blake  <ebb9@byu.net>
27271
27272         Avoid doubling \ in common case of "c-maybe" quoting style.
27273         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
27274         eliding outer quotes.
27275         * lib/quotearg.h: Document this.
27276         * tests/test-quotearg.c (result_strings, inputs, results_g)
27277         (flag_results, locale_results): Test it by adding a new string to
27278         each test group.
27279         (compare_strings): Test new string.
27280
27281 2008-02-13  Eric Blake  <ebb9@byu.net>
27282
27283         Avoid trigraph quoting in default output.
27284         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
27285         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
27286         unless explicitly requested.
27287         * tests/test-quotearg.c (flag_results, main): Add additional tests.
27288
27289 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
27290
27291         Don't rely on signed integer overflowing to negative value.
27292         * lib/getugroups.c (getugroups): Include <limits.h>.
27293         Instead, compare against INT_MAX, and increment only if the test passes.
27294
27295 2008-02-13  Jim Meyering  <meyering@redhat.com>
27296         and Eric Blake  <ebb9@byu.net>
27297
27298         Avoid shadowing warning and compile errors on Linux.
27299         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
27300         forwarding macros on Linux.
27301         (dcgettext): Define a stub, for Linux.
27302         (results_g, main): Avoid warnings.
27303
27304 2008-02-12  Eric Blake  <ebb9@byu.net>
27305
27306         Silence warning in last patch.
27307         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
27308
27309         Quotearg part 4: add tests, fix c-maybe colon quoting.
27310         * lib/quotearg.h: Improve documentation.
27311         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
27312         escapes when adding outer quotes.  When quoting trigraphs, use
27313         valid C notation.  When quoting NUL, omit extra characters if next
27314         character is not digit.  Alter prototype.
27315         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
27316         callers.
27317         * modules/quotearg-tests: New module.
27318         * tests/test-quotearg.c: New test.
27319
27320 2008-02-07  Eric Blake  <ebb9@byu.net>
27321
27322         Quotearg part 3: add flag to control outer quote elision.
27323         * lib/quotearg.h (c_maybe_quoting_style): New style.
27324         (enum quoting_flags): Better documentation of flags.
27325         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
27326         c-maybe style.
27327         (quotearg_buffer_restyled): Handle new flag to elide outer
27328         quotes.
27329
27330         Quotearg part 2: add flag that can control NUL elision.
27331         * lib/quotearg.h (set_quoting_flags): New prototype.
27332         * lib/quotearg.c (struct quoting_options): Add flag field.
27333         (set_quoting_flags): New function.
27334         (quotearg_buffer_restyled): Add flags parameter.
27335         (quotearg_alloc_mem): Set the flag if length cannot be returned.
27336         (quotearg_n_options): Set the flag, since length cannot be
27337         returned.
27338         (quoting_options_from_style): Default flags correctly.
27339
27340         Quotearg part 1: more wrappers, restore quotearg_char state.
27341         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
27342         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
27343         (quotearg_colon_mem): New wrappers.
27344         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
27345         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
27346         functions.
27347         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
27348         (quotearg_colon_mem): New functions.
27349
27350 2008-02-11  Bruno Haible  <bruno@clisp.org>
27351
27352         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
27353         library in the current directory: it does not work with parallel make.
27354         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
27355
27356 2008-02-11  Bruno Haible  <bruno@clisp.org>
27357
27358         * .gitattributes: New file.
27359
27360 2008-02-11  Jim Meyering  <meyering@redhat.com>
27361
27362         useless-if-before-free: Fix reversed exit values.
27363         * build-aux/useless-if-before-free: Use correct values
27364         for EXIT_MATCH and EXIT_NO_MATCH.
27365
27366         * build-aux/useless-if-before-free: Close stdout carefully.
27367
27368 2008-02-10  Bruno Haible  <bruno@clisp.org>
27369
27370         New module 'git-merge-changelog'.
27371         * modules/git-merge-changelog: New file.
27372         * lib/git-merge-changelog.c: New file.
27373
27374 2008-02-10  Jim Meyering  <meyering@redhat.com>
27375
27376         useless-if-before-free: New option: --list (-l).
27377
27378         useless-if-before-free: Don't exit immediately upon open failure.
27379         * build-aux/useless-if-before-free: Exit 2 for errors.
27380         Upon failure to open a file, don't exit immediately.
27381         Rather, just warn and continue with any remaining files.
27382
27383 2008-02-10  Bruno Haible  <bruno@clisp.org>
27384
27385         New abstract list operation 'node_set_value'.
27386         * lib/gl_list.h (gl_list_node_set_value): New function.
27387         (struct gl_list_implementation): New field node_set_value.
27388         * lib/gl_list.c (gl_list_node_set_value): New function.
27389         * lib/gl_array_list.c (gl_array_node_set_value): New function.
27390         (gl_array_list_implementation): Update.
27391         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
27392         (gl_carray_list_implementation): Update.
27393         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
27394         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
27395         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
27396         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
27397         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
27398         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
27399         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
27400         Update.
27401         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
27402         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
27403         (gl_sublist_list_implementation): Update.
27404
27405 2008-02-10  Bruno Haible  <bruno@clisp.org>
27406
27407         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
27408         Needed when ELEMENT is #defined to 'some_type *'.
27409
27410 2008-02-10  Jim Meyering  <meyering@redhat.com>
27411
27412         New script and module: useless-if-before-free
27413         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
27414         * build-aux/useless-if-before-free: New file.
27415         * modules/useless-if-before-free: New file.
27416
27417         * build-aux/gitlog-to-changelog: Use committer date, not author date.
27418
27419         xstrtol_error: Fix typo.
27420         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
27421         s/exit_failure/exit_status/.
27422
27423 2008-02-09  Jim Meyering  <meyering@redhat.com>
27424
27425         New script and module: gitlog-to-changelog
27426         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
27427         * modules/gitlog-to-changelog: New file.
27428         * build-aux/gitlog-to-changelog: New file.
27429
27430 2008-02-08  Jim Meyering  <meyering@redhat.com>
27431
27432         Avoid two "parameter unused" warnings.
27433         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
27434         Mark "st" as used.
27435
27436         Use "git COMMAND", not "git-COMMAND".
27437         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
27438         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
27439         * build-aux/git-version-gen: Use "git status", not "git-status".
27440
27441 2008-02-07  Bruno Haible  <bruno@clisp.org>
27442
27443         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
27444         Avoids a crash on Windows Vista.
27445         Reported by Adam Strzelecki <ono@java.pl> via
27446         Simon Josefsson <simon@josefsson.org>.
27447
27448 2008-02-06  Bruno Haible  <bruno@clisp.org>
27449
27450         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
27451         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
27452         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
27453         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
27454         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
27455         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27456         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
27457         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
27458         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27459         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27460         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27461         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27462         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27463         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27464         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27465         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
27466         left-adjust flag.
27467         * tests/test-snprintf-posix.h (test_function): Likewise.
27468         * tests/test-sprintf-posix.h (test_function): Likewise.
27469         * tests/test-vasprintf-posix.c (test_function): Likewise.
27470         * doc/posix-functions/fprintf.texi: Update.
27471         * doc/posix-functions/printf.texi: Update.
27472         * doc/posix-functions/snprintf.texi: Update.
27473         * doc/posix-functions/sprintf.texi: Update.
27474         * doc/posix-functions/vfprintf.texi: Update.
27475         * doc/posix-functions/vprintf.texi: Update.
27476         * doc/posix-functions/vsnprintf.texi: Update.
27477         * doc/posix-functions/vsprintf.texi: Update.
27478         Reported by Peter Fales <psfales@alcatel-lucent.com>.
27479
27480 2008-02-06  Bruno Haible  <bruno@clisp.org>
27481
27482         Fix bug introduced on 2008-01-26.
27483         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
27484
27485 2008-02-06  Bruno Haible  <bruno@clisp.org>
27486
27487         Fix bug introduced on 2007-06-10.
27488         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
27489         !NEED_PRINTF_FLAG_ZERO.
27490
27491 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
27492
27493         getloadavg: use libperfstat on AIX5
27494         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
27495
27496 2008-02-03  Bruno Haible  <bruno@clisp.org>
27497
27498         * lib/diffseq.h: Add comments about required #includes.
27499         Reported by Michael Biggs <gnulib@doubleplum.net>.
27500
27501 2008-02-01  Bruno Haible  <bruno@clisp.org>
27502
27503         * users.txt: Add gnuit.
27504
27505 2008-01-31  Bruno Haible  <bruno@clisp.org>
27506
27507         * lib/md4.c (set_uint32): Mark as inline.
27508         * lib/md5.c (set_uint32): Likewise.
27509         * lib/sha1.c (set_uint32): Likewise.
27510         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
27511         * m4/md5.m4 (gl_MD5): Likewise.
27512         * m4/sha1.m4 (gl_SHA1): Likewise.
27513
27514 2008-01-31  Jim Meyering  <meyering@redhat.com>
27515
27516         Use "sizeof VAR", rather than a literal "4".
27517         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
27518         * lib/md4.c (md4_read_ctx): Likewise.
27519         * lib/sha1.c (sha1_read_ctx): Likewise.
27520
27521 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27522
27523         * tests/test-sha1.c: New file, based on test-md5.c.
27524
27525         * modules/crypto/sha1-tests: New file.
27526
27527 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27528
27529         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
27530
27531 2008-01-31  Jim Meyering  <meyering@redhat.com>
27532
27533         Prefer "sizeof v" over the equivalent "4".
27534         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
27535         * lib/md5.c (set_uint32): Likewise.
27536         * lib/sha1.c (set_uint32): Likewise.
27537
27538 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27539
27540         * lib/sha1.c (set_uint32): Mark function as static.
27541
27542 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27543
27544         md2: clarify comments to say that alignment is not required.
27545         * lib/md2.h: Remove warning about alignment in comment.
27546         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
27547         never been required.
27548
27549 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27550
27551         md4: adapt alignment constraint fix from sha1.
27552         * lib/md4.c (set_uint32): New function, from sha1.c
27553         (md4_read_ctx): Use it.
27554         (md4_finish_ctx): Doc fix.
27555         * lib/md4.h: Doc fix.
27556
27557 2008-01-31  Simon Josefsson  <simon@josefsson.org>
27558
27559         md5: adapt alignment constraint fix from sha1.
27560         * lib/md5.c (set_uint32): New function, from sha1.c
27561         (md5_read_ctx): Use it.
27562         (md5_finish_ctx): Doc fix.
27563         * lib/md5.h: Doc fix.
27564
27565 2008-01-30  Peter Palfrader  <weasel@debian.org>
27566
27567         sha1: remove the result buffer alignment constraint
27568         * lib/sha1.c (set_uint32): New function.
27569         (sha1_read_ctx): Rewrite to remove the result buffer alignment
27570         constraint.
27571         (sha1_finish_ctx): Remove comment warning about alignment constraint.
27572         * lib/sha1.h: Likewise.
27573
27574 2008-01-30  Andreas Schwab  <schwab@suse.de>
27575             Bruno Haible  <bruno@clisp.org>
27576
27577         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
27578         correct definition of LDBL_MIN_EXP.
27579
27580 2008-01-30  Karl Berry  <karl@gnu.org>
27581
27582         * config/srclist-update: try to preserve x bit on updates.
27583         * config/srclistvars.sh: update for karl.
27584
27585 2008-01-29  Jim Meyering  <meyering@redhat.com>
27586
27587         vasnprintf.c: Avoid warning about unused label
27588         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
27589         "overflow" label definition and associated code with the
27590         same cpp condition that guards the sole use of that label.
27591
27592 2008-01-26  Bruno Haible  <bruno@clisp.org>
27593
27594         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
27595         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
27596         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
27597         * lib/isnanl-nolibm.h (isnanl): Likewise.
27598         Reported by Paul Eggert <eggert@cs.ucla.edu>.
27599
27600 2008-01-26  Bruno Haible  <bruno@clisp.org>
27601
27602         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
27603         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
27604
27605 2008-01-26  Bruno Haible  <bruno@clisp.org>
27606
27607         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
27608         GCC >= 4.0 built-in.
27609         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
27610
27611 2008-01-26  Bruno Haible  <bruno@clisp.org>
27612
27613         Rename isnan, applicable to 'double' only, to isnand.
27614         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
27615         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
27616         (configure.ac): Update.
27617         (Include): Replace "isnan.h" with "isnand.h".
27618         * m4/isnand.m4: Renamed from m4/isnan.m4.
27619         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
27620         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
27621         instead of isnan.c.
27622         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
27623         instead of HAVE_ISNAN_IN_LIBC.
27624         (isnand): Renamed from isnan.
27625         * lib/isnand.c: New file.
27626         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
27627         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
27628         (Makefile.am): Update.
27629         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
27630         Include isnand.h instead of isnan.h.
27631         (main): Test isnand instead of isnan.
27632         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
27633         isnan-nolibm.
27634         * modules/frexp (Depends-on): Likewise.
27635         * modules/frexp-tests (Depends-on): Likewise.
27636         * modules/frexp-nolibm (Depends-on): Likewise.
27637         * modules/frexp-nolibm-tests (Depends-on): Likewise.
27638         * modules/isfinite (Depends-on): Likewise.
27639         * modules/round-tests (Depends-on): Likewise.
27640         * modules/signbit (Depends-on): Likewise.
27641         * modules/signbit-tests (Depends-on): Likewise.
27642         * modules/snprintf-posix (Depends-on): Likewise.
27643         * modules/sprintf-posix (Depends-on): Likewise.
27644         * modules/trunc-tests (Depends-on): Likewise.
27645         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
27646         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
27647         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
27648         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
27649         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
27650         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
27651         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
27652         * modules/vasnprintf-posix (Depends-on): Likewise.
27653         * modules/vasprintf-posix (Depends-on): Likewise.
27654         * modules/vfprintf-posix (Depends-on): Likewise.
27655         * modules/vsnprintf-posix (Depends-on): Likewise.
27656         * modules/vsprintf-posix (Depends-on): Likewise.
27657         * lib/frexp.c: Include isnand.h instead of isnan.h.
27658         (ISNAN): Set to isnand instead of isnan.
27659         * lib/isfinite.c: Include isnand.h instead of isnan.h.
27660         (gl_isfinited): Use isnand instead of isnan.
27661         * lib/signbitd.c: Include isnand.h instead of isnan.h.
27662         (gl_signbitd): Use isnand instead of isnan.
27663         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
27664         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
27665         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
27666         (main): Use isnand instead of isnan.
27667         * tests/test-round1.c: Include isnand.h.
27668         (main): Use isnand instead of isnan.
27669         * tests/test-round2.c: Include isnand.h instead of isnan.h.
27670         (ISNAN): Set to isnand instead of isnan.
27671         * tests/test-trunc1.c: Include isnand.h.
27672         (main): Use isnand instead of isnan.
27673         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
27674         (equal): Use isnand instead of isnan.
27675         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
27676         isnand-nolibm.
27677         * NEWS: Mention the change.
27678
27679 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
27680             Bruno Haible  <bruno@clisp.org>
27681
27682         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
27683         the GCC builtins for signbits are present and set
27684         REPLACE_SIGNBIT_USING_GCC if so.
27685         * lib/math.in.h (signbit): Define using GCC builtins if
27686         REPLACE_SIGNBIT_USING_GCC is set.
27687         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
27688         REPLACE_SIGNBIT_USING_GCC.
27689         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
27690
27691 2008-01-25  Jim Meyering  <meyering@redhat.com>
27692
27693         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
27694         * lib/poll.c: Include <config.h>, not "config.h".
27695         * tests/test-getaddrinfo.c: Likewise.
27696
27697 2008-01-25  Simon Josefsson  <simon@josefsson.org>
27698
27699         * modules/sockets-tests: New file.
27700
27701 2008-01-24  Simon Josefsson  <simon@josefsson.org>
27702
27703         * modules/sockets: New module, can be used to call WSA_Startup and
27704         WSA_Cleanup when needed.
27705
27706         * lib/sockets.h, lib/sockets.c: New files.
27707
27708         * m4/sockets.m4: New file.
27709
27710         * tests/test-sockets.c: New file.
27711
27712 2008-01-19  Bruno Haible  <bruno@clisp.org>
27713
27714         * doc/posix-headers: Renamed from doc/headers.
27715         * doc/posix-functions: Renamed from doc/functions.
27716         * doc/gnulib.texi: Update.
27717
27718 2008-01-19  Bruno Haible  <bruno@clisp.org>
27719
27720         * doc/glibc-functions/strcasestr.texi: Include contents of
27721         doc/functions/strcasestr.texi, fixing the list of platforms.
27722         * doc/functions/strcasestr.texi: Remove file.
27723
27724 2008-01-19  Bruno Haible  <bruno@clisp.org>
27725
27726         * doc/glibc-functions/memmem.texi: Include contents of
27727         doc/functions/memmem.texi.
27728         * doc/functions/memmem.texi: Remove file.
27729
27730 2008-01-18  Bruno Haible  <bruno@clisp.org>
27731
27732         * doc/glibc-functions/*.texi: New files.
27733         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
27734         to use the new files.
27735
27736 2008-01-17  Bruno Haible  <bruno@clisp.org>
27737
27738         * tests/test-gethostname.c (main): Fix printf statement.
27739
27740 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27741
27742         * modules/gethostname-tests: New file.
27743
27744         * tests/test-gethostname.c: New file.
27745
27746 2008-01-17  Simon Josefsson  <simon@josefsson.org>
27747
27748         * lib/gethostname.c: Include string.h unconditionally, strncpy is
27749         used by the UNAME case.  Reported by Bruno Haible
27750         <bruno@clisp.org>.
27751
27752 2008-01-17  Eric Blake  <ebb9@byu.net>
27753
27754         Convert c-strcasestr to be more efficient.
27755         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
27756         (Depends-on): Add c-strcase, remove malloca, strnlen.
27757         * tests/test-c-strcasestr.c (main): Enhance test.
27758         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
27759
27760 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
27761
27762         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
27763         Use it in creating po/Makevars.
27764
27765 2008-01-15  Simon Josefsson  <simon@josefsson.org>
27766
27767         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
27768         Applications that requires it should initialize libgcrypt
27769         manually.
27770
27771 2008-01-16  Simon Josefsson  <simon@josefsson.org>
27772
27773         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
27774
27775 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
27776
27777         Fix problem with getdate on mingw32 reported by Simon Josefsson
27778         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
27779         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
27780         tzname", when deciding whether to declare tzname.
27781         * lib/strftime.c (tzname): Likewise.
27782
27783 2008-01-15  Bruno Haible  <bruno@clisp.org>
27784
27785         Work around a MacOS X 10.5 bug in frexpl().
27786         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
27787         * doc/functions/frexpl.texi: Document the bug.
27788         Reported by Elias Pipping <pipping@gentoo.org>.
27789
27790 2008-01-14  Eric Blake  <ebb9@byu.net>
27791
27792         Touch up previous patch.
27793         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
27794         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
27795
27796         Convert strcasestr module to use Two-Way algorithm.
27797         * modules/strcasestr-simple: New module, based on the old
27798         strcasestr, but with Two-Way rather than KMP.
27799         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
27800         * lib/string.in.h (rpl_strcasestr): Declare.
27801         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
27802         performance.
27803         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
27804         * modules/string (Makefile.am): Support strcasestr.
27805         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
27806         * modules/strcasestr-tests (Depends-on): Check for alarm.
27807         * tests/test-strcasestr.c: Augment test.
27808         * lib/str-two-way.h: Clean up stray macro.
27809         * NEWS: Document new module.
27810         * MODULES.html.sh (string handling): Likewise.
27811         * doc/functions/strcasestr.texi: New file.
27812         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
27813         here, since it is not a POSIX function.
27814
27815 2008-01-14  Colin Watson  <cjwatson@debian.org>
27816             Bruno Haible  <bruno@clisp.org>
27817
27818         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
27819         works fine; if not, set REPLACE_STRSIGNAL.
27820         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
27821         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27822         REPLACE_STRSIGNAL.
27823         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
27824         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
27825         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
27826
27827 2008-01-14  Bruno Haible  <bruno@clisp.org>
27828
27829         * modules/strsignal (Include): Change to <string.h>.
27830
27831 2008-01-14  Colin Watson  <cjwatson@debian.org>
27832
27833         * modules/argp (Notice): Add a notice recommending to change
27834         XGETTEXT_OPTIONS.
27835         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
27836
27837 2008-01-13  Colin Watson  <cjwatson@debian.org>
27838
27839         * modules/strsignal-tests: New file.
27840         * tests/test-strsignal.c: New file.
27841
27842         * lib/strsignal.c: New file, from glibc with modifications.
27843         * lib/siglist.h: New file, from glibc with modifications.
27844         * lib/string.in.h (strsignal): New declaration.
27845         * m4/strsignal.m4: New file.
27846         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27847         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
27848         * modules/strsignal: New file.
27849         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
27850         HAVE_DECL_STRSIGNAL.
27851
27852 2008-01-13  Bruno Haible  <bruno@clisp.org>
27853
27854         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
27855         locale encoding is not ASCII. Needed for OpenBSD 4.0.
27856         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
27857         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
27858
27859 2008-01-13  Bruno Haible  <bruno@clisp.org>
27860
27861         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
27862         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
27863         * lib/argp.h (__attribute__): Likewise.
27864         * lib/c-stack.c (__attribute__): Likewise.
27865         * lib/error.h (__attribute__): Likewise.
27866         * lib/fts.c (__attribute__): Likewise.
27867         * lib/openat.h (__attribute__): Likewise.
27868         * lib/stdio.in.h (__attribute__): Likewise.
27869         * lib/string.in.h (__attribute__): Likewise.
27870         * lib/utimens.c (__attribute__): Likewise.
27871         * lib/vasnprintf.h (__attribute__): Likewise.
27872         * lib/xalloc.h (__attribute__): Likewise.
27873         * lib/xprintf.h (__attribute__): Likewise.
27874         * lib/xstrtol.h (__attribute__): Likewise.
27875         * lib/xvasprintf.h (__attribute__): Likewise.
27876
27877 2008-01-12  Bruno Haible  <bruno@clisp.org>
27878
27879         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
27880         * doc/glibc-headers/a.out.texi: New file.
27881         * doc/glibc-headers/aliases.texi: New file.
27882         * doc/glibc-headers/alloca.texi: New file.
27883         * doc/glibc-headers/ar.texi: New file.
27884         * doc/glibc-headers/argp.texi: New file.
27885         * doc/glibc-headers/argz.texi: New file.
27886         * doc/glibc-headers/byteswap.texi: New file.
27887         * doc/glibc-headers/crypt.texi: New file.
27888         * doc/glibc-headers/endian.texi: New file.
27889         * doc/glibc-headers/envz.texi: New file.
27890         * doc/glibc-headers/err.texi: New file.
27891         * doc/glibc-headers/error.texi: New file.
27892         * doc/glibc-headers/execinfo.texi: New file.
27893         * doc/glibc-headers/fpu_control.texi: New file.
27894         * doc/glibc-headers/fstab.texi: New file.
27895         * doc/glibc-headers/fts.texi: New file.
27896         * doc/glibc-headers/getopt.texi: New file.
27897         * doc/glibc-headers/ieee754.texi: New file.
27898         * doc/glibc-headers/ifaddrs.texi: New file.
27899         * doc/glibc-headers/libintl.texi: New file.
27900         * doc/glibc-headers/mcheck.texi: New file.
27901         * doc/glibc-headers/mntent.texi: New file.
27902         * doc/glibc-headers/obstack.texi: New file.
27903         * doc/glibc-headers/paths.texi: New file.
27904         * doc/glibc-headers/printf.texi: New file.
27905         * doc/glibc-headers/pty.texi: New file.
27906         * doc/glibc-headers/resolv.texi: New file.
27907         * doc/glibc-headers/shadow.texi: New file.
27908         * doc/glibc-headers/sysexits.texi: New file.
27909         * doc/glibc-headers/ttyent.texi: New file.
27910
27911 2008-01-12  Jim Meyering  <meyering@redhat.com>
27912
27913         announce-gen: emit Gnulib's git-based version string.
27914         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
27915         New option --gnulib-version=V, where V is expected to be
27916         the output of running git describe in the gnulib directory.
27917         (get_tool_versions): Request feedback on xdelta.  I suspect it's
27918         not useful, and plan to stop publishing an xdelta file with each
27919         coreutils release.
27920
27921         * build-aux/announce-gen: Also check for lzma-compressed files.
27922
27923 2008-01-11  Bruno Haible  <bruno@clisp.org>
27924
27925         * tests/test-memmem.c (main): Increase maximum allowed time.
27926         * tests/test-strstr.c (main): Likewise.
27927
27928 2008-01-11  Bruno Haible  <bruno@clisp.org>
27929
27930         * doc/functions/memmem.texi: Add more precisions about platforms.
27931         * doc/functions/strstr.texi: Likewise.
27932
27933 2008-01-10  Eric Blake  <ebb9@byu.net>
27934
27935         * m4/strstr.m4: Delete cruft from copy-n-paste.
27936         Reported by Bruno Haible.
27937
27938 2008-01-10  Bruno Haible  <bruno@clisp.org>
27939
27940         Make c-strstr rely on strstr.
27941         * lib/c-strstr.c: Don't include str-kmp.h.
27942         (c_strstr): Define in terms of strstr.
27943         * modules/c-strstr (Files): Remove lib/str-kmp.h.
27944         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
27945
27946 2008-01-10  Bruno Haible  <bruno@clisp.org>
27947
27948         * doc/gnulib.texi (String Functions in C Locale): New section.
27949         * doc/c-ctype.texi: New file.
27950         * doc/c-strcase.texi: New file.
27951         * doc/c-strcaseeq.texi: New file.
27952         * doc/c-strcasestr.texi: New file.
27953         * doc/c-strstr.texi: New file.
27954         * doc/c-strtod.texi: New file.
27955         * doc/c-strtold.texi: New file.
27956
27957 2008-01-10  Eric Blake  <ebb9@byu.net>
27958
27959         * lib/relocatable.h: Fix a comment.
27960
27961 2008-01-10  Eric Blake  <ebb9@byu.net>
27962
27963         Share two-way algorithm.
27964         * lib/str-two-way.h: New file, merged from...
27965         * lib/memmem.c: ...here...
27966         * lib/strstr.c: ...and here.
27967         * modules/memmem (Files): Use it.
27968         * modules/strstr (Files): Likewise.
27969
27970         Avoid quadratic strstr implementations.
27971         * lib/strstr.c: New file.
27972         * m4/strstr.m4: Likewise.
27973         * modules/strstr: Likewise.
27974         * modules/strstr-tests: Likewise.
27975         * tests/test-strstr.c: Likewise.
27976         * lib/string.in.h (rpl_strstr): Declare.
27977         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
27978         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
27979         * modules/string (Makefile.am): Likewise.
27980         * MODULES.html.sh (string handling): Mention new module.
27981         * doc/functions/strstr.texi (strstr): Document the bug.
27982
27983 2008-01-10  Bruno Haible  <bruno@clisp.org>
27984
27985         * lib/relocatable.h (relocate): State whether result is freshly
27986         allocated or not.
27987         * lib/relocatable.c (relocate): Return a freshly allocated string
27988         instead of a pointer to a privately held string.
27989         Reported by Sylvain Beucler <beuc@gnu.org>.
27990
27991 2008-01-10  Colin Watson  <cjwatson@debian.org>
27992
27993         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
27994         s/S_ISNLK/S_ISLNK/.
27995
27996 2008-01-09  Bruno Haible  <bruno@clisp.org>
27997
27998         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
27999         and other files.
28000         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
28001         if it's only a guess.
28002         * modules/memmem: Simplify by depending on memmem-simple.
28003
28004 2008-01-09  Bruno Haible  <bruno@clisp.org>
28005
28006         Work around OpenBSD 4.0 tdelete() bug.
28007         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
28008         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
28009         macros and don't redefine the enum values.
28010         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
28011         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
28012         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
28013
28014 2008-01-09  Bruno Haible  <bruno@clisp.org>
28015
28016         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
28017         (main): Don't perform the tests if setlocale did not install a UTF-8
28018         locale. Needed on OpenBSD 4.0.
28019         * modules/wcwidth-tests (Depends-on): Add localcharset.
28020
28021 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
28022
28023         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
28024         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
28025         * NEWS: announce this.
28026         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
28027
28028 2008-01-09  Simon Josefsson  <simon@josefsson.org>
28029         and Eric Blake  <ebb9@byu.net>
28030
28031         Add memmem-simple module.
28032         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
28033         (gl_FUNC_MEMMEM): Separate performance from presence checks.
28034         * modules/memmem-simple: New file.
28035         * modules/memmem (Description): Tweak.
28036         * MODULES.html.sh (string handling): Mention new module.
28037         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
28038         addressed by memmem-simple.
28039         * NEWS: Document the difference.
28040
28041 2008-01-09  Eric Blake  <ebb9@byu.net>
28042
28043         Give gcc some memmem optimization hints.
28044         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
28045         (strcasestr): Declare as pure.
28046         * modules/memmem (Maintainer): Claim my implementation.
28047
28048 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28049
28050         Support AIX 6.1 and higher.
28051         * build-aux/config.libpath: Likewise.
28052         * build-aux/config.rpath: Likewise.
28053
28054 2008-01-08  Jim Meyering  <meyering@redhat.com>
28055             Bruno Haible  <bruno@clisp.org>
28056
28057         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
28058         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
28059         Reported by Peter Fales in
28060         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
28061
28062 2008-01-08  Bruno Haible  <bruno@clisp.org>
28063
28064         * modules/unictype/category-of (Depends-on): Add
28065         unictype/category-none.
28066         * modules/unictype/category-and-tests (Depends-on): Add
28067         unictype/category-{L,N,Lu,Nd}.
28068         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
28069         * modules/unictype/category-or-tests (Depends-on): Add
28070         unictype/category-{L,N}.
28071         * modules/unictype/category-name-tests (Depends-on): Add
28072         unictype/category-{Z,Nl}.
28073         Reported by Simon Josefsson.
28074
28075 2008-01-08  Bruno Haible  <bruno@clisp.org>
28076
28077         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
28078         convention better.
28079         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
28080         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
28081         Reported by Peter Miller <millerp@canb.auug.org.au>.
28082
28083 2008-01-08  Eric Blake  <ebb9@byu.net>
28084
28085         Rewrite memmem to guarantee linear complexity without malloc.
28086         * lib/memmem.c (memmem): Use Two-Way rather than
28087         Knuth-Morris-Pratt, to allow O(1) space usage.
28088         (critical_factorization, two_way_short_needle)
28089         (two_way_long_needle): New functions.
28090         (knuth_morris_pratt): Delete.
28091         * modules/memmem (Depends-on): No longer need malloca or stdbool.
28092         Add stdint.
28093         * tests/test-memmem.c (main): Add tests for periodic needle and
28094         sublinear performance.
28095         * doc/functions/memmem.texi (memmem): Document other deficiencies
28096         in cygwin and older glibc.
28097
28098 2008-01-08  Bruno Haible  <bruno@clisp.org>
28099
28100         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
28101         augmentation.
28102
28103 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
28104
28105         Add a configure time option: --disable-acl.
28106         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
28107         AC_ARG_ENABLE(acl).
28108
28109 2008-01-06  Simon Josefsson  <simon@josefsson.org>
28110
28111         * tests/test-localename.c: Don't include obsolete "setenv.h".
28112
28113         * modules/localename-tests (Depends-on): Need unsetenv.
28114
28115 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28116
28117         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
28118
28119 2008-01-06  Colin Watson  <cjwatson@debian.org>
28120
28121         * users.txt: Add man-db.
28122
28123 2008-01-07  Bruno Haible  <bruno@clisp.org>
28124
28125         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
28126         previous section name.
28127
28128 2008-01-07  Bruno Haible  <bruno@clisp.org>
28129
28130         * lib/progname.c (set_program_name): Don't strip off a leading
28131         "lt-" prefix outside a .libs directory.
28132         Suggested by Paul Eggert.
28133
28134 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
28135             Bruno Haible  <bruno@clisp.org>
28136
28137         Improve memory cleanup in 'relocatable' module.
28138         * lib/relocatable.h (compute_curr_prefix): Change return type to
28139         'char *'.
28140         * lib/relocatable.c (compute_curr_prefix): Change return type to
28141         'char *'. Free curr_installdir after use.
28142         (relocate): Free curr_prefix_better after use.
28143         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
28144
28145 2008-01-01  Bruno Haible  <bruno@clisp.org>
28146
28147         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
28148         failure on older glibc systems.
28149         Reported by Peter Fales <psfales@alcatel-lucent.com>.
28150
28151 2008-01-05  Eric Blake  <ebb9@byu.net>
28152
28153         Avoid quadratic system memmem.
28154         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
28155         Reported by Ralf Wildenhues.
28156
28157         Fix memmem test for mingw.
28158         * modules/memmem-tests (configure.ac): Check for alarm.
28159         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
28160         it.
28161         * doc/functions/memmem.texi: New file.
28162         * doc/gnulib.texi (Function Substitutes): Add memmem.
28163         Reported by Bruno Haible.
28164
28165 2008-01-04  Bruno Haible  <bruno@clisp.org>
28166
28167         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
28168         Require gl_HEADER_STRINGS_H_DEFAULTS, not
28169         gl_HEADER_STRING_H_DEFAULTS.
28170
28171 2008-01-04  Eric Blake  <ebb9@byu.net>
28172
28173         Shorten duration of memmem test.
28174         * tests/test-memmem.c (main): Use alarm to declare failure if test
28175         is taking too long.
28176         Reported by Ralf Wildenhues.
28177
28178 2007-12-21  Simon Josefsson  <simon@josefsson.org>
28179
28180         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
28181         string, needed by strerror.
28182
28183 2008-01-03  Colin Watson  <cjwatson@debian.org>
28184             Bruno Haible  <bruno@clisp.org>
28185
28186         * doc/gnulib-tool.texi (Localization): New section.
28187
28188 2008-01-02  Bruno Haible  <bruno@clisp.org>
28189
28190         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
28191         variables to 'unsigned char *' type.
28192         Reported by Paul Eggert.
28193
28194 2008-01-02  Jim Meyering  <jim@meyering.net>
28195
28196         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
28197
28198 2007-12-31  Jim Meyering  <jim@meyering.net>
28199
28200         Avoid use of private FTS type name.
28201         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
28202
28203 2007-12-30  Karl Berry  <karl@gnu.org>
28204
28205         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
28206         work around defect in Texinfo and/or the standalone Info browser.
28207
28208 2007-12-30  Bruno Haible  <bruno@clisp.org>
28209
28210         Unify 5 copies of the KMP code.
28211         * lib/str-kmp.h: New file.
28212         * lib/c-strcasestr.c: Include str-kmp.h.
28213         (knuth_morris_pratt): Remove function.
28214         (c_strcasestr): Update.
28215         * lib/c-strstr.c: Include str-kmp.h.
28216         (knuth_morris_pratt): Remove function.
28217         (c_strcasestr): Update.
28218         * lib/mbscasestr.c: Include str-kmp.h.
28219         (knuth_morris_pratt_unibyte): Remove function.
28220         * lib/mbsstr.c: Include str-kmp.h.
28221         (knuth_morris_pratt_unibyte): Remove function.
28222         * lib/strcasestr.c: Include str-kmp.h.
28223         (knuth_morris_pratt): Remove function.
28224         (strcasestr): Update.
28225         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
28226         * modules/c-strstr (Files): Likewise.
28227         * modules/mbscasestr (Files): Likewise.
28228         * modules/mbsstr (Files): Likewise.
28229         * modules/strcasestr (Files): Likewise.
28230         Suggested by Paul Eggert.
28231
28232 2007-12-30  Bruno Haible  <bruno@clisp.org>
28233
28234         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
28235         defined.
28236
28237 2007-12-30  Bruno Haible  <bruno@clisp.org>
28238
28239         * lib/xmalloca.h: Include xalloc.h.
28240         (xnmalloca): New macro.
28241
28242 2007-12-30  Bruno Haible  <bruno@clisp.org>
28243
28244         * lib/malloca.h (nmalloca): New macro.
28245         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
28246         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
28247         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
28248         knuth_morris_pratt_multibyte): Likewise.
28249         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
28250         knuth_morris_pratt_multibyte): Likewise.
28251         * lib/memmem.c (knuth_morris_pratt): Likewise.
28252         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
28253
28254 2007-12-25  Bruno Haible  <bruno@clisp.org>
28255
28256         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
28257         * lib/glob.c: Don't include openat.h.
28258         (link_exists2_p): Add back the code that deals with the
28259         !GLOB_ALTDIRFUNC case.
28260         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
28261         let it do the filename concatenation.
28262         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
28263         * modules/glob (Depends-on): Remove openat.
28264
28265 2007-12-31  Bruno Haible  <bruno@clisp.org>
28266
28267         * modules/dirfd (License): Change to LGPLv2+.
28268         Approved by Jim Meyering.
28269
28270 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
28271
28272         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
28273         when multiplying M by sizeof (size_t).
28274
28275 2007-12-10  Martin Lambers  <marlam@marlam.de>
28276
28277         Override getpagesize on mingw.
28278         * lib/getpagesize.c: New file.
28279         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
28280         * modules/getpagesize (Files): Add lib/getpagesize.c.
28281         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
28282         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
28283         REPLACE_GETPAGESIZE.
28284         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
28285
28286 2007-12-25  Bruno Haible  <bruno@clisp.org>
28287
28288         * modules/localcharset (Notice): New field.
28289         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
28290         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
28291
28292 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
28293             Bruno Haible  <bruno@clisp.org>
28294
28295         Avoid using the syntax symbol() in formatted documentation.
28296         * MODULES.html.sh (func_module): When replacing symbol() with a
28297         hyperlink, remove the parentheses. Show an error if some remain.
28298         Recognize and render the '...' syntax.
28299         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
28300         Rework. Add paragraph about GCC's inlining.
28301         * doc/alloca.texi: Likewise.
28302         * doc/error.texi: Remove parentheses from symbol reference.
28303         * doc/gnulib-intro.texi: Likewise.
28304         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
28305         * modules/fnmatch (Description): Reword to say "the ... function".
28306         * modules/full-read (Description): Likewise.
28307         * modules/full-write (Description): Likewise.
28308         * modules/safe-read (Description): Likewise.
28309         * modules/safe-write (Description): Likewise.
28310         * modules/strchrnul (Description): Likewise.
28311         * modules/trim (Description): Likewise.
28312         * modules/error (Description): Remove parentheses from symbol
28313         references.
28314         * modules/verror (Description): Likewise.
28315         Reported by Karl Berry.
28316
28317 2007-12-25  Bruno Haible  <bruno@clisp.org>
28318
28319         Fixup after 2007-10-16 commit.
28320         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
28321
28322 2007-12-24  Bruno Haible  <bruno@clisp.org>
28323
28324         Make --enable-relocatable work with DESTDIR.
28325         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
28326         to compute installdir from destprog.
28327         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
28328         also set the RELOC_DESTDIR variable.
28329         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
28330
28331 2007-12-24  Bruno Haible  <bruno@clisp.org>
28332
28333         Fix link error due to xalloc_die().
28334         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
28335         of xreadlink.
28336         * lib/relocwrapper.c: Update comments.
28337         * build-aux/install-reloc: Remove xreadlink.c from file list.
28338         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
28339         xreadlink.c.
28340         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
28341
28342 2007-12-24  Bruno Haible  <bruno@clisp.org>
28343
28344         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
28345         * lib/setenv.h: Remove file.
28346         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
28347         lib/setenv.h.
28348         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
28349         (Depends-on): Add stdlib.
28350         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
28351         gl_FUNC_UNSETENV.
28352         (Include): Replace setenv.h with <stdlib.h>.
28353         * modules/unsetenv: New file.
28354         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
28355         * lib/unsetenv.c: Include <stdlib.h> first.
28356         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
28357         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
28358         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
28359         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
28360         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
28361         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
28362         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
28363         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
28364         * doc/functions/unsetenv.texi: Update.
28365         * modules/xsetenv (Depends-on): Add unsetenv.
28366         * modules/getdate (Depends-on): Likewise.
28367         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
28368         * lib/xsetenv.c: Don't include setenv.h.
28369         * lib/getdate.y: Likewise.
28370         * lib/relocwrapper.c: Likewise.
28371         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
28372         (Depends-on): Add stdlib.
28373         * NEWS: Mention the changes.
28374         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
28375
28376 2007-12-23  Bruno Haible  <bruno@clisp.org>
28377
28378         * lib/memmem.c (memmem): Use lowercase variable names. Tab
28379         indentation.
28380
28381 2007-12-23  Bruno Haible  <bruno@clisp.org>
28382
28383         * lib/c-strcasestr.c: Add more comments.
28384         * lib/c-strstr.c: Likewise.
28385         * lib/mbscasestr.c: Likewise.
28386         * lib/mbsstr.c: Likewise.
28387         * lib/strcasestr.c: Likewise.
28388         * lib/memmem.c: Likewise.
28389
28390 2007-12-23  Bruno Haible  <bruno@clisp.org>
28391
28392         * tests/test-memmem.c: Include <string.h> first.
28393
28394 2007-12-22  Bruno Haible  <bruno@clisp.org>
28395
28396         * gnulib-tool (func_create_testdir): Change $auxdir while generating
28397         the contents of $testsbase.
28398         Reported by Ralf Wildenhues.
28399
28400 2007-12-22  Bruno Haible  <bruno@clisp.org>
28401
28402         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
28403         two variables local_ldadd_before, local_ldadd_last.
28404
28405 2007-12-20  Eric Blake  <ebb9@byu.net>
28406
28407         Work around circular library issue when cross-compiling.
28408         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
28409         that progname.o does not need to pull in rpl_memcmp.
28410
28411 2007-12-19  Eric Blake  <ebb9@byu.net>
28412
28413         Fix memmem to avoid O(n^2) worst-case complexity.
28414         * lib/memmem.c (knuth_morris_pratt): New function.
28415         (memmem): Use it if first few naive iterations fail.
28416         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
28417         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
28418         * modules/memchr (License): Likewise.
28419         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
28420         malloca.
28421         * tests/test-memmem.c: Rewrite, borrowing ideas from
28422         test-mbsstr1.c; the old version wouldn't even compile!
28423         * modules/memmem-tests: New file.
28424         * lib/string.in.h (rpl_memmem): Add declaration.
28425         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
28426         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
28427         REPLACE_MEMMEM.
28428
28429 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
28430
28431         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
28432         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
28433         before any system include files, and undef after them all.  This
28434         should fix a problem on VMS reported by John E. Malmberg in
28435         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
28436
28437 2007-12-17  Eric Blake  <ebb9@byu.net>
28438
28439         Revert addition of verify, for BSD/OS.
28440         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
28441         can't handle large files, for the sake of obsolete platforms.
28442         * modules/fseeko (Depends-on): Remove verify.
28443         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
28444         * doc/functions/ftello.texi (ftello): Likewise.
28445         * doc/functions/fgetpos.texi (fgetpos): Likewise.
28446         Reported by Larry Jones.
28447
28448 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
28449
28450         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
28451         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
28452
28453 2007-12-17  Jim Meyering  <meyering@redhat.com>
28454
28455         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
28456         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
28457         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
28458         * modules/getcwd (Depends-on): Add openat.
28459         Reported by Petr Salinger.
28460
28461 2007-12-17  Bruno Haible  <bruno@clisp.org>
28462
28463         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
28464         avoid a segmentation fault of the configure test on x86_64 systems.
28465
28466 2007-12-15  Jim Meyering  <meyering@redhat.com>
28467
28468         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
28469
28470 2007-12-13  Eric Blake  <ebb9@byu.net>
28471
28472         Another fseek test.
28473         * tests/test-fseek.c (main): Also test ungetc handling.
28474         * tests/test-fseeko.c (main): Likewise.
28475         * modules/fseeko (Depends-on): Add verify.
28476         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
28477         large.
28478         Reported by Larry Jones.
28479
28480         Fix fseeko on mingw.
28481         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
28482         seek.
28483
28484         Beef up fseek tests.
28485         * tests/test-fseek.c (main): Also test eof handling.
28486         * tests/test-fseeko.c (main): Likewise.
28487         Reported by Larry Jones.
28488
28489 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
28490
28491         Fix fseeko on BSD-based platforms.
28492         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
28493         successful seek.
28494
28495 2007-12-12  Eric Blake  <ebb9@byu.net>
28496
28497         Allow circular dependency of separate libtests.a
28498         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
28499         when use_libtests.
28500
28501 2007-12-11  Eric Blake  <ebb9@byu.net>
28502
28503         Fix bug with -0.0L in previous patch.
28504         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
28505         * tests/test-isnan.c (main): Also test on zeroes.
28506         * tests/test-isnanf.c (main): Likewise.
28507         * tests/test-isnanl.h (main): Likewise.
28508
28509         Detect pseudo-denormals on x86 even when cross-compiling.
28510         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
28511         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
28512         invalid bit patterns that happen to satisfy ==.
28513
28514         Avoid link failures with separate libtests.a.
28515         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
28516         last, to satisfy circular dependencies.
28517
28518 2007-12-11  Eric Blake  <ebb9@byu.net>
28519         and Bruno Haible  <bruno@clisp.org>
28520
28521         Fix OpenBSD 4.0 <float.h> handling of long double.
28522         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
28523         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
28524         * doc/headers/float.texi (float.h): Document OpenBSD bug.
28525
28526 2007-12-11  Jim Meyering  <meyering@redhat.com>
28527
28528         * users.txt: Add libvirt.
28529
28530         Support versions of autoconf prior to 2.59c.
28531         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
28532         if it is not already defined.
28533
28534 2007-12-09  Bruno Haible  <bruno@clisp.org>
28535
28536         Let 'gnulib-tool --import' collect sources needed for the tests in
28537         tests/ rather than in lib/.
28538         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
28539         argument. If true, add rules to generate libtests.a, and put libtests.a
28540         into $(LDADD). Consider source files in subdirectories and set
28541         uses_subdirs.
28542         (func_emit_initmacro_start, func_emit_initmacro_end,
28543         func_emit_initmacro_done): Pass all arguments explicitly.
28544         (func_import): Determine two module lists main_modules,
28545         testsrelated_modules. Determine use_libtests. Determine two variables
28546         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
28547         instead of just sed_transform_lib_file. Determine two variables
28548         main_files and testsrelated_files. Compute 'files' as the union of
28549         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
28550         func_add_or_update. In the generated gnulib-comp.m4, collect the
28551         object files for tests/ in different variables than those for lib/.
28552         Substitute LIBTESTS_LIBDEPS.
28553         (func_create_testdir): Combine the uses_subdirs results from
28554         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
28555
28556 2007-12-09  Bruno Haible  <bruno@clisp.org>
28557
28558         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
28559         the build-aux directory.
28560
28561 2007-12-09  Bruno Haible  <bruno@clisp.org>
28562
28563         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
28564         introduced on 2006-09-09.
28565
28566 2007-12-07  Jim Meyering  <meyering@redhat.com>
28567
28568         Let these macros work also with autoconf-2.59.
28569         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
28570         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
28571         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
28572
28573 2007-12-06  Jim Meyering  <meyering@redhat.com>
28574
28575         Avoid a configure-time syntax error in gl_FUNC_ACL.
28576         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
28577         function in each branch, before testing the cache variable.
28578
28579 2007-12-04  Eric Blake  <ebb9@byu.net>
28580
28581         Make scripts executable.
28582         * build-aux/config.guess: Add execute permissions.
28583         * build-aux/config.sub: Likewise.
28584         * build-aux/gendocs.sh: Likewise.
28585
28586         Fix frexp on mingw.
28587         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
28588         cross-compiling.
28589         * doc/functions/frexp.texi (frexp): Document the bug.
28590
28591         Make cygwin fseeko check more reliable.
28592         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
28593         version numbers, rather than unrelated feature check.
28594         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
28595         * doc/functions/ftello.texi (ftello): Likewise.
28596         Reported by Bruno Haible.
28597
28598         * m4/strerror.m4: Bump version number.
28599
28600 2007-12-03  Bruno Haible  <bruno@clisp.org>
28601
28602         * doc/functions/mprotect.texi: Mention the mingw problem.
28603
28604 2007-12-03  Eric Blake  <ebb9@byu.net>
28605
28606         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
28607         REPLACE_STRERROR is initialized before this macro.
28608
28609 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
28610
28611         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
28612         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
28613         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
28614         put -lsec in even for programs other than 'ls'.  This fixes a problem
28615         for gettext reported by Bruno Haible in
28616         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
28617         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
28618         Add support for Solaris 10.  This isn't efficient, but should get the
28619         job done for now.
28620
28621 2007-12-03  James Youngman  <jay@gnu.org>
28622
28623         * doc/regexprops-generic.texi: change "an close-group" to "a
28624         close-group" and "illegal" to "not allowed".
28625
28626 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28627
28628         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
28629         pr_byname.h. Needed for the rare case when the maintainer has done
28630         "make maintainer-clean" in the source directory and then attempts a
28631         build outside the source directory.
28632         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
28633         scripts_byname.h.
28634
28635 2007-12-02  Martin Lambers <marlam@marlam.de>
28636             Bruno Haible  <bruno@clisp.org>
28637
28638         * lib/getpagesize.h: Remove file.
28639         * lib/unistd.in.h: Include declaration of getpagesize here.
28640         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
28641         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
28642         HAVE_SYS_PARAM_H.
28643         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
28644         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28645         * modules/getpagesize (Files): Remove lib/getpagesize.h.
28646         (Depends-on): Add unistd.
28647         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28648         (Include): Use <unistd.h> instead of getpagesize.h.
28649         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
28650         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
28651         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
28652         gl_GETPAGESIZE invocation, already handled by module dependency.
28653         * lib/pagealign_alloc.c: Don't include getpagesize.h.
28654
28655 2007-12-02  Bruno Haible  <bruno@clisp.org>
28656
28657         * modules/strings-tests: New file.
28658         * tests/test-strings.c: New file.
28659
28660         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
28661         * lib/strings.in.h: New file.
28662         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
28663         * m4/strings_h.m4: New file.
28664         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
28665         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
28666         * modules/strings: New file.
28667         * modules/string (Makefile.am): Update.
28668         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
28669         Reported by Karl Berry.
28670
28671 2007-12-01  Eric Blake  <ebb9@byu.net>
28672
28673         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
28674         accomodate fix in cygwin 1.5.25.
28675
28676 2007-12-01  Jim Meyering  <meyering@redhat.com>
28677
28678         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
28679         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
28680         that would inhibit utf8-optimization of a regexp containing line-
28681         or buffer-anchors, e.g., `^', `$'.
28682
28683 2007-11-30  Bruno Haible  <bruno@clisp.org>
28684
28685         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
28686         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
28687         glthread_recursive_lock_init.
28688         * lib/lock.c (glthread_recursive_lock_init)
28689         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
28690         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
28691
28692 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
28693
28694         New function qset_acl, like set_acl but with syscall semantics.
28695         * lib/acl.h (qset_acl): New decl.
28696         * lib/acl.c (qset_acl): New function.
28697         (set_acl): Use new function.  Use more-consistent diagnostics.
28698
28699 2007-11-28  Jim Meyering  <meyering@redhat.com>
28700
28701         * modules/physmem (License): Change from GPL to LGPLv2+.
28702
28703 2007-11-26  Bruno Haible  <bruno@clisp.org>
28704
28705         * lib/vasnprintf.c (decode_long_double): Don't abort if the
28706         'long double' type has excess precision.
28707         Reported by Jim Meyering in
28708         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
28709
28710 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28711
28712         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
28713         Sync from <http://gnu.org/licenses>.
28714         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
28715         with license text from same location.
28716         * doc/maintain.texi, doc/standards.texi:  Sync from
28717         <http://savannah.gnu.org/projects/gnustandards>.
28718
28719 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
28720         and Jim Meyering  <meyering@redhat.com>
28721
28722         Adjust getdate' grammar to accept a slightly more regular language.
28723         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
28724         Before, the former was rejected.
28725         * lib/getdate.y (digits_to_date_time): New function, factored
28726         out of ...
28727         (number): ...here.  Just call digits_to_date_time.
28728         (hybrid): New non-terminal to handle an <unsigned number,
28729         signed relative offset> sequence consistently.
28730
28731 2007-11-18  Jim Meyering  <meyering@redhat.com>
28732
28733         Pull my changes from coreutils:
28734         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
28735         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
28736         use of $gnulib_tool_option_extras, so that it's separated from the
28737         preceding argument.
28738
28739         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
28740         * build-aux/bootstrap (cp_mark_as_generated): Create any required
28741         parent destination directories before copying a file into place.
28742
28743 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
28744
28745         bootstrap: work also with 4-argument variant of AC_INIT
28746         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
28747
28748 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28749
28750         Port test-getaddrinfo to Solaris.
28751         Problem reported by Bruno Haible in
28752         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
28753         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
28754         explanation of setting 'hints'.
28755         Don't reject an implementation merely because it returns EAI_SERVICE.
28756         (EAI_SERVICE): Define to 0 if not defined.
28757
28758 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
28759
28760         The license of gnu-make and posix-shell is now "GPLed build tool".
28761         * modules/gnu-make (License): Likewise.
28762         * modules/posix-shell (License): Likewise.
28763
28764         New module posix-shell, for determining a POSIX shell
28765         or perhaps something that is close enough to a POSIX shell.
28766         * m4/posix-shell.m4: New file.
28767         * modules/posix-shell: New file.
28768
28769         * MODULES.html.sh: Mention new module.
28770
28771         New module gnu-make, for determining whether we're using GNU Make.
28772         * m4/gnu-make.m4: New file.
28773         * modules/gnu-make: New file.
28774         * MODULES.html.sh: Mention new module.
28775
28776 2007-11-14  Jim Meyering  <meyering@redhat.com>
28777
28778         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
28779         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
28780         use this macro to create a function _definition_.
28781         Remove useless "#undef ARGMATCH_DIE".
28782
28783 2007-11-14  Bruno Haible  <bruno@clisp.org>
28784
28785         * lib/config.charset: Update for OpenBSD 4.1.
28786         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
28787
28788 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
28789
28790         Document 64-bit #if problems in stdint.texi.
28791         * doc/headers/stdint.texi (stdint.h): Mention problems with
28792         64-bit-#if, and how to work around them.
28793
28794         Don't insist on 'long long int' support in the preprocessor.  It
28795         breaks too many things.  For example, PRIdMAX still uses a 'long
28796         long int' format with the latest Sun compiler, even though
28797         HAVE_LONG_LONG_INT isn't defined due to that compiler's
28798         preprocessor problem.  This causes the latest coreutils to dump
28799         core on Solaris 10 sparc with the Sun C compiler.
28800         Instead, fix the 2007-10-16 problem in a different way, by evaluating
28801         the troublesome expressions at configure-time, not at #if-time.
28802         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
28803         preprocessor.
28804         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
28805         compile-time C checks, done at 'configure'-time.
28806         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
28807         * modules/inttypes (Makefile): Substitute the new symbols that
28808         gl_INTTYPES_H now generates.
28809         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
28810
28811 2007-11-12  Bruno Haible  <bruno@clisp.org>
28812
28813         Tests for Unicode character classification functions.
28814
28815         * modules/unictype/bidicategory-byname-tests: New file.
28816         * modules/unictype/bidicategory-name-tests: New file.
28817         * modules/unictype/bidicategory-of-tests: New file.
28818         * modules/unictype/bidicategory-test-tests: New file.
28819         * modules/unictype/block-list-tests: New file.
28820         * modules/unictype/block-of-tests: New file.
28821         * modules/unictype/block-test-tests: New file.
28822         * modules/unictype/category-C-tests: New file.
28823         * modules/unictype/category-Cc-tests: New file.
28824         * modules/unictype/category-Cf-tests: New file.
28825         * modules/unictype/category-Cn-tests: New file.
28826         * modules/unictype/category-Co-tests: New file.
28827         * modules/unictype/category-Cs-tests: New file.
28828         * modules/unictype/category-L-tests: New file.
28829         * modules/unictype/category-Ll-tests: New file.
28830         * modules/unictype/category-Lm-tests: New file.
28831         * modules/unictype/category-Lo-tests: New file.
28832         * modules/unictype/category-Lt-tests: New file.
28833         * modules/unictype/category-Lu-tests: New file.
28834         * modules/unictype/category-M-tests: New file.
28835         * modules/unictype/category-Mc-tests: New file.
28836         * modules/unictype/category-Me-tests: New file.
28837         * modules/unictype/category-Mn-tests: New file.
28838         * modules/unictype/category-N-tests: New file.
28839         * modules/unictype/category-Nd-tests: New file.
28840         * modules/unictype/category-Nl-tests: New file.
28841         * modules/unictype/category-No-tests: New file.
28842         * modules/unictype/category-P-tests: New file.
28843         * modules/unictype/category-Pc-tests: New file.
28844         * modules/unictype/category-Pd-tests: New file.
28845         * modules/unictype/category-Pe-tests: New file.
28846         * modules/unictype/category-Pf-tests: New file.
28847         * modules/unictype/category-Pi-tests: New file.
28848         * modules/unictype/category-Po-tests: New file.
28849         * modules/unictype/category-Ps-tests: New file.
28850         * modules/unictype/category-S-tests: New file.
28851         * modules/unictype/category-Sc-tests: New file.
28852         * modules/unictype/category-Sk-tests: New file.
28853         * modules/unictype/category-Sm-tests: New file.
28854         * modules/unictype/category-So-tests: New file.
28855         * modules/unictype/category-Z-tests: New file.
28856         * modules/unictype/category-Zl-tests: New file.
28857         * modules/unictype/category-Zp-tests: New file.
28858         * modules/unictype/category-Zs-tests: New file.
28859         * modules/unictype/category-and-not-tests: New file.
28860         * modules/unictype/category-and-tests: New file.
28861         * modules/unictype/category-byname-tests: New file.
28862         * modules/unictype/category-name-tests: New file.
28863         * modules/unictype/category-none-tests: New file.
28864         * modules/unictype/category-of-tests: New file.
28865         * modules/unictype/category-or-tests: New file.
28866         * modules/unictype/category-test-withtable-tests: New file.
28867         * modules/unictype/combining-class-tests: New file.
28868         * modules/unictype/ctype-alnum-tests: New file.
28869         * modules/unictype/ctype-alpha-tests: New file.
28870         * modules/unictype/ctype-blank-tests: New file.
28871         * modules/unictype/ctype-cntrl-tests: New file.
28872         * modules/unictype/ctype-digit-tests: New file.
28873         * modules/unictype/ctype-graph-tests: New file.
28874         * modules/unictype/ctype-lower-tests: New file.
28875         * modules/unictype/ctype-print-tests: New file.
28876         * modules/unictype/ctype-punct-tests: New file.
28877         * modules/unictype/ctype-space-tests: New file.
28878         * modules/unictype/ctype-upper-tests: New file.
28879         * modules/unictype/ctype-xdigit-tests: New file.
28880         * modules/unictype/decimal-digit-tests: New file.
28881         * modules/unictype/digit-tests: New file.
28882         * modules/unictype/mirror-tests: New file.
28883         * modules/unictype/numeric-tests: New file.
28884         * modules/unictype/property-alphabetic-tests: New file.
28885         * modules/unictype/property-ascii-hex-digit-tests: New file.
28886         * modules/unictype/property-bidi-arabic-digit-tests: New file.
28887         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
28888         * modules/unictype/property-bidi-block-separator-tests: New file.
28889         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
28890         * modules/unictype/property-bidi-common-separator-tests: New file.
28891         * modules/unictype/property-bidi-control-tests: New file.
28892         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
28893         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
28894         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
28895         * modules/unictype/property-bidi-european-digit-tests: New file.
28896         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
28897         * modules/unictype/property-bidi-left-to-right-tests: New file.
28898         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
28899         * modules/unictype/property-bidi-other-neutral-tests: New file.
28900         * modules/unictype/property-bidi-pdf-tests: New file.
28901         * modules/unictype/property-bidi-segment-separator-tests: New file.
28902         * modules/unictype/property-bidi-whitespace-tests: New file.
28903         * modules/unictype/property-byname-tests: New file.
28904         * modules/unictype/property-combining-tests: New file.
28905         * modules/unictype/property-composite-tests: New file.
28906         * modules/unictype/property-currency-symbol-tests: New file.
28907         * modules/unictype/property-dash-tests: New file.
28908         * modules/unictype/property-decimal-digit-tests: New file.
28909         * modules/unictype/property-default-ignorable-code-point-tests: New file.
28910         * modules/unictype/property-deprecated-tests: New file.
28911         * modules/unictype/property-diacritic-tests: New file.
28912         * modules/unictype/property-extender-tests: New file.
28913         * modules/unictype/property-format-control-tests: New file.
28914         * modules/unictype/property-grapheme-base-tests: New file.
28915         * modules/unictype/property-grapheme-extend-tests: New file.
28916         * modules/unictype/property-grapheme-link-tests: New file.
28917         * modules/unictype/property-hex-digit-tests: New file.
28918         * modules/unictype/property-hyphen-tests: New file.
28919         * modules/unictype/property-id-continue-tests: New file.
28920         * modules/unictype/property-id-start-tests: New file.
28921         * modules/unictype/property-ideographic-tests: New file.
28922         * modules/unictype/property-ids-binary-operator-tests: New file.
28923         * modules/unictype/property-ids-trinary-operator-tests: New file.
28924         * modules/unictype/property-ignorable-control-tests: New file.
28925         * modules/unictype/property-iso-control-tests: New file.
28926         * modules/unictype/property-join-control-tests: New file.
28927         * modules/unictype/property-left-of-pair-tests: New file.
28928         * modules/unictype/property-line-separator-tests: New file.
28929         * modules/unictype/property-logical-order-exception-tests: New file.
28930         * modules/unictype/property-lowercase-tests: New file.
28931         * modules/unictype/property-math-tests: New file.
28932         * modules/unictype/property-non-break-tests: New file.
28933         * modules/unictype/property-not-a-character-tests: New file.
28934         * modules/unictype/property-numeric-tests: New file.
28935         * modules/unictype/property-other-alphabetic-tests: New file.
28936         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
28937         * modules/unictype/property-other-grapheme-extend-tests: New file.
28938         * modules/unictype/property-other-id-continue-tests: New file.
28939         * modules/unictype/property-other-id-start-tests: New file.
28940         * modules/unictype/property-other-lowercase-tests: New file.
28941         * modules/unictype/property-other-math-tests: New file.
28942         * modules/unictype/property-other-uppercase-tests: New file.
28943         * modules/unictype/property-paired-punctuation-tests: New file.
28944         * modules/unictype/property-paragraph-separator-tests: New file.
28945         * modules/unictype/property-pattern-syntax-tests: New file.
28946         * modules/unictype/property-pattern-white-space-tests: New file.
28947         * modules/unictype/property-private-use-tests: New file.
28948         * modules/unictype/property-punctuation-tests: New file.
28949         * modules/unictype/property-quotation-mark-tests: New file.
28950         * modules/unictype/property-radical-tests: New file.
28951         * modules/unictype/property-sentence-terminal-tests: New file.
28952         * modules/unictype/property-soft-dotted-tests: New file.
28953         * modules/unictype/property-space-tests: New file.
28954         * modules/unictype/property-terminal-punctuation-tests: New file.
28955         * modules/unictype/property-test-tests: New file.
28956         * modules/unictype/property-titlecase-tests: New file.
28957         * modules/unictype/property-unassigned-code-value-tests: New file.
28958         * modules/unictype/property-unified-ideograph-tests: New file.
28959         * modules/unictype/property-uppercase-tests: New file.
28960         * modules/unictype/property-variation-selector-tests: New file.
28961         * modules/unictype/property-white-space-tests: New file.
28962         * modules/unictype/property-xid-continue-tests: New file.
28963         * modules/unictype/property-xid-start-tests: New file.
28964         * modules/unictype/property-zero-width-tests: New file.
28965         * modules/unictype/scripts-tests: New file.
28966         * modules/unictype/syntax-c-ident-tests: New file.
28967         * modules/unictype/syntax-c-whitespace-tests: New file.
28968         * modules/unictype/syntax-java-ident-tests: New file.
28969         * modules/unictype/syntax-java-whitespace-tests: New file.
28970         * tests/unictype/test-bidi_byname.c: New file.
28971         * tests/unictype/test-bidi_name.c: New file.
28972         * tests/unictype/test-bidi_of.c: New file.
28973         * tests/unictype/test-bidi_test.c: New file.
28974         * tests/unictype/test-block_list.c: New file.
28975         * tests/unictype/test-block_of.c: New file.
28976         * tests/unictype/test-block_test.c: New file.
28977         * tests/unictype/test-categ_and.c: New file.
28978         * tests/unictype/test-categ_and_not.c: New file.
28979         * tests/unictype/test-categ_byname.c: New file.
28980         * tests/unictype/test-categ_name.c: New file.
28981         * tests/unictype/test-categ_none.c: New file.
28982         * tests/unictype/test-categ_of.c: New file.
28983         * tests/unictype/test-categ_or.c: New file.
28984         * tests/unictype/test-categ_test_withtable.c: New file.
28985         * tests/unictype/test-combining.c: New file.
28986         * tests/unictype/test-decdigit.c: New file.
28987         * tests/unictype/test-digit.c: New file.
28988         * tests/unictype/test-mirror.c: New file.
28989         * tests/unictype/test-numeric.c: New file.
28990         * tests/unictype/test-pr_byname.c: New file.
28991         * tests/unictype/test-pr_test.c: New file.
28992         * tests/unictype/test-predicate-part1.h: New file.
28993         * tests/unictype/test-predicate-part2.h: New file.
28994         * tests/unictype/test-scripts.c: New file.
28995         * tests/unictype/test-sy_c_ident.c: New file.
28996         * tests/unictype/test-sy_java_ident.c: New file.
28997
28998         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
28999         for Unicode 5.0.0.
29000         * tests/unictype/test-categ_Cc.c: Likewise.
29001         * tests/unictype/test-categ_Cf.c: Likewise.
29002         * tests/unictype/test-categ_Cn.c: Likewise.
29003         * tests/unictype/test-categ_Co.c: Likewise.
29004         * tests/unictype/test-categ_Cs.c: Likewise.
29005         * tests/unictype/test-categ_L.c: Likewise.
29006         * tests/unictype/test-categ_Ll.c: Likewise.
29007         * tests/unictype/test-categ_Lm.c: Likewise.
29008         * tests/unictype/test-categ_Lo.c: Likewise.
29009         * tests/unictype/test-categ_Lt.c: Likewise.
29010         * tests/unictype/test-categ_Lu.c: Likewise.
29011         * tests/unictype/test-categ_M.c: Likewise.
29012         * tests/unictype/test-categ_Mc.c: Likewise.
29013         * tests/unictype/test-categ_Me.c: Likewise.
29014         * tests/unictype/test-categ_Mn.c: Likewise.
29015         * tests/unictype/test-categ_N.c: Likewise.
29016         * tests/unictype/test-categ_Nd.c: Likewise.
29017         * tests/unictype/test-categ_Nl.c: Likewise.
29018         * tests/unictype/test-categ_No.c: Likewise.
29019         * tests/unictype/test-categ_P.c: Likewise.
29020         * tests/unictype/test-categ_Pc.c: Likewise.
29021         * tests/unictype/test-categ_Pd.c: Likewise.
29022         * tests/unictype/test-categ_Pe.c: Likewise.
29023         * tests/unictype/test-categ_Pf.c: Likewise.
29024         * tests/unictype/test-categ_Pi.c: Likewise.
29025         * tests/unictype/test-categ_Po.c: Likewise.
29026         * tests/unictype/test-categ_Ps.c: Likewise.
29027         * tests/unictype/test-categ_S.c: Likewise.
29028         * tests/unictype/test-categ_Sc.c: Likewise.
29029         * tests/unictype/test-categ_Sk.c: Likewise.
29030         * tests/unictype/test-categ_Sm.c: Likewise.
29031         * tests/unictype/test-categ_So.c: Likewise.
29032         * tests/unictype/test-categ_Z.c: Likewise.
29033         * tests/unictype/test-categ_Zl.c: Likewise.
29034         * tests/unictype/test-categ_Zp.c: Likewise.
29035         * tests/unictype/test-categ_Zs.c: Likewise.
29036         * tests/unictype/test-ctype_alnum.c: Likewise.
29037         * tests/unictype/test-ctype_alpha.c: Likewise.
29038         * tests/unictype/test-ctype_blank.c: Likewise.
29039         * tests/unictype/test-ctype_cntrl.c: Likewise.
29040         * tests/unictype/test-ctype_digit.c: Likewise.
29041         * tests/unictype/test-ctype_graph.c: Likewise.
29042         * tests/unictype/test-ctype_lower.c: Likewise.
29043         * tests/unictype/test-ctype_print.c: Likewise.
29044         * tests/unictype/test-ctype_punct.c: Likewise.
29045         * tests/unictype/test-ctype_space.c: Likewise.
29046         * tests/unictype/test-ctype_upper.c: Likewise.
29047         * tests/unictype/test-ctype_xdigit.c: Likewise.
29048         * tests/unictype/test-decdigit.h: Likewise.
29049         * tests/unictype/test-digit.h: Likewise.
29050         * tests/unictype/test-numeric.h: Likewise.
29051         * tests/unictype/test-pr_alphabetic.c: Likewise.
29052         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
29053         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
29054         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
29055         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
29056         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
29057         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
29058         * tests/unictype/test-pr_bidi_control.c: Likewise.
29059         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
29060         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
29061         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
29062         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
29063         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
29064         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
29065         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
29066         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
29067         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
29068         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
29069         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
29070         * tests/unictype/test-pr_combining.c: Likewise.
29071         * tests/unictype/test-pr_composite.c: Likewise.
29072         * tests/unictype/test-pr_currency_symbol.c: Likewise.
29073         * tests/unictype/test-pr_dash.c: Likewise.
29074         * tests/unictype/test-pr_decimal_digit.c: Likewise.
29075         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
29076         * tests/unictype/test-pr_deprecated.c: Likewise.
29077         * tests/unictype/test-pr_diacritic.c: Likewise.
29078         * tests/unictype/test-pr_extender.c: Likewise.
29079         * tests/unictype/test-pr_format_control.c: Likewise.
29080         * tests/unictype/test-pr_grapheme_base.c: Likewise.
29081         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
29082         * tests/unictype/test-pr_grapheme_link.c: Likewise.
29083         * tests/unictype/test-pr_hex_digit.c: Likewise.
29084         * tests/unictype/test-pr_hyphen.c: Likewise.
29085         * tests/unictype/test-pr_id_continue.c: Likewise.
29086         * tests/unictype/test-pr_id_start.c: Likewise.
29087         * tests/unictype/test-pr_ideographic.c: Likewise.
29088         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
29089         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
29090         * tests/unictype/test-pr_ignorable_control.c: Likewise.
29091         * tests/unictype/test-pr_iso_control.c: Likewise.
29092         * tests/unictype/test-pr_join_control.c: Likewise.
29093         * tests/unictype/test-pr_left_of_pair.c: Likewise.
29094         * tests/unictype/test-pr_line_separator.c: Likewise.
29095         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
29096         * tests/unictype/test-pr_lowercase.c: Likewise.
29097         * tests/unictype/test-pr_math.c: Likewise.
29098         * tests/unictype/test-pr_non_break.c: Likewise.
29099         * tests/unictype/test-pr_not_a_character.c: Likewise.
29100         * tests/unictype/test-pr_numeric.c: Likewise.
29101         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
29102         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
29103         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
29104         * tests/unictype/test-pr_other_id_continue.c: Likewise.
29105         * tests/unictype/test-pr_other_id_start.c: Likewise.
29106         * tests/unictype/test-pr_other_lowercase.c: Likewise.
29107         * tests/unictype/test-pr_other_math.c: Likewise.
29108         * tests/unictype/test-pr_other_uppercase.c: Likewise.
29109         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
29110         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
29111         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
29112         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
29113         * tests/unictype/test-pr_private_use.c: Likewise.
29114         * tests/unictype/test-pr_punctuation.c: Likewise.
29115         * tests/unictype/test-pr_quotation_mark.c: Likewise.
29116         * tests/unictype/test-pr_radical.c: Likewise.
29117         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
29118         * tests/unictype/test-pr_soft_dotted.c: Likewise.
29119         * tests/unictype/test-pr_space.c: Likewise.
29120         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
29121         * tests/unictype/test-pr_titlecase.c: Likewise.
29122         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
29123         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
29124         * tests/unictype/test-pr_uppercase.c: Likewise.
29125         * tests/unictype/test-pr_variation_selector.c: Likewise.
29126         * tests/unictype/test-pr_white_space.c: Likewise.
29127         * tests/unictype/test-pr_xid_continue.c: Likewise.
29128         * tests/unictype/test-pr_xid_start.c: Likewise.
29129         * tests/unictype/test-pr_zero_width.c: Likewise.
29130         * tests/unictype/test-sy_c_whitespace.c: Likewise.
29131         * tests/unictype/test-sy_java_whitespace.c: Likewise.
29132
29133 2007-11-12  Bruno Haible  <bruno@clisp.org>
29134
29135         Unicode character classification functions.
29136         * lib/unictype.h: New file.
29137         * modules/unictype/base: New file.
29138         * modules/unictype/category-L: New file.
29139         * modules/unictype/category-Lu: New file.
29140         * modules/unictype/category-Ll: New file.
29141         * modules/unictype/category-Lt: New file.
29142         * modules/unictype/category-Lm: New file.
29143         * modules/unictype/category-Lo: New file.
29144         * modules/unictype/category-M: New file.
29145         * modules/unictype/category-Mn: New file.
29146         * modules/unictype/category-Mc: New file.
29147         * modules/unictype/category-Me: New file.
29148         * modules/unictype/category-N: New file.
29149         * modules/unictype/category-Nd: New file.
29150         * modules/unictype/category-Nl: New file.
29151         * modules/unictype/category-No: New file.
29152         * modules/unictype/category-P: New file.
29153         * modules/unictype/category-Pc: New file.
29154         * modules/unictype/category-Pd: New file.
29155         * modules/unictype/category-Ps: New file.
29156         * modules/unictype/category-Pe: New file.
29157         * modules/unictype/category-Pi: New file.
29158         * modules/unictype/category-Pf: New file.
29159         * modules/unictype/category-Po: New file.
29160         * modules/unictype/category-S: New file.
29161         * modules/unictype/category-Sm: New file.
29162         * modules/unictype/category-Sc: New file.
29163         * modules/unictype/category-Sk: New file.
29164         * modules/unictype/category-So: New file.
29165         * modules/unictype/category-Z: New file.
29166         * modules/unictype/category-Zs: New file.
29167         * modules/unictype/category-Zl: New file.
29168         * modules/unictype/category-Zp: New file.
29169         * modules/unictype/category-C: New file.
29170         * modules/unictype/category-Cc: New file.
29171         * modules/unictype/category-Cf: New file.
29172         * modules/unictype/category-Cs: New file.
29173         * modules/unictype/category-Co: New file.
29174         * modules/unictype/category-Cn: New file.
29175         * modules/unictype/category-or: New file.
29176         * modules/unictype/category-of: New file.
29177         * modules/unictype/category-test: New file.
29178         * modules/unictype/category-test-withtable: New file.
29179         * modules/unictype/category-byname: New file.
29180         * modules/unictype/category-none: New file.
29181         * modules/unictype/category-and: New file.
29182         * modules/unictype/category-and-not: New file.
29183         * modules/unictype/category-name: New file.
29184         * modules/unictype/combining-class: New file.
29185         * modules/unictype/category-all: New file.
29186         * modules/unictype/bidicategory-all: New file.
29187         * modules/unictype/bidicategory-byname: New file.
29188         * modules/unictype/bidicategory-name: New file.
29189         * modules/unictype/bidicategory-of: New file.
29190         * modules/unictype/bidicategory-test: New file.
29191         * modules/unictype/decimal-digit: New file.
29192         * modules/unictype/digit: New file.
29193         * modules/unictype/numeric: New file.
29194         * modules/unictype/mirror: New file.
29195         * modules/unictype/property-white-space: New file.
29196         * modules/unictype/property-alphabetic: New file.
29197         * modules/unictype/property-other-alphabetic: New file.
29198         * modules/unictype/property-not-a-character: New file.
29199         * modules/unictype/property-default-ignorable-code-point: New file.
29200         * modules/unictype/property-other-default-ignorable-code-point: New
29201         file.
29202         * modules/unictype/property-deprecated: New file.
29203         * modules/unictype/property-logical-order-exception: New file.
29204         * modules/unictype/property-variation-selector: New file.
29205         * modules/unictype/property-private-use: New file.
29206         * modules/unictype/property-unassigned-code-value: New file.
29207         * modules/unictype/property-uppercase: New file.
29208         * modules/unictype/property-other-uppercase: New file.
29209         * modules/unictype/property-lowercase: New file.
29210         * modules/unictype/property-other-lowercase: New file.
29211         * modules/unictype/property-titlecase: New file.
29212         * modules/unictype/property-soft-dotted: New file.
29213         * modules/unictype/property-id-start: New file.
29214         * modules/unictype/property-other-id-start: New file.
29215         * modules/unictype/property-id-continue: New file.
29216         * modules/unictype/property-other-id-continue: New file.
29217         * modules/unictype/property-xid-start: New file.
29218         * modules/unictype/property-xid-continue: New file.
29219         * modules/unictype/property-pattern-white-space: New file.
29220         * modules/unictype/property-pattern-syntax: New file.
29221         * modules/unictype/property-join-control: New file.
29222         * modules/unictype/property-grapheme-base: New file.
29223         * modules/unictype/property-grapheme-extend: New file.
29224         * modules/unictype/property-other-grapheme-extend: New file.
29225         * modules/unictype/property-grapheme-link: New file.
29226         * modules/unictype/property-bidi-control: New file.
29227         * modules/unictype/property-bidi-left-to-right: New file.
29228         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
29229         * modules/unictype/property-bidi-arabic-right-to-left: New file.
29230         * modules/unictype/property-bidi-european-digit: New file.
29231         * modules/unictype/property-bidi-eur-num-separator: New file.
29232         * modules/unictype/property-bidi-eur-num-terminator: New file.
29233         * modules/unictype/property-bidi-arabic-digit: New file.
29234         * modules/unictype/property-bidi-common-separator: New file.
29235         * modules/unictype/property-bidi-block-separator: New file.
29236         * modules/unictype/property-bidi-segment-separator: New file.
29237         * modules/unictype/property-bidi-whitespace: New file.
29238         * modules/unictype/property-bidi-non-spacing-mark: New file.
29239         * modules/unictype/property-bidi-boundary-neutral: New file.
29240         * modules/unictype/property-bidi-pdf: New file.
29241         * modules/unictype/property-bidi-embedding-or-override: New file.
29242         * modules/unictype/property-bidi-other-neutral: New file.
29243         * modules/unictype/property-hex-digit: New file.
29244         * modules/unictype/property-ascii-hex-digit: New file.
29245         * modules/unictype/property-ideographic: New file.
29246         * modules/unictype/property-unified-ideograph: New file.
29247         * modules/unictype/property-radical: New file.
29248         * modules/unictype/property-ids-binary-operator: New file.
29249         * modules/unictype/property-ids-trinary-operator: New file.
29250         * modules/unictype/property-zero-width: New file.
29251         * modules/unictype/property-space: New file.
29252         * modules/unictype/property-non-break: New file.
29253         * modules/unictype/property-iso-control: New file.
29254         * modules/unictype/property-format-control: New file.
29255         * modules/unictype/property-dash: New file.
29256         * modules/unictype/property-hyphen: New file.
29257         * modules/unictype/property-punctuation: New file.
29258         * modules/unictype/property-line-separator: New file.
29259         * modules/unictype/property-paragraph-separator: New file.
29260         * modules/unictype/property-quotation-mark: New file.
29261         * modules/unictype/property-sentence-terminal: New file.
29262         * modules/unictype/property-terminal-punctuation: New file.
29263         * modules/unictype/property-currency-symbol: New file.
29264         * modules/unictype/property-math: New file.
29265         * modules/unictype/property-other-math: New file.
29266         * modules/unictype/property-paired-punctuation: New file.
29267         * modules/unictype/property-left-of-pair: New file.
29268         * modules/unictype/property-combining: New file.
29269         * modules/unictype/property-composite: New file.
29270         * modules/unictype/property-decimal-digit: New file.
29271         * modules/unictype/property-numeric: New file.
29272         * modules/unictype/property-diacritic: New file.
29273         * modules/unictype/property-extender: New file.
29274         * modules/unictype/property-ignorable-control: New file.
29275         * modules/unictype/property-test: New file.
29276         * modules/unictype/property-byname: New file.
29277         * modules/unictype/property-all: New file.
29278         * modules/unictype/scripts: New file.
29279         * modules/unictype/scripts-all: New file.
29280         * modules/unictype/block-of: New file.
29281         * modules/unictype/block-test: New file.
29282         * modules/unictype/block-list: New file.
29283         * modules/unictype/block-all: New file.
29284         * modules/unictype/syntax-c-whitespace: New file.
29285         * modules/unictype/syntax-java-whitespace: New file.
29286         * modules/unictype/syntax-c-ident: New file.
29287         * modules/unictype/syntax-java-ident: New file.
29288         * modules/unictype/ctype-alnum: New file.
29289         * modules/unictype/ctype-alpha: New file.
29290         * modules/unictype/ctype-cntrl: New file.
29291         * modules/unictype/ctype-digit: New file.
29292         * modules/unictype/ctype-graph: New file.
29293         * modules/unictype/ctype-lower: New file.
29294         * modules/unictype/ctype-print: New file.
29295         * modules/unictype/ctype-punct: New file.
29296         * modules/unictype/ctype-space: New file.
29297         * modules/unictype/ctype-upper: New file.
29298         * modules/unictype/ctype-xdigit: New file.
29299         * modules/unictype/ctype-blank: New file.
29300         * lib/unictype/bidi_byname.c: New file.
29301         * lib/unictype/bidi_name.c: New file.
29302         * lib/unictype/bidi_of.c: New file.
29303         * lib/unictype/bidi_test.c: New file.
29304         * lib/unictype/bitmap.h: New file.
29305         * lib/unictype/block_test.c: New file.
29306         * lib/unictype/blocks.c: New file.
29307         * lib/unictype/categ_C.c: New file.
29308         * lib/unictype/categ_Cc.c: New file.
29309         * lib/unictype/categ_Cf.c: New file.
29310         * lib/unictype/categ_Cn.c: New file.
29311         * lib/unictype/categ_Co.c: New file.
29312         * lib/unictype/categ_Cs.c: New file.
29313         * lib/unictype/categ_L.c: New file.
29314         * lib/unictype/categ_Ll.c: New file.
29315         * lib/unictype/categ_Lm.c: New file.
29316         * lib/unictype/categ_Lo.c: New file.
29317         * lib/unictype/categ_Lt.c: New file.
29318         * lib/unictype/categ_Lu.c: New file.
29319         * lib/unictype/categ_M.c: New file.
29320         * lib/unictype/categ_Mc.c: New file.
29321         * lib/unictype/categ_Me.c: New file.
29322         * lib/unictype/categ_Mn.c: New file.
29323         * lib/unictype/categ_N.c: New file.
29324         * lib/unictype/categ_Nd.c: New file.
29325         * lib/unictype/categ_Nl.c: New file.
29326         * lib/unictype/categ_No.c: New file.
29327         * lib/unictype/categ_P.c: New file.
29328         * lib/unictype/categ_Pc.c: New file.
29329         * lib/unictype/categ_Pd.c: New file.
29330         * lib/unictype/categ_Pe.c: New file.
29331         * lib/unictype/categ_Pf.c: New file.
29332         * lib/unictype/categ_Pi.c: New file.
29333         * lib/unictype/categ_Po.c: New file.
29334         * lib/unictype/categ_Ps.c: New file.
29335         * lib/unictype/categ_S.c: New file.
29336         * lib/unictype/categ_Sc.c: New file.
29337         * lib/unictype/categ_Sk.c: New file.
29338         * lib/unictype/categ_Sm.c: New file.
29339         * lib/unictype/categ_So.c: New file.
29340         * lib/unictype/categ_Z.c: New file.
29341         * lib/unictype/categ_Zl.c: New file.
29342         * lib/unictype/categ_Zp.c: New file.
29343         * lib/unictype/categ_Zs.c: New file.
29344         * lib/unictype/categ_and.c: New file.
29345         * lib/unictype/categ_and_not.c: New file.
29346         * lib/unictype/categ_byname.c: New file.
29347         * lib/unictype/categ_name.c: New file.
29348         * lib/unictype/categ_none.c: New file.
29349         * lib/unictype/categ_of.c: New file.
29350         * lib/unictype/categ_or.c: New file.
29351         * lib/unictype/categ_test.c: New file.
29352         * lib/unictype/combining.c: New file.
29353         * lib/unictype/ctype_alnum.c: New file.
29354         * lib/unictype/ctype_alpha.c: New file.
29355         * lib/unictype/ctype_blank.c: New file.
29356         * lib/unictype/ctype_cntrl.c: New file.
29357         * lib/unictype/ctype_digit.c: New file.
29358         * lib/unictype/ctype_graph.c: New file.
29359         * lib/unictype/ctype_lower.c: New file.
29360         * lib/unictype/ctype_print.c: New file.
29361         * lib/unictype/ctype_punct.c: New file.
29362         * lib/unictype/ctype_space.c: New file.
29363         * lib/unictype/ctype_upper.c: New file.
29364         * lib/unictype/ctype_xdigit.c: New file.
29365         * lib/unictype/decdigit.c: New file.
29366         * lib/unictype/digit.c: New file.
29367         * lib/unictype/identsyntaxmap.h: New file.
29368         * lib/unictype/mirror.c: New file.
29369         * lib/unictype/numeric.c: New file.
29370         * lib/unictype/pr_alphabetic.c: New file.
29371         * lib/unictype/pr_ascii_hex_digit.c: New file.
29372         * lib/unictype/pr_bidi_arabic_digit.c: New file.
29373         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
29374         * lib/unictype/pr_bidi_block_separator.c: New file.
29375         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
29376         * lib/unictype/pr_bidi_common_separator.c: New file.
29377         * lib/unictype/pr_bidi_control.c: New file.
29378         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
29379         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
29380         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
29381         * lib/unictype/pr_bidi_european_digit.c: New file.
29382         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
29383         * lib/unictype/pr_bidi_left_to_right.c: New file.
29384         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
29385         * lib/unictype/pr_bidi_other_neutral.c: New file.
29386         * lib/unictype/pr_bidi_pdf.c: New file.
29387         * lib/unictype/pr_bidi_segment_separator.c: New file.
29388         * lib/unictype/pr_bidi_whitespace.c: New file.
29389         * lib/unictype/pr_byname.c: New file.
29390         * lib/unictype/pr_byname.gperf: New file.
29391         * lib/unictype/pr_combining.c: New file.
29392         * lib/unictype/pr_composite.c: New file.
29393         * lib/unictype/pr_currency_symbol.c: New file.
29394         * lib/unictype/pr_dash.c: New file.
29395         * lib/unictype/pr_decimal_digit.c: New file.
29396         * lib/unictype/pr_default_ignorable_code_point.c: New file.
29397         * lib/unictype/pr_deprecated.c: New file.
29398         * lib/unictype/pr_diacritic.c: New file.
29399         * lib/unictype/pr_extender.c: New file.
29400         * lib/unictype/pr_format_control.c: New file.
29401         * lib/unictype/pr_grapheme_base.c: New file.
29402         * lib/unictype/pr_grapheme_extend.c: New file.
29403         * lib/unictype/pr_grapheme_link.c: New file.
29404         * lib/unictype/pr_hex_digit.c: New file.
29405         * lib/unictype/pr_hyphen.c: New file.
29406         * lib/unictype/pr_id_continue.c: New file.
29407         * lib/unictype/pr_id_start.c: New file.
29408         * lib/unictype/pr_ideographic.c: New file.
29409         * lib/unictype/pr_ids_binary_operator.c: New file.
29410         * lib/unictype/pr_ids_trinary_operator.c: New file.
29411         * lib/unictype/pr_ignorable_control.c: New file.
29412         * lib/unictype/pr_iso_control.c: New file.
29413         * lib/unictype/pr_join_control.c: New file.
29414         * lib/unictype/pr_left_of_pair.c: New file.
29415         * lib/unictype/pr_line_separator.c: New file.
29416         * lib/unictype/pr_logical_order_exception.c: New file.
29417         * lib/unictype/pr_lowercase.c: New file.
29418         * lib/unictype/pr_math.c: New file.
29419         * lib/unictype/pr_non_break.c: New file.
29420         * lib/unictype/pr_not_a_character.c: New file.
29421         * lib/unictype/pr_numeric.c: New file.
29422         * lib/unictype/pr_other_alphabetic.c: New file.
29423         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
29424         * lib/unictype/pr_other_grapheme_extend.c: New file.
29425         * lib/unictype/pr_other_id_continue.c: New file.
29426         * lib/unictype/pr_other_id_start.c: New file.
29427         * lib/unictype/pr_other_lowercase.c: New file.
29428         * lib/unictype/pr_other_math.c: New file.
29429         * lib/unictype/pr_other_uppercase.c: New file.
29430         * lib/unictype/pr_paired_punctuation.c: New file.
29431         * lib/unictype/pr_paragraph_separator.c: New file.
29432         * lib/unictype/pr_pattern_syntax.c: New file.
29433         * lib/unictype/pr_pattern_white_space.c: New file.
29434         * lib/unictype/pr_private_use.c: New file.
29435         * lib/unictype/pr_punctuation.c: New file.
29436         * lib/unictype/pr_quotation_mark.c: New file.
29437         * lib/unictype/pr_radical.c: New file.
29438         * lib/unictype/pr_sentence_terminal.c: New file.
29439         * lib/unictype/pr_soft_dotted.c: New file.
29440         * lib/unictype/pr_space.c: New file.
29441         * lib/unictype/pr_terminal_punctuation.c: New file.
29442         * lib/unictype/pr_test.c: New file.
29443         * lib/unictype/pr_titlecase.c: New file.
29444         * lib/unictype/pr_unassigned_code_value.c: New file.
29445         * lib/unictype/pr_unified_ideograph.c: New file.
29446         * lib/unictype/pr_uppercase.c: New file.
29447         * lib/unictype/pr_variation_selector.c: New file.
29448         * lib/unictype/pr_white_space.c: New file.
29449         * lib/unictype/pr_xid_continue.c: New file.
29450         * lib/unictype/pr_xid_start.c: New file.
29451         * lib/unictype/pr_zero_width.c: New file.
29452         * lib/unictype/scripts.c: New file.
29453         * lib/unictype/sy_c_ident.c: New file.
29454         * lib/unictype/sy_c_whitespace.c: New file.
29455         * lib/unictype/sy_java_ident.c: New file.
29456         * lib/unictype/sy_java_whitespace.c: New file.
29457
29458         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
29459         Unicode 5.0.0.
29460         * lib/unictype/blocks.h: Likewise.
29461         * lib/unictype/categ_C.h: Likewise.
29462         * lib/unictype/categ_Cc.h: Likewise.
29463         * lib/unictype/categ_Cf.h: Likewise.
29464         * lib/unictype/categ_Cn.h: Likewise.
29465         * lib/unictype/categ_Co.h: Likewise.
29466         * lib/unictype/categ_Cs.h: Likewise.
29467         * lib/unictype/categ_L.h: Likewise.
29468         * lib/unictype/categ_Ll.h: Likewise.
29469         * lib/unictype/categ_Lm.h: Likewise.
29470         * lib/unictype/categ_Lo.h: Likewise.
29471         * lib/unictype/categ_Lt.h: Likewise.
29472         * lib/unictype/categ_Lu.h: Likewise.
29473         * lib/unictype/categ_M.h: Likewise.
29474         * lib/unictype/categ_Mc.h: Likewise.
29475         * lib/unictype/categ_Me.h: Likewise.
29476         * lib/unictype/categ_Mn.h: Likewise.
29477         * lib/unictype/categ_N.h: Likewise.
29478         * lib/unictype/categ_Nd.h: Likewise.
29479         * lib/unictype/categ_Nl.h: Likewise.
29480         * lib/unictype/categ_No.h: Likewise.
29481         * lib/unictype/categ_P.h: Likewise.
29482         * lib/unictype/categ_Pc.h: Likewise.
29483         * lib/unictype/categ_Pd.h: Likewise.
29484         * lib/unictype/categ_Pe.h: Likewise.
29485         * lib/unictype/categ_Pf.h: Likewise.
29486         * lib/unictype/categ_Pi.h: Likewise.
29487         * lib/unictype/categ_Po.h: Likewise.
29488         * lib/unictype/categ_Ps.h: Likewise.
29489         * lib/unictype/categ_S.h: Likewise.
29490         * lib/unictype/categ_Sc.h: Likewise.
29491         * lib/unictype/categ_Sk.h: Likewise.
29492         * lib/unictype/categ_Sm.h: Likewise.
29493         * lib/unictype/categ_So.h: Likewise.
29494         * lib/unictype/categ_Z.h: Likewise.
29495         * lib/unictype/categ_Zl.h: Likewise.
29496         * lib/unictype/categ_Zp.h: Likewise.
29497         * lib/unictype/categ_Zs.h: Likewise.
29498         * lib/unictype/categ_of.h: Likewise.
29499         * lib/unictype/combining.h: Likewise.
29500         * lib/unictype/ctype_alnum.h: Likewise.
29501         * lib/unictype/ctype_alpha.h: Likewise.
29502         * lib/unictype/ctype_blank.h: Likewise.
29503         * lib/unictype/ctype_cntrl.h: Likewise.
29504         * lib/unictype/ctype_digit.h: Likewise.
29505         * lib/unictype/ctype_graph.h: Likewise.
29506         * lib/unictype/ctype_lower.h: Likewise.
29507         * lib/unictype/ctype_print.h: Likewise.
29508         * lib/unictype/ctype_punct.h: Likewise.
29509         * lib/unictype/ctype_space.h: Likewise.
29510         * lib/unictype/ctype_upper.h: Likewise.
29511         * lib/unictype/ctype_xdigit.h: Likewise.
29512         * lib/unictype/decdigit.h: Likewise.
29513         * lib/unictype/digit.h: Likewise.
29514         * lib/unictype/mirror.h: Likewise.
29515         * lib/unictype/numeric.h: Likewise.
29516         * lib/unictype/pr_alphabetic.h: Likewise.
29517         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
29518         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
29519         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
29520         * lib/unictype/pr_bidi_block_separator.h: Likewise.
29521         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
29522         * lib/unictype/pr_bidi_common_separator.h: Likewise.
29523         * lib/unictype/pr_bidi_control.h: Likewise.
29524         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
29525         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
29526         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
29527         * lib/unictype/pr_bidi_european_digit.h: Likewise.
29528         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
29529         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
29530         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
29531         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
29532         * lib/unictype/pr_bidi_pdf.h: Likewise.
29533         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
29534         * lib/unictype/pr_bidi_whitespace.h: Likewise.
29535         * lib/unictype/pr_combining.h: Likewise.
29536         * lib/unictype/pr_composite.h: Likewise.
29537         * lib/unictype/pr_currency_symbol.h: Likewise.
29538         * lib/unictype/pr_dash.h: Likewise.
29539         * lib/unictype/pr_decimal_digit.h: Likewise.
29540         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
29541         * lib/unictype/pr_deprecated.h: Likewise.
29542         * lib/unictype/pr_diacritic.h: Likewise.
29543         * lib/unictype/pr_extender.h: Likewise.
29544         * lib/unictype/pr_format_control.h: Likewise.
29545         * lib/unictype/pr_grapheme_base.h: Likewise.
29546         * lib/unictype/pr_grapheme_extend.h: Likewise.
29547         * lib/unictype/pr_grapheme_link.h: Likewise.
29548         * lib/unictype/pr_hex_digit.h: Likewise.
29549         * lib/unictype/pr_hyphen.h: Likewise.
29550         * lib/unictype/pr_id_continue.h: Likewise.
29551         * lib/unictype/pr_id_start.h: Likewise.
29552         * lib/unictype/pr_ideographic.h: Likewise.
29553         * lib/unictype/pr_ids_binary_operator.h: Likewise.
29554         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
29555         * lib/unictype/pr_ignorable_control.h: Likewise.
29556         * lib/unictype/pr_iso_control.h: Likewise.
29557         * lib/unictype/pr_join_control.h: Likewise.
29558         * lib/unictype/pr_left_of_pair.h: Likewise.
29559         * lib/unictype/pr_line_separator.h: Likewise.
29560         * lib/unictype/pr_logical_order_exception.h: Likewise.
29561         * lib/unictype/pr_lowercase.h: Likewise.
29562         * lib/unictype/pr_math.h: Likewise.
29563         * lib/unictype/pr_non_break.h: Likewise.
29564         * lib/unictype/pr_not_a_character.h: Likewise.
29565         * lib/unictype/pr_numeric.h: Likewise.
29566         * lib/unictype/pr_other_alphabetic.h: Likewise.
29567         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
29568         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
29569         * lib/unictype/pr_other_id_continue.h: Likewise.
29570         * lib/unictype/pr_other_id_start.h: Likewise.
29571         * lib/unictype/pr_other_lowercase.h: Likewise.
29572         * lib/unictype/pr_other_math.h: Likewise.
29573         * lib/unictype/pr_other_uppercase.h: Likewise.
29574         * lib/unictype/pr_paired_punctuation.h: Likewise.
29575         * lib/unictype/pr_paragraph_separator.h: Likewise.
29576         * lib/unictype/pr_pattern_syntax.h: Likewise.
29577         * lib/unictype/pr_pattern_white_space.h: Likewise.
29578         * lib/unictype/pr_private_use.h: Likewise.
29579         * lib/unictype/pr_punctuation.h: Likewise.
29580         * lib/unictype/pr_quotation_mark.h: Likewise.
29581         * lib/unictype/pr_radical.h: Likewise.
29582         * lib/unictype/pr_sentence_terminal.h: Likewise.
29583         * lib/unictype/pr_soft_dotted.h: Likewise.
29584         * lib/unictype/pr_space.h: Likewise.
29585         * lib/unictype/pr_terminal_punctuation.h: Likewise.
29586         * lib/unictype/pr_titlecase.h: Likewise.
29587         * lib/unictype/pr_unassigned_code_value.h: Likewise.
29588         * lib/unictype/pr_unified_ideograph.h: Likewise.
29589         * lib/unictype/pr_uppercase.h: Likewise.
29590         * lib/unictype/pr_variation_selector.h: Likewise.
29591         * lib/unictype/pr_white_space.h: Likewise.
29592         * lib/unictype/pr_xid_continue.h: Likewise.
29593         * lib/unictype/pr_xid_start.h: Likewise.
29594         * lib/unictype/pr_zero_width.h: Likewise.
29595         * lib/unictype/scripts.h: Likewise.
29596         * lib/unictype/scripts_byname.gperf: Likewise.
29597         * lib/unictype/sy_c_ident.h: Likewise.
29598         * lib/unictype/sy_c_whitespace.h: Likewise.
29599         * lib/unictype/sy_java_ident.h: Likewise.
29600         * lib/unictype/sy_java_whitespace.h: Likewise.
29601
29602         * lib/unictype/Makefile: New file.
29603         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
29604         glibc.
29605         * lib/unictype/3level.h: New file, copied from glibc.
29606         * lib/unictype/3levelbit.h: New file.
29607
29608 2007-11-11  Bruno Haible  <bruno@clisp.org>
29609
29610         * modules/gperf: New file.
29611         * modules/iconv_open (Depends-on): Add it.
29612         (Makefile.am): Remove the GPERF definition.
29613
29614 2007-11-11  Bruno Haible  <bruno@clisp.org>
29615
29616         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
29617         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
29618
29619 2007-11-11  Bruno Haible  <bruno@clisp.org>
29620
29621         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
29622         (usage): Remove function.
29623
29624 2007-11-11  Bruno Haible  <bruno@clisp.org>
29625
29626         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
29627         gl_FUNC_CEILF_LIBS.
29628         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
29629         gl_FUNC_CEIL_LIBS.
29630         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
29631         gl_FUNC_CEILL_LIBS.
29632         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
29633         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
29634         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
29635
29636 2007-11-11  Bruno Haible  <bruno@clisp.org>
29637
29638         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
29639         roundf were declared but do not exist on functions.
29640         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
29641         roundl were declared but do not exist on functions.
29642         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
29643         HAVE_FLOORL_AND_CEILL, respectively.
29644         Needed for Sun C on Solaris 10.
29645
29646 2007-11-11  Bruno Haible  <bruno@clisp.org>
29647
29648         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
29649         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
29650         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
29651         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
29652         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
29653         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
29654         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
29655         HAVE_DECL_ROUNDF.
29656         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
29657         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
29658         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
29659         of HAVE_DECL_ROUND*.
29660         * modules/math (Makefile.am): Update.
29661
29662 2007-11-10  Bruno Haible  <bruno@clisp.org>
29663
29664         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
29665         ptrdiff_t as m4/intl.m4.
29666
29667 2007-11-10  Jim Meyering  <meyering@redhat.com>
29668
29669         Avoid link failure for the argmatch test.
29670         * tests/test-argmatch.c (usage): Define function to avoid a link
29671         failure: argmatch_die requires a usage function.
29672
29673 2007-11-09  Bruno Haible  <bruno@clisp.org>
29674
29675         * doc/functions/snprintf.texi: Mention BeOS deficiency.
29676         * doc/functions/vsnprintf.texi: Likewise.
29677         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
29678         with a size argument < 2.
29679
29680 2007-11-09  Bruno Haible  <bruno@clisp.org>
29681
29682         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
29683         buffer. Fixes an inefficiency introduced on 2007-11-03.
29684
29685 2007-11-09  Bruno Haible  <bruno@clisp.org>
29686
29687         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
29688         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
29689
29690 2007-11-08  Jim Meyering  <meyering@redhat.com>
29691
29692         Change cache variable name prefix "jm_" to "gl_" everywhere.
29693         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
29694         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
29695         * m4/uptime.m4: s/gl_/jm_/
29696
29697 2007-11-07  Bruno Haible  <bruno@clisp.org>
29698
29699         Update to GNU gettext 0.17.
29700         * m4/intl.m4: Update to GNU gettext 0.17.
29701         * m4/po.m4: Likewise.
29702         * modules/gettext (Files): Remove m4/ulonglong.m4.
29703         (configure.ac): Require gettext infrastructure from version 0.17.
29704
29705 2007-11-06  Bruno Haible  <bruno@clisp.org>
29706
29707         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
29708         symbolic values are not defined in a public header.
29709         * lib/freadable.c (freadable) [QNX]: Likewise.
29710         * lib/freadahead.c (freadahead) [QNX]: Likewise.
29711         * lib/freading.c (freading) [QNX]: Likewise.
29712         * lib/fseterr.c (fseterr) [QNX]: Likewise.
29713         * lib/fwritable.c (fwritable) [QNX]: Likewise.
29714         * lib/fwriting.c (fwriting) [QNX]: Likewise.
29715         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
29716         Reported by Alain Magloire.
29717
29718         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
29719
29720 2007-11-05  Bruno Haible  <bruno@clisp.org>
29721
29722         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
29723         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
29724         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
29725         Reported by Eric Blake.
29726
29727 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29728             Bruno Haible  <bruno@clisp.org>
29729
29730         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
29731         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
29732         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
29733         (malloc): Undefine also before including <stdlib.h>.
29734         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
29735         Needed on OSF/1 4.0.
29736
29737 2007-11-05  Jim Meyering  <meyering@redhat.com>
29738
29739         git-version-gen: sync from coreutils.
29740         * build-aux/git-version-gen: Add comments.
29741         Change the first '-' to '.' in the snapshot version string,
29742         e.g., 6.9-377-08144 -> 6.9.377-08144
29743         Remove first parameter.
29744         Don't declare a version "-dirty" merely because a time
29745         stamp has changed.
29746
29747 2007-11-04  Bruno Haible  <bruno@clisp.org>
29748
29749         * lib/lock.h: Protect all macro definitions containing an 'if'
29750         statement through a "do { ... } while (0)".
29751         * lib/tls.h: Likewise.
29752
29753 2007-11-04  Bruno Haible  <bruno@clisp.org>
29754
29755         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
29756
29757 2007-11-04  Bruno Haible  <bruno@clisp.org>
29758
29759         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
29760         * modules/fprintf-posix (Depends-on): Add nocrash.
29761         * modules/snprintf-posix (Depends-on): Likewise.
29762         * modules/sprintf-posix (Depends-on): Likewise.
29763         * modules/vasnprintf-posix (Depends-on): Likewise.
29764         * modules/vasprintf-posix (Depends-on): Likewise.
29765         * modules/vfprintf-posix (Depends-on): Likewise.
29766         * modules/vsnprintf-posix (Depends-on): Likewise.
29767         * modules/vsprintf-posix (Depends-on): Likewise.
29768         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
29769         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
29770         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
29771         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
29772         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
29773         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
29774         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
29775
29776 2007-11-04  Bruno Haible  <bruno@clisp.org>
29777
29778         * modules/nocrash: New file.
29779         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
29780         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
29781
29782 2007-11-04  Bruno Haible  <bruno@clisp.org>
29783
29784         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
29785         precision handling.
29786         * tests/test-vasprintf-posix.c (test_function): Likewise.
29787         * tests/test-snprintf-posix.h (test_function): Likewise.
29788         * tests/test-sprintf-posix.h (test_function): Likewise.
29789
29790         Fix *printf behaviour for large precisions on mingw and BeOS.
29791         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
29792         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
29793         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
29794         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29795         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29796         gl_PRINTF_PRECISION and test its result. Invoke
29797         gl_PREREQ_VASNPRINTF_PRECISION.
29798         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29799         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29800         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29801         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29802         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29803         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29804         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29805         * doc/functions/fprintf.texi: Update.
29806         * doc/functions/printf.texi: Update.
29807         * doc/functions/snprintf.texi: Update.
29808         * doc/functions/sprintf.texi: Update.
29809         * doc/functions/vfprintf.texi: Update.
29810         * doc/functions/vprintf.texi: Update.
29811         * doc/functions/vsnprintf.texi: Update.
29812         * doc/functions/vsprintf.texi: Update.
29813
29814 2007-11-04  Bruno Haible  <bruno@clisp.org>
29815
29816         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
29817
29818 2007-11-04  Bruno Haible  <bruno@clisp.org>
29819
29820         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
29821         Reported by Sylvain Beucler <beuc@gnu.org>.
29822
29823 2007-11-03  Bruno Haible  <bruno@clisp.org>
29824
29825         * tests/test-fprintf-posix2.sh: New file.
29826         * tests/test-fprintf-posix2.c: New file.
29827         * modules/fprintf-posix-tests (Files): Add them.
29828         (TESTS): Add test-fprintf-posix2.sh.
29829         (configure.ac): Check for getrlimit and setrlimit.
29830         (check_PROGRAMS): Add test-fprintf-posix2.
29831
29832         * tests/test-printf-posix2.sh: New file.
29833         * tests/test-printf-posix2.c: New file.
29834         * modules/printf-posix-tests (Files): Add them.
29835         (TESTS): Add test-printf-posix2.sh.
29836         (configure.ac): Check for getrlimit and setrlimit.
29837         (check_PROGRAMS): Add test-printf-posix2.
29838
29839         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
29840         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
29841         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
29842         (decode_double): New function, copied from decode_long_double.
29843         (scale10_round_decimal_decoded): New function, extracted from
29844         scale10_round_decimal_long_double.
29845         (scale10_round_decimal_long_double): Use it.
29846         (scale10_round_decimal_double): New function.
29847         (floorlog10): New function.
29848         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
29849         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
29850         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
29851         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29852         gl_PRINTF_ENOMEM and test its result. Invoke
29853         gl_PREREQ_VASNPRINTF_ENOMEM.
29854         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29855         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29856         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29857         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29858         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29859         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29860         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29861         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
29862         * modules/snprintf-posix (Depends-on): Likewise.
29863         * modules/sprintf-posix (Depends-on): Likewise.
29864         * modules/vasnprintf-posix (Depends-on): Likewise.
29865         * modules/vasprintf-posix (Depends-on): Likewise.
29866         * modules/vfprintf-posix (Depends-on): Likewise.
29867         * modules/vsnprintf-posix (Depends-on): Likewise.
29868         * modules/vsprintf-posix (Depends-on): Likewise.
29869         * doc/functions/fprintf.texi: Update.
29870         * doc/functions/printf.texi: Update.
29871         * doc/functions/snprintf.texi: Update.
29872         * doc/functions/sprintf.texi: Update.
29873         * doc/functions/vfprintf.texi: Update.
29874         * doc/functions/vprintf.texi: Update.
29875         * doc/functions/vsnprintf.texi: Update.
29876         * doc/functions/vsprintf.texi: Update.
29877
29878 2007-11-03  Bruno Haible  <bruno@clisp.org>
29879
29880         * modules/frexp-nolibm-tests: New file.
29881
29882         * modules/frexp-nolibm: New file.
29883         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
29884
29885 2007-11-03  Bruno Haible  <bruno@clisp.org>
29886
29887         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
29888         value is C99 compliant.
29889         Needed for OSF/1 5.1.
29890
29891 2007-11-03  Bruno Haible  <bruno@clisp.org>
29892
29893         Fix out-of-memory handling of vasnprintf.
29894         * lib/printf-parse.c: Include <errno.h>.
29895         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
29896         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
29897         is already set.
29898
29899 2007-11-02  Eric Blake  <ebb9@byu.net>
29900
29901         Fix tests on cygwin.
29902         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
29903
29904 2007-11-01  Bruno Haible  <bruno@clisp.org>
29905
29906         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
29907         warning.
29908         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
29909         needed for POSIX compatibility.
29910
29911 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
29912
29913         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
29914         for compatibility with GNU.
29915
29916 2007-11-01  Bruno Haible  <bruno@clisp.org>
29917
29918         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
29919         (putenv): Renamed from rpl_putenv. Change argument type from
29920         'const char *' to 'char *'.
29921         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
29922         of defining putenv in config.h, just set REPLACE_PUTENV.
29923         * modules/putenv (Depends-on): Add stdlib.
29924         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
29925         (Include): Use <stdlib.h>.
29926         * lib/stdlib.in.h (putenv): New declaration.
29927         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
29928         REPLACE_PUTENV.
29929         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
29930         REPLACE_PUTENV.
29931         Needed for MacOS X 10.5.0.
29932         Reported by Peter O'Gorman <peter@pogma.com>.
29933
29934 2007-11-01  Jim Meyering  <meyering@redhat.com>
29935
29936         Treat an empty date string exactly like "0".
29937         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
29938         if the remaining date string (to be parsed) is empty, use "0".
29939         Reported by Mischa Molhoek and discussed in this thread:
29940         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
29941
29942 2007-10-31  Bruno Haible  <bruno@clisp.org>
29943
29944         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
29945         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
29946         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
29947         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
29948         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
29949         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
29950
29951 2007-10-31  Bruno Haible  <bruno@clisp.org>
29952
29953         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
29954         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
29955         (AC_TYPE_LONG_LONG_INT): Use it.
29956         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
29957         it as well.
29958         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
29959         to m4/longlong.m4.
29960         * modules/stdint (Files): Remove m4/ulonglong.m4.
29961         * modules/strtoull (Files): Use m4/longlong.m4 instead of
29962         m4/ulonglong.m4.
29963         * modules/strtoumax (Files): Likewise.
29964
29965 2007-10-30  Bruno Haible  <bruno@clisp.org>
29966
29967         * modules/xvasprintf-posix: New file.
29968         Suggested by Eric Blake.
29969
29970 2007-10-30  Bruno Haible  <bruno@clisp.org>
29971
29972         * modules/xprintf-posix-tests: New file.
29973         * tests/test-xprintf-posix.sh: New file.
29974         * tests/test-xprintf-posix.c: New file.
29975         * tests/test-xfprintf-posix.c: New file.
29976
29977         * modules/xprintf-posix: New file.
29978
29979 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29980
29981         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
29982         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
29983         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
29984
29985 2007-10-29  Bruno Haible  <bruno@clisp.org>
29986
29987         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
29988         contain the special marker '_cv_'.
29989         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
29990         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
29991         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
29992         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
29993         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
29994         Reported by Ralf Wildenhues.
29995
29996 2007-10-29  Bruno Haible  <bruno@clisp.org>
29997
29998         * gnulib-tool (func_import): When --lgpl is not specified, set
29999         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
30000         GPLv3.
30001         Reported by Simon Josefsson.
30002
30003 2007-10-28  Bruno Haible  <bruno@clisp.org>
30004
30005         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
30006         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
30007         HAVE_DECL_ISFINITE.
30008         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
30009         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
30010         HAVE_DECL_ISFINITE.
30011
30012 2007-10-28  Bruno Haible  <bruno@clisp.org>
30013
30014         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
30015         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
30016
30017 2007-10-28  Bruno Haible  <bruno@clisp.org>
30018
30019         Fix link errors with Sun C 5.0 on Solaris 10.
30020         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
30021         function is declared but not present in the compiler's libm.
30022         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
30023         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
30024         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
30025         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
30026         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
30027         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
30028         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
30029         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
30030         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
30031         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
30032         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
30033         HAVE_DECL_FLOORL.
30034
30035 2007-10-28  Bruno Haible  <bruno@clisp.org>
30036
30037         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
30038         gl_FUNC_FLOORL. Cache the result.
30039         (gl_FUNC_FLOORL): Use it.
30040         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
30041         gl_FUNC_CEILL. Cache the result.
30042         (gl_FUNC_CEILL): Use it.
30043
30044         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
30045         gl_FUNC_FLOOR. Cache the result.
30046         (gl_FUNC_FLOOR): Use it.
30047         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
30048         gl_FUNC_CEIL. Cache the result.
30049         (gl_FUNC_CEIL): Use it.
30050
30051         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
30052         gl_FUNC_FLOORF. Cache the result.
30053         (gl_FUNC_FLOORF): Use it.
30054         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
30055         gl_FUNC_CEILF. Cache the result.
30056         (gl_FUNC_CEILF): Use it.
30057
30058 2007-10-28  Bruno Haible  <bruno@clisp.org>
30059
30060         * gnulib-tool: Allow specifying the LGPL version number through
30061         --lgpl=2 or --lgpl=3.
30062         (func_usage): Document --lgpl with argument.
30063         Handle --lgpl=... arguments.
30064         (func_import): Recognize also gl_LGPL calls with an argument. When
30065         --lgpl=2 is used and the module's license is just LGPL, report an
30066         error. Set sed_transform_lib_file according to the lgpl variable. In
30067         the generated files, use --lgpl or gl_LGPL invocations with argument,
30068         if necessary.
30069         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
30070         an LGPv2+ license.
30071         * doc/gnulib-tool.texi (Modified imports): Update explanation of
30072         gl_LGPL macro.
30073
30074 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30075             Bruno Haible  <bruno@clisp.org>
30076
30077         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
30078         (u16_uctomb_aux): Likewise.
30079         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
30080         !HAVE_INLINE.
30081         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
30082
30083 2007-10-28  Bruno Haible  <bruno@clisp.org>
30084
30085         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
30086         Invoke AM_GETTEXT_OPTION if it exists.
30087         * modules/vasprintf: Likewise.
30088         * modules/verror: Likewise.
30089         * modules/xprintf: Likewise.
30090         * modules/xvasprintf: Likewise.
30091
30092 2007-10-27  Ben Pfaff  <blp@gnu.org>
30093
30094         * lib/math.in.h: Define isfinite macro and prototypes for
30095         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
30096         implementations.
30097         * m4/math_h.m4: New substitutions for isfinite module.
30098         * lib/isfinite.c: New file.
30099         * m4/isfinite.m4: New file.
30100         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
30101         * modules/isfinite: New file.
30102         * modules/isfinite-tests: New file.
30103         * tests/tests-isfinite.c: New file.
30104         * doc/functions/isfinite.texi: Mention isfinite module.
30105         * MODULES.html.sh: Mention new module.
30106
30107 2007-10-27  Ben Pfaff  <blp@gnu.org>
30108
30109         Ralf Wildenhues reported that Tru64 4.0D declares the round
30110         functions but does not have definitions.
30111         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
30112         cannot be found in any library, set the output variable to
30113         "missing" instead of "".
30114         * m4/round.m4: Also use our substitute if we cannot find round in
30115         any library, even if it is declared.
30116         * m4/roundf.m4: Likewise for roundf.
30117         * m4/roundl.m4: Likewise for roundl.
30118         * lib/math.in.h: Undefine roundf, round, roundl before defining
30119         their replacements, to allow for hypothetical systems where these
30120         may be defined as macros but not available in libraries.
30121
30122 2007-10-27  Bruno Haible  <bruno@clisp.org>
30123
30124         * doc/gnulib.texi: Invoke @firstparagraphindent.
30125         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
30126         changes in gnulib.
30127         (Source changes): New section.
30128
30129 2007-10-26  Bruno Haible  <bruno@clisp.org>
30130
30131         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
30132         borrowed from autoconf.
30133
30134 2007-10-26  Bruno Haible  <bruno@clisp.org>
30135
30136         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
30137         strerror returned the empty string. Needed on HP-UX 11.00.
30138
30139 2007-10-24  Micah Cowan  <micah@cowan.name>
30140
30141         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
30142         * build-aux/bootstrap: Remove support for now-unnecessary option,
30143         --cvs-user, and envvars CVS_USER, CVS_RSH.
30144
30145 2007-10-24  Jim Meyering  <meyering@redhat.com>
30146
30147         Avoid diagnostics from sha1sum when there is no cached checksum.
30148         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
30149         if the po.s1 file hasn't been created yet.
30150
30151         * build-aux/bootstrap: Sync from coreutils:
30152         2007-10-24  Jim Meyering  <meyering@redhat.com>
30153         Get gnulib from the git repository, not from an obsolete cvs one.
30154         * build-aux/bootstrap: Suggestion from Micah Cowan.
30155         2007-10-04  Jim Meyering  <jim@meyering.net>
30156         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
30157         (update_po_files): Work also when there are no .po files in po/.
30158
30159 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
30160
30161         * README: Append ".git" to git and cg examples.
30162         Problem reported by Benoit Sigoure.
30163
30164 2007-10-23  Micah Cowan  <micah@cowan.name>
30165
30166         * users.txt: Add wget.
30167
30168 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30169
30170         Fix linking of some unistdio tests on FreeBSD.
30171         * modules/unistdio/u16-vsnprintf-tests
30172         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
30173         * modules/unistdio/u16-vsprintf-tests
30174         (test_u16_vsnprintf1_LDADD): Likewise.
30175         * modules/unistdio/u32-vsnprintf-tests
30176         (test_u32_vsnprintf1_LDADD): Likewise.
30177         * modules/unistdio/u32-vsprintf-tests
30178         (test_u32_vsprintf1_LDADD): Likewise.
30179         * modules/unistdio/u8-vsnprintf-tests
30180         (test_u8_vsnprintf1_LDADD): Likewise.
30181         * modules/unistdio/u8-vsprintf-tests
30182         (test_u8_vsprintf1_LDADD): Likewise.
30183         * modules/unistdio/ulc-vsnprintf-tests
30184         (test_ulc_vsnprintf1_LDADD): Likewise.
30185         * modules/unistdio/ulc-vsprintf-tests
30186         (test_ulc_vsprintf1_LDADD): Likewise.
30187
30188         Fix linking of some uniconv tests on FreeBSD.
30189         * modules/uniconv/u16-conv-from-enc-tests
30190         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
30191         * modules/uniconv/u16-conv-to-enc-tests
30192         (test_u16_conv_to_enc_LDADD): Likewise.
30193         * modules/uniconv/u16-strconv-from-enc-tests
30194         (test_u16_strconv_from_enc_LDADD): Likewise.
30195         * modules/uniconv/u16-strconv-to-enc-tests
30196         (test_u16_strconv_to_enc_LDADD): Likewise.
30197         * modules/uniconv/u32-conv-from-enc-tests
30198         (test_u32_conv_from_enc_LDADD): Likewise.
30199         * modules/uniconv/u32-conv-to-enc-tests
30200         (test_u32_conv_to_enc_LDADD): Likewise.
30201         * modules/uniconv/u32-strconv-from-enc-tests
30202         (test_u32_strconv_from_enc_LDADD): Likewise.
30203         * modules/uniconv/u32-strconv-to-enc-tests
30204         (test_u32_strconv_to_enc_LDADD): Likewise.
30205         * modules/uniconv/u8-conv-from-enc-tests
30206         (test_u8_conv_from_enc_LDADD): Likewise.
30207         * modules/uniconv/u8-conv-to-enc-tests
30208         (test_u8_conv_to_enc_LDADD): Likewise.
30209         * modules/uniconv/u8-strconv-from-enc-tests
30210         (test_u8_strconv_from_enc_LDADD): Likewise.
30211         * modules/uniconv/u8-strconv-to-enc-tests
30212         (test_u8_strconv_to_enc_LDADD): Likewise.
30213
30214 2007-10-22  Bruno Haible  <bruno@clisp.org>
30215
30216         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
30217         size.
30218
30219 2007-10-22  Eric Blake  <ebb9@byu.net>
30220
30221         Tweak x*printf documentation.
30222         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
30223         variable name and comments.
30224         Suggested by Bruno Haible.
30225
30226 2007-10-22  Bruno Haible  <bruno@clisp.org>
30227
30228         * lib/acl.c (copy_acl): Fix file name in comment.
30229
30230 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
30231
30232         Fix Tru64 problem with stdbool.h.
30233         * lib/stdbool.in.h (false, true):
30234         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
30235         Don't declare as an enum in this situation; it runs afoul of Tru64.
30236         Problem reported by Steven M. Schweda in
30237         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
30238
30239 2007-10-22  Eric Blake  <ebb9@byu.net>
30240
30241         Also wrap vf?printf.
30242         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
30243         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
30244         (xvprintf, xvfprintf): New functions.
30245
30246 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30247
30248         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
30249         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
30250
30251         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
30252         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
30253
30254 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
30255
30256         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
30257         by Bruno Haible.
30258
30259 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30260
30261         * lib/getloadavg.c
30262         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
30263         Undef `sys' after including sys/table.h, for Tru64 4.0D.
30264
30265         * tests/test-i-ring.c: Work for C89.
30266
30267 2007-10-22  Bruno Haible  <bruno@clisp.org>
30268
30269         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
30270         -1u, in preprocessor expression, so that we don't test for the bug
30271         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
30272         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
30273
30274 2007-10-22  Eric Blake  <ebb9@byu.net>
30275
30276         * tests/test-yesno.sh: Silence stderr during test.
30277
30278 2007-10-22  Simon Josefsson  <simon@josefsson.org>
30279
30280         * modules/crypto/gc-camellia: New file.
30281
30282         * m4/gc-camellia.m4: New file.
30283
30284         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
30285
30286         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
30287
30288 2007-10-22  Simon Josefsson  <simon@josefsson.org>
30289
30290         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
30291         --help to stdout.  Reported by sms@antinode.org (Steven
30292         M. Schweda).
30293
30294 2007-10-22  Simon Josefsson  <simon@josefsson.org>
30295
30296         * users.txt: Fix link to libksba.
30297
30298 2007-10-21  Ben Pfaff  <blp@gnu.org>
30299
30300         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
30301         round.c roundf implementation that depends on floorf and ceilf to
30302         be tested unconditionally.
30303
30304 2007-10-21  Ben Pfaff  <blp@gnu.org>
30305
30306         * m4/check-libm-func.m4: Removed.
30307         * m4/check-math-lib.m4: New file.
30308         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
30309         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
30310         definition and lack of AC_LIBOBJ([roundf]).
30311         * m4/roundl.m4: Ditto, and similarly for roundl.
30312         * modules/round: Reference new m4 file.
30313         * modules/roundf: Ditto.
30314         * modules/roundl: Ditto.
30315         * tests/test-round2.c (main): Use ROUND instead of round.
30316         Bug report from Bruno Haible.
30317
30318 2007-10-21  Bruno Haible  <bruno@clisp.org>
30319
30320         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
30321         context.
30322
30323 2007-10-21  Bruno Haible  <bruno@clisp.org>
30324
30325         * tests/test-wcwidth.c (main): Allow negative result for some control
30326         characters.
30327
30328         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
30329         Needed on OSF/1 5.1.
30330
30331 2007-10-21  Bruno Haible  <bruno@clisp.org>
30332
30333         * tests/test-floorf1.c: Include isnanf.h.
30334         (main): Use isnanf() instead of isnan().
30335         * tests/test-ceilf1.c: Include isnanf.h.
30336         (main): Use isnanf() instead of isnan().
30337         * tests/test-truncf1.c: Include isnanf.h.
30338         (main): Use isnanf() instead of isnan().
30339         * tests/test-roundf1.c: Include isnanf.h.
30340         (main): Use isnanf() instead of isnan().
30341
30342 2007-10-21  Eric Blake  <ebb9@byu.net>
30343
30344         * users.txt: Update URL for m4.
30345
30346 2007-10-21  Bruno Haible  <bruno@clisp.org>
30347
30348         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
30349
30350 2007-10-21  Bruno Haible  <bruno@clisp.org>
30351
30352         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
30353         Git's management files if the CVS files are not present.
30354
30355 2007-10-20  Bruno Haible  <bruno@clisp.org>
30356
30357         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
30358         gcc-3.4.x.
30359
30360 2007-10-20  Ben Pfaff  <blp@gnu.org>
30361
30362         * lib/math.in.h: Declare round, roundf, roundl if we are providing
30363         implementations.
30364         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
30365         * lib/round.c: New file.
30366         * lib/roundf.c: New file.
30367         * lib/roundl.c: New file.
30368         * m4/round.m4: New file.
30369         * m4/roundf.m4: New file.
30370         * m4/roundl.m4: New file.
30371         * m4/check-libm-func-m4: New file.
30372         * modules/math: Replace round, roundf, roundl related @VARS@ in
30373         math.in.h.
30374         * modules/round: New file.
30375         * modules/round-tests: New file.
30376         * modules/roundf: New file.
30377         * modules/roundf-tests: New file.
30378         * modules/roundl: New file.
30379         * modules/roundl-tests: New file.
30380         * tests/test-round1.c: New file.
30381         * tests/test-round2.c: New file.
30382         * tests/test-roundf1.c: New file.
30383         * tests/test-roundf2.c: New file.
30384         * tests/test-roundl.c: New file.
30385         * doc/functions/round.texi: Mention round module.
30386         * doc/functions/roundf.texi: Mention roundf module.
30387         * doc/functions/roundl.texi: Mention roundl module.
30388         * MODULES.html.sh: Mention new modules.
30389         Thanks to Bruno Haible for suggestions.
30390
30391 2007-10-20  Jim Meyering  <meyering@redhat.com>
30392
30393         * lib/xprintf.c: Include <config.h> unconditionally.
30394
30395         Change xprintf's license to GPL.
30396         * modules/xprintf (License): s/LGPL/GPL/, since this module
30397         depends on modules (exit and exitfail) which are GPL.
30398         Suggestion from Bruno Haible.
30399
30400         xprintf fixes.
30401         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
30402         Use a clearer diagnostic.
30403         Patch from Bruno Haible.
30404
30405 2007-10-20  Bruno Haible  <bruno@clisp.org>
30406
30407         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
30408         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
30409         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30410
30411 2007-10-20  Bruno Haible  <bruno@clisp.org>
30412
30413         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
30414         precision in the comparison result > x - 1 or similar.
30415         * tests/test-ceilf2.c (correct_result_p): Likewise.
30416         * tests/test-truncf2.c (correct_result_p): Likewise.
30417         * tests/test-trunc2.c (correct_result_p): Likewise.
30418         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30419
30420 2007-10-20  Bruno Haible  <bruno@clisp.org>
30421
30422         * modules/ceil: New file.
30423         * m4/ceil.m4: New file.
30424         * doc/functions/ceil.texi: Mention the 'ceil' module.
30425
30426 2007-10-20  Bruno Haible  <bruno@clisp.org>
30427
30428         * modules/floor: New file.
30429         * m4/floor.m4: New file.
30430         * doc/functions/floor.texi: Mention the 'floor' module.
30431
30432 2007-10-20  Bruno Haible  <bruno@clisp.org>
30433
30434         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
30435         of %a.
30436         * modules/floorf-tests (Depends-on): Likewise.
30437         * modules/truncf-tests (Depends-on): Likewise.
30438         * modules/trunc-tests (Depends-on): Likewise.
30439         Reported by Ben Pfaff.
30440
30441 2007-10-19  Jim Meyering  <meyering@redhat.com>
30442
30443         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
30444         Don't bother testing specific errno values.  Just test ferror.
30445
30446         New module: xprintf
30447         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
30448
30449 2007-10-19  Bruno Haible  <bruno@clisp.org>
30450
30451         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
30452         syntax.
30453         * modules/javaexec (Makefile.am): Likewise.
30454         * modules/relocatable-prog (Makefile.am): Likewise.
30455         Suggested by Jim Meyering.
30456
30457 2007-10-18  Bruno Haible  <bruno@clisp.org>
30458
30459         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
30460         Reported by Jim Meyering.
30461
30462 2007-10-18  Eric Blake  <ebb9@byu.net>
30463
30464         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
30465
30466 2007-10-18  Bruno Haible  <bruno@clisp.org>
30467
30468         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
30469         the format string into writable memory. Needed in Fortify conditions.
30470
30471 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
30472             Bruno Haible  <bruno@clisp.org>
30473
30474         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
30475         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
30476         * modules/trim (Depends-on): Add mbchar.
30477         (configure.ac): Add gl_FUNC_MBRTOWC.
30478         (Makefile.am): Augment lib_SOURCES.
30479
30480 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
30481
30482         Modify glob.c to use fstatat and dirfd, to simplify it.
30483         Suggested by Eric Blake.
30484         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
30485         Don't include <stdbool.h>; not used.
30486         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
30487         (link_exists_p): Simplify implementation, since we can now assume
30488         dirfd and fstatat.
30489         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
30490
30491 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30492
30493         * gnulib-tool (func_get_dependencies): Fix sed script to
30494         match only tests.
30495
30496 2007-10-17  Bruno Haible  <bruno@clisp.org>
30497
30498         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
30499         allow locale names without encoding suffix.
30500         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
30501         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
30502
30503 2007-10-16  Bruno Haible  <bruno@clisp.org>
30504
30505         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
30506         * lib/getgroups.c (getgroups): Likewise.
30507         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
30508
30509 2007-10-16  Bruno Haible  <bruno@clisp.org>
30510
30511         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
30512         * modules/malloc-posix (License): Likewise.
30513         * modules/realloc-posix (License): Likewise.
30514         * modules/calloc-posix (License): Likewise.
30515         * modules/intprops (License): Change from GPL to LGPL, with
30516         Paul Eggert's approval.
30517
30518 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
30519
30520         Merge glibc changes into lib/glob.c.
30521
30522         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
30523         2007-10-15 04:59:03 UTC.  Here are the changes:
30524
30525         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
30526
30527         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
30528
30529         * lib/glob.c: Add some branch prediction throughout.
30530
30531         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
30532
30533         [BZ #5103]
30534         * lib/glob.c (glob): Recognize patterns starting \/.
30535
30536         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
30537
30538         [BZ #3996]
30539         * lib/glob.c (attribute_hidden): Define if not defined.
30540         (glob): Unescape dirname, filename or username when needed and not
30541         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
30542         is NULL.  Handle unescaped [ in pattern without closing ].
30543         Don't pass GLOB_CHECK down to recursive glob for directories.
30544         (__glob_pattern_type): New function.
30545         (__glob_pattern_p): Implement using __glob_pattern_type.
30546         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
30547         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
30548         Remove unreachable code.
30549
30550         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
30551
30552         * lib/glob.c (glob_in_dir): Add some comments and asserts to
30553         explain why there are no leaks.
30554
30555         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
30556
30557         [BZ #3253]
30558         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
30559         time, rather allocate increasingly bigger arrays of pointers, if
30560         possible with alloca, if too large with malloc.
30561
30562 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
30563
30564         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
30565         Problem reported by H.Merijn Brand in
30566         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
30567         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
30568         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
30569
30570 2007-10-15  Bruno Haible  <bruno@clisp.org>
30571
30572         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
30573         with explicit rpl_ prefix.
30574         * lib/fopen.c (fopen): Likewise.
30575         * lib/freopen.c (freopen): Likewise.
30576         * lib/iconv.c (iconv): Likewise.
30577         * lib/iconv_close.c (iconv_close): Likewise.
30578
30579 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30580
30581         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
30582
30583 2007-10-15  Bruno Haible  <bruno@clisp.org>
30584
30585         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
30586         <stddef.h> instead of <stdlib.h> since we only need NULL.
30587         Reported by Ben Pfaff <blp@cs.stanford.edu>.
30588
30589 2007-10-15  Bruno Haible  <bruno@clisp.org>
30590
30591         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
30592         Replace paragraph talking about LIBOBJS.
30593         Reported by Colin Watson <cjwatson@debian.org>.
30594
30595 2007-10-15  Bruno Haible  <bruno@clisp.org>
30596
30597         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
30598         <stdlib.h> before using NULL.
30599
30600 2007-10-15  Simon Josefsson  <simon@josefsson.org>
30601
30602         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
30603         Reported by Albert Chin <china@thewrittenword.com>.
30604
30605 2007-10-14  Bruno Haible  <bruno@clisp.org>
30606
30607         * modules/iconv_open-utf-tests: New file.
30608         * tests/test-iconv-utf.c: New file.
30609
30610         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
30611         * modules/iconv_open-utf: New file.
30612         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
30613         (iconv, iconv_close): New declarations.
30614         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
30615         be defined.
30616         (iconv_open): Add special handling of conversion between UTF-8 and
30617         UTF-{16,32}{BE,LE}.
30618         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
30619         * lib/iconv_close.c: New file.
30620         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
30621         gl_FUNC_ICONV_OPEN.
30622         (gl_FUNC_ICONV_OPEN): Use it.
30623         (gl_FUNC_ICONV_OPEN_UTF): New macro.
30624         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
30625         and REPLACE_ICONV_UTF.
30626         * modules/iconv_open (Depends-on): Add c-strcase.
30627         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
30628         ICONV_CONST.
30629         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
30630
30631 2007-10-13  Albert Chin  <china@thewrittenword.com>
30632             Bruno Haible  <bruno@clisp.org>
30633
30634         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
30635         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
30636
30637 2007-10-13  Bruno Haible  <bruno@clisp.org>
30638
30639         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
30640         defined, use the ISO C99 inline semantics.
30641         * lib/argp.h (ARGP_EI): Likewise.
30642
30643 2007-10-13  Bruno Haible  <bruno@clisp.org>
30644
30645         Handle 'inline' change in gcc 4.3.0.
30646         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
30647         argp_fmtstream_write, argp_fmtstream_set_lmargin,
30648         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
30649         argp_fmtstream_point): Disable 'extern' declaration if the function
30650         definition is going to be provided inline.
30651         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
30652         semantics, not the ISO C99 inline semantics.
30653         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
30654         'extern' declaration if the function definition is going to be provided
30655         inline.
30656         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
30657         the GNU C inline semantics, not the ISO C99 inline semantics. With
30658         GCC 4.2, avoid a warning.
30659
30660 2007-10-13  Bruno Haible  <bruno@clisp.org>
30661
30662         * lib/freading.h (freading): Enable the use of __freading for
30663         glibc >= 2.7.
30664         * lib/freading.c (freading): Likewise.
30665
30666 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
30667
30668         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
30669         "warning: C99 inline functions are not supported; using GNU89".
30670
30671 2007-10-12  Bruno Haible  <bruno@clisp.org>
30672
30673         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
30674         of 2.
30675         * tests/test-ceilf2.c: New file.
30676         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
30677
30678         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
30679         * modules/ceilf-tests: Update.
30680
30681 2007-10-12  Bruno Haible  <bruno@clisp.org>
30682
30683         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
30684         of 2.
30685         * tests/test-floorf2.c: New file.
30686         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
30687
30688         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
30689         * modules/floorf-tests: Update.
30690
30691 2007-10-12  Bruno Haible  <bruno@clisp.org>
30692
30693         * tests/test-trunc2.c: New file.
30694         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
30695
30696         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
30697         * modules/trunc-tests: Update.
30698
30699 2007-10-12  Bruno Haible  <bruno@clisp.org>
30700
30701         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
30702         of 2.
30703         * tests/test-truncf2.c: New file.
30704         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
30705
30706         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
30707         * modules/truncf-tests: Update.
30708
30709 2007-10-11  Eric Blake  <ebb9@byu.net>
30710
30711         Don't claim strerror is broken on Interix.
30712         * doc/functions/strerror.texi (strerror): Known broken systems are
30713         now Solaris 8, and not Interix.
30714         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
30715         Interix on cross-compile.
30716         Reported by Martin Koeppe in
30717         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
30718
30719 2007-10-11  Bruno Haible  <bruno@clisp.org>
30720
30721         * modules/i-ring-tests: New file.
30722         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
30723         instead of assert.
30724
30725 2007-10-11  Bruno Haible  <bruno@clisp.org>
30726
30727         * modules/filenamecat-tests: New file.
30728         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
30729         * lib/filenamecat.c: Remove test code.
30730
30731 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
30732
30733         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
30734
30735         * lib/strerror.c: Include <string.h> always, to test interface,
30736         and to remove the need for the dummy.
30737         Include intprops.h to compute width instead of doing it ourselves
30738         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
30739         (strerror): Define it to return NULL if there's no system strerror.
30740         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
30741         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
30742         ancient pre-strerror Unix systems well any more.  Saying "unknown
30743         system error" is enough.
30744         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
30745         simpler strerror.c implementation.
30746         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
30747         Simplify the tests to reflect the simpler strerror implementation.
30748         * modules/strerror (Depends-on): Add intprops.
30749
30750 2007-10-09  Eric Blake  <ebb9@byu.net>
30751
30752         Silence test-fpending.
30753         * modules/fpending-tests (Files): Add wrapper script.
30754         * tests/test-fpending.sh: New file.
30755
30756 2007-10-09  Bruno Haible  <bruno@clisp.org>
30757
30758         * MODULES.html.sh (func_module): Don't create a hyperlink for
30759         function names like 'printf_frexp'.
30760         (Misc): Add crc, memxor.
30761         (Characteristics of floating types): New section.
30762         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
30763         isnanf-nolibm, signbit, trunc, truncf, truncl.
30764         (Enhancements for ISO C 99 functions): New subsection Input/output.
30765         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
30766         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
30767         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
30768         (Compatibility checks for POSIX:2001 functions): Add clock-time.
30769         (Enhancements for POSIX:2001 functions): Add chdir-long.
30770         (File system functions): Add areadlink, chdir-safer, read-file.
30771         Remove cycle-check.
30772         (File system as inode set): New section.
30773         (Date and time): Add gethrxtime.
30774         (Multithreading): Add openmp.
30775         (Internationalization functions): Add localename.
30776         (Unicode string functions): Add unistr/u*-mbsnlen.
30777         (Support for maintaining and releasing projects): Add git-version-gen.
30778         (Lone files): Remove directories.
30779
30780 2007-10-08  Ben Pfaff  <blp@gnu.org>
30781
30782         * lib/xmalloca.h: Fix typo in comment.
30783
30784 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
30785
30786         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
30787         when avoiding problems with integer overflow.  Use a portable test
30788         instead.
30789
30790 2007-10-08  Simon Josefsson  <simon@josefsson.org>
30791
30792         * modules/dummy (License): Change to LGPLv2+.
30793         * modules/float (License): Likewise
30794         * modules/realloc (License): Likewise
30795         * modules/stdlib (License): Likewise
30796
30797 2007-10-07  Bruno Haible  <bruno@clisp.org>
30798
30799         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
30800         * floor.c (TWO_MANT_DIG): Likewise.
30801         * ceil.c (TWO_MANT_DIG): Likewise.
30802         Reported by Ben Pfaff.
30803
30804 2007-10-07  Bruno Haible  <bruno@clisp.org>
30805
30806         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
30807         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
30808         * lib/frexp.c (FUNC): Likewise.
30809         * lib/printf-frexp.h (printf_frexp): Likewise.
30810         * lib/printf-frexpl.h (printf_frexpl): Likewise.
30811         * lib/printf-frexp.c (FUNC): Likewise.
30812         Suggested by Jim Meyering.
30813
30814 2007-10-07  Jim Meyering  <meyering@redhat.com>
30815
30816         Make xnanosleep's integer overflow test more robust.
30817         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
30818         so that gcc-4.3.0 doesn't optimize away this test for overflow.
30819
30820 2007-10-07  Bruno Haible  <bruno@clisp.org>
30821
30822         * NEWS: Mention the license change.
30823
30824         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
30825         abbreviations in the modules files.
30826
30827         Change copyright notice from GPLv2+ to GPLv3+.
30828         * README: Change copyright notice.
30829         * MODULES.html.sh: Likewise.
30830         * build-aux/bootstrap.conf: Likewise.
30831         * build-aux/config.libpath: Likewise.
30832         * build-aux/csharpcomp.sh.in: Likewise.
30833         * build-aux/csharpexec.sh.in: Likewise.
30834         * build-aux/install-reloc: Likewise.
30835         * build-aux/javacomp.sh.in: Likewise.
30836         * build-aux/javaexec.sh.in: Likewise.
30837         * build-aux/ldd.sh.in: Likewise.
30838         * build-aux/reloc-ldflags: Likewise.
30839         * build-aux/relocatable.sh.in: Likewise.
30840         * build-aux/x-to-1.in: Likewise.
30841         * check-module: Likewise.
30842         * config/srclistvars.sh: Likewise.
30843         * gnulib-tool: Likewise.
30844         * lib/acl-internal.h: Likewise.
30845         * lib/acl.c: Likewise.
30846         * lib/acl.h: Likewise.
30847         * lib/acl_entries.c: Likewise.
30848         * lib/areadlink-with-size.c: Likewise.
30849         * lib/areadlink.c: Likewise.
30850         * lib/areadlink.h: Likewise.
30851         * lib/argmatch.c: Likewise.
30852         * lib/argmatch.h: Likewise.
30853         * lib/argp-ba.c: Likewise.
30854         * lib/argp-eexst.c: Likewise.
30855         * lib/argp-fmtstream.c: Likewise.
30856         * lib/argp-fmtstream.h: Likewise.
30857         * lib/argp-fs-xinl.c: Likewise.
30858         * lib/argp-help.c: Likewise.
30859         * lib/argp-namefrob.h: Likewise.
30860         * lib/argp-parse.c: Likewise.
30861         * lib/argp-pin.c: Likewise.
30862         * lib/argp-pv.c: Likewise.
30863         * lib/argp-pvh.c: Likewise.
30864         * lib/argp-xinl.c: Likewise.
30865         * lib/argp.h: Likewise.
30866         * lib/at-func.c: Likewise.
30867         * lib/atanl.c: Likewise.
30868         * lib/backupfile.c: Likewise.
30869         * lib/backupfile.h: Likewise.
30870         * lib/basename.c: Likewise.
30871         * lib/binary-io.h: Likewise.
30872         * lib/byteswap.in.h: Likewise.
30873         * lib/c-stack.c: Likewise.
30874         * lib/c-stack.h: Likewise.
30875         * lib/c-strcasestr.c: Likewise.
30876         * lib/c-strcasestr.h: Likewise.
30877         * lib/c-strstr.c: Likewise.
30878         * lib/c-strstr.h: Likewise.
30879         * lib/c-strtod.c: Likewise.
30880         * lib/calloc.c: Likewise.
30881         * lib/canon-host.c: Likewise.
30882         * lib/canon-host.h: Likewise.
30883         * lib/canonicalize-lgpl.c: Likewise.
30884         * lib/canonicalize.c: Likewise.
30885         * lib/canonicalize.h: Likewise.
30886         * lib/ceil.c: Likewise.
30887         * lib/ceilf.c: Likewise.
30888         * lib/ceill.c: Likewise.
30889         * lib/chdir-long.c: Likewise.
30890         * lib/chdir-long.h: Likewise.
30891         * lib/chdir-safer.c: Likewise.
30892         * lib/chdir-safer.h: Likewise.
30893         * lib/chown.c: Likewise.
30894         * lib/classpath.c: Likewise.
30895         * lib/classpath.h: Likewise.
30896         * lib/clean-temp.c: Likewise.
30897         * lib/clean-temp.h: Likewise.
30898         * lib/cloexec.c: Likewise.
30899         * lib/close-stream.c: Likewise.
30900         * lib/closein.c: Likewise.
30901         * lib/closein.h: Likewise.
30902         * lib/closeout.c: Likewise.
30903         * lib/closeout.h: Likewise.
30904         * lib/concat-filename.c: Likewise.
30905         * lib/copy-file.c: Likewise.
30906         * lib/copy-file.h: Likewise.
30907         * lib/count-one-bits.h: Likewise.
30908         * lib/crc.c: Likewise.
30909         * lib/crc.h: Likewise.
30910         * lib/creat-safer.c: Likewise.
30911         * lib/csharpcomp.c: Likewise.
30912         * lib/csharpcomp.h: Likewise.
30913         * lib/csharpexec.c: Likewise.
30914         * lib/csharpexec.h: Likewise.
30915         * lib/cycle-check.c: Likewise.
30916         * lib/cycle-check.h: Likewise.
30917         * lib/diacrit.c: Likewise.
30918         * lib/diacrit.h: Likewise.
30919         * lib/diffseq.h: Likewise.
30920         * lib/dirchownmod.c: Likewise.
30921         * lib/dirent.in.h: Likewise.
30922         * lib/dirfd.c: Likewise.
30923         * lib/dirfd.h: Likewise.
30924         * lib/dirname.c: Likewise.
30925         * lib/dirname.h: Likewise.
30926         * lib/dummy.c: Likewise.
30927         * lib/dup-safer.c: Likewise.
30928         * lib/dup2.c: Likewise.
30929         * lib/eealloc.h: Likewise.
30930         * lib/error.c: Likewise.
30931         * lib/error.h: Likewise.
30932         * lib/euidaccess.c: Likewise.
30933         * lib/exclude.c: Likewise.
30934         * lib/exclude.h: Likewise.
30935         * lib/execute.c: Likewise.
30936         * lib/execute.h: Likewise.
30937         * lib/exitfail.c: Likewise.
30938         * lib/exitfail.h: Likewise.
30939         * lib/expl.c: Likewise.
30940         * lib/fatal-signal.c: Likewise.
30941         * lib/fatal-signal.h: Likewise.
30942         * lib/fbufmode.c: Likewise.
30943         * lib/fbufmode.h: Likewise.
30944         * lib/fchdir.c: Likewise.
30945         * lib/fchmodat.c: Likewise.
30946         * lib/fchownat.c: Likewise.
30947         * lib/fcntl--.h: Likewise.
30948         * lib/fcntl-safer.h: Likewise.
30949         * lib/fcntl.in.h: Likewise.
30950         * lib/fd-safer.c: Likewise.
30951         * lib/fflush.c: Likewise.
30952         * lib/file-has-acl.c: Likewise.
30953         * lib/file-set.c: Likewise.
30954         * lib/file-type.c: Likewise.
30955         * lib/file-type.h: Likewise.
30956         * lib/fileblocks.c: Likewise.
30957         * lib/filemode.c: Likewise.
30958         * lib/filemode.h: Likewise.
30959         * lib/filename.h: Likewise.
30960         * lib/filenamecat.c: Likewise.
30961         * lib/filenamecat.h: Likewise.
30962         * lib/findprog.c: Likewise.
30963         * lib/findprog.h: Likewise.
30964         * lib/float.in.h: Likewise.
30965         * lib/floor.c: Likewise.
30966         * lib/floorf.c: Likewise.
30967         * lib/floorl.c: Likewise.
30968         * lib/fopen-safer.c: Likewise.
30969         * lib/fopen.c: Likewise.
30970         * lib/fpending.c: Likewise.
30971         * lib/fpending.h: Likewise.
30972         * lib/fprintf.c: Likewise.
30973         * lib/fprintftime.h: Likewise.
30974         * lib/fpucw.h: Likewise.
30975         * lib/fpurge.c: Likewise.
30976         * lib/fpurge.h: Likewise.
30977         * lib/freadable.c: Likewise.
30978         * lib/freadable.h: Likewise.
30979         * lib/freadahead.c: Likewise.
30980         * lib/freadahead.h: Likewise.
30981         * lib/freading.c: Likewise.
30982         * lib/freading.h: Likewise.
30983         * lib/free.c: Likewise.
30984         * lib/freopen.c: Likewise.
30985         * lib/frexp.c: Likewise.
30986         * lib/frexpl.c: Likewise.
30987         * lib/fseek.c: Likewise.
30988         * lib/fseterr.c: Likewise.
30989         * lib/fseterr.h: Likewise.
30990         * lib/fstatat.c: Likewise.
30991         * lib/fstrcmp.c: Likewise.
30992         * lib/fstrcmp.h: Likewise.
30993         * lib/fsusage.c: Likewise.
30994         * lib/fsusage.h: Likewise.
30995         * lib/ftell.c: Likewise.
30996         * lib/ftello.c: Likewise.
30997         * lib/fts-cycle.c: Likewise.
30998         * lib/fts.c: Likewise.
30999         * lib/fts_.h: Likewise.
31000         * lib/full-read.c: Likewise.
31001         * lib/full-read.h: Likewise.
31002         * lib/full-write.c: Likewise.
31003         * lib/full-write.h: Likewise.
31004         * lib/fwritable.c: Likewise.
31005         * lib/fwritable.h: Likewise.
31006         * lib/fwriteerror.c: Likewise.
31007         * lib/fwriteerror.h: Likewise.
31008         * lib/fwriting.c: Likewise.
31009         * lib/fwriting.h: Likewise.
31010         * lib/gcd.c: Likewise.
31011         * lib/gcd.h: Likewise.
31012         * lib/getcwd.c: Likewise.
31013         * lib/getdate.h: Likewise.
31014         * lib/getdate.y: Likewise.
31015         * lib/getdomainname.c: Likewise.
31016         * lib/getdomainname.h: Likewise.
31017         * lib/getgroups.c: Likewise.
31018         * lib/gethostname.c: Likewise.
31019         * lib/gethrxtime.c: Likewise.
31020         * lib/gethrxtime.h: Likewise.
31021         * lib/getloadavg.c: Likewise.
31022         * lib/getndelim2.c: Likewise.
31023         * lib/getndelim2.h: Likewise.
31024         * lib/getnline.c: Likewise.
31025         * lib/getnline.h: Likewise.
31026         * lib/getopt.c: Likewise.
31027         * lib/getopt.in.h: Likewise.
31028         * lib/getopt1.c: Likewise.
31029         * lib/getopt_int.h: Likewise.
31030         * lib/getpagesize.h: Likewise.
31031         * lib/getsubopt.c: Likewise.
31032         * lib/gettime.c: Likewise.
31033         * lib/getugroups.c: Likewise.
31034         * lib/getugroups.h: Likewise.
31035         * lib/getusershell.c: Likewise.
31036         * lib/gl_anyavltree_list1.h: Likewise.
31037         * lib/gl_anyavltree_list2.h: Likewise.
31038         * lib/gl_anyhash_list1.h: Likewise.
31039         * lib/gl_anyhash_list2.h: Likewise.
31040         * lib/gl_anylinked_list1.h: Likewise.
31041         * lib/gl_anylinked_list2.h: Likewise.
31042         * lib/gl_anyrbtree_list1.h: Likewise.
31043         * lib/gl_anyrbtree_list2.h: Likewise.
31044         * lib/gl_anytree_list1.h: Likewise.
31045         * lib/gl_anytree_list2.h: Likewise.
31046         * lib/gl_anytree_oset.h: Likewise.
31047         * lib/gl_anytreehash_list1.h: Likewise.
31048         * lib/gl_anytreehash_list2.h: Likewise.
31049         * lib/gl_array_list.c: Likewise.
31050         * lib/gl_array_list.h: Likewise.
31051         * lib/gl_array_oset.c: Likewise.
31052         * lib/gl_array_oset.h: Likewise.
31053         * lib/gl_avltree_list.c: Likewise.
31054         * lib/gl_avltree_list.h: Likewise.
31055         * lib/gl_avltree_oset.c: Likewise.
31056         * lib/gl_avltree_oset.h: Likewise.
31057         * lib/gl_avltreehash_list.c: Likewise.
31058         * lib/gl_avltreehash_list.h: Likewise.
31059         * lib/gl_carray_list.c: Likewise.
31060         * lib/gl_carray_list.h: Likewise.
31061         * lib/gl_linked_list.c: Likewise.
31062         * lib/gl_linked_list.h: Likewise.
31063         * lib/gl_linkedhash_list.c: Likewise.
31064         * lib/gl_linkedhash_list.h: Likewise.
31065         * lib/gl_list.c: Likewise.
31066         * lib/gl_list.h: Likewise.
31067         * lib/gl_oset.c: Likewise.
31068         * lib/gl_oset.h: Likewise.
31069         * lib/gl_rbtree_list.c: Likewise.
31070         * lib/gl_rbtree_list.h: Likewise.
31071         * lib/gl_rbtree_oset.c: Likewise.
31072         * lib/gl_rbtree_oset.h: Likewise.
31073         * lib/gl_rbtreehash_list.c: Likewise.
31074         * lib/gl_rbtreehash_list.h: Likewise.
31075         * lib/gl_sublist.c: Likewise.
31076         * lib/gl_sublist.h: Likewise.
31077         * lib/group-member.c: Likewise.
31078         * lib/group-member.h: Likewise.
31079         * lib/hard-locale.c: Likewise.
31080         * lib/hard-locale.h: Likewise.
31081         * lib/hash-pjw.c: Likewise.
31082         * lib/hash-pjw.h: Likewise.
31083         * lib/hash-triple.c: Likewise.
31084         * lib/hash.c: Likewise.
31085         * lib/hash.h: Likewise.
31086         * lib/human.c: Likewise.
31087         * lib/human.h: Likewise.
31088         * lib/i-ring.c: Likewise.
31089         * lib/i-ring.h: Likewise.
31090         * lib/idcache.c: Likewise.
31091         * lib/imaxabs.c: Likewise.
31092         * lib/imaxdiv.c: Likewise.
31093         * lib/inet_pton.c: Likewise.
31094         * lib/inet_pton.h: Likewise.
31095         * lib/intprops.h: Likewise.
31096         * lib/inttostr.c: Likewise.
31097         * lib/inttostr.h: Likewise.
31098         * lib/inttypes.in.h: Likewise.
31099         * lib/isapipe.c: Likewise.
31100         * lib/isdir.c: Likewise.
31101         * lib/isnan.c: Likewise.
31102         * lib/isnan.h: Likewise.
31103         * lib/isnanf.c: Likewise.
31104         * lib/isnanf.h: Likewise.
31105         * lib/isnanl-nolibm.h: Likewise.
31106         * lib/isnanl.c: Likewise.
31107         * lib/isnanl.h: Likewise.
31108         * lib/javacomp.c: Likewise.
31109         * lib/javacomp.h: Likewise.
31110         * lib/javaexec.c: Likewise.
31111         * lib/javaexec.h: Likewise.
31112         * lib/javaversion.c: Likewise.
31113         * lib/javaversion.h: Likewise.
31114         * lib/javaversion.java: Likewise.
31115         * lib/lbrkprop.h: Likewise.
31116         * lib/lchmod.h: Likewise.
31117         * lib/lchown.c: Likewise.
31118         * lib/ldexpl.c: Likewise.
31119         * lib/linebreak.c: Likewise.
31120         * lib/linebreak.h: Likewise.
31121         * lib/linebuffer.c: Likewise.
31122         * lib/linebuffer.h: Likewise.
31123         * lib/locale.in.h: Likewise.
31124         * lib/logl.c: Likewise.
31125         * lib/long-options.c: Likewise.
31126         * lib/long-options.h: Likewise.
31127         * lib/lstat.c: Likewise.
31128         * lib/lstat.h: Likewise.
31129         * lib/math.in.h: Likewise.
31130         * lib/mbchar.c: Likewise.
31131         * lib/mbchar.h: Likewise.
31132         * lib/mbfile.h: Likewise.
31133         * lib/mbiter.h: Likewise.
31134         * lib/mbscasecmp.c: Likewise.
31135         * lib/mbscasestr.c: Likewise.
31136         * lib/mbschr.c: Likewise.
31137         * lib/mbscspn.c: Likewise.
31138         * lib/mbslen.c: Likewise.
31139         * lib/mbsncasecmp.c: Likewise.
31140         * lib/mbsnlen.c: Likewise.
31141         * lib/mbspbrk.c: Likewise.
31142         * lib/mbspcasecmp.c: Likewise.
31143         * lib/mbsrchr.c: Likewise.
31144         * lib/mbssep.c: Likewise.
31145         * lib/mbsspn.c: Likewise.
31146         * lib/mbsstr.c: Likewise.
31147         * lib/mbstok_r.c: Likewise.
31148         * lib/mbswidth.c: Likewise.
31149         * lib/mbswidth.h: Likewise.
31150         * lib/mbuiter.h: Likewise.
31151         * lib/memcasecmp.c: Likewise.
31152         * lib/memcasecmp.h: Likewise.
31153         * lib/memchr.c: Likewise.
31154         * lib/memcmp.c: Likewise.
31155         * lib/memcoll.c: Likewise.
31156         * lib/memcoll.h: Likewise.
31157         * lib/memcpy.c: Likewise.
31158         * lib/memrchr.c: Likewise.
31159         * lib/mkancesdirs.c: Likewise.
31160         * lib/mkdir-p.c: Likewise.
31161         * lib/mkdir-p.h: Likewise.
31162         * lib/mkdir.c: Likewise.
31163         * lib/mkdirat.c: Likewise.
31164         * lib/mkdtemp.c: Likewise.
31165         * lib/mkstemp-safer.c: Likewise.
31166         * lib/mkstemp.c: Likewise.
31167         * lib/modechange.c: Likewise.
31168         * lib/modechange.h: Likewise.
31169         * lib/mountlist.c: Likewise.
31170         * lib/mountlist.h: Likewise.
31171         * lib/mpsort.c: Likewise.
31172         * lib/nanosleep.c: Likewise.
31173         * lib/obstack.c: Likewise.
31174         * lib/obstack.h: Likewise.
31175         * lib/open-safer.c: Likewise.
31176         * lib/open.c: Likewise.
31177         * lib/openat-die.c: Likewise.
31178         * lib/openat-priv.h: Likewise.
31179         * lib/openat-proc.c: Likewise.
31180         * lib/openat.c: Likewise.
31181         * lib/openat.h: Likewise.
31182         * lib/pagealign_alloc.c: Likewise.
31183         * lib/pagealign_alloc.h: Likewise.
31184         * lib/physmem.c: Likewise.
31185         * lib/physmem.h: Likewise.
31186         * lib/pipe-safer.c: Likewise.
31187         * lib/pipe.c: Likewise.
31188         * lib/pipe.h: Likewise.
31189         * lib/posixtm.c: Likewise.
31190         * lib/posixtm.h: Likewise.
31191         * lib/posixver.c: Likewise.
31192         * lib/printf-frexp.c: Likewise.
31193         * lib/printf-frexp.h: Likewise.
31194         * lib/printf-frexpl.c: Likewise.
31195         * lib/printf-frexpl.h: Likewise.
31196         * lib/printf.c: Likewise.
31197         * lib/progname.c: Likewise.
31198         * lib/progname.h: Likewise.
31199         * lib/progreloc.c: Likewise.
31200         * lib/putenv.c: Likewise.
31201         * lib/quote.c: Likewise.
31202         * lib/quote.h: Likewise.
31203         * lib/quotearg.c: Likewise.
31204         * lib/quotearg.h: Likewise.
31205         * lib/raise.c: Likewise.
31206         * lib/readline.c: Likewise.
31207         * lib/readline.h: Likewise.
31208         * lib/readlink.c: Likewise.
31209         * lib/readtokens.c: Likewise.
31210         * lib/readtokens.h: Likewise.
31211         * lib/readtokens0.c: Likewise.
31212         * lib/readtokens0.h: Likewise.
31213         * lib/readutmp.c: Likewise.
31214         * lib/readutmp.h: Likewise.
31215         * lib/realloc.c: Likewise.
31216         * lib/relocwrapper.c: Likewise.
31217         * lib/rename-dest-slash.c: Likewise.
31218         * lib/rename.c: Likewise.
31219         * lib/rmdir.c: Likewise.
31220         * lib/rpmatch.c: Likewise.
31221         * lib/safe-read.c: Likewise.
31222         * lib/safe-read.h: Likewise.
31223         * lib/safe-write.c: Likewise.
31224         * lib/safe-write.h: Likewise.
31225         * lib/same-inode.h: Likewise.
31226         * lib/same.c: Likewise.
31227         * lib/same.h: Likewise.
31228         * lib/save-cwd.c: Likewise.
31229         * lib/save-cwd.h: Likewise.
31230         * lib/savedir.c: Likewise.
31231         * lib/savedir.h: Likewise.
31232         * lib/savewd.c: Likewise.
31233         * lib/savewd.h: Likewise.
31234         * lib/search.in.h: Likewise.
31235         * lib/setenv.c: Likewise.
31236         * lib/setenv.h: Likewise.
31237         * lib/settime.c: Likewise.
31238         * lib/sh-quote.c: Likewise.
31239         * lib/sh-quote.h: Likewise.
31240         * lib/sig2str.c: Likewise.
31241         * lib/sig2str.h: Likewise.
31242         * lib/signal.in.h: Likewise.
31243         * lib/signbitd.c: Likewise.
31244         * lib/signbitf.c: Likewise.
31245         * lib/signbitl.c: Likewise.
31246         * lib/sigprocmask.c: Likewise.
31247         * lib/sincosl.c: Likewise.
31248         * lib/sleep.c: Likewise.
31249         * lib/sprintf.c: Likewise.
31250         * lib/sqrtl.c: Likewise.
31251         * lib/stat-time.h: Likewise.
31252         * lib/stdio--.h: Likewise.
31253         * lib/stdio-safer.h: Likewise.
31254         * lib/stdlib--.h: Likewise.
31255         * lib/stdlib-safer.h: Likewise.
31256         * lib/stdlib.in.h: Likewise.
31257         * lib/stpcpy.c: Likewise.
31258         * lib/stpncpy.c: Likewise.
31259         * lib/strchrnul.c: Likewise.
31260         * lib/strcspn.c: Likewise.
31261         * lib/strerror.c: Likewise.
31262         * lib/strftime.c: Likewise.
31263         * lib/strftime.h: Likewise.
31264         * lib/striconveh.c: Likewise.
31265         * lib/striconveh.h: Likewise.
31266         * lib/striconveha.c: Likewise.
31267         * lib/striconveha.h: Likewise.
31268         * lib/stripslash.c: Likewise.
31269         * lib/strnlen1.c: Likewise.
31270         * lib/strnlen1.h: Likewise.
31271         * lib/strtod.c: Likewise.
31272         * lib/strtoimax.c: Likewise.
31273         * lib/strtok_r.c: Likewise.
31274         * lib/strtol.c: Likewise.
31275         * lib/strtoll.c: Likewise.
31276         * lib/strtoul.c: Likewise.
31277         * lib/strtoull.c: Likewise.
31278         * lib/sysexits.in.h: Likewise.
31279         * lib/tempname.c: Likewise.
31280         * lib/tempname.h: Likewise.
31281         * lib/timespec.h: Likewise.
31282         * lib/tls.c: Likewise.
31283         * lib/tls.h: Likewise.
31284         * lib/tmpdir.c: Likewise.
31285         * lib/tmpdir.h: Likewise.
31286         * lib/tmpfile-safer.c: Likewise.
31287         * lib/tmpfile.c: Likewise.
31288         * lib/trigl.c: Likewise.
31289         * lib/trigl.h: Likewise.
31290         * lib/trim.c: Likewise.
31291         * lib/trim.h: Likewise.
31292         * lib/trunc.c: Likewise.
31293         * lib/truncf.c: Likewise.
31294         * lib/truncl.c: Likewise.
31295         * lib/tsearch.c: Likewise.
31296         * lib/unicodeio.c: Likewise.
31297         * lib/unicodeio.h: Likewise.
31298         * lib/unistd--.h: Likewise.
31299         * lib/unistd-safer.h: Likewise.
31300         * lib/unistdio/ulc-fprintf.c: Likewise.
31301         * lib/unistdio/ulc-vfprintf.c: Likewise.
31302         * lib/unlinkdir.c: Likewise.
31303         * lib/unlinkdir.h: Likewise.
31304         * lib/unlocked-io.h: Likewise.
31305         * lib/unsetenv.c: Likewise.
31306         * lib/userspec.c: Likewise.
31307         * lib/utime.c: Likewise.
31308         * lib/utimecmp.c: Likewise.
31309         * lib/utimecmp.h: Likewise.
31310         * lib/utimens.c: Likewise.
31311         * lib/verify.h: Likewise.
31312         * lib/verror.c: Likewise.
31313         * lib/verror.h: Likewise.
31314         * lib/version-etc-fsf.c: Likewise.
31315         * lib/version-etc.c: Likewise.
31316         * lib/version-etc.h: Likewise.
31317         * lib/vfprintf.c: Likewise.
31318         * lib/vprintf.c: Likewise.
31319         * lib/vsprintf.c: Likewise.
31320         * lib/w32spawn.h: Likewise.
31321         * lib/wait-process.c: Likewise.
31322         * lib/wait-process.h: Likewise.
31323         * lib/wcwidth.c: Likewise.
31324         * lib/write-any-file.c: Likewise.
31325         * lib/xalloc-die.c: Likewise.
31326         * lib/xalloc.h: Likewise.
31327         * lib/xasprintf.c: Likewise.
31328         * lib/xgetcwd.c: Likewise.
31329         * lib/xgetcwd.h: Likewise.
31330         * lib/xgetdomainname.c: Likewise.
31331         * lib/xgetdomainname.h: Likewise.
31332         * lib/xgethostname.c: Likewise.
31333         * lib/xmalloc.c: Likewise.
31334         * lib/xmalloca.c: Likewise.
31335         * lib/xmalloca.h: Likewise.
31336         * lib/xmemcoll.c: Likewise.
31337         * lib/xnanosleep.c: Likewise.
31338         * lib/xreadlink.c: Likewise.
31339         * lib/xreadlink.h: Likewise.
31340         * lib/xsetenv.c: Likewise.
31341         * lib/xsetenv.h: Likewise.
31342         * lib/xstriconv.c: Likewise.
31343         * lib/xstriconv.h: Likewise.
31344         * lib/xstrndup.c: Likewise.
31345         * lib/xstrndup.h: Likewise.
31346         * lib/xstrtod.c: Likewise.
31347         * lib/xstrtod.h: Likewise.
31348         * lib/xstrtol-error.c: Likewise.
31349         * lib/xstrtol.c: Likewise.
31350         * lib/xstrtol.h: Likewise.
31351         * lib/xtime.h: Likewise.
31352         * lib/xvasprintf.c: Likewise.
31353         * lib/xvasprintf.h: Likewise.
31354         * lib/yesno.c: Likewise.
31355         * lib/yesno.h: Likewise.
31356         * posix-modules: Likewise.
31357         * tests/test-alloca-opt.c: Likewise.
31358         * tests/test-arcfour.c: Likewise.
31359         * tests/test-arctwo.c: Likewise.
31360         * tests/test-argmatch.c: Likewise.
31361         * tests/test-argp-2.sh: Likewise.
31362         * tests/test-argp.c: Likewise.
31363         * tests/test-arpa_inet.c: Likewise.
31364         * tests/test-array_list.c: Likewise.
31365         * tests/test-array_oset.c: Likewise.
31366         * tests/test-atexit.c: Likewise.
31367         * tests/test-avltree_list.c: Likewise.
31368         * tests/test-avltree_oset.c: Likewise.
31369         * tests/test-avltreehash_list.c: Likewise.
31370         * tests/test-base64.c: Likewise.
31371         * tests/test-binary-io.c: Likewise.
31372         * tests/test-byteswap.c: Likewise.
31373         * tests/test-c-ctype.c: Likewise.
31374         * tests/test-c-strcasecmp.c: Likewise.
31375         * tests/test-c-strcasestr.c: Likewise.
31376         * tests/test-c-strncasecmp.c: Likewise.
31377         * tests/test-c-strstr.c: Likewise.
31378         * tests/test-canonicalize-lgpl.c: Likewise.
31379         * tests/test-canonicalize.c: Likewise.
31380         * tests/test-carray_list.c: Likewise.
31381         * tests/test-ceilf.c: Likewise.
31382         * tests/test-ceill.c: Likewise.
31383         * tests/test-count-one-bits.c: Likewise.
31384         * tests/test-crc.c: Likewise.
31385         * tests/test-dirname.c: Likewise.
31386         * tests/test-fbufmode.c: Likewise.
31387         * tests/test-fcntl.c: Likewise.
31388         * tests/test-fflush.c: Likewise.
31389         * tests/test-floorf.c: Likewise.
31390         * tests/test-floorl.c: Likewise.
31391         * tests/test-fopen.c: Likewise.
31392         * tests/test-fprintf-posix.c: Likewise.
31393         * tests/test-fprintf-posix.h: Likewise.
31394         * tests/test-fpurge.c: Likewise.
31395         * tests/test-freadable.c: Likewise.
31396         * tests/test-freadahead.c: Likewise.
31397         * tests/test-freading.c: Likewise.
31398         * tests/test-freopen.c: Likewise.
31399         * tests/test-frexp.c: Likewise.
31400         * tests/test-frexpl.c: Likewise.
31401         * tests/test-fseek.c: Likewise.
31402         * tests/test-fseeko.c: Likewise.
31403         * tests/test-fseterr.c: Likewise.
31404         * tests/test-fstrcmp.c: Likewise.
31405         * tests/test-ftell.c: Likewise.
31406         * tests/test-ftello.c: Likewise.
31407         * tests/test-fwritable.c: Likewise.
31408         * tests/test-fwriting.c: Likewise.
31409         * tests/test-getaddrinfo.c: Likewise.
31410         * tests/test-getpass.c: Likewise.
31411         * tests/test-gettimeofday.c: Likewise.
31412         * tests/test-hmac-md5.c: Likewise.
31413         * tests/test-hmac-sha1.c: Likewise.
31414         * tests/test-iconv.c: Likewise.
31415         * tests/test-iconvme.c: Likewise.
31416         * tests/test-inttypes.c: Likewise.
31417         * tests/test-isnan.c: Likewise.
31418         * tests/test-isnanf.c: Likewise.
31419         * tests/test-isnanl-nolibm.c: Likewise.
31420         * tests/test-isnanl.c: Likewise.
31421         * tests/test-isnanl.h: Likewise.
31422         * tests/test-ldexpl.c: Likewise.
31423         * tests/test-linked_list.c: Likewise.
31424         * tests/test-linkedhash_list.c: Likewise.
31425         * tests/test-locale.c: Likewise.
31426         * tests/test-localename.c: Likewise.
31427         * tests/test-lock.c: Likewise.
31428         * tests/test-lseek.c: Likewise.
31429         * tests/test-malloca.c: Likewise.
31430         * tests/test-math.c: Likewise.
31431         * tests/test-mbscasecmp.c: Likewise.
31432         * tests/test-mbscasestr1.c: Likewise.
31433         * tests/test-mbscasestr2.c: Likewise.
31434         * tests/test-mbscasestr3.c: Likewise.
31435         * tests/test-mbscasestr4.c: Likewise.
31436         * tests/test-mbschr.c: Likewise.
31437         * tests/test-mbscspn.c: Likewise.
31438         * tests/test-mbsncasecmp.c: Likewise.
31439         * tests/test-mbspbrk.c: Likewise.
31440         * tests/test-mbspcasecmp.c: Likewise.
31441         * tests/test-mbsrchr.c: Likewise.
31442         * tests/test-mbsspn.c: Likewise.
31443         * tests/test-mbsstr1.c: Likewise.
31444         * tests/test-mbsstr2.c: Likewise.
31445         * tests/test-mbsstr3.c: Likewise.
31446         * tests/test-md5.c: Likewise.
31447         * tests/test-memmem.c: Likewise.
31448         * tests/test-netinet_in.c: Likewise.
31449         * tests/test-open.c: Likewise.
31450         * tests/test-printf-frexp.c: Likewise.
31451         * tests/test-printf-frexpl.c: Likewise.
31452         * tests/test-printf-posix.c: Likewise.
31453         * tests/test-printf-posix.h: Likewise.
31454         * tests/test-rbtree_list.c: Likewise.
31455         * tests/test-rbtree_oset.c: Likewise.
31456         * tests/test-rbtreehash_list.c: Likewise.
31457         * tests/test-read-file.c: Likewise.
31458         * tests/test-rijndael.c: Likewise.
31459         * tests/test-search.c: Likewise.
31460         * tests/test-signbit.c: Likewise.
31461         * tests/test-sleep.c: Likewise.
31462         * tests/test-snprintf-posix.c: Likewise.
31463         * tests/test-snprintf-posix.h: Likewise.
31464         * tests/test-snprintf.c: Likewise.
31465         * tests/test-sprintf-posix.c: Likewise.
31466         * tests/test-sprintf-posix.h: Likewise.
31467         * tests/test-stat-time.c: Likewise.
31468         * tests/test-stdbool.c: Likewise.
31469         * tests/test-stdint.c: Likewise.
31470         * tests/test-stdio.c: Likewise.
31471         * tests/test-stdlib.c: Likewise.
31472         * tests/test-stpncpy.c: Likewise.
31473         * tests/test-strcasestr.c: Likewise.
31474         * tests/test-striconv.c: Likewise.
31475         * tests/test-striconveh.c: Likewise.
31476         * tests/test-striconveha.c: Likewise.
31477         * tests/test-string.c: Likewise.
31478         * tests/test-sys_select.c: Likewise.
31479         * tests/test-sys_socket.c: Likewise.
31480         * tests/test-sys_stat.c: Likewise.
31481         * tests/test-sys_time.c: Likewise.
31482         * tests/test-sysexits.c: Likewise.
31483         * tests/test-time.c: Likewise.
31484         * tests/test-tls.c: Likewise.
31485         * tests/test-trunc.c: Likewise.
31486         * tests/test-truncf.c: Likewise.
31487         * tests/test-truncl.c: Likewise.
31488         * tests/test-unistd.c: Likewise.
31489         * tests/test-vasnprintf-posix.c: Likewise.
31490         * tests/test-vasnprintf-posix2.c: Likewise.
31491         * tests/test-vasnprintf.c: Likewise.
31492         * tests/test-vasprintf-posix.c: Likewise.
31493         * tests/test-vasprintf.c: Likewise.
31494         * tests/test-verify.c: Likewise.
31495         * tests/test-vfprintf-posix.c: Likewise.
31496         * tests/test-vprintf-posix.c: Likewise.
31497         * tests/test-vsnprintf-posix.c: Likewise.
31498         * tests/test-vsnprintf.c: Likewise.
31499         * tests/test-vsprintf-posix.c: Likewise.
31500         * tests/test-wchar.c: Likewise.
31501         * tests/test-wctype.c: Likewise.
31502         * tests/test-wcwidth.c: Likewise.
31503         * tests/test-xstrtol.c: Likewise.
31504         * tests/test-xvasprintf.c: Likewise.
31505         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
31506         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
31507         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
31508         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
31509         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
31510         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
31511         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
31512         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
31513         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
31514         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
31515         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
31516         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
31517         * tests/uniname/test-uninames.c: Likewise.
31518         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
31519         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
31520         * tests/unistdio/test-u16-printf1.h: Likewise.
31521         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
31522         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
31523         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
31524         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
31525         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
31526         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
31527         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
31528         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
31529         * tests/unistdio/test-u32-printf1.h: Likewise.
31530         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
31531         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
31532         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
31533         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
31534         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
31535         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
31536         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
31537         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
31538         * tests/unistdio/test-u8-printf1.h: Likewise.
31539         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
31540         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
31541         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
31542         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
31543         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
31544         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
31545         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
31546         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
31547         * tests/unistdio/test-ulc-printf1.h: Likewise.
31548         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
31549         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
31550         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
31551         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
31552         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
31553         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
31554         * tests/uniwidth/test-u16-strwidth.c: Likewise.
31555         * tests/uniwidth/test-u16-width.c: Likewise.
31556         * tests/uniwidth/test-u32-strwidth.c: Likewise.
31557         * tests/uniwidth/test-u32-width.c: Likewise.
31558         * tests/uniwidth/test-u8-strwidth.c: Likewise.
31559         * tests/uniwidth/test-u8-width.c: Likewise.
31560         * tests/uniwidth/test-uc_width.c: Likewise.
31561         * config/srclist-update: Likewise.
31562         (fixlicense): Update to GPLv3+.
31563
31564         Change copyright notice from LGPLv2.1+ to LGPLv3+.
31565         * tests/test-tsearch.c: Change copyright notice.
31566
31567         Change copyright notice from LGPLv2.0+ to LGPLv3+.
31568         * lib/c-strcaseeq.h: Change copyright notice.
31569         * lib/streq.h: Likewise.
31570         * lib/uniconv.h: Likewise.
31571         * lib/uniconv/u-conv-from-enc.h: Likewise.
31572         * lib/uniconv/u-conv-to-enc.h: Likewise.
31573         * lib/uniconv/u-strconv-from-enc.h: Likewise.
31574         * lib/uniconv/u-strconv-to-enc.h: Likewise.
31575         * lib/uniconv/u16-conv-from-enc.c: Likewise.
31576         * lib/uniconv/u16-conv-to-enc.c: Likewise.
31577         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
31578         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
31579         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
31580         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
31581         * lib/uniconv/u32-conv-from-enc.c: Likewise.
31582         * lib/uniconv/u32-conv-to-enc.c: Likewise.
31583         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
31584         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
31585         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
31586         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
31587         * lib/uniconv/u8-conv-from-enc.c: Likewise.
31588         * lib/uniconv/u8-conv-to-enc.c: Likewise.
31589         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
31590         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
31591         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
31592         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
31593         * lib/uniname.h: Likewise.
31594         * lib/uniname/uniname.c: Likewise.
31595         * lib/unistdio.h: Likewise.
31596         * lib/unistdio/u-asnprintf.h: Likewise.
31597         * lib/unistdio/u-asprintf.h: Likewise.
31598         * lib/unistdio/u-printf-args.c: Likewise.
31599         * lib/unistdio/u-printf-args.h: Likewise.
31600         * lib/unistdio/u-printf-parse.h: Likewise.
31601         * lib/unistdio/u-snprintf.h: Likewise.
31602         * lib/unistdio/u-sprintf.h: Likewise.
31603         * lib/unistdio/u-vasprintf.h: Likewise.
31604         * lib/unistdio/u-vsnprintf.h: Likewise.
31605         * lib/unistdio/u-vsprintf.h: Likewise.
31606         * lib/unistdio/u16-asnprintf.c: Likewise.
31607         * lib/unistdio/u16-asprintf.c: Likewise.
31608         * lib/unistdio/u16-printf-parse.c: Likewise.
31609         * lib/unistdio/u16-snprintf.c: Likewise.
31610         * lib/unistdio/u16-sprintf.c: Likewise.
31611         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
31612         * lib/unistdio/u16-u16-asprintf.c: Likewise.
31613         * lib/unistdio/u16-u16-snprintf.c: Likewise.
31614         * lib/unistdio/u16-u16-sprintf.c: Likewise.
31615         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
31616         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
31617         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
31618         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
31619         * lib/unistdio/u16-vasnprintf.c: Likewise.
31620         * lib/unistdio/u16-vasprintf.c: Likewise.
31621         * lib/unistdio/u16-vsnprintf.c: Likewise.
31622         * lib/unistdio/u16-vsprintf.c: Likewise.
31623         * lib/unistdio/u32-asnprintf.c: Likewise.
31624         * lib/unistdio/u32-asprintf.c: Likewise.
31625         * lib/unistdio/u32-printf-parse.c: Likewise.
31626         * lib/unistdio/u32-snprintf.c: Likewise.
31627         * lib/unistdio/u32-sprintf.c: Likewise.
31628         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
31629         * lib/unistdio/u32-u32-asprintf.c: Likewise.
31630         * lib/unistdio/u32-u32-snprintf.c: Likewise.
31631         * lib/unistdio/u32-u32-sprintf.c: Likewise.
31632         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
31633         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
31634         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
31635         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
31636         * lib/unistdio/u32-vasnprintf.c: Likewise.
31637         * lib/unistdio/u32-vasprintf.c: Likewise.
31638         * lib/unistdio/u32-vsnprintf.c: Likewise.
31639         * lib/unistdio/u32-vsprintf.c: Likewise.
31640         * lib/unistdio/u8-asnprintf.c: Likewise.
31641         * lib/unistdio/u8-asprintf.c: Likewise.
31642         * lib/unistdio/u8-printf-parse.c: Likewise.
31643         * lib/unistdio/u8-snprintf.c: Likewise.
31644         * lib/unistdio/u8-sprintf.c: Likewise.
31645         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
31646         * lib/unistdio/u8-u8-asprintf.c: Likewise.
31647         * lib/unistdio/u8-u8-snprintf.c: Likewise.
31648         * lib/unistdio/u8-u8-sprintf.c: Likewise.
31649         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
31650         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
31651         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
31652         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
31653         * lib/unistdio/u8-vasnprintf.c: Likewise.
31654         * lib/unistdio/u8-vasprintf.c: Likewise.
31655         * lib/unistdio/u8-vsnprintf.c: Likewise.
31656         * lib/unistdio/u8-vsprintf.c: Likewise.
31657         * lib/unistdio/ulc-asnprintf.c: Likewise.
31658         * lib/unistdio/ulc-asprintf.c: Likewise.
31659         * lib/unistdio/ulc-printf-parse.c: Likewise.
31660         * lib/unistdio/ulc-snprintf.c: Likewise.
31661         * lib/unistdio/ulc-sprintf.c: Likewise.
31662         * lib/unistdio/ulc-vasnprintf.c: Likewise.
31663         * lib/unistdio/ulc-vasprintf.c: Likewise.
31664         * lib/unistdio/ulc-vsnprintf.c: Likewise.
31665         * lib/unistdio/ulc-vsprintf.c: Likewise.
31666         * lib/unistr.h: Likewise.
31667         * lib/unistr/u-cpy-alloc.h: Likewise.
31668         * lib/unistr/u-cpy.h: Likewise.
31669         * lib/unistr/u-endswith.h: Likewise.
31670         * lib/unistr/u-move.h: Likewise.
31671         * lib/unistr/u-set.h: Likewise.
31672         * lib/unistr/u-startswith.h: Likewise.
31673         * lib/unistr/u-stpcpy.h: Likewise.
31674         * lib/unistr/u-stpncpy.h: Likewise.
31675         * lib/unistr/u-strcat.h: Likewise.
31676         * lib/unistr/u-strcpy.h: Likewise.
31677         * lib/unistr/u-strcspn.h: Likewise.
31678         * lib/unistr/u-strdup.h: Likewise.
31679         * lib/unistr/u-strlen.h: Likewise.
31680         * lib/unistr/u-strncat.h: Likewise.
31681         * lib/unistr/u-strncpy.h: Likewise.
31682         * lib/unistr/u-strnlen.h: Likewise.
31683         * lib/unistr/u-strpbrk.h: Likewise.
31684         * lib/unistr/u-strspn.h: Likewise.
31685         * lib/unistr/u-strstr.h: Likewise.
31686         * lib/unistr/u-strtok.h: Likewise.
31687         * lib/unistr/u16-check.c: Likewise.
31688         * lib/unistr/u16-chr.c: Likewise.
31689         * lib/unistr/u16-cmp.c: Likewise.
31690         * lib/unistr/u16-cpy-alloc.c: Likewise.
31691         * lib/unistr/u16-cpy.c: Likewise.
31692         * lib/unistr/u16-endswith.c: Likewise.
31693         * lib/unistr/u16-mblen.c: Likewise.
31694         * lib/unistr/u16-mbsnlen.c: Likewise.
31695         * lib/unistr/u16-mbtouc-aux.c: Likewise.
31696         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
31697         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
31698         * lib/unistr/u16-mbtouc.c: Likewise.
31699         * lib/unistr/u16-mbtoucr.c: Likewise.
31700         * lib/unistr/u16-move.c: Likewise.
31701         * lib/unistr/u16-next.c: Likewise.
31702         * lib/unistr/u16-prev.c: Likewise.
31703         * lib/unistr/u16-set.c: Likewise.
31704         * lib/unistr/u16-startswith.c: Likewise.
31705         * lib/unistr/u16-stpcpy.c: Likewise.
31706         * lib/unistr/u16-stpncpy.c: Likewise.
31707         * lib/unistr/u16-strcat.c: Likewise.
31708         * lib/unistr/u16-strchr.c: Likewise.
31709         * lib/unistr/u16-strcmp.c: Likewise.
31710         * lib/unistr/u16-strcpy.c: Likewise.
31711         * lib/unistr/u16-strcspn.c: Likewise.
31712         * lib/unistr/u16-strdup.c: Likewise.
31713         * lib/unistr/u16-strlen.c: Likewise.
31714         * lib/unistr/u16-strmblen.c: Likewise.
31715         * lib/unistr/u16-strmbtouc.c: Likewise.
31716         * lib/unistr/u16-strncat.c: Likewise.
31717         * lib/unistr/u16-strncmp.c: Likewise.
31718         * lib/unistr/u16-strncpy.c: Likewise.
31719         * lib/unistr/u16-strnlen.c: Likewise.
31720         * lib/unistr/u16-strpbrk.c: Likewise.
31721         * lib/unistr/u16-strrchr.c: Likewise.
31722         * lib/unistr/u16-strspn.c: Likewise.
31723         * lib/unistr/u16-strstr.c: Likewise.
31724         * lib/unistr/u16-strtok.c: Likewise.
31725         * lib/unistr/u16-to-u32.c: Likewise.
31726         * lib/unistr/u16-to-u8.c: Likewise.
31727         * lib/unistr/u16-uctomb-aux.c: Likewise.
31728         * lib/unistr/u16-uctomb.c: Likewise.
31729         * lib/unistr/u32-check.c: Likewise.
31730         * lib/unistr/u32-chr.c: Likewise.
31731         * lib/unistr/u32-cmp.c: Likewise.
31732         * lib/unistr/u32-cpy-alloc.c: Likewise.
31733         * lib/unistr/u32-cpy.c: Likewise.
31734         * lib/unistr/u32-endswith.c: Likewise.
31735         * lib/unistr/u32-mblen.c: Likewise.
31736         * lib/unistr/u32-mbsnlen.c: Likewise.
31737         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
31738         * lib/unistr/u32-mbtouc.c: Likewise.
31739         * lib/unistr/u32-mbtoucr.c: Likewise.
31740         * lib/unistr/u32-move.c: Likewise.
31741         * lib/unistr/u32-next.c: Likewise.
31742         * lib/unistr/u32-prev.c: Likewise.
31743         * lib/unistr/u32-set.c: Likewise.
31744         * lib/unistr/u32-startswith.c: Likewise.
31745         * lib/unistr/u32-stpcpy.c: Likewise.
31746         * lib/unistr/u32-stpncpy.c: Likewise.
31747         * lib/unistr/u32-strcat.c: Likewise.
31748         * lib/unistr/u32-strchr.c: Likewise.
31749         * lib/unistr/u32-strcmp.c: Likewise.
31750         * lib/unistr/u32-strcpy.c: Likewise.
31751         * lib/unistr/u32-strcspn.c: Likewise.
31752         * lib/unistr/u32-strdup.c: Likewise.
31753         * lib/unistr/u32-strlen.c: Likewise.
31754         * lib/unistr/u32-strmblen.c: Likewise.
31755         * lib/unistr/u32-strmbtouc.c: Likewise.
31756         * lib/unistr/u32-strncat.c: Likewise.
31757         * lib/unistr/u32-strncmp.c: Likewise.
31758         * lib/unistr/u32-strncpy.c: Likewise.
31759         * lib/unistr/u32-strnlen.c: Likewise.
31760         * lib/unistr/u32-strpbrk.c: Likewise.
31761         * lib/unistr/u32-strrchr.c: Likewise.
31762         * lib/unistr/u32-strspn.c: Likewise.
31763         * lib/unistr/u32-strstr.c: Likewise.
31764         * lib/unistr/u32-strtok.c: Likewise.
31765         * lib/unistr/u32-to-u16.c: Likewise.
31766         * lib/unistr/u32-to-u8.c: Likewise.
31767         * lib/unistr/u32-uctomb.c: Likewise.
31768         * lib/unistr/u8-check.c: Likewise.
31769         * lib/unistr/u8-chr.c: Likewise.
31770         * lib/unistr/u8-cmp.c: Likewise.
31771         * lib/unistr/u8-cpy-alloc.c: Likewise.
31772         * lib/unistr/u8-cpy.c: Likewise.
31773         * lib/unistr/u8-endswith.c: Likewise.
31774         * lib/unistr/u8-mblen.c: Likewise.
31775         * lib/unistr/u8-mbsnlen.c: Likewise.
31776         * lib/unistr/u8-mbtouc-aux.c: Likewise.
31777         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
31778         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
31779         * lib/unistr/u8-mbtouc.c: Likewise.
31780         * lib/unistr/u8-mbtoucr.c: Likewise.
31781         * lib/unistr/u8-move.c: Likewise.
31782         * lib/unistr/u8-next.c: Likewise.
31783         * lib/unistr/u8-prev.c: Likewise.
31784         * lib/unistr/u8-set.c: Likewise.
31785         * lib/unistr/u8-startswith.c: Likewise.
31786         * lib/unistr/u8-stpcpy.c: Likewise.
31787         * lib/unistr/u8-stpncpy.c: Likewise.
31788         * lib/unistr/u8-strcat.c: Likewise.
31789         * lib/unistr/u8-strchr.c: Likewise.
31790         * lib/unistr/u8-strcmp.c: Likewise.
31791         * lib/unistr/u8-strcpy.c: Likewise.
31792         * lib/unistr/u8-strcspn.c: Likewise.
31793         * lib/unistr/u8-strdup.c: Likewise.
31794         * lib/unistr/u8-strlen.c: Likewise.
31795         * lib/unistr/u8-strmblen.c: Likewise.
31796         * lib/unistr/u8-strmbtouc.c: Likewise.
31797         * lib/unistr/u8-strncat.c: Likewise.
31798         * lib/unistr/u8-strncmp.c: Likewise.
31799         * lib/unistr/u8-strncpy.c: Likewise.
31800         * lib/unistr/u8-strnlen.c: Likewise.
31801         * lib/unistr/u8-strpbrk.c: Likewise.
31802         * lib/unistr/u8-strrchr.c: Likewise.
31803         * lib/unistr/u8-strspn.c: Likewise.
31804         * lib/unistr/u8-strstr.c: Likewise.
31805         * lib/unistr/u8-strtok.c: Likewise.
31806         * lib/unistr/u8-to-u16.c: Likewise.
31807         * lib/unistr/u8-to-u32.c: Likewise.
31808         * lib/unistr/u8-uctomb-aux.c: Likewise.
31809         * lib/unistr/u8-uctomb.c: Likewise.
31810         * lib/unitypes.h: Likewise.
31811         * lib/uniwidth.h: Likewise.
31812         * lib/uniwidth/cjk.h: Likewise.
31813         * lib/uniwidth/u16-strwidth.c: Likewise.
31814         * lib/uniwidth/u16-width.c: Likewise.
31815         * lib/uniwidth/u32-strwidth.c: Likewise.
31816         * lib/uniwidth/u32-width.c: Likewise.
31817         * lib/uniwidth/u8-strwidth.c: Likewise.
31818         * lib/uniwidth/u8-width.c: Likewise.
31819         * lib/uniwidth/width.c: Likewise.
31820
31821 2007-10-07  Bruno Haible  <bruno@clisp.org>
31822
31823         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
31824         The file is still under LGPL (see modules/inttypes).
31825
31826 2007-10-06  Bruno Haible  <bruno@clisp.org>
31827
31828         * modules/trunc (Dependencies): Add 'extensions'.
31829         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
31830         Reported by Ben Pfaff <blp@gnu.org>.
31831
31832 2007-10-06  Bruno Haible  <bruno@clisp.org>
31833
31834         * modules/freopen-tests: New file.
31835         * tests/test-freopen.c: New file.
31836
31837         * modules/fopen-tests: New file.
31838         * tests/test-fopen.c: New file.
31839
31840         * modules/fopen: New file.
31841         * lib/fopen.c: New file.
31842         * m4/fopen.m4: New file.
31843         * modules/freopen: New file.
31844         * lib/freopen.c: New file.
31845         * m4/freopen.m4: New file.
31846         * lib/stdio.in.h (fopen, freopen): New declarations.
31847         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
31848         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
31849         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
31850         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
31851         * doc/functions/fopen.texi: Mention the 'fopen' module.
31852         * doc/functions/freopen.texi: Mention the 'freopen' module.
31853
31854 2007-10-06  Bruno Haible  <bruno@clisp.org>
31855
31856         * modules/open-tests: New file.
31857         * tests/test-open.c: New file.
31858
31859         * modules/open: New file.
31860         * lib/open.c: New file.
31861         * m4/open.m4: New file.
31862         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
31863         lib/open.c does.
31864         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
31865         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
31866         macros.
31867         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
31868         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
31869         REPLACE_OPEN.
31870         * doc/functions/open.texi: Mention the 'open' module.
31871
31872 2007-10-04  Bruno Haible  <bruno@clisp.org>
31873
31874         * modules/ceill-tests: New file.
31875         * tests/test-ceill.c: New file.
31876
31877         * modules/ceill: New file.
31878         * lib/ceill.c: Replace entire file.
31879         * m4/ceill.m4: New file.
31880         * lib/math.in.h (ceill): Replace declaration.
31881         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
31882         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
31883         * doc/functions/ceill.texi: Mention the 'ceill' module.
31884         * modules/mathl (Files): Remove lib/ceill.c.
31885         (Depends-on): Add ceill.
31886
31887 2007-10-04  Bruno Haible  <bruno@clisp.org>
31888
31889         * modules/ceilf-tests: New file.
31890         * tests/test-ceilf.c: New file.
31891
31892         * modules/ceilf: New file.
31893         * lib/ceil.c: New file.
31894         * lib/ceilf.c: New file.
31895         * m4/ceilf.m4: New file.
31896         * lib/math.in.h (ceilf): New declaration.
31897         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
31898         HAVE_DECL_CEILF.
31899         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
31900         HAVE_DECL_CEILF.
31901         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
31902
31903 2007-10-04  Bruno Haible  <bruno@clisp.org>
31904
31905         * modules/floorl-tests: New file.
31906         * tests/test-floorl.c: New file.
31907
31908         * modules/floorl: New file.
31909         * lib/floorl.c: Replace entire file.
31910         * m4/floorl.m4: New file.
31911         * lib/math.in.h (floorl): Replace declaration.
31912         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
31913         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
31914         * doc/functions/floorl.texi: Mention the 'floorl' module.
31915         * modules/mathl (Files): Remove lib/floorl.c.
31916         (Depends-on): Add floorl.
31917
31918 2007-10-04  Bruno Haible  <bruno@clisp.org>
31919
31920         * modules/floorf-tests: New file.
31921         * tests/test-floorf.c: New file.
31922
31923         * modules/floorf: New file.
31924         * lib/floor.c: New file.
31925         * lib/floorf.c: New file.
31926         * m4/floorf.m4: New file.
31927         * lib/math.in.h (floorf): New declaration.
31928         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
31929         HAVE_DECL_FLOORF.
31930         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
31931         HAVE_DECL_FLOORF.
31932         * doc/functions/floorf.texi: Mention the 'floorf' module.
31933
31934 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
31935             Bruno Haible  <bruno@clisp.org>
31936
31937         Advertise for the Git server instead of the CVS server.
31938         * doc/gnulib-intro.texi (Steady Development): Mention the Git
31939         repository instead of the CVS one.
31940         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
31941         about all VCS systems generically.
31942         * doc/gnulib.texi (Introduction): Capitalize `Git'.
31943
31944 2007-10-04  Bruno Haible  <bruno@clisp.org>
31945
31946         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
31947         means.
31948         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
31949
31950 2007-10-04  Bruno Haible  <bruno@clisp.org>
31951
31952         * modules/truncl-tests: New file.
31953         * tests/test-truncl.c: New file.
31954
31955         * modules/truncl: New file.
31956         * lib/truncl.c: New file.
31957         * m4/truncl.m4: New file.
31958         * lib/math.in.h (truncl): New declaration.
31959         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
31960         HAVE_DECL_TRUNCL.
31961         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
31962         HAVE_DECL_TRUNCL.
31963         * doc/functions/truncl.texi: Mention the 'truncl' module.
31964
31965 2007-10-04  Bruno Haible  <bruno@clisp.org>
31966
31967         * modules/truncf-tests: New file.
31968         * tests/test-truncf.c: New file.
31969
31970         * modules/truncf: New file.
31971         * lib/trunc.c: Make paramerizable through USE_* macros.
31972         * lib/truncf.c: New file.
31973         * m4/truncf.m4: New file.
31974         * lib/math.in.h (truncf): New declaration.
31975         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
31976         HAVE_DECL_TRUNCF.
31977         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
31978         HAVE_DECL_TRUNCF.
31979         * doc/functions/truncf.texi: Mention the 'truncf' module.
31980
31981 2007-10-03  Bruno Haible  <bruno@clisp.org>
31982
31983         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
31984         augmentation also for tests modules.
31985         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
31986         * modules/atexit-tests (Makefile.am): Likewise.
31987         * modules/binary-io-tests (Makefile.am): Likewise.
31988         * modules/c-strcase-tests (Makefile.am): Likewise.
31989         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
31990         * modules/canonicalize-tests (Makefile.am): Likewise.
31991         * modules/closein-tests (Makefile.am): Likewise.
31992         * modules/fprintf-posix-tests (Makefile.am): Likewise.
31993         * modules/freadahead-tests (Makefile.am): Likewise.
31994         * modules/fseek-tests (Makefile.am): Likewise.
31995         * modules/fseeko-tests (Makefile.am): Likewise.
31996         * modules/ftell-tests (Makefile.am): Likewise.
31997         * modules/ftello-tests (Makefile.am): Likewise.
31998         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
31999         * modules/isnanl-tests (Makefile.am): Likewise.
32000         * modules/lseek-tests (Makefile.am): Likewise.
32001         * modules/mbscasecmp-tests (Makefile.am): Likewise.
32002         * modules/mbscasestr-tests (Makefile.am): Likewise.
32003         * modules/mbschr-tests (Makefile.am): Likewise.
32004         * modules/mbscspn-tests (Makefile.am): Likewise.
32005         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
32006         * modules/mbspbrk-tests (Makefile.am): Likewise.
32007         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
32008         * modules/mbsrchr-tests (Makefile.am): Likewise.
32009         * modules/mbsspn-tests (Makefile.am): Likewise.
32010         * modules/mbsstr-tests (Makefile.am): Likewise.
32011         * modules/printf-posix-tests (Makefile.am): Likewise.
32012         * modules/snprintf-posix-tests (Makefile.am): Likewise.
32013         * modules/sprintf-posix-tests (Makefile.am): Likewise.
32014         * modules/tsearch-tests (Makefile.am): Likewise.
32015         * modules/uniname/uniname-tests (Makefile.am): Likewise.
32016         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
32017         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
32018         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
32019         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
32020         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
32021         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
32022         * modules/vprintf-posix-tests (Makefile.am): Likewise.
32023         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
32024         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
32025         * modules/xstrtoimax-tests (Makefile.am): Likewise.
32026         * modules/xstrtol-tests (Makefile.am): Likewise.
32027         * modules/xstrtoumax-tests (Makefile.am): Likewise.
32028         * modules/yesno-tests (Makefile.am): Likewise.
32029
32030 2007-10-03  Bruno Haible  <bruno@clisp.org>
32031
32032         * modules/trunc-tests: New file.
32033         * tests/test-trunc.c: New file.
32034
32035         * modules/trunc: New file.
32036         * lib/trunc.c: New file.
32037         * m4/trunc.m4: New file.
32038         * lib/math.in.h (trunc): New declaration.
32039         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
32040         HAVE_DECL_TRUNC.
32041         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
32042         HAVE_DECL_TRUNC.
32043         * doc/functions/trunc.texi: Mention the 'trunc' module.
32044
32045 2007-10-03  Bruno Haible  <bruno@clisp.org>
32046
32047         * tests/test-fpending.c: New file, mostly copied
32048         from coreutils/lib/t-fpending.c.
32049         * modules/fpending-tests: New file.
32050
32051 2007-10-03  Bruno Haible  <bruno@clisp.org>
32052
32053         Port the stdio extensions to QNX (untested).
32054         * lib/fseterr.c (fseterr): Add support for QNX.
32055         * lib/fbufmode.c (fbufmode): Likewise.
32056         * lib/freadable.c (freadable): Likewise.
32057         * lib/fwritable.c (fwritable): Likewise.
32058         * lib/freading.c (freading): Likewise.
32059         * lib/fwriting.c (fwriting): Likewise.
32060         * lib/freadahead.c (freadahed): Likewise.
32061         * lib/fpurge.c (fpurge): Likewise.
32062         * lib/fseeko.c (rpl_fseeko): Likewise.
32063
32064 2007-10-03  Bruno Haible  <bruno@clisp.org>
32065             Jim Meyering  <jim@meyering.net>
32066             Eric Blake  <ebb9@byu.net>
32067
32068         * doc/relocatable.texi: Use @command instead of @program.
32069
32070 2007-10-02  Jim Meyering  <jim@meyering.net>
32071
32072         Perform one more "_.h" -> ".in.h" substitution.
32073         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
32074         instead of unistd_.h here, too.
32075
32076 2007-10-01  Bruno Haible  <bruno@clisp.org>
32077
32078         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
32079         Needed for the alloca-opt module.
32080
32081 2007-09-30  Bruno Haible  <bruno@clisp.org>
32082
32083         * lib/alloca.in.h: Renamed from lib/alloca_.h.
32084         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
32085         alloca_.h.
32086         * lib/argz.in.h: Renamed from lib/argz_.h.
32087         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
32088         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
32089         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
32090         byteswap_.h.
32091         * lib/dirent.in.h: Renamed from lib/dirent_.h.
32092         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
32093         dirent_.h.
32094         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
32095         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
32096         fcntl_.h.
32097         * lib/float.in.h: Renamed from lib/float_.h.
32098         * modules/float (Files, Makefile.am): Use float.in.h instead of
32099         float_.h.
32100         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
32101         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
32102         fnmatch_.h.
32103         * lib/getopt.in.h: Renamed from lib/getopt_.h.
32104         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
32105         getopt_.h.
32106         * lib/glob.in.h: Renamed from lib/glob_.h.
32107         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
32108         * lib/iconv.in.h: Renamed from lib/iconv_.h.
32109         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
32110         iconv_.h.
32111         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
32112         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
32113         inttypes_.h.
32114         * lib/locale.in.h: Renamed from lib/locale_.h.
32115         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
32116         locale_.h.
32117         * lib/math.in.h: Renamed from lib/math_.h.
32118         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
32119         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
32120         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
32121         of netinet_in_.h. Add dependency.
32122         * lib/poll.in.h: Renamed from lib/poll_.h.
32123         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
32124         * lib/search.in.h: Renamed from lib/search_.h.
32125         * modules/search (Files, Makefile.am): Use search.in.h instead of
32126         search_.h.
32127         * lib/signal.in.h: Renamed from lib/signal_.h.
32128         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
32129         _signal.h.
32130         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
32131         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
32132         stdbool_.h.
32133         * lib/stdint.in.h: Renamed from lib/stdint_.h.
32134         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
32135         stdint_.h.
32136         * lib/stdio.in.h: Renamed from lib/stdio_.h.
32137         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
32138         stdio_.h.
32139         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
32140         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
32141         stdlib_.h.
32142         * lib/string.in.h: Renamed from lib/string_.h.
32143         * modules/string (Files, Makefile.am): Use string.in.h instead of
32144         string_.h.
32145         * doc/gnulib-tool.texi (Initial import): Update.
32146         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
32147         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
32148         of sys_select_.h. Add dependency.
32149         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
32150         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
32151         of sys_socket_.h.
32152         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
32153         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
32154         sys_stat_.h.
32155         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
32156         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
32157         sys_time_.h.
32158         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
32159         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
32160         sysexits_.h.
32161         * lib/time.in.h: Renamed from lib/time_.h.
32162         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
32163         * lib/unistd.in.h: Renamed from lib/unistd_.h.
32164         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
32165         unistd_.h.
32166         * lib/wchar.in.h: Renamed from lib/wchar_.h.
32167         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
32168         wchar_.h.
32169         * lib/wctype.in.h: Renamed from lib/wctype_.h.
32170         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
32171         wctype_.h.
32172         * build-aux/bootstrap (slurp): Update.
32173         * lib/.cppi-disable: Update.
32174
32175 2007-09-30  Bruno Haible  <bruno@clisp.org>
32176
32177         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
32178         Needed on BeOS.
32179
32180 2007-09-30  Bruno Haible  <bruno@clisp.org>
32181
32182         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
32183
32184 2007-09-29  Bruno Haible  <bruno@clisp.org>
32185
32186         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
32187
32188 2007-09-29  Bruno Haible  <bruno@clisp.org>
32189
32190         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
32191         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
32192         * build-aux/install-reloc: Compile also areadlink.c.
32193         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
32194
32195 2007-09-29  Bruno Haible  <bruno@clisp.org>
32196
32197         * gnulib-tool (func_emit_initmacro_done): Indentation.
32198
32199 2007-09-29  Bruno Haible  <bruno@clisp.org>
32200
32201         * README: Add CVS checkout update instructions.
32202         Info from Bob Proulx <bob@proulx.com>.
32203
32204 2007-09-28  Eric Blake  <ebb9@byu.net>
32205
32206         Provide move-if-change.
32207         * build-aux/move-if-change: New file, based on best practice
32208         rather than any canonical upstream location.
32209
32210 2007-09-28  Jim Meyering  <jim@meyering.net>
32211
32212         Fix canonicalize loop-detection corner case.
32213         Do not attempt to stat the symlink values stored via seen_triple.
32214         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
32215         on linux-2.6.18, (but not 2.6.22).
32216         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
32217         triple_compare.  The former compares dev,ino,filename, while the latter
32218         would actually stat dirname(filename) when dev and ino were equal.
32219         * lib/hash-triple.c: Install <string.h>.
32220         (STREQ): Define.
32221         (triple_compare_ino_str): New function.
32222         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
32223
32224 2007-09-28  Eric Blake  <ebb9@byu.net>
32225
32226         Enforce that AC_REPLACE_FUNCS files exist.
32227         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
32228         override check for typos.
32229
32230         Fix test-closein on Solaris 10.
32231         * tests/test-closein.c (main): Don't assume stdin can be inherited
32232         closed on all systems.
32233         * tests/test-closein.sh: Likewise.
32234         Reported by Piotr Tarnowski.
32235
32236 2007-09-28  Jim Meyering  <jim@meyering.net>
32237
32238         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
32239
32240 2007-09-27  Jim Meyering  <jim@meyering.net>
32241
32242         canonicalize: Avoid a false-positive cycle failure.
32243         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
32244         Sort.  Remove cycle-check.
32245         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
32246         not cycle-check.h.
32247         (seen_triple): New function.
32248         (canonicalize_filename_mode): Use it instead of cycle-check.
32249         * tests/test-canonicalize.c: Add a test for this bug.
32250         * tests/test-canonicalize.sh: Set up and run the test.
32251
32252         New module, file-set, from coreutils.
32253         * modules/file-set: Define it.
32254         * lib/file-set.c, lib/file-set.h: Implement.
32255
32256         New module, hash-triple, from coreutils.
32257         * modules/hash-triple: Define it.
32258         * lib/hash-triple.c, lib/hash-triple.h: Implement.
32259
32260 2007-09-25  Eric Blake  <ebb9@byu.net>
32261
32262         Fix strerror on Interix.
32263         * lib/string_.h (strerror): Declare replacement.
32264         * doc/functions/strerror.texi (strerror): Document the Interix
32265         shortcoming.
32266         * modules/string (Makefile.am): Support new hooks.
32267         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
32268         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
32269         gl_FUNC_STRERROR_SEPARATE.
32270         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
32271         * lib/strerror.c (rpl_strerror): Provide replacement.
32272         * modules/strerror (Depends-on): Add string.
32273         (configure.ac): Detect use of module.
32274         * tests/test-strerror.c: New file.
32275         * modules/strerror-tests: New test module.
32276         * modules/argp (Depends-on): Add strerror.
32277         * modules/error (Depends-on): Likewise.
32278         Reported by Martin Koeppe.
32279
32280 2007-09-24  Bruno Haible  <bruno@clisp.org>
32281
32282         * README: Update git instructions.
32283
32284 2007-09-24  Eric Blake  <ebb9@byu.net>
32285
32286         Revert fpending breakage from 2007-09-08.
32287         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
32288         __fpending.c.
32289
32290 2007-09-24  Jim Meyering  <jim@meyering.net>
32291
32292         filenamecat.c: Add a test.
32293         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
32294         showing how the function works when DIR is the empty string.
32295
32296 2007-09-21  Simon Josefsson  <simon@josefsson.org>
32297
32298         * tests/test-canonicalize.sh: Turn on executable bit.
32299
32300 2007-09-19  Eric Blake  <ebb9@byu.net>
32301
32302         * README: Update CVS instructions.
32303
32304 2007-09-18  Bruno Haible  <bruno@clisp.org>
32305
32306         * modules/areadlink: New file.
32307         * lib/areadlink.h (areadlink): New declaration.
32308         * lib/areadlink.c: New file, based on lib/xreadlink.c.
32309
32310 2007-09-17  Jim Meyering  <jim@meyering.net>
32311
32312         * lib/savewd.c (ESTALE) [!defined]: Define.
32313         Reported to be required on Interix by Martin Koeppe.
32314
32315 2007-09-17  Bruno Haible  <bruno@clisp.org>
32316
32317         * gnulib-tool (func_version): Use $version.
32318
32319 2007-09-16  Bruno Haible  <bruno@clisp.org>
32320
32321         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
32322         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
32323         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
32324         Reported by Greg Schafer <gschafer@zip.com.au>.
32325
32326 2007-09-15  Bruno Haible  <bruno@clisp.org>
32327
32328         * gnulib-tool (sed): Try a little harder to make bash understand the
32329         alias.
32330         Reported by Bruce Korb <bruce.korb@gmail.com>.
32331
32332 2007-09-13  Eric Blake  <ebb9@byu.net>
32333
32334         * ChangeLog: Remove conflict markers.
32335
32336 2007-09-13  Simon Josefsson  <simon@josefsson.org>
32337
32338         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
32339         Reported by Bruno Haible <bruno@clisp.org>.
32340
32341 2007-09-12  Bruno Haible  <bruno@clisp.org>
32342
32343         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
32344         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
32345         is not defined.
32346
32347 2007-09-12  Eric Blake  <ebb9@byu.net>
32348
32349         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
32350         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
32351         Autoconf definition.
32352         * modules/euidaccess (Depends-on): Add extensions, for
32353         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
32354         * modules/fnmatch (Depends-on): Likewise.
32355         * modules/getaddrinfo (Depends-on): Likewise.
32356         * modules/getdelim (Depends-on): Likewise.
32357         * modules/getline (Depends-on): Likewise.
32358         * modules/getsubopt (Depends-on): Likewise.
32359         * modules/gettext (Depends-on): Likewise.
32360         * modules/group-member (Depends-on): Likewise.
32361         * modules/mbchar (Depends-on): Likewise.
32362         * modules/memmem (Depends-on): Likewise.
32363         * modules/mempcpy (Depends-on): Likewise.
32364         * modules/memrchr (Depends-on): Likewise.
32365         * modules/pagealign_alloc (Depends-on): Likewise.
32366         * modules/readutmp (Depends-on): Likewise.
32367         * modules/stpcpy (Depends-on): Likewise.
32368         * modules/stpncpy (Depends-on): Likewise.
32369         * modules/strchrnul (Depends-on): Likewise.
32370         * modules/strndup (Depends-on): Likewise.
32371         * modules/strsep (Depends-on): Likewise.
32372         * modules/strverscmp (Depends-on): Likewise.
32373         * modules/vasprintf (Depends-on): Likewise.
32374         * modules/wcwidth (Depends-on): Likewise.
32375         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
32376         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
32377         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
32378         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
32379         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
32380         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
32381         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
32382         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
32383         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
32384         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
32385         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
32386         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
32387         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
32388         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
32389         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
32390         * m4/readutmp.m4 (gl_READUTMP): Likewise.
32391         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
32392         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
32393         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
32394         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
32395         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
32396         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
32397         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
32398         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
32399         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
32400         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
32401         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
32402         so that lock.m4 can be used in gettext without extensions module.
32403
32404 2007-09-11  Bruno Haible  <bruno@clisp.org>
32405
32406         * m4/isc-posix.m4: Remove file.
32407         Suggested by Eric Blake.
32408
32409 2007-09-11  Eric Blake  <ebb9@byu.net>
32410
32411         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
32412
32413 2007-09-10  Bruno Haible  <bruno@clisp.org>
32414
32415         * posix-modules: Fix typo in error message.
32416         Reported by Matt <mkraai@beckman.com>.
32417
32418 2007-09-09  Bruno Haible  <bruno@clisp.org>
32419
32420         * doc/functions/getdelim.texi: Update list of platforms lacking the
32421         function.
32422         * doc/functions/getline.texi: Likewise.
32423
32424 2007-09-09  Jim Meyering  <jim@meyering.net>
32425
32426         * lib/hash.c (hash_initialize): Detect calloc failure.
32427         Reported by Bruno Haible.
32428
32429 2007-09-09  Bruno Haible  <bruno@clisp.org>
32430
32431         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
32432         malloc or realloc fails.
32433
32434 2007-09-09  Bruno Haible  <bruno@clisp.org>
32435
32436         * modules/getcwd (Depends-on): Add malloc-posix.
32437         * modules/glob (Depends-on): Likewise.
32438         * modules/putenv (Depends-on): Likewise.
32439         * modules/strdup (Depends-on): Likewise.
32440         * modules/getdelim (Depends-on): Add realloc-posix.
32441         * modules/read-file (Depends-on): Likewise.
32442
32443 2007-09-09  Bruno Haible  <bruno@clisp.org>
32444
32445         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
32446         (gl_FUNC_MALLOC_POSIX): Require it.
32447         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
32448         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
32449         * modules/realloc (Files): Add m4/malloc.m4.
32450         * modules/calloc (Files): Likewise.
32451
32452 2007-09-09  Bruno Haible  <bruno@clisp.org>
32453
32454         * modules/malloc-posix: New file.
32455         * modules/malloc (Depends-on): Add malloc-posix.
32456         * lib/malloc.c: Include errno.h.
32457         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
32458         and a POSIX-compatible malloc into a single function. Set ENOMEM
32459         when returning NULL.
32460         * m4/malloc.m4: New file.
32461         * doc/functions/malloc.texi: Mention the malloc-posix module.
32462         * lib/stdlib_.h (malloc): New declaration.
32463         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
32464         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
32465         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
32466         and HAVE_MALLOC_POSIX.
32467
32468 2007-09-09  Bruno Haible  <bruno@clisp.org>
32469
32470         * modules/realloc-posix: New file.
32471         * modules/realloc (Depends-on): Add realloc-posix.
32472         * lib/realloc.c: Include errno.h.
32473         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
32474         and a POSIX-compatible realloc into a single function. Set ENOMEM
32475         when returning NULL.
32476         * m4/realloc.m4: New file.
32477         * doc/functions/realloc.texi: Mention the realloc-posix module.
32478         * lib/stdlib_.h (realloc): New declaration.
32479         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
32480         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
32481         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
32482         and HAVE_REALLOC_POSIX.
32483
32484 2007-09-09  Bruno Haible  <bruno@clisp.org>
32485
32486         * modules/calloc-posix: New file.
32487         * modules/calloc (Depends-on): Add calloc-posix.
32488         * lib/calloc.c: Include errno.h.
32489         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
32490         and a POSIX-compatible calloc into a single function. Set ENOMEM
32491         when returning NULL.
32492         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
32493         * doc/functions/calloc.texi: Mention the calloc-posix module.
32494         * lib/stdlib_.h (calloc): New declaration.
32495         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
32496         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
32497         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
32498         and HAVE_CALLOC_POSIX.
32499
32500 2007-09-09  Bruno Haible  <bruno@clisp.org>
32501
32502         Allow for modules to show an arbitrary notice.
32503         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
32504         * gnulib-tool: New option --extract-notice.
32505         (func_usage): Document it.
32506         (sed_extract_prog): Update.
32507         (func_get_notice): New function.
32508         (func_modules_notice): New function.
32509         (func_import, func_create_testdir): Invoke it.
32510         Suggested by Jim Meyering.
32511
32512 2007-09-09  Bruno Haible  <bruno@clisp.org>
32513
32514         * gnulib-tool: New options --verbose, --quiet.
32515         (func_usage): Document them.
32516         (verbose): New variable.
32517         (func_execute_command): New function.
32518         (func_import): Don't show the module list and the file list if
32519         $verbose < 0.
32520         (func_create_testdir): Likewise. Use func_execute_command.
32521         (func_create_megatestdir): Use func_execute_command.
32522
32523 2007-09-08  Bruno Haible  <bruno@clisp.org>
32524
32525         * gnulib-tool (func_import): Prefer rsync over wget when available,
32526         for fetching the PO files.
32527
32528 2007-09-08  Bruno Haible  <bruno@clisp.org>
32529
32530         * posix-modules: New file. Portions copied from gnulib-tool.
32531         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
32532
32533 2007-09-08  Jim Meyering  <jim@meyering.net>
32534
32535         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
32536         * lib/fpending.h: Rename from __fpending.h.
32537         * lib/fpending.c: Rename from __fpending.c.
32538         Include "fpending.h", not "__fpending.h".
32539         * lib/__fpending.h, lib/__fpending.c: Remove files.
32540         * modules/fpending (Files): Reflect new file names.
32541         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
32542
32543 2007-09-08  Bruno Haible  <bruno@clisp.org>
32544
32545         * m4/inttypes-h.m4: Remove stub file.
32546
32547 2007-09-07  Simon Josefsson  <simon@josefsson.org>
32548
32549         * doc/headers/stdint.texi: Discuss #include_next issue.
32550
32551 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
32552
32553         * build-aux/bootstrap: Remove obsolete comment about wget --help.
32554
32555 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32556
32557         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
32558         in variable name.
32559
32560 2007-09-03  Jim Meyering  <jim@meyering.net>
32561
32562         New module: git-version-gen.
32563         * modules/git-version-gen: New file.
32564
32565         Import changes from coreutils for bootstrap script.
32566
32567         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
32568
32569         bootstrap: uses rsync to download the .po files
32570         * build-aux/bootstrap (po_download_command_format): New global.
32571         (download_po_files): Use rsync.
32572         (update_po_files): Don't remove .po files after download,
32573         so future rsync runs can take advantage of the copies.
32574
32575         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
32576
32577         Solve the unnecessary-.po-file-regeneration problem once and for all.
32578         * build-aux/bootstrap (download_po_files): New function, renamed from
32579         get_translations.  Now, downloads, but doesn't update LINGUAS.
32580         (update_po_files): New function.
32581
32582         bootstrap: Ignore more.
32583         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
32584         uniwidth to e.g., lib/.gitignore.
32585         (slurp): Handle the sys_stat_.h -> sys mapping, too.
32586
32587         * build-aux/bootstrap: New setting: vc_ignore.
32588         (insert_sorted_if_absent): Create $file if absent.
32589         Adapt to new, possibly empty, list: $vc_ignore.
32590
32591         bootstrap: generate more ignorable names
32592         * build-aux/bootstrap (slurp): When generating ignorable names,
32593         also map .sin to .sed, .gperf to .c, and .y to .c.
32594
32595 2007-09-03  Jim Meyering  <jim@meyering.net>
32596
32597         * build-aux/git-version-gen: New file, from coreutils.  For details, see
32598         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
32599
32600 2007-09-02  Bruno Haible  <bruno@clisp.org>
32601
32602         Fix mis-recognition of 'mcs' on QNX 6.
32603         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
32604         output contains the string "Mono".
32605         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
32606         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
32607
32608 2007-09-01  Bruno Haible  <bruno@clisp.org>
32609
32610         Fix collision between uniwidth/* and linebreak modules.
32611         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
32612         u32_width): Remove declarations.
32613         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
32614         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
32615         streq3, streq2, streq1, streq0): Remove functions.
32616         (STREQ): Remove macro.
32617         (is_cjk_encoding): Remove function.
32618         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
32619         (uc_width, u8_width, u16_width, u32_width): Remove functions.
32620         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
32621         * NEWS: Document the change.
32622
32623 2007-09-01  Bruno Haible  <bruno@clisp.org>
32624
32625         * lib/streq.h: Add double-inclusion guard.
32626
32627 2007-09-01  Karl Berry  <karl@gnu.org>
32628
32629         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
32630
32631 2007-08-28  Jim Meyering  <jim@meyering.net>
32632
32633         Rename mreadlink_with_size to areadlink_with_size.
32634         * NEWS: Document the change.
32635         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
32636         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
32637         * lib/mreadlink.h: Rename this to...
32638         * lib/areadlink.h: ...this.
32639         * modules/mreadlink-with-size: Rename this to...
32640         * modules/areadlink-with-size: ...this.
32641         * lib/canonicalize.c: Reflect the renaming.
32642         * modules/canonicalize: Likewise.
32643
32644 2007-08-26  Bruno Haible  <bruno@clisp.org>
32645
32646         * gnulib-tool (func_import): When deciding which files to remove,
32647         consider also dangling symbolic links.
32648         Reported by Eric Blake.
32649
32650 2007-08-26  Bruno Haible  <bruno@clisp.org>
32651
32652         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
32653
32654 2007-08-23  Simon Josefsson  <simon@josefsson.org>
32655
32656         * lib/readline.c: Don't include getline.h, the prototype is now
32657         found in stdio.h.
32658
32659 2007-08-23  Jim Meyering  <jim@meyering.net>
32660
32661         Getdelim touchup.
32662         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
32663         around the funlockfile call, since funlockfile never sets errno.
32664         Don't set errno upon failed realloc.
32665
32666 2007-08-22  Eric Blake  <ebb9@byu.net>
32667
32668         Getline touchups.
32669         * lib/getdelim.c (getdelim): Revert regression that required *n to
32670         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
32671         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
32672         getdelim, rather than whether implementation is missing.
32673         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
32674         * lib/stdio_.h (getline): Also declare if replacement is
32675         required.
32676         * doc/functions/getdelim.texi: New file.
32677         * doc/functions/getline.texi: Likewise.
32678         * doc/gnulib.texi (Function Substitutes): Add new files.
32679         Reported by Bruno Haible.
32680
32681 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
32682
32683         * users.txt: Add Guile.
32684
32685 2007-08-22  Eric Blake  <ebb9@byu.net>
32686
32687         * tests/test-getdelim.c (main): Use remove, not unlink.
32688         * tests/test-getline.c (main): Likewise.
32689
32690         Move getline and getdelim into stdio.h, per POSIX 200x.
32691         * modules/getline (Files): Remove getline.h.
32692         (Depends-on): Add stdio.
32693         (configure.ac): Add module indicator.
32694         * modules/getdelim (Files): Remove getdelim.h.
32695         (Depends-on): Add stdio.
32696         (configure.ac): Add module indicator.
32697         * modules/stdio (Makefile.am): Work with new indicators.
32698         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
32699         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
32700         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
32701         * lib/getdelim.h: Delete.
32702         * lib/getline.h: Delete.
32703         * lib/stdio_.h (getdelim, getline): Declare.
32704         * modules/getdelim-tests: New module.
32705         * modules/getline-tests: Likewise.
32706         * tests/test-getdelim.c: New file.
32707         * tests/test-getline.c: Likewise.
32708         * NEWS: Document the change.
32709         * lib/getline.c: Update choice of header.
32710         * lib/csharpcomp.c: Likewise.
32711         * lib/getpass.c: Likewise.
32712         * lib/javacomp.c: Likewise.
32713         * lib/javaversion.c: Likewise.
32714         * lib/yesno.c: Likewise.
32715         * lib/getdelim.c: Likewise.
32716         (getdelim): Set errno on failure, and avoid memory leak.
32717
32718 2007-08-19  Bruno Haible  <bruno@clisp.org>
32719
32720         * modules/closein (Depends-on): Add freadahead.
32721         * lib/closein.c: Include freadahead.h.
32722         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
32723         is zero.
32724
32725 2007-08-19  Bruno Haible  <bruno@clisp.org>
32726
32727         * modules/freadahead-tests: New file.
32728         * tests/test-freadahead.sh: New file.
32729         * tests/test-freadahead.c: New file.
32730
32731         * modules/freadahead: New file.
32732         * lib/freadahead.h: New file.
32733         * lib/freadahead.c: New file.
32734         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
32735         fbufmode, fpurge, freadable, fwritable.
32736
32737 2007-08-19  Eric Blake  <ebb9@byu.net>
32738
32739         Test yesno in combination with closein.
32740         * lib/yesno.c (yesno): Document use of stdin.
32741         * modules/yesno-tests (Files): New module.
32742         * tests/test-yesno.c (main): New file.
32743         * tests/test-yesno.sh: Likewise.
32744
32745 2007-08-19  Bruno Haible  <bruno@clisp.org>
32746
32747         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
32748         * lib/fseeko.c (rpl_fseeko): Likewise.
32749         * lib/fseterr.c (fseterr): Likewise.
32750
32751 2007-08-19  Bruno Haible  <bruno@clisp.org>
32752
32753         * tests/test-lseek.c (main): Disable a test for BeOS.
32754         * doc/functions/lseek.texi: Document the BeOS bug.
32755
32756 2007-08-19  Bruno Haible  <bruno@clisp.org>
32757             Eric Blake  <ebb9@byu.net>
32758
32759         * lib/lseek.c: Include <sys/stat.h>.
32760         (rpl_lseek): Add workaround code also for Unix platforms.
32761         Needed for BeOS.
32762         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
32763         * doc/functions/lseek.texi: Document BeOS definiency.
32764
32765 2007-08-18  Bruno Haible  <bruno@clisp.org>
32766
32767         * modules/fstrcmp-tests: New file.
32768         * tests/test-fstrcmp.c: New file.
32769
32770 2007-08-18  Bruno Haible  <bruno@clisp.org>
32771
32772         * modules/fstrcmp: New file, from GNU gettext with modifications.
32773         * lib/fstrcmp.h: New file, from GNU gettext.
32774         * lib/fstrcmp.c: New file, from GNU gettext.
32775         * MODULES.html.sh (String handling): Add fstrcmp.
32776
32777 2007-08-18  Bruno Haible  <bruno@clisp.org>
32778
32779         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
32780         'bool'.
32781         (diag, compareseq): Remove const from the ctxt argument.
32782         (USE_HEURISTIC): Undefine at the end.
32783
32784 2007-08-18  Jim Meyering  <jim@meyering.net>
32785
32786         New file: lib/idcache.h
32787         * NEWS: Mention the addition.
32788         * modules/idcache (Files): Add lib/idcache.h
32789         * lib/idcache.c: Include "idcache.h".
32790         Don't include <sys/types.h>.
32791         Add a FIXME comment.
32792         Move file-scoped "static" declarations to the top.
32793         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
32794
32795 2007-08-17  Bruno Haible  <bruno@clisp.org>
32796         and Paul Eggert  <eggert@cs.ucla.edu>
32797
32798         * MODULES.html.sh: Add diffseq.
32799         * modules/diffseq: New file.
32800         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
32801         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
32802
32803 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32804
32805         Import changes from coreutils for bootstrap script.
32806
32807         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
32808
32809         * build-aux/bootstrap (slurp): Work even in environments where
32810         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
32811         current code does not slurp files whose names start with ".", and
32812         this looks like it might be a troublesome area.
32813
32814         2007-07-11  Jim Meyering  <jim@meyering.net>
32815
32816         If there's a GPL vN copyright comment, require that N == 3.
32817
32818         2007-07-08  Jim Meyering  <jim@meyering.net>
32819
32820         Run the coreutils-specific code only if tests/Makefile.am.in exists.
32821         * build-aux/bootstrap (mam_template): Move definition out of loop.
32822
32823         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
32824
32825         * build-aux/bootstrap (symlink_to_dir): Rename function from
32826         symlink_to_gnulib.  Add a directory parameter.  Update all
32827         callers.
32828         (cp_mark_as_generated): Also check for -- and link to -- files in
32829         gl/.
32830
32831         2007-07-08  Jim Meyering  <jim@meyering.net>
32832
32833         Adapt to deeper hierarchy in gnulib.
32834         * build-aux/bootstrap (symlink_to_dir): If the destination
32835         directory doesn't exist, create it. This is required at least for
32836         "lib/uniwidth/cjk.h".
32837
32838         2007-05-15  Jim Meyering  <jim@meyering.net>
32839
32840         * build-aux/bootstrap: Now that generated Makefile.am files
32841         are no longer under version control, they must be created at
32842         bootstrap time.
32843
32844 2007-08-14  Ben Pfaff  <blp@gnu.org>
32845
32846         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
32847
32848 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32849
32850         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
32851         given the changes below.
32852         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
32853         even on hosts that have padding bits beyond the supported 64.
32854
32855 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
32856
32857         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
32858         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
32859         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
32860         depends on it.
32861         (xstrtol_error): Remove.
32862         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
32863         but with a different signature.
32864         (ATTRIBUTE_NORETURN, __attribute__): New macros.
32865         * lib/xstrtol-error.c: Include exitfail.h.
32866         (xstrtol_fatal): New function, with a different signature from the
32867         old xstrtol_error, so that the caller need not worry about passing
32868         in an exit status, or about storage management of the option argument.
32869         (xstrtol_error): Now a static function.  Redo signature to
32870         implement xstrtol_fatal.  Output the correct number of hyphens in
32871         front of the option so that the caller need not worry about
32872         storage management.
32873         (N_): New macro.
32874         (_): Remove; not used now.
32875         * modules/xstrtol: Depend on getopt.
32876         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
32877         of old STRTOL_FATAL_ERROR macro.
32878         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
32879         of test program.
32880         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
32881         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
32882
32883 2007-08-08  Eric Blake  <ebb9@byu.net>
32884
32885         * lib/xstrtol-error.c: Add missing include.
32886
32887         Move xstrtol messages into gnulib domain, when --pobase is used.
32888         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
32889         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
32890         * modules/xstrtol (Files): Distribute new file.
32891         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
32892         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
32893         * tests/test-xstrtol.c: ...into new file.
32894         * tests/test-xstrtoul.c: Also test xstrtoul.
32895         * tests/test-xstrtoimax.c: Also test xstrtoimax.
32896         * tests/test-xstrtoumax.c: Also test xstrtoumax.
32897         * tests/test-xstrtol.sh: Drive the tests.
32898         * tests/test-xstrtoimax.sh: Likewise.
32899         * tests/test-xstrtoumax.sh: Likewise.
32900         * modules/xstrtol-tests: New module.
32901         * modules/xstrtoimax-tests: Likewise.
32902         * modules/xstrtoumax-tests: Likewise.
32903
32904 2007-08-08  Jim Meyering  <jim@meyering.net>
32905
32906         New function: mfile_name_concat.
32907         * lib/filenamecat.c (mfile_name_concat): New function, just like
32908         file_name_concat, but return NULL upon failure rather than exiting
32909         with a diagnostic.
32910         * lib/filenamecat.h: Declare it.
32911
32912 2007-08-07  Bruno Haible  <bruno@clisp.org>
32913
32914         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
32915         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
32916         warning from gcc.
32917         Reported by Eric Blake.
32918
32919 2007-08-07  Simon Josefsson  <simon@josefsson.org>
32920
32921         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
32922         * modules/crypto/arcfour (License): Likewise.
32923         * modules/crypto/des-tests (License): Likewise.
32924         * modules/crypto/gc-arctwo-tests (License): Likewise.
32925         * modules/crypto/gc-des-tests (License): Likewise.
32926         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
32927         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
32928         * modules/crypto/gc-md2-tests (License): Likewise.
32929         * modules/crypto/gc-md4-tests (License): Likewise.
32930         * modules/crypto/gc-md5-tests (License): Likewise.
32931         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
32932         * modules/crypto/gc-rijndael-tests (License): Likewise.
32933         * modules/crypto/gc-sha1-tests (License): Likewise.
32934         * modules/crypto/gc-tests (License): Likewise.
32935         * modules/crypto/hmac-md5 (License): Likewise.
32936         * modules/crypto/hmac-sha1 (License): Likewise.
32937         * modules/crypto/md2-tests (License): Likewise.
32938         * modules/crypto/md4-tests (License): Likewise.
32939         * modules/crypto/md5 (License): Likewise.
32940         * modules/crypto/rijndael (License): Likewise.
32941         * modules/crypto/sha1 (License): Likewise.
32942         * modules/memxor (License): Likewise.
32943
32944 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
32945         and Bruno Haible  <bruno@clisp.org>
32946
32947         * NEWS: Describe interface changes to human, xstrtol.
32948         * lib/human.h: Include <xstrtol.h>.
32949         (human_options): Return enum strtol_error, not int.  Remove
32950         bool arg; take int * instead.
32951         * lib/human.c: Don't include "gettext.h".
32952         (_): Remove; no longer used.
32953         Don't include <xstrtol.h>, since human.h does it.
32954         (human_options): Adjust to abovementioned interface changes.
32955         Do not report error to stderr; that's now the caller's
32956         responsibility.
32957         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
32958         interface change.
32959         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
32960         Str, Argument_type_string.  All uses changed.  Put " argument"
32961         in diagnostics to make them clearer.  Change wording of suffix
32962         message for clarity.
32963         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
32964         Argument_type_string.
32965         (STRTOL_FATAL_WARN): Remove; no longer used.
32966         * modules/human (Depends-on): Remove gettext-h.
32967
32968 2007-08-06  Simon Josefsson  <simon@josefsson.org>
32969
32970         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
32971
32972 2007-07-31  Bruno Haible  <bruno@clisp.org>
32973
32974         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
32975         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
32976         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
32977
32978 2007-07-31  Bruno Haible  <bruno@clisp.org>
32979
32980         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
32981         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
32982
32983 2007-07-30  Bruno Haible  <bruno@clisp.org>
32984
32985         * modules/base64 (License): Use the synonymous term "LGPLv2+".
32986         * modules/c-ctype (License): Likewise.
32987         * modules/c-strcase (License): Likewise.
32988         * modules/check-version (License): Likewise.
32989         * modules/iconv (License): Likewise.
32990         * modules/iconv_open (License): Likewise.
32991         * modules/read-file (License): Likewise.
32992         * modules/striconv (License): Likewise.
32993         * modules/strverscmp (License): Likewise.
32994         * modules/vasprintf (License): Likewise.
32995         * modules/crypto/des (License): Likewise.
32996         * modules/crypto/gc (License): Likewise.
32997         * modules/crypto/gc-arcfour (License): Likewise.
32998         * modules/crypto/gc-arctwo (License): Likewise.
32999         * modules/crypto/gc-des (License): Likewise.
33000         * modules/crypto/gc-hmac-md5 (License): Likewise.
33001         * modules/crypto/gc-hmac-sha1 (License): Likewise.
33002         * modules/crypto/gc-md2 (License): Likewise.
33003         * modules/crypto/gc-md4 (License): Likewise.
33004         * modules/crypto/gc-md5 (License): Likewise.
33005         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
33006         * modules/crypto/gc-random (License): Likewise.
33007         * modules/crypto/gc-rijndael (License): Likewise.
33008         * modules/crypto/gc-sha1 (License): Likewise.
33009         * modules/crypto/md2 (License): Likewise.
33010         * modules/crypto/md4 (License): Likewise.
33011
33012 2007-07-30  Jim Meyering  <jim@meyering.net>
33013
33014         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
33015         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
33016         it has valid stat data.  This bug would cause du not to count the
33017         sizes of inaccessible directories.
33018         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
33019         in <http://bugzilla.redhat.com/250077>.
33020
33021 2007-07-25  Peter O'Gorman  <peter@pogma.com>
33022             Bruno Haible  <bruno@clisp.org>
33023
33024         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
33025         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
33026         #include_next, gives a diagnostic about it, but reports no error in
33027         the exit code.
33028         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
33029
33030 2007-07-24  Ben Pfaff  <blp@gnu.org>
33031
33032         Improve name: "count-one-bits" is better than "popcount".
33033         * MODULES.html.sh: Update name.
33034         * lib/popcount.h: Renamed lib/count-one-bits.h.
33035         (popcount): Renamed count_one_bits.
33036         (popcountl): Renamed count_one_bits_l.
33037         (popcountll): Renamed count_one_bits_ll.
33038         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
33039         * modules/popcount: Renamed module/count-one-bits.
33040         * modules/popcount-tests: Renamed module/count-one-bits-tests.
33041         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
33042
33043 2007-07-23  Ben Pfaff  <blp@gnu.org>
33044
33045         * lib/popcount.h (popcount32): Reduce size of constants, to allow
33046         better code generation, and add U to large constants to avoid
33047         warnings, in non-GCC case.
33048         Suggested by Bruno Haible.
33049
33050 2007-07-23  Ben Pfaff  <blp@gnu.org>
33051
33052         * lib/popcount.h: Use verify_true instead of if...abort.
33053         * modules/popcount: Depend on verify module.
33054         Suggested by Jim Meyering.
33055
33056 2007-07-23  Bruno Haible  <bruno@clisp.org>
33057
33058         * gnulib-tool (func_import): Create a .cvsignore file also when the
33059         directory is not yet in CVS but the toplevel directory is. When
33060         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
33061         Reported by Karl Berry.
33062
33063 2007-07-22  Ben Pfaff  <blp@gnu.org>
33064
33065         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
33066         case.
33067         Suggested by Eric Blake.
33068
33069 2007-07-22  Ben Pfaff  <blp@gnu.org>
33070
33071         New module: popcount.
33072         * MODULES.html.sh: Add popcount.
33073         * modules/popcount: New file.
33074         * modules/popcount-tests: New file.
33075         * tests/test-popcount.c: New file.
33076         * lib/popcount.h: New file.
33077         * m4/popcount.m4: New file.
33078
33079 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
33080
33081         * build-aux/announce-gen: Update to GPLv3.
33082
33083         * build-aux/config.guess: Update from config.
33084
33085 2007-07-21  Bruno Haible  <bruno@clisp.org>
33086
33087         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
33088         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
33089
33090 2007-07-20  Jim Meyering  <jim@meyering.net>
33091
33092         * check-module: Diagnose a self-dependency.
33093
33094 2007-07-19  Bruno Haible  <bruno@clisp.org>
33095
33096         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
33097         empty.
33098         Reported by Eric Blake.
33099
33100 2007-07-18  Bruno Haible  <bruno@clisp.org>
33101
33102         * gnulib-tool: New options --po-base, --po-domain.
33103         (func_usage): Document them.
33104         (pobase, po_domain): New variables.
33105         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
33106         DEFAULT_TEXT_DOMAIN.
33107         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
33108         (func_import): Consider pobase and po_domain. Create a po/ directory.
33109         (func_create_testdir): Set pobase and po_domain to empty.
33110         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
33111         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
33112
33113 2007-07-18  Bruno Haible  <bruno@clisp.org>
33114
33115         * gnulib-tool (func_get_automake_snippet): Synthesize also an
33116         EXTRA_DIST augmentation for files in build-aux/.
33117
33118 2007-07-16  Bruno Haible  <bruno@clisp.org>
33119
33120         * modules/lseek (License): Use the synonymous term "LGPLv2+".
33121         * modules/getdelim (License): Likewise.
33122
33123 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33124
33125         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
33126         * modules/d-type (License): Likewise.
33127         * modules/extensions (License): Likewise.
33128         * modules/fnmatch (License): Likewise.
33129         * modules/fseeko (License): Likewise.
33130         * modules/getaddrinfo (License): Likewise.
33131         * modules/getline (License): Likewise.
33132         * modules/getlogin_r (License): Likewise.
33133         * modules/getpass (License): Likewise.
33134         * modules/gettimeofday (License): Likewise.
33135         * modules/glob (License): Likewise.
33136         * modules/inet_ntop (License): Likewise.
33137         * modules/malloc (License): Likewise.
33138         * modules/malloca (License): Likewise.
33139         * modules/memmem (License): Likewise.
33140         * modules/mempcpy (License): Likewise.
33141         * modules/memset (License): Likewise.
33142         * modules/minmax (License): Likewise.
33143         * modules/mktime (License): Likewise.
33144         * modules/netinet_in (License): Likewise.
33145         * modules/pathmax (License): Likewise.
33146         * modules/poll (License): Likewise.
33147         * modules/regex (License): Likewise.
33148         * modules/snprintf (License): Likewise.
33149         * modules/stdbool (License): Likewise.
33150         * modules/stdint (License): Likewise.
33151         * modules/stdio (License): Likewise.
33152         * modules/strcase (License): Likewise.
33153         * modules/strcasestr (License): Likewise.
33154         * modules/strdup (License): Likewise.
33155         * modules/string (License): Likewise.
33156         * modules/strndup (License): Likewise.
33157         * modules/strnlen (License): Likewise.
33158         * modules/strpbrk (License): Likewise.
33159         * modules/strptime (License): Likewise.
33160         * modules/strsep (License): Likewise.
33161         * modules/sys_select (License): Likewise.
33162         * modules/sys_socket (License): Likewise.
33163         * modules/sys_stat (License): Likewise.
33164         * modules/sys_time (License): Likewise.
33165         * modules/time (License): Likewise.
33166         * modules/time_r (License): Likewise.
33167         * modules/timegm (License): Likewise.
33168         * modules/unistd (License): Likewise.
33169         * modules/vsnprintf (License): Likewise.
33170         * modules/wctype (License): Likewise.
33171
33172 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33173
33174         * modules/argz (License): LGPLv2+.
33175
33176 2007-07-15  Karl Berry  <karl@gnu.org>
33177
33178         * doc/gnulib.texi: revise node structure per new fdl.texi.
33179
33180 2007-07-14  Bruno Haible  <bruno@clisp.org>
33181
33182         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
33183         the output file.
33184         * lib/uniname/uninames.h: Regenerated.
33185
33186 2007-07-14  Karl Berry  <karl@gnu.org>
33187
33188         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
33189         omitting sectioning and index commands.
33190
33191 2007-07-13  Bruno Haible  <bruno@clisp.org>
33192
33193         New gnulib-tool option --more-symlinks.
33194         * gnulib-tool (func_usage): Document --more-symlinks.
33195         (do_copyrights): New variable.
33196         Recognize option --more-symlinks.
33197         (func_import): Don't add a copyright notice transform to
33198         sed_transform_lib_file if do_copyrights is empty.
33199
33200 2007-07-13  Bruno Haible  <bruno@clisp.org>
33201
33202         * lib/vasnprintf.c (decimal_point_char): Define also if
33203         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
33204         && !NEED_PRINTF_DIRECTIVE_A.
33205         Reported by Clemens Koller <clemens.koller@anagramm.de> via
33206         Gary V. Vaughan <gary@gnu.org>.
33207
33208 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
33209
33210         * lib/inttypes_.h: Undo previous change, since it was fixed
33211         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
33212
33213 2007-07-13  Bruno Haible  <bruno@clisp.org>
33214
33215         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
33216         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
33217
33218 2007-07-13  Jim Meyering  <jim@meyering.net>
33219
33220         df: Don't fail for Tru64's "file-on-file mount".
33221         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
33222         so we fall through and use statfs instead.  Details here:
33223         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
33224         Reported by Albert Chin.
33225
33226 2007-07-13  Bruno Haible  <bruno@clisp.org>
33227
33228         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
33229         * modules/configmake (License): Likewise.
33230         * modules/gettext (License): Likewise.
33231         * modules/gettext-h (License): Likewise.
33232         * modules/include_next (License): Likewise.
33233         * modules/link-warning (License): Likewise.
33234         * modules/localcharset (License): Likewise.
33235         * modules/localename (License): Likewise.
33236         * modules/lock (License): Likewise.
33237         * modules/relocatable-lib-lgpl (License): Likewise.
33238         * modules/size_max (License): Likewise.
33239         * modules/vasnprintf (License): Likewise.
33240         * modules/wchar (License): Likewise.
33241         * modules/xsize (License): Likewise.
33242
33243 2007-07-13  Bruno Haible  <bruno@clisp.org>
33244
33245         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
33246         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
33247
33248 2007-07-12  Bruno Haible  <bruno@clisp.org>
33249
33250         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
33251         in the modules files.
33252
33253 2007-07-11  Karl Berry  <karl@gnu.org>
33254
33255         * MODULES.html.sh (func_module): use
33256          sed -e '\|^'"${includefile}"'$|d'
33257          instead of /.../d, to avoid errors on $includefile's containing /.
33258
33259 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
33260
33261         * gnulib-tool (func_import): Avoid duplication of --avoid
33262         statements
33263         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
33264         names to `_' in variable names.
33265
33266 2007-07-10  Eric Blake  <ebb9@byu.net>
33267
33268         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
33269         * NEWS: Document this change.
33270
33271 2007-07-08  Bruno Haible  <bruno@clisp.org>
33272
33273         Update to Unicode 5.0.
33274         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
33275         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
33276         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
33277         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
33278         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
33279         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
33280         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
33281         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
33282         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
33283         U+10A3F, U+1D242..U+1D244.
33284         (nonspacing_table_ind): Update.
33285         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
33286         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
33287
33288 2007-07-08  Bruno Haible  <bruno@clisp.org>
33289
33290         Update to Unicode 5.0.
33291         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
33292         code transform. Extend the name index field of unicode_name_to_code and
33293         unicode_code_to_name from 16 to 24 bits.
33294         * lib/uniname/uniname.c (unicode_character_name,
33295         unicode_name_character): Add the range 0x12xxx to the code transform.
33296         * lib/uniname/uninames.h: Regenerated.
33297         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
33298
33299 2007-07-07  Bruno Haible  <bruno@clisp.org>
33300
33301         * modules/wcwidth-tests: New file.
33302         * tests/test-wcwidth.c: New file.
33303
33304         Work around MacOS X wcwidth() bug.
33305         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
33306         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
33307         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
33308         original wcwidth in non-UTF-8 locales.
33309         * modules/wcwidth (Depends-on): Add localcharset, streq,
33310         uniwidth/width.
33311         * doc/functions/wcwidth.texi: Update.
33312
33313 2007-07-07  Bruno Haible  <bruno@clisp.org>
33314
33315         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
33316         (wcwidth): New declaration.
33317         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
33318         macros.
33319         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
33320         here. Prepare for creating <wchar.h> unconditionally.
33321         * modules/wchar (Depends-on): Add link-warning.
33322         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
33323         REPLACE_WCWIDTH, and GL_LINK_WARNING.
33324         * lib/wcwidth.h: Remove file.
33325         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
33326         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
33327         * modules/wcwidth (Files): Remove lib/wcwidth.h.
33328         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
33329         (Include): Replace wcwidth.h with <wchar.h>.
33330         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
33331         * lib/mbchar.h: Don't include wcwidth.h.
33332         * lib/mbswidth.c: Likewise.
33333         * NEWS: Mention the change.
33334
33335 2007-07-07  Bruno Haible  <bruno@clisp.org>
33336
33337         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
33338         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
33339         definition with an external declaration.
33340         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
33341         defined as a function. Remove AC_C_INLINE requirement.
33342         * modules/wcwidth (Files): Add lib/wcwidth.c.
33343         (Makefile.am): Remove redundant statement.
33344
33345 2007-07-07  Bruno Haible  <bruno@clisp.org>
33346
33347         * MODULES.html.sh (Unicode string functions): Add the new modules.
33348
33349         * tests/uniwidth/test-u32-strwidth.c: New file.
33350         * modules/uniwidth/u32-strwidth-tests: New file.
33351
33352         * lib/uniwidth/u32-strwidth.c: New file.
33353         * modules/uniwidth/u32-strwidth: New file.
33354
33355         * tests/uniwidth/test-u16-strwidth.c: New file.
33356         * modules/uniwidth/u16-strwidth-tests: New file.
33357
33358         * lib/uniwidth/u16-strwidth.c: New file.
33359         * modules/uniwidth/u16-strwidth: New file.
33360
33361         * tests/uniwidth/test-u8-strwidth.c: New file.
33362         * modules/uniwidth/u8-strwidth-tests: New file.
33363
33364         * lib/uniwidth/u8-strwidth.c: New file.
33365         * modules/uniwidth/u8-strwidth: New file.
33366
33367         * tests/uniwidth/test-u32-width.c: New file.
33368         * modules/uniwidth/u32-width-tests: New file.
33369
33370         * lib/uniwidth/u32-width.c: New file.
33371         * modules/uniwidth/u32-width: New file.
33372
33373         * tests/uniwidth/test-u16-width.c: New file.
33374         * modules/uniwidth/u16-width-tests: New file.
33375
33376         * lib/uniwidth/u16-width.c: New file.
33377         * modules/uniwidth/u16-width: New file.
33378
33379         * tests/uniwidth/test-u8-width.c: New file.
33380         * modules/uniwidth/u8-width-tests: New file.
33381
33382         * lib/uniwidth/u8-width.c: New file.
33383         * modules/uniwidth/u8-width: New file.
33384
33385         * tests/uniwidth/test-uc_width.c: New file.
33386         * modules/uniwidth/width-tests: New file.
33387
33388         * lib/uniwidth/width.c: New file, from GNU libiconv.
33389         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
33390         * modules/uniwidth/width: New file.
33391
33392         * lib/uniwidth.h: New file, from GNU libiconv.
33393         * modules/uniwidth/base: New file.
33394
33395 2007-07-07  Bruno Haible  <bruno@clisp.org>
33396
33397         * lib/uniname.h: New file, from GNU gettext.
33398         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
33399         * lib/uniname/uninames.h: New file, from GNU gettext.
33400         * lib/uniname/uniname.c: New file, from GNU gettext.
33401         * tests/uniname/test-uninames.sh: New file.
33402         * tests/uniname/test-uninames.c: New file, from GNU gettext.
33403         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
33404         * modules/uniname/base: New file.
33405         * modules/uniname/uniname: New file.
33406         * modules/uniname/uniname-tests: New file.
33407         * MODULES.html.sh (Unicode string functions): Add the new modules.
33408
33409 2007-07-06  Bruno Haible  <bruno@clisp.org>
33410
33411         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
33412
33413 2007-07-06  Bruno Haible  <bruno@clisp.org>
33414
33415         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
33416         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
33417         includes <cygwin/sys_time.h> which includes <sys/select.h> which
33418         include <sys/time.h>.
33419         Reported by Eric Blake.
33420
33421 2007-07-06  Eric Blake  <ebb9@byu.net>
33422
33423         Fix testing canonicalize on cygwin.
33424         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
33425         Revert patch from 2007-06-19.
33426         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
33427         canonicalize module is also in use.
33428         * tests/test-canonicalize.c: New file.
33429         * tests/test-canonicalize.sh: Likewise.
33430         * modules/canonicalize-tests: Likewise.
33431
33432 2007-07-06  Jim Meyering  <jim@meyering.net>
33433
33434         * lib/getugroups.c (getugroups): Detect getgrent failure.
33435         Adjust comment to reflect reality: this function may return -1.
33436
33437 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
33438
33439         * build-aux/bootstrap (TP_URL,get_translations): Update to use
33440         the new TP address.
33441         (usage): Fix typo
33442         (gnulib_mk): New variable.
33443
33444 2007-07-05  Jim Meyering  <jim@meyering.net>
33445
33446         Don't let endgrent clobber errno, no matter how improbable.
33447         * lib/getugroups.c (getugroups): Save and restore errno around
33448         endgrent call.
33449
33450         Close the group DB even when failing with 2^31 or more members.
33451         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
33452
33453 2007-07-04  Jim Meyering  <jim@meyering.net>
33454
33455         * lib/getugroups.h: New file.
33456         * lib/getugroups.c: Include "getugroups.h".
33457         Remove uses of "register" keyword.
33458         Move local variable, "cp", down into scope where used.
33459         Give "username" parameter the "const" attribute.
33460         * modules/getugroups (Files): Add lib/getugroups.h
33461
33462 2007-07-04  Karl Berry  <karl@gnu.org>
33463
33464         * MODULES.html.sh (func_all_modules): Complete rename of
33465         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
33466
33467 2007-07-02  Bruno Haible  <bruno@clisp.org>
33468
33469         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
33470         mode, when inttypes.h comes from gnulib.
33471         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
33472
33473 2007-07-02  Simon Josefsson  <simon@josefsson.org>
33474
33475         * NEWS: Mention lgpl module name change.
33476
33477         * modules/lgpl-2.1: Renamed from lgpl.
33478
33479         * NEWS: Mention gpl module name change.
33480
33481         * modules/gpl-3.0: New file, based on gpl-2.0.
33482
33483         * modules/gpl-2.0: Renamed from gpl.
33484
33485         * modules/gpl: Fix filename, doc/gpl.texi is now found at
33486         doc/gpl-2.0.texi.
33487
33488 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
33489
33490         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
33491         #define __STDC_LIMIT_MACROS temporarily while including
33492         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
33493         Problem reported by Joel E. Denny in
33494         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
33495
33496 2007-07-01  Bruno Haible  <bruno@clisp.org>
33497
33498         * lib/unistdio.h: New file.
33499         * lib/unistdio/u-asnprintf.h: New file.
33500         * lib/unistdio/u-asprintf.h: New file.
33501         * lib/unistdio/u-printf-args.c: New file.
33502         * lib/unistdio/u-printf-args.h: New file.
33503         * lib/unistdio/u-printf-parse.h: New file.
33504         * lib/unistdio/u-snprintf.h: New file.
33505         * lib/unistdio/u-sprintf.h: New file.
33506         * lib/unistdio/u-vasprintf.h: New file.
33507         * lib/unistdio/u-vsnprintf.h: New file.
33508         * lib/unistdio/u-vsprintf.h: New file.
33509         * lib/unistdio/ulc-asnprintf.c: New file.
33510         * lib/unistdio/ulc-asprintf.c: New file.
33511         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
33512         * lib/unistdio/ulc-printf-parse.c: New file.
33513         * lib/unistdio/ulc-snprintf.c: New file.
33514         * lib/unistdio/ulc-sprintf.c: New file.
33515         * lib/unistdio/ulc-vasnprintf.c: New file.
33516         * lib/unistdio/ulc-vasprintf.c: New file.
33517         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
33518         * lib/unistdio/ulc-vsnprintf.c: New file.
33519         * lib/unistdio/ulc-vsprintf.c: New file.
33520         * lib/unistdio/u8-asnprintf.c: New file.
33521         * lib/unistdio/u8-asprintf.c: New file.
33522         * lib/unistdio/u8-printf-parse.c: New file.
33523         * lib/unistdio/u8-snprintf.c: New file.
33524         * lib/unistdio/u8-sprintf.c: New file.
33525         * lib/unistdio/u8-vasnprintf.c: New file.
33526         * lib/unistdio/u8-vasprintf.c: New file.
33527         * lib/unistdio/u8-vsnprintf.c: New file.
33528         * lib/unistdio/u8-vsprintf.c: New file.
33529         * lib/unistdio/u8-u8-asnprintf.c: New file.
33530         * lib/unistdio/u8-u8-asprintf.c: New file.
33531         * lib/unistdio/u8-u8-snprintf.c: New file.
33532         * lib/unistdio/u8-u8-sprintf.c: New file.
33533         * lib/unistdio/u8-u8-vasnprintf.c: New file.
33534         * lib/unistdio/u8-u8-vasprintf.c: New file.
33535         * lib/unistdio/u8-u8-vsnprintf.c: New file.
33536         * lib/unistdio/u8-u8-vsprintf.c: New file.
33537         * lib/unistdio/u16-asnprintf.c: New file.
33538         * lib/unistdio/u16-asprintf.c: New file.
33539         * lib/unistdio/u16-printf-parse.c: New file.
33540         * lib/unistdio/u16-snprintf.c: New file.
33541         * lib/unistdio/u16-sprintf.c: New file.
33542         * lib/unistdio/u16-vasnprintf.c: New file.
33543         * lib/unistdio/u16-vasprintf.c: New file.
33544         * lib/unistdio/u16-vsnprintf.c: New file.
33545         * lib/unistdio/u16-vsprintf.c: New file.
33546         * lib/unistdio/u16-u16-asnprintf.c: New file.
33547         * lib/unistdio/u16-u16-asprintf.c: New file.
33548         * lib/unistdio/u16-u16-snprintf.c: New file.
33549         * lib/unistdio/u16-u16-sprintf.c: New file.
33550         * lib/unistdio/u16-u16-vasnprintf.c: New file.
33551         * lib/unistdio/u16-u16-vasprintf.c: New file.
33552         * lib/unistdio/u16-u16-vsnprintf.c: New file.
33553         * lib/unistdio/u16-u16-vsprintf.c: New file.
33554         * lib/unistdio/u32-asnprintf.c: New file.
33555         * lib/unistdio/u32-asprintf.c: New file.
33556         * lib/unistdio/u32-printf-parse.c: New file.
33557         * lib/unistdio/u32-snprintf.c: New file.
33558         * lib/unistdio/u32-sprintf.c: New file.
33559         * lib/unistdio/u32-vasnprintf.c: New file.
33560         * lib/unistdio/u32-vasprintf.c: New file.
33561         * lib/unistdio/u32-vsnprintf.c: New file.
33562         * lib/unistdio/u32-vsprintf.c: New file.
33563         * lib/unistdio/u32-u32-asnprintf.c: New file.
33564         * lib/unistdio/u32-u32-asprintf.c: New file.
33565         * lib/unistdio/u32-u32-snprintf.c: New file.
33566         * lib/unistdio/u32-u32-sprintf.c: New file.
33567         * lib/unistdio/u32-u32-vasnprintf.c: New file.
33568         * lib/unistdio/u32-u32-vasprintf.c: New file.
33569         * lib/unistdio/u32-u32-vsnprintf.c: New file.
33570         * lib/unistdio/u32-u32-vsprintf.c: New file.
33571         * tests/unistdio/test-ulc-asnprintf1.c: New file.
33572         * tests/unistdio/test-ulc-asnprintf1.h: New file.
33573         * tests/unistdio/test-ulc-printf1.h: New file.
33574         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
33575         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
33576         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
33577         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
33578         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
33579         * tests/unistdio/test-ulc-vasprintf1.c: New file.
33580         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
33581         * tests/unistdio/test-ulc-vsprintf1.c: New file.
33582         * tests/unistdio/test-u8-asnprintf1.c: New file.
33583         * tests/unistdio/test-u8-asnprintf1.h: New file.
33584         * tests/unistdio/test-u8-printf1.h: New file.
33585         * tests/unistdio/test-u8-vasnprintf1.c: New file.
33586         * tests/unistdio/test-u8-vasnprintf2.c: New file.
33587         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
33588         * tests/unistdio/test-u8-vasnprintf3.c: New file.
33589         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
33590         * tests/unistdio/test-u8-vasprintf1.c: New file.
33591         * tests/unistdio/test-u8-vsnprintf1.c: New file.
33592         * tests/unistdio/test-u8-vsprintf1.c: New file.
33593         * tests/unistdio/test-u16-asnprintf1.c: New file.
33594         * tests/unistdio/test-u16-asnprintf1.h: New file.
33595         * tests/unistdio/test-u16-printf1.h: New file.
33596         * tests/unistdio/test-u16-vasnprintf1.c: New file.
33597         * tests/unistdio/test-u16-vasnprintf2.c: New file.
33598         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
33599         * tests/unistdio/test-u16-vasnprintf3.c: New file.
33600         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
33601         * tests/unistdio/test-u16-vasprintf1.c: New file.
33602         * tests/unistdio/test-u16-vsnprintf1.c: New file.
33603         * tests/unistdio/test-u16-vsprintf1.c: New file.
33604         * tests/unistdio/test-u32-asnprintf1.c: New file.
33605         * tests/unistdio/test-u32-asnprintf1.h: New file.
33606         * tests/unistdio/test-u32-printf1.h: New file.
33607         * tests/unistdio/test-u32-vasnprintf1.c: New file.
33608         * tests/unistdio/test-u32-vasnprintf2.c: New file.
33609         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
33610         * tests/unistdio/test-u32-vasnprintf3.c: New file.
33611         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
33612         * tests/unistdio/test-u32-vasprintf1.c: New file.
33613         * tests/unistdio/test-u32-vsnprintf1.c: New file.
33614         * tests/unistdio/test-u32-vsprintf1.c: New file.
33615         * modules/unistdio/base: New file.
33616         * modules/unistdio/u-printf-args: New file.
33617         * modules/unistdio/ulc-asnprintf: New file.
33618         * modules/unistdio/ulc-asprintf: New file.
33619         * modules/unistdio/ulc-fprintf: New file.
33620         * modules/unistdio/ulc-printf-parse: New file.
33621         * modules/unistdio/ulc-snprintf: New file.
33622         * modules/unistdio/ulc-sprintf: New file.
33623         * modules/unistdio/ulc-vasnprintf: New file.
33624         * modules/unistdio/ulc-vasprintf: New file.
33625         * modules/unistdio/ulc-vfprintf: New file.
33626         * modules/unistdio/ulc-vsnprintf: New file.
33627         * modules/unistdio/ulc-vsprintf: New file.
33628         * modules/unistdio/u8-asnprintf: New file.
33629         * modules/unistdio/u8-asprintf: New file.
33630         * modules/unistdio/u8-printf-parse: New file.
33631         * modules/unistdio/u8-snprintf: New file.
33632         * modules/unistdio/u8-sprintf: New file.
33633         * modules/unistdio/u8-vasnprintf: New file.
33634         * modules/unistdio/u8-vasprintf: New file.
33635         * modules/unistdio/u8-vsnprintf: New file.
33636         * modules/unistdio/u8-vsprintf: New file.
33637         * modules/unistdio/u8-u8-asnprintf: New file.
33638         * modules/unistdio/u8-u8-asprintf: New file.
33639         * modules/unistdio/u8-u8-snprintf: New file.
33640         * modules/unistdio/u8-u8-sprintf: New file.
33641         * modules/unistdio/u8-u8-vasnprintf: New file.
33642         * modules/unistdio/u8-u8-vasprintf: New file.
33643         * modules/unistdio/u8-u8-vsnprintf: New file.
33644         * modules/unistdio/u8-u8-vsprintf: New file.
33645         * modules/unistdio/u16-asnprintf: New file.
33646         * modules/unistdio/u16-asprintf: New file.
33647         * modules/unistdio/u16-printf-parse: New file.
33648         * modules/unistdio/u16-snprintf: New file.
33649         * modules/unistdio/u16-sprintf: New file.
33650         * modules/unistdio/u16-vasnprintf: New file.
33651         * modules/unistdio/u16-vasprintf: New file.
33652         * modules/unistdio/u16-vsnprintf: New file.
33653         * modules/unistdio/u16-vsprintf: New file.
33654         * modules/unistdio/u16-u16-asnprintf: New file.
33655         * modules/unistdio/u16-u16-asprintf: New file.
33656         * modules/unistdio/u16-u16-snprintf: New file.
33657         * modules/unistdio/u16-u16-sprintf: New file.
33658         * modules/unistdio/u16-u16-vasnprintf: New file.
33659         * modules/unistdio/u16-u16-vasprintf: New file.
33660         * modules/unistdio/u16-u16-vsnprintf: New file.
33661         * modules/unistdio/u16-u16-vsprintf: New file.
33662         * modules/unistdio/u32-asnprintf: New file.
33663         * modules/unistdio/u32-asprintf: New file.
33664         * modules/unistdio/u32-printf-parse: New file.
33665         * modules/unistdio/u32-snprintf: New file.
33666         * modules/unistdio/u32-sprintf: New file.
33667         * modules/unistdio/u32-vasnprintf: New file.
33668         * modules/unistdio/u32-vasprintf: New file.
33669         * modules/unistdio/u32-vsnprintf: New file.
33670         * modules/unistdio/u32-vsprintf: New file.
33671         * modules/unistdio/u32-u32-asnprintf: New file.
33672         * modules/unistdio/u32-u32-asprintf: New file.
33673         * modules/unistdio/u32-u32-snprintf: New file.
33674         * modules/unistdio/u32-u32-sprintf: New file.
33675         * modules/unistdio/u32-u32-vasnprintf: New file.
33676         * modules/unistdio/u32-u32-vasprintf: New file.
33677         * modules/unistdio/u32-u32-vsnprintf: New file.
33678         * modules/unistdio/u32-u32-vsprintf: New file.
33679         * modules/unistdio/ulc-asnprintf-tests: New file.
33680         * modules/unistdio/ulc-vasnprintf-tests: New file.
33681         * modules/unistdio/ulc-vasprintf-tests: New file.
33682         * modules/unistdio/ulc-vsnprintf-tests: New file.
33683         * modules/unistdio/ulc-vsprintf-tests: New file.
33684         * modules/unistdio/u8-asnprintf-tests: New file.
33685         * modules/unistdio/u8-vasnprintf-tests: New file.
33686         * modules/unistdio/u8-vasprintf-tests: New file.
33687         * modules/unistdio/u8-vsnprintf-tests: New file.
33688         * modules/unistdio/u8-vsprintf-tests: New file.
33689         * modules/unistdio/u16-asnprintf-tests: New file.
33690         * modules/unistdio/u16-vasnprintf-tests: New file.
33691         * modules/unistdio/u16-vasprintf-tests: New file.
33692         * modules/unistdio/u16-vsnprintf-tests: New file.
33693         * modules/unistdio/u16-vsprintf-tests: New file.
33694         * modules/unistdio/u32-asnprintf-tests: New file.
33695         * modules/unistdio/u32-vasnprintf-tests: New file.
33696         * modules/unistdio/u32-vasprintf-tests: New file.
33697         * modules/unistdio/u32-vsnprintf-tests: New file.
33698         * modules/unistdio/u32-vsprintf-tests: New file.
33699         * MODULES.html.sh (Unicode string functions): Add the new modules.
33700
33701 2007-07-01  Bruno Haible  <bruno@clisp.org>
33702
33703         * lib/sprintf.c (sprintf): Limit the available length estimation,
33704         to avoid address wraparound.
33705         * lib/vsprintf.c (vsprintf): Likewise.
33706         * modules/sprintf-posix (Dependencies): Add stdint.
33707         * modules/vsprintf-posix (Dependencies): Likewise.
33708
33709 2007-07-01  Bruno Haible  <bruno@clisp.org>
33710
33711         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
33712         Windows PATH as well. Conservative double-quoting. Comments.
33713
33714 2007-07-01  Bruno Haible  <bruno@clisp.org>
33715             Eric Blake  <ebb9@byu.net>
33716             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33717
33718         * gnulib-tool (self_abspathname): Fix algorithm to cope with
33719         empty components in $PATH, denoting '.'.
33720
33721 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33722
33723         * gnulib-tool: Fix indentation.
33724         (func_create_megatestdir): Likewise.
33725         Report by Bruno Haible.
33726
33727 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33728
33729         Sync from Automake.
33730         * build-aux/gnupload: Fix shell portability issues with for loops.
33731         Report by Karl Berry.
33732
33733 2007-06-29  Simon Josefsson  <simon@josefsson.org>
33734
33735         * build-aux/maint.mk (POURL): Use translationproject.org.
33736
33737 2007-06-27  Simon Josefsson  <simon@josefsson.org>
33738             Bruno Haible  <bruno@clisp.org>
33739
33740         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
33741         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
33742         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
33743         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
33744         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
33745
33746 2007-06-27  Bruno Haible  <bruno@clisp.org>
33747
33748         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
33749         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
33750
33751 2007-06-26  Karl Berry  <karl@gnu.org>
33752
33753         * MODULES.html.sh: remove xreadlink-with-size.
33754
33755 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33756
33757         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
33758         method that I hope also handles the double-include problem noted
33759         by Bruno Haible in
33760         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
33761
33762 2007-06-23  Bruno Haible  <bruno@clisp.org>
33763
33764         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
33765         Don't let the 'mostlyclean' target fail if the last subdirectory could
33766         not be removed.
33767         Reported by Karl Berry.
33768
33769 2007-06-23  Bruno Haible  <bruno@clisp.org>
33770
33771         * gnulib-tool (echo): Add a speedier workaround for ksh.
33772         * tests/test-echo.sh: Likewise.
33773
33774 2007-06-23  Bruno Haible  <bruno@clisp.org>
33775
33776         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
33777         * tests/test-echo.sh: Likewise.
33778
33779 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33780
33781         * gnulib-tool (IFS): Initialize early, so we don't set it to
33782         empty later.
33783         (self_abspathname): Rewrite algorithm to set it, reindent.
33784         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
33785         (func_create_megatestdir): Merge some sed scripts.
33786
33787 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
33788
33789         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
33790         exposed by Sun Studio 11 cc on Solaris 8.
33791
33792 2007-06-22  Bruno Haible  <bruno@clisp.org>
33793
33794         * gnulib-tool (echo): Ensure the echo primitive does not interpret
33795         backslashes.
33796         * tests/test-echo.sh: New file.
33797
33798 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33799
33800         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
33801         simplify `sed_replace_build_aux' scripts, they are portable but
33802         echoing them with `echo' is not.
33803         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
33804
33805 2007-06-21  Karl Berry  <karl@gnu.org>
33806
33807         * config/srclist.txt: guess we can't handle the licenses via
33808         srclist at the moment.
33809
33810 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
33811
33812         * MODULES.html.sh: Add include_next.
33813         * modules/include_next: New file.
33814
33815 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
33816
33817         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
33818         INCLUDE_NEXT.
33819         (gl_CHECK_NEXT_HEADERS): New macro.
33820         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
33821         the obsolescent gl_ABSOLUTE_HEADER.
33822         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
33823         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
33824         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
33825         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
33826         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
33827         * m4/math_h.m4 (gl_MATH_H): Likewise.
33828         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
33829         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
33830         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
33831         * m4/stdint.m4 (gl_STDINT_H): Likewise.
33832         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
33833         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
33834         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
33835         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
33836         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
33837         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
33838         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
33839         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
33840         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
33841         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
33842         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
33843         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33844         * m4/inttypes.m4 (gl_INTTYPES_H): Define
33845         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
33846         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
33847         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
33848         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
33849         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
33850         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
33851         * lib/float_.h: Likewise.
33852         * lib/inttypes_.h: Likewise.
33853         * lib/math_.h: Likewise.
33854         * lib/search_.h: Likewise.
33855         * lib/signal_.h: Likewise.
33856         * lib/stdint_.h: Likewise.
33857         * lib/stdio_.h: Likewise.
33858         * lib/stdlib_.h: Likewise.
33859         * lib/string_.h: Likewise.
33860         * lib/sys_stat_.h: Likewise.
33861         * lib/sys_time_.h: Likewise.
33862         * lib/time_.h: Likewise.
33863         * lib/unistd_.h: Likewise.
33864         * lib/wchar_.h: Likewise.
33865         * lib/wctype_.h: Likewise.
33866         * lib/dirent_.h: Likewise.
33867         * lib/iconv_.h: Likewise.
33868         * lib/locale_.h: Likewise.
33869         * lib/netinet_in_.h: Likewise.
33870         * lib/sys_select_.h: Likewise.
33871         * lib/sys_socket_.h: Likewise.
33872         * lib/sysexits_.h: Likewise.
33873         * modules/fcntl (Depends-on): Depend on include_next, not
33874         absolute_header.
33875         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
33876         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
33877         * modules/fchdir: Likewise.
33878         * modules/float: Likewise.
33879         * modules/iconv_open: Likewise.
33880         * modules/inttypes: Likewise.
33881         * modules/locale: Likewise.
33882         * modules/math: Likewise.
33883         * modules/netinet_in: Likewise.
33884         * modules/search: Likewise.
33885         * modules/signal: Likewise.
33886         * modules/stdint: Likewise.
33887         * modules/stdio: Likewise.
33888         * modules/stdlib: Likewise.
33889         * modules/string: Likewise.
33890         * modules/sys_select: Likewise.
33891         * modules/sys_socket: Likewise.
33892         * modules/sys_stat: Likewise.
33893         * modules/sys_time: Likewise.
33894         * modules/sysexits: Likewise.
33895         * modules/time: Likewise.
33896         * modules/unistd: Likewise.
33897         * modules/wchar: Likewise.
33898         * modules/wctype: Likewise.
33899         * modules/sys_stat: Change maintainer to "all".
33900         * modules/unistd: Likewise.
33901
33902 2007-06-20  Karl Berry  <karl@gnu.org>
33903
33904         * config/srclist.txt: track www changes in license files.
33905
33906 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
33907
33908         * build-aux/bootstrap: Remove stray dot.
33909         Make sure build_aux settings are honored when linking
33910         gnulib_extra_files.
33911
33912 2007-06-19  Eric Blake  <ebb9@byu.net>
33913
33914         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
33915         Allow compilation on cygwin.
33916
33917 2007-06-19  Jim Meyering  <jim@meyering.net>
33918
33919         xreadlink-with-size: Remove module.  No longer used.
33920         Ex-callers now use xreadlink or mreadlink-with-size.
33921         * modules/xreadlink-with-size: Remove module.
33922         * lib/xreadlink-with-size.c: Remove file.
33923         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
33924         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
33925         just before the function definition *is* accurate.
33926
33927         Eliminate one way canonicalize_filename_mode could exit.
33928         * lib/canonicalize.c (canonicalize_filename_mode):
33929         Use mreadlink_with_size, not xreadlink_with_size.
33930
33931 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
33932
33933         Detect porting problems to FreeBSD/arm, which has time_t wider than
33934         long int.  Original problem reported for GNU diff by Xin Li in
33935         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
33936         * modules/getdate (Depends-on): Add intprops, verify.
33937         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
33938         is an integer type no wider than long int.
33939
33940 2007-06-18  Jim Meyering  <jim@meyering.net>
33941
33942         New module: mreadlink-with-size.
33943         * MODULES.html.sh: Add mreadlink-with-size.
33944         * modules/mreadlink-with-size: New module
33945         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
33946         not xreadlink-with-size.
33947         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
33948
33949 2007-06-16  Bruno Haible  <bruno@clisp.org>
33950
33951         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
33952         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
33953         Reported by Gary V. Vaughan <gary@gnu.org>.
33954
33955 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
33956
33957         Revamp lchown so that it lives in unistd.h where it belongs.
33958         * lib/lchown.h: Remove.
33959         * lib/dirchownmod.c: Don't include lib/lchown.h.
33960         * lib/fchownat.c: Likewise.
33961         * lib/openat.c: Likewise.
33962         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
33963         does not follow symlinks.
33964         (EOPNOTSUPP): Define if not defined.
33965         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
33966         is defined to 0.
33967         (lchown): New decl.
33968         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
33969         Do not check for lchown decl.
33970         Set REPLACE_LCHOWN.
33971         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
33972         REPLACE_LCHOWN.
33973         * modules/chown: Make it clear it follows symlinks.
33974         * modules/lchown: Make it clear it doesn't follow symlinks.
33975         (Files): Remove lib/lchown.h
33976         (Depends-on): Add unistd.
33977         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
33978         (Include): Include <unistd.h>, not "lchown.h".
33979         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
33980         REPLACE_LCHOWN.
33981
33982 2007-06-15  Jim Meyering  <jim@meyering.net>
33983
33984         Change license (GPL to LGPL) of fsusage and dependents.
33985         * modules/fsusage (License): Change to LGPL.
33986         * modules/full-read (License): Likewise.
33987         * modules/full-write (License): Likewise.
33988         * modules/safe-read (License): Likewise.
33989         * modules/safe-write (License): Likewise.
33990
33991 2007-06-14  Ben Pfaff  <blp@gnu.org>
33992
33993         Missing part of allocsa -> malloca transition.
33994         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
33995         gl_MALLOCA.
33996
33997 2007-06-12  Bruno Haible  <bruno@clisp.org>
33998
33999         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
34000         to ia64, x86_64, i386.
34001         Reported by Eric Blake.
34002
34003 2007-06-12  Bruno Haible  <bruno@clisp.org>
34004
34005         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
34006         cross-compiling to x86_64.
34007
34008 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
34009
34010         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
34011         glitch reported by Ralf Wildenhues in
34012         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
34013
34014         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
34015         Vin Shelton.
34016
34017 2007-06-11  Bruno Haible  <bruno@clisp.org>
34018
34019         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
34020         replacement string.
34021         Reported by Eric Blake.
34022
34023 2007-06-10  Bruno Haible  <bruno@clisp.org>
34024
34025         Prepare vasnprintf code for use with Unicode strings.
34026         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
34027         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
34028         TYPE_U32_STRING.
34029         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
34030         a_u32_string variants.
34031         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
34032         * lib/printf-args.c: Don't include config.h and the specification
34033         header if PRINTF_FETCHARGS is already defined.
34034         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
34035         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
34036         TYPE_U16_STRING, TYPE_U32_STRING.
34037         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
34038         u16_directive, u16_directives, u32_directive, u32_directives): New
34039         types.
34040         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
34041         New declarations.
34042         * lib/printf-parse.c: Don't include config.h and the specification
34043         header if PRINTF_PARSE is already defined. Eliminate the set of
34044         parameters for WIDE_CHAR_VERSION; the user of this file must provide
34045         them now. Include c-ctype.h.
34046         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
34047         directive and CHAR_T_ONLY_ASCII.
34048         * lib/vasnprintf.c: Don't include config.h and the specification header
34049         if VASNPRINTF is already defined.
34050         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
34051         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
34052         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
34053         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
34054         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
34055         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
34056         code accordingly.
34057         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
34058         pad_ourselves also in this case, with the 'c' and 's' directives, and
34059         with a different notion of "width".
34060         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
34061
34062 2007-06-10  Bruno Haible  <bruno@clisp.org>
34063
34064         * modules/unistr/u32-mbsnlen: New file.
34065         * lib/unistr/u32-mbsnlen.c: New file.
34066
34067         * modules/unistr/u16-mbsnlen: New file.
34068         * lib/unistr/u16-mbsnlen.c: New file.
34069
34070         * modules/unistr/u8-mbsnlen: New file.
34071         * lib/unistr/u8-mbsnlen.c: New file.
34072
34073         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
34074         declarations.
34075
34076 2007-06-10  Bruno Haible  <bruno@clisp.org>
34077
34078         * lib/string_.h (mbsnlen): New declaration.
34079         * lib/mbsnlen.c: New file.
34080         * m4/mbsnlen.m4: New file.
34081         * modules/mbsnlen: New file.
34082         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
34083         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
34084         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
34085
34086 2007-06-10  Bruno Haible  <bruno@clisp.org>
34087
34088         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
34089
34090 2007-06-10  Bruno Haible  <bruno@clisp.org>
34091
34092         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
34093         * lib/mbuiter.h: Likewise.
34094
34095 2007-06-10  Bruno Haible  <bruno@clisp.org>
34096
34097         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
34098         declaration.
34099
34100 2007-06-10  Karl Berry  <karl@gnu.org>
34101
34102         * config/srclist.txt: remove gettext entries, Bruno prefers
34103         to update individually.
34104
34105 2007-06-10  Bruno Haible  <bruno@clisp.org>
34106
34107         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
34108         'maxlen'. Ensure only length + width bytes are allocated, not
34109         length + 1 + width.
34110
34111 2007-06-09  Bruno Haible  <bruno@clisp.org>
34112
34113         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
34114         (CHAR_T): Remove macro.
34115         (VASNPRINTF): Update.
34116
34117 2007-06-09  Bruno Haible  <bruno@clisp.org>
34118
34119         * MODULES.html.sh (Unicode string functions): Add the new modules.
34120
34121         * modules/uniconv/u32-conv-to-enc: New file.
34122         * lib/uniconv/u32-conv-to-enc.c: New file.
34123         * modules/uniconv/u32-conv-to-enc-tests: New file.
34124         * tests/uniconv/test-u32-conv-to-enc.c: New file.
34125
34126         * modules/uniconv/u16-conv-to-enc: New file.
34127         * lib/uniconv/u16-conv-to-enc.c: New file.
34128         * lib/uniconv/u-conv-to-enc.h: New file.
34129         * modules/uniconv/u16-conv-to-enc-tests: New file.
34130         * tests/uniconv/test-u16-conv-to-enc.c: New file.
34131
34132         * modules/uniconv/u8-conv-to-enc: New file.
34133         * lib/uniconv/u8-conv-to-enc.c: New file.
34134         * modules/uniconv/u8-conv-to-enc-tests: New file.
34135         * tests/uniconv/test-u8-conv-to-enc.c: New file.
34136
34137         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
34138         u32_conv_to_encoding): New declarations.
34139
34140 2007-06-09  Bruno Haible  <bruno@clisp.org>
34141
34142         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
34143
34144 2007-06-09  Bruno Haible  <bruno@clisp.org>
34145
34146         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
34147         * modules/malloca: Renamed from modules/allocsa, updated.
34148         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
34149         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
34150         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
34151         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
34152         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
34153         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
34154         * modules/xmalloca: Renamed from modules/xallocsa, updated.
34155         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
34156         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
34157         * modules/c-strcasestr (Depends-on): Update.
34158         * lib/c-strcasestr.c: Update.
34159         * modules/c-strstr (Depends-on): Update.
34160         * lib/c-strstr.c: Update.
34161         * modules/canonicalize-lgpl (Depends-on): Update.
34162         * lib/canonicalize-lgpl.c: Update.
34163         * modules/clean-temp (Depends-on): Update.
34164         * lib/clean-temp.c: Update.
34165         * modules/csharpcomp (Depends-on): Update.
34166         * lib/csharpcomp.c: Update.
34167         * modules/csharpexec (Depends-on): Update.
34168         * lib/csharpexec.c: Update.
34169         * modules/javacomp (Depends-on): Update.
34170         * lib/javacomp.c: Update.
34171         * modules/javaexec (Depends-on): Update.
34172         * lib/javaexec.c: Update.
34173         * modules/mbscasestr (Depends-on): Update.
34174         * lib/mbscasestr.c: Update.
34175         * modules/mbsstr (Depends-on): Update.
34176         * lib/mbsstr.c: Update.
34177         * modules/setenv (Depends-on): Update.
34178         * lib/setenv.c: Update.
34179         * modules/strcasestr (Depends-on): Update.
34180         * lib/strcasestr.c: Update.
34181         * modules/striconveha (Depends-on): Update.
34182         * lib/striconveha.c: Update.
34183         * modules/relocatable-prog-wrapper (Files): Update.
34184         * lib/relocwrapper.c: Update.
34185         * build-aux/install-reloc: Update.
34186         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
34187
34188 2007-06-08  Bruno Haible  <bruno@clisp.org>
34189
34190         Port to uClibc.
34191         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
34192         * lib/fpurge.c (fpurge): Likewise.
34193         * lib/freading.c (freading): Likewise.
34194         * lib/fseeko.c (rpl_fseeko): Likewise.
34195         * lib/fseterr.c (fseterr): Likewise.
34196         * lib/fwriting.c (fwriting): Likewise.
34197         * tests/test-fflush.c (main): Avoid a failure on uClibc.
34198
34199 2007-06-08  Bruno Haible  <bruno@clisp.org>
34200
34201         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
34202         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
34203         * modules/gettext (Files): Add m4/intlmacosx.m4.
34204
34205 2007-06-07  Bruno Haible  <bruno@clisp.org>
34206
34207         * modules/localename-tests: New file.
34208         * tests/test-localename.c: New file.
34209
34210         New module 'localename'.
34211         * lib/localename.h: New file.
34212         * lib/localename.c: New file, from GNU gettext.
34213         * m4/localename.m4: New file.
34214         * modules/localename: New file.
34215
34216 2007-06-07  Bruno Haible  <bruno@clisp.org>
34217
34218         Work around the lack of <wchar.h> on some builds of uClibc.
34219         * doc/headers/wchar.texi: Update.
34220         * lib/wchar_.h: Include <wchar.h> only if it exists.
34221         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
34222         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
34223         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
34224         doesn't exist.
34225         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
34226         * modules/mbfile (Depends-on): Add wchar.
34227         * modules/mbiter (Depends-on): Likewise.
34228         * modules/mbuiter (Depends-on): Likewise.
34229         Reported by Simon Josefsson.
34230
34231 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
34232
34233         Work around problem reported by Steven M. Schweda in
34234         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
34235         Tru64 5.1B with the Compaq compiler environment installed declares
34236         an 'isblank' function but does not define it in the C library.
34237         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
34238         * lib/regex_internal.h (isblank): Likewise.
34239         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
34240         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
34241
34242 2007-06-05  Bruno Haible  <bruno@clisp.org>
34243
34244         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
34245         ia64.
34246         * modules/printf-safe: New file.
34247         * modules/fprintf-posix (Depends-on): Add printf-safe.
34248         * modules/printf-posix (Depends-on): Likewise.
34249         * modules/snprintf-posix (Depends-on): Likewise.
34250         * modules/sprintf-posix (Depends-on): Likewise.
34251         * modules/vasnprintf-posix (Depends-on): Likewise.
34252         * modules/vasprintf-posix (Depends-on): Likewise.
34253         * modules/vfprintf-posix (Depends-on): Likewise.
34254         * modules/vprintf-posix (Depends-on): Likewise.
34255         * modules/vsnprintf-posix (Depends-on): Likewise.
34256         * modules/vsprintf-posix (Depends-on): Likewise.
34257         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
34258         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
34259         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
34260         "no" on i386, x86_64, ia64.
34261         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
34262         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
34263         on i386, x86_64, ia64.
34264         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
34265         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
34266         on i386, x86_64, ia64.
34267         * tests/test-vasnprintf-posix.c: Include float.h.
34268         (LDBL80_WORDS): New macro.
34269         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
34270         on i386, x86_64, ia64.
34271         * tests/test-vasprintf-posix.c: Include float.h.
34272         (LDBL80_WORDS): New macro.
34273         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
34274         on i386, x86_64, ia64.
34275         * tests/test-snprintf-posix.c: Include float.h.
34276         * tests/test-sprintf-posix.c: Likewise.
34277         * tests/test-vsnprintf-posix.c: Likewise.
34278         * tests/test-vsprintf-posix.c: Likewise.
34279
34280 2007-06-05  Bruno Haible  <bruno@clisp.org>
34281
34282         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
34283         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
34284         non-IEEE numbers on i386, x86_64, ia64.
34285         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
34286         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
34287         * tests/test-isnanl.h: Include float.h.
34288         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
34289
34290 2007-06-05  Bruno Haible  <bruno@clisp.org>
34291
34292         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
34293         also the %a / %A. Handle the %a / %A code before this extra handling.
34294
34295 2007-06-05  Bruno Haible  <bruno@clisp.org>
34296
34297         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
34298         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
34299
34300 2007-06-05  Bruno Haible  <bruno@clisp.org>
34301
34302         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
34303         typo in variable name.
34304
34305 2007-06-05  Eric Blake  <ebb9@byu.net>
34306
34307         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
34308         Reported by Simon Josefsson.
34309
34310 2007-06-04  Bruno Haible  <bruno@clisp.org>
34311
34312         Avoid test failures on some PowerPC platforms.
34313         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
34314         Define differently for PowerPC.
34315         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
34316         Reported by Gary V. Vaughan <gary@gnu.org>.
34317
34318 2007-06-02  Bruno Haible  <bruno@clisp.org>
34319
34320         Fix test-stdint failure on FreeBSD/ia64.
34321         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
34322         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
34323         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
34324         * doc/headers/stdint.texi: Update.
34325
34326 2007-06-01  Bruno Haible  <bruno@clisp.org>
34327
34328         * tests/test-binary-io.c (main): Pass a third argument to open().
34329         Reported by Gary V. Vaughan <gary@gnu.org>.
34330
34331 2007-06-01  Bruno Haible  <bruno@clisp.org>
34332
34333         * doc/functions/frexpl.texi: Update for mingw.
34334
34335 2007-06-01  Bruno Haible  <bruno@clisp.org>
34336
34337         * tests/test-lseek.c (main): Disable test of errno for invalid third
34338         argument.
34339         * doc/functions/lseek.texi: Update.
34340         Reported by Gary V. Vaughan <gary@gnu.org>.
34341
34342 2007-05-28  Bruno Haible  <bruno@clisp.org>
34343
34344         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
34345
34346 2007-05-31  Eric Blake  <ebb9@byu.net>
34347
34348         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
34349         cross compiling.
34350
34351 2007-05-30  Eric Blake  <ebb9@byu.net>
34352         and Bruno Haible  <bruno@clisp.org>
34353
34354         Work around mingw test failures exposed by m4-1.4.9b.
34355         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
34356         * tests/test-unistd.c: Disable uid_t and git_t tests for the
34357         moment.
34358
34359 2007-05-30  Bruno Haible  <bruno@clisp.org>
34360
34361         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
34362         assuming that they are closed. Needed on HP-UX 11.
34363
34364 2007-05-29  Bruno Haible  <bruno@clisp.org>
34365
34366         Fix a problem with #include_next.
34367         * lib/dirent_.h: Split the double-inclusion guard.
34368         * lib/fcntl_.h: Likewise.
34369         * lib/float_.h: Likewise.
34370         * lib/iconv_.h: Likewise.
34371         * lib/inttypes_.h: Likewise.
34372         * lib/locale_.h: Likewise.
34373         * lib/math_.h: Likewise.
34374         * lib/netinet_in_.h: Likewise.
34375         * lib/search_.h: Likewise.
34376         * lib/signal_.h: Likewise.
34377         * lib/stdint_.h: Likewise.
34378         * lib/stdio_.h: Likewise.
34379         * lib/stdlib_.h: Likewise.
34380         * lib/string_.h: Likewise.
34381         * lib/sys_select_.h: Likewise.
34382         * lib/sys_socket_.h: Likewise.
34383         * lib/sys_stat_.h: Likewise.
34384         * lib/sys_time_.h: Likewise.
34385         * lib/sysexits_.h: Likewise.
34386         * lib/time_.h: Likewise.
34387         * lib/unistd_.h: Likewise.
34388         * lib/wchar_.h: Likewise.
34389         * lib/wctype_.h: Likewise.
34390
34391 2007-05-29  Bruno Haible  <bruno@clisp.org>
34392
34393         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
34394         for the moment.
34395
34396 2007-05-29  Bruno Haible  <bruno@clisp.org>
34397
34398         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
34399         invocation.
34400         Reported by Eric Blake.
34401
34402 2007-05-29  Bruno Haible  <bruno@clisp.org>
34403
34404         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
34405         compiling case.
34406
34407 2007-05-29  Eric Blake  <ebb9@byu.net>
34408             Bruno Haible  <bruno@clisp.org>
34409
34410         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
34411         cross compiles.
34412
34413 2007-05-28  Eric Blake  <ebb9@byu.net>
34414
34415         * modules/closein-tests (test_closein_LDADD): Support test on
34416         cygwin with libtool.
34417
34418 2007-05-28  Bruno Haible  <bruno@clisp.org>
34419
34420         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
34421         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
34422         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
34423         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
34424         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
34425         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
34426         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
34427         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
34428         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
34429
34430 2007-05-28  Eric Blake  <ebb9@byu.net>
34431
34432         Unconditionally include <config.h> in unit tests.
34433         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
34434         * tests/test-allocsa.c, tests/test-arcfour.c,
34435         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
34436         tests/test-array_list.c, tests/test-array_oset.c,
34437         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
34438         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
34439         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
34440         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
34441         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
34442         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
34443         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
34444         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
34445         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
34446         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
34447         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
34448         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
34449         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
34450         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
34451         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
34452         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
34453         test-md5.c, test-memmem.c, test-printf-posix.c,
34454         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
34455         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
34456         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
34457         test-strcasestr.c, test-striconv.c, test-striconveh.c,
34458         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
34459         test-vasnprintf-posix2.c, test-vasnprintf.c,
34460         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
34461         test-vfprintf-posix.c, test-vprintf-posix.c,
34462         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
34463         test-xvasprintf.c: Likewise.
34464
34465 2007-05-28  Bruno Haible  <bruno@clisp.org>
34466
34467         * gnulib-tool (func_import): Remember the --with-tests command-line
34468         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
34469         Reported by Eric Blake.
34470
34471 2007-05-28  Bruno Haible  <bruno@clisp.org>
34472
34473         * modules/ftell-tests: New file.
34474         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
34475         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
34476
34477         * lib/ftell.c: New file.
34478         * modules/ftell: New file.
34479         * m4/ftell.m4: New file.
34480         * doc/functions/ftell.texi: Update.
34481         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
34482         REPLACE_FTELL.
34483         * lib/stdio_.h (rpl_ftell): New declaration.
34484         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
34485         REPLACE_FTELL.
34486
34487 2007-05-28  Eric Blake  <ebb9@byu.net>
34488
34489         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
34490
34491 2007-05-28  Bruno Haible  <bruno@clisp.org>
34492
34493         * modules/fseek-tests: New file.
34494         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
34495         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
34496
34497         * lib/fseek.c: New file.
34498         * modules/fseek: New file.
34499         * m4/fseek.m4: New file.
34500         * doc/functions/fseek.texi: Update.
34501         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
34502         REPLACE_FSEEK.
34503         * lib/stdio_.h (rpl_fseek): New declaration.
34504         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
34505         REPLACE_FSEEK.
34506
34507 2007-05-28  Bruno Haible  <bruno@clisp.org>
34508
34509         * lib/stdio_.h (fflush): More comments.
34510
34511 2007-05-28  Bruno Haible  <bruno@clisp.org>
34512
34513         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
34514         runtime test.
34515
34516 2007-05-28  Eric Blake  <ebb9@byu.net>
34517
34518         Improve lseek module.
34519         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
34520         * lib/unistd_.h (lseek): Scale back link warning message.
34521         * tests/test-lseek.c: Beef up test.
34522         * tests/test-lseek.sh: Exercise more facets of lseek.
34523         Reported by Bruno Haible.
34524
34525 2007-05-28  Bruno Haible  <bruno@clisp.org>
34526
34527         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
34528         to define.
34529
34530 2007-05-27  Bruno Haible  <bruno@clisp.org>
34531
34532         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
34533
34534 2007-05-27  Bruno Haible  <bruno@clisp.org>
34535
34536         * modules/openmp: New file.
34537         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
34538         Noah Misch.
34539
34540 2007-05-26  Bruno Haible  <bruno@clisp.org>
34541
34542         * modules/chdir-long (Depends-on): Add fchdir.
34543         * modules/chdir-safer (Depends-on): Likewise.
34544         * modules/fts (Depends-on): Likewise.
34545         * modules/fts-lgpl (Depends-on): Likewise.
34546         * modules/openat (Depends-on): Likewise.
34547         * modules/savewd (Depends-on): Likewise.
34548
34549 2007-05-24  Eric Blake  <ebb9@byu.net>
34550
34551         Fix lseek on mingw.
34552         * modules/lseek: New module.
34553         * m4/lseek.m4: New file.
34554         * lib/lseek.c: New file.
34555         * modules/lseek-tests: New file.
34556         * tests/test-lseek.c: New file.
34557         * tests/test-lseek.sh: New file.
34558         * MODULES.html.sh: Document lseek module.
34559         * modules/fflush (Depends-on): Add lseek, fseeko.
34560         * modules/fseeko (Depends-on): Likewise.
34561         * modules/ftello (Depends-on): Likewise.
34562         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
34563         broken.
34564         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
34565         broken.
34566         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
34567         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
34568         * lib/ftello.c (rpl_ftello): Likewise.
34569         * tests/test-fseeko.c (main): Test this.
34570         * tests/test-fseeko.sh: Likewise.
34571         * tests/test-ftello.c (main): Likewise.
34572         * tests/test-ftello.sh: Likewise.
34573         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
34574         implies replacing fseek.
34575         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
34576         HAVE_FTELLO.
34577         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
34578         * modules/unistd (Makefile.am): Likewise.
34579         * lib/unistd_.h (lseek): Declare a replacement.
34580         * doc/functions/lseek.texi (lseek): Document this fix.
34581         * doc/functions/fseek.texi (fseek): Likewise.
34582         * doc/functions/ftell.texi (ftell): Likewise.
34583
34584 2007-05-24  Bruno Haible  <bruno@clisp.org>
34585
34586         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
34587         in the printed representation of a NaN.
34588         * tests/test-vasprintf-posix.c (test_function): Likewise.
34589         * tests/test-snprintf-posix.h (test_function): Likewise.
34590         * tests/test-sprintf-posix.h (test_function): Likewise.
34591         Reported by Eric Blake.
34592
34593 2007-05-23  Eric Blake  <ebb9@byu.net>
34594
34595         Fix fseeko/ftello on cygwin 1.5.24.
34596         * doc/functions/fseeko.texi (fseeko): Document the fix.
34597         * doc/functions/ftello.texi (ftello): Document the fix.
34598         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
34599         * doc/functions/stdout.text (stdout): New file.
34600         * doc/functions/stderr.text (stderr): New file.
34601         * doc/gnulib.texi (Function Substitutes): Use new files.
34602         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
34603         prior to 1.7.0.
34604         * tests/test-ftello.c (main): Likewise for ftello.
34605         * tests/test-fseeko.sh: New file.
34606         * tests/test-ftello.sh: New file.
34607         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
34608         with seekable stdin.
34609         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
34610         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
34611         (gl_REPLACE_FSEEKO): New macro.
34612         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
34613         * modules/fseeko (Files): Distribute fseeko.c.
34614         * modules/ftello (Files): Distribute ftello.c.
34615         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
34616         mode.
34617         * lib/ftello.c (rpl_ftello): New file.
34618         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
34619         fseeko, ftello.
34620         (gl_STDIN_LARGE_OFFSET): New macro.
34621         * modules/stdio (Makefile.am): Perform the replacement.
34622         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
34623
34624 2007-05-23  Bruno Haible  <bruno@clisp.org>
34625
34626         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
34627         GNULIB_POSIXCHECK is defined.
34628
34629 2007-05-21  Bruno Haible  <bruno@clisp.org>
34630
34631         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
34632         Check also the output for NaN arguments. When cross-compiling, guess
34633         no on IRIX.
34634         * lib/vasnprintf.c: Update comments.
34635         * tests/test-vasnprintf-posix.c (strisnan): New function.
34636         (test_function): Use it.
34637         * tests/test-vasprintf-posix.c (strisnan): New function.
34638         (test_function): Use it.
34639         * tests/test-snprintf-posix.h (strisnan): New function.
34640         (test_function): Use it.
34641         * tests/test-sprintf-posix.h (strisnan): New function.
34642         (test_function): Use it.
34643         Reported by Eric Blake.
34644
34645 2007-05-20  Bruno Haible  <bruno@clisp.org>
34646
34647         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
34648         numbers that fails on BeOS.
34649         * doc/functions/frexpl.texi: Update.
34650
34651 2007-05-20  Jim Meyering  <jim@meyering.net>
34652
34653         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
34654         forced upon us by glibc-2.6.
34655
34656 2007-05-20  Bruno Haible  <bruno@clisp.org>
34657
34658         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
34659         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
34660         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
34661         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
34662         NEED_PRINTF_INFINITE.
34663         (is_infinitel): New function.
34664         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
34665         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
34666         gl_PREREQ_VASNPRINTF_INFINITE.
34667         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
34668         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34669         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
34670         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
34671         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
34672         gl_PREREQ_VASNPRINTF_INFINITE.
34673         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34674         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34675         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34676         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34677         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34678         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34679         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34680         * doc/functions/fprintf.texi: Update.
34681         * doc/functions/printf.texi: Update.
34682         * doc/functions/snprintf.texi: Update.
34683         * doc/functions/sprintf.texi: Update.
34684         * doc/functions/vfprintf.texi: Update.
34685         * doc/functions/vprintf.texi: Update.
34686         * doc/functions/vsnprintf.texi: Update.
34687         * doc/functions/vsprintf.texi: Update.
34688
34689 2007-05-20  Bruno Haible  <bruno@clisp.org>
34690
34691         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
34692         was not found in libc.
34693         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
34694
34695 2007-05-20  Bruno Haible  <bruno@clisp.org>
34696
34697         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34698         printed as "-nan" instead of "nan".
34699         * tests/test-vasprintf-posix.c (test_function): Likewise.
34700         * tests/test-snprintf-posix.h (test_function): Likewise.
34701         * tests/test-sprintf-posix.h (test_function): Likewise.
34702         Needed for HP-UX 11.
34703
34704 2007-05-20  Jim Meyering  <jim@meyering.net>
34705
34706         Fix buggy test for the fchownat-deref bug.
34707         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
34708         symlink required for the run-test.  Without it, this test would
34709         always declare that fchownat doesn't work, and client code would
34710         unnecessarily use the replacement function with fixed libc.
34711         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
34712         Reported by Greg Schafer.
34713
34714 2007-05-19  Bruno Haible  <bruno@clisp.org>
34715
34716         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
34717         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
34718         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
34719         Needed for IRIX 6.5 and Solaris 2.5.1.
34720
34721 2007-05-19  Bruno Haible  <bruno@clisp.org>
34722
34723         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
34724         (test_function): Skip tests involving -0.0 on platforms where
34725         -0.0 = 0.0.
34726         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
34727         (test_function): Skip tests involving -0.0 on platforms where
34728         -0.0 = 0.0.
34729         * tests/test-snprintf-posix.h (have_minus_zero): New function.
34730         (test_function): Skip tests involving -0.0 on platforms where
34731         -0.0 = 0.0.
34732         * tests/test-sprintf-posix.h (have_minus_zero): New function.
34733         (test_function): Skip tests involving -0.0 on platforms where
34734         -0.0 = 0.0.
34735         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
34736         tests.
34737         * tests/test-printf-posix.h (test_function): Likewise.
34738         * tests/test-printf-posix.output: Remove all -0.0 related results.
34739         Needed for IRIX 6.5.
34740
34741 2007-05-19  Bruno Haible  <bruno@clisp.org>
34742
34743         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
34744         printed as "nan0x7fffffff" instead of "nan".
34745         * tests/test-vasprintf-posix.c (test_function): Likewise.
34746         * tests/test-snprintf-posix.h (test_function): Likewise.
34747         * tests/test-sprintf-posix.h (test_function): Likewise.
34748         * tests/test-fprintf-posix.h (NaN): Remove macro.
34749         (test_function): Remove all NaN related tests.
34750         * tests/test-printf-posix.h (NaN): Remove macro.
34751         (test_function): Remove all NaN related tests.
34752         * tests/test-printf-posix.output: Remove all NaN related results.
34753         Needed for IRIX 6.5.
34754
34755 2007-05-19  Bruno Haible  <bruno@clisp.org>
34756
34757         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
34758         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
34759
34760 2007-05-19  Bruno Haible  <bruno@clisp.org>
34761
34762         * lib/float_.h: New file.
34763         * m4/float_h.m4: New file.
34764         * modules/float: New file.
34765         * modules/isnanl (Dependencies): Add float.
34766         * modules/isnanl-nolibm (Dependencies): Likewise.
34767         * modules/mathl (Dependencies): Likewise.
34768         * modules/printf-frexpl (Dependencies): Likewise.
34769         * modules/signbit (Dependencies): Likewise.
34770         * modules/vasnprintf (Dependencies): Likewise.
34771         * doc/headers/float.texi: Update.
34772
34773 2007-05-19  Jim Meyering  <jim@meyering.net>
34774
34775         * lib/utimens.c (gl_futimens): Rename from futimens,
34776         now that glibc-2.6 declares futimens.
34777         * lib/utimens.h: Likewise.
34778
34779 2007-05-19  Bruno Haible  <bruno@clisp.org>
34780
34781         Avoid test failures on mingw.
34782         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
34783         * tests/test-printf-posix.sh: Likewise.
34784         * tests/test-vfprintf-posix.sh: Likewise.
34785         * tests/test-vprintf-posix.sh: Likewise.
34786
34787 2007-05-19  Bruno Haible  <bruno@clisp.org>
34788
34789         Fix *printf result for NaN, Inf, -0.0 on mingw.
34790         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
34791         * lib/vasnprintf.c: Include math.h and isnan.h.
34792         (is_infinite_or_zero): New function.
34793         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
34794         values in the %f, %F, %e, %E, %g, %G directives.
34795         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
34796         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34797         gl_PRINTF_INFINITE and test its result. Invoke
34798         gl_PREREQ_VASNPRINTF_INFINITE.
34799         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34800         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34801         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34802         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34803         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34804         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34805         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34806         * doc/functions/fprintf.texi: Update.
34807         * doc/functions/printf.texi: Update.
34808         * doc/functions/snprintf.texi: Update.
34809         * doc/functions/sprintf.texi: Update.
34810         * doc/functions/vfprintf.texi: Update.
34811         * doc/functions/vprintf.texi: Update.
34812         * doc/functions/vsnprintf.texi: Update.
34813         * doc/functions/vsprintf.texi: Update.
34814
34815 2007-05-19  Bruno Haible  <bruno@clisp.org>
34816
34817         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
34818         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
34819         Instead of multiplying with 10^k, set extra_zeroes to k.
34820         (scale10_round_long_double): Remove function.
34821
34822 2007-05-18  Bruno Haible  <bruno@clisp.org>
34823
34824         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
34825         introduced on 2007-05-06.
34826
34827 2007-05-18  Bruno Haible  <bruno@clisp.org>
34828
34829         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
34830         %g directives.
34831         * tests/test-vasprintf-posix.c (test_function): Likewise.
34832         * tests/test-snprintf-posix.h (test_function): Likewise.
34833         * tests/test-sprintf-posix.h (test_function): Likewise.
34834
34835 2007-05-18  Bruno Haible  <bruno@clisp.org>
34836
34837         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
34838         (strmatch): New function.
34839         (test_function): Test the %f directive on numbers of various exponents.
34840         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
34841         (strmatch): New function.
34842         (test_function): Test the %f directive on numbers of various exponents.
34843         * tests/test-snprintf-posix.h (strmatch): New function.
34844         (test_function): Test the %f directive on numbers of various exponents.
34845         * tests/test-sprintf-posix.h (strmatch): New function.
34846         (test_function): Test the %f directive on numbers of various exponents.
34847         * tests/test-snprintf-posix.c (SIZEOF): New macro.
34848         * tests/test-sprintf-posix.c (SIZEOF): New macro.
34849         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
34850         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
34851
34852 2007-05-18  Bruno Haible  <bruno@clisp.org>
34853
34854         Add support for 'long double' number output.
34855         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
34856         * lib/vasnprintf.c: Include math.h and float+.h.
34857         (mp_limb_t): New type.
34858         (GMP_LIMB_BITS): New macro.
34859         (mp_twolimb_t): New type.
34860         (GMP_TWOLIMB_BITS): New macro.
34861         (mpn_t): New type.
34862         (multiply, divide, convert_to_decimal, decode_long_double,
34863         scale10_round_long_double, scale10_round_decimal_long_double,
34864         floorlog10l): New functions.
34865         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
34866         for the %f, %F, %e, %E, %g, %G directives.
34867         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
34868         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34869         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
34870         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
34871         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
34872         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
34873         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
34874         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
34875         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
34876         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
34877         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
34878         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
34879         * modules/snprintf-posix (Depends-on): Likewise.
34880         * modules/sprintf-posix (Depends-on): Likewise.
34881         * modules/vasnprintf-posix (Depends-on): Likewise.
34882         * modules/vasprintf-posix (Depends-on): Likewise.
34883         * modules/vfprintf-posix (Depends-on): Likewise.
34884         * modules/vsnprintf-posix (Depends-on): Likewise.
34885         * modules/vsprintf-posix (Depends-on): Likewise.
34886         * modules/vasnprintf (Files): Add lib/float+.h.
34887         * doc/functions/fprintf.texi: Update.
34888         * doc/functions/printf.texi: Update.
34889         * doc/functions/snprintf.texi: Update.
34890         * doc/functions/sprintf.texi: Update.
34891         * doc/functions/vfprintf.texi: Update.
34892         * doc/functions/vprintf.texi: Update.
34893         * doc/functions/vsnprintf.texi: Update.
34894         * doc/functions/vsprintf.texi: Update.
34895
34896 2007-05-18  Bruno Haible  <bruno@clisp.org>
34897
34898         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
34899
34900 2007-05-18  Bruno Haible  <bruno@clisp.org>
34901
34902         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
34903         for printing 64-bit integers. Needed for mingw.
34904
34905 2007-05-18  Bruno Haible  <bruno@clisp.org>
34906
34907         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
34908         gl_FUNC_FREXPL_WORKS.
34909         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
34910
34911 2007-05-18  Bruno Haible  <bruno@clisp.org>
34912
34913         * modules/frexpl-nolibm-tests: New file.
34914
34915         * modules/frexpl-nolibm: New file.
34916         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
34917
34918 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
34919
34920         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
34921         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
34922         GCC 4.2, which otherwise issues a lot of warnings.
34923         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
34924         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
34925         Likewise.
34926         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
34927         * modules/iconv_open (iconv.h): Likewise.
34928         * modules/locale (locale.h): Likewise.
34929         * modules/netinet_in (netinet/in.h): Likewise.
34930         * modules/sys_select (sys_select.h): Likewise.
34931         * modules/sys_socket (sys/socket.h): Likewise.
34932         * modules/sys_stat (sys/stat.h): Likewise.
34933         * modules/sysexits (sysexits.h): Likewise.
34934         * modules/unistd (unistd.h): Likewise.
34935
34936 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34937
34938         * modules/closein-tests (Makefile.am): Distribute
34939         `test-closein.sh'.
34940
34941 2007-05-17  Bruno Haible  <bruno@clisp.org>
34942
34943         * tests/test-printf-posix.output: Renamed from
34944         tests/test-fprintf-posix.out.
34945         * modules/fprintf-posix-tests: Update.
34946         * modules/printf-posix-tests: Update.
34947         * modules/vfprintf-posix-tests: Update.
34948         * modules/vprintf-posix-tests: Update.
34949         * tests/test-fprintf-posix.sh: Update.
34950         * tests/test-printf-posix.sh: Update.
34951         * tests/test-vfprintf-posix.sh: Update.
34952         * tests/test-vprintf-posix.sh: Update.
34953         Reported by Ralf Wildenhues.
34954
34955 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
34956
34957         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
34958         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
34959         GCC 4.2, which otherwise issues a lot of warnings.
34960         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
34961         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
34962         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
34963         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
34964         it should no longer be needed.
34965         * lib/string_.h: Likewise.
34966         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
34967         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
34968         * modules/inttypes (inttypes.h): Likewise.
34969         * modules/math (math.h): Likewise.
34970         * modules/search (search.h): Likewise.
34971         * modules/signal (signal.h): Likewise.
34972         * modules/stdint (stdint.h): Likewise.
34973         * modules/stdio (stdio.h): Likewise.
34974         * modules/stdlib (stdlib.h): Likewise.
34975         * modules/string (string.h): Likewise.
34976         * modules/sys_time (sys/time.h): Likewise.
34977         * modules/time (time.h): Likewise.
34978         * modules/wchar (wchar.h): Likewise.
34979         * modules/wctype (wtype.h): Likewise.
34980
34981 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
34982
34983         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
34984
34985 2007-05-13  Bruno Haible  <bruno@clisp.org>
34986
34987         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
34988         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
34989         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
34990         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
34991         (gl_PREREQ_STRTOK_R): Don't require it here.
34992
34993 2007-05-13  Bruno Haible  <bruno@clisp.org>
34994
34995         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
34996         when used in C++ mode.
34997
34998 2007-05-12  Bruno Haible  <bruno@clisp.org>
34999
35000         * lib/linebuffer.h: Tweak doc.
35001         * lib/linebuffer.c: Likewise.
35002
35003 2007-05-12  James Youngman  <jay@gnu.org>
35004
35005         * lib/linebuffer.c (readlinebuffer_delim): New function,
35006         like readlinebuffer, but use a caller-specified delimiter.
35007         (readlinebuffer): Just call readlinebuffer_delim with '\n'
35008         as the delimiter.
35009         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
35010
35011 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
35012
35013         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
35014         * modules/openat (Files): Remove openat-die.c.
35015         (Depends-on): Add openat-die.
35016         * modules/openat-die: New module.
35017
35018 2007-05-06  Bruno Haible  <bruno@clisp.org>
35019
35020         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
35021         Update with info about Cygwin.
35022         * doc/functions/fprintf.texi: Update.
35023         * doc/functions/printf.texi: Update.
35024         * doc/functions/snprintf.texi: Update.
35025         * doc/functions/sprintf.texi: Update.
35026         * doc/functions/vfprintf.texi: Update.
35027         * doc/functions/vprintf.texi: Update.
35028         * doc/functions/vsnprintf.texi: Update.
35029         * doc/functions/vsprintf.texi: Update.
35030         Reported by Eric Blake.
35031
35032 2007-05-06  Bruno Haible  <bruno@clisp.org>
35033
35034         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
35035         padding ourselves for the floating-point directives.
35036         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
35037         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
35038         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35039         gl_PRINTF_FLAG_ZERO and test its result. Invoke
35040         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
35041         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35042         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
35043         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35044         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35045         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35046         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35047         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35048         * tests/test-snprintf-posix.h (test_function): Also check the width
35049         and some flags in the %f directive.
35050         * tests/test-sprintf-posix.h (test_function): Likewise.
35051         * tests/test-vasnprintf-posix.c (test_function): Likewise.
35052         * tests/test-vasprintf-posix.c (test_function): Likewise.
35053         * doc/functions/fprintf.texi: Update.
35054         * doc/functions/printf.texi: Update.
35055         * doc/functions/snprintf.texi: Update.
35056         * doc/functions/sprintf.texi: Update.
35057         * doc/functions/vfprintf.texi: Update.
35058         * doc/functions/vprintf.texi: Update.
35059         * doc/functions/vsnprintf.texi: Update.
35060         * doc/functions/vsprintf.texi: Update.
35061
35062 2007-05-06  Bruno Haible  <bruno@clisp.org>
35063
35064         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
35065         pass the ' flag character to sprintf or snprintf.
35066         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
35067         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
35068         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35069         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
35070         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
35071         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35072         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
35073         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35074         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35075         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35076         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35077         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35078         * tests/test-snprintf-posix.h (test_function): Also check the grouping
35079         flag.
35080         * tests/test-sprintf-posix.h (test_function): Likewise.
35081         * tests/test-vasnprintf-posix.c (test_function): Likewise.
35082         * tests/test-vasprintf-posix.c (test_function): Likewise.
35083         * doc/functions/fprintf.texi: Update.
35084         * doc/functions/printf.texi: Update.
35085         * doc/functions/snprintf.texi: Update.
35086         * doc/functions/sprintf.texi: Update.
35087         * doc/functions/vfprintf.texi: Update.
35088         * doc/functions/vprintf.texi: Update.
35089         * doc/functions/vsnprintf.texi: Update.
35090         * doc/functions/vsprintf.texi: Update.
35091
35092 2007-05-01  Bruno Haible  <bruno@clisp.org>
35093
35094         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
35095
35096 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
35097
35098         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
35099         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
35100
35101 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
35102
35103         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
35104         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
35105         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
35106
35107 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
35108
35109         * lib/argp-help.c (struct hol_entry): New member `ord'.
35110         (HOL_ENTRY_PTRCMP): Use ord for comparison
35111         (hol_sort): Initialize ord.
35112
35113 2007-05-01  Bruno Haible  <bruno@clisp.org>
35114
35115         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
35116         Reported by Eric Blake.
35117         * doc/gnulib.texi (Function Substitutes): Update.
35118
35119 2007-05-01  Bruno Haible  <bruno@clisp.org>
35120
35121         * doc/functions.texi: Remove file, now redundant through
35122         doc/functions/*.texi.
35123
35124 2007-05-01  Bruno Haible  <bruno@clisp.org>
35125
35126         * modules/argp (Depends-on): Add sleep.
35127
35128 2007-05-01  Bruno Haible  <bruno@clisp.org>
35129
35130         * modules/sleep-tests: New file.
35131         * tests/test-sleep.c: New file.
35132
35133         * modules/sleep: New file.
35134         * lib/sleep.c: New file.
35135         * m4/sleep.m4: New file.
35136         * lib/unistd_.h (sleep): New declaration.
35137         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
35138         HAVE_SLEEP.
35139         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
35140         * doc/functions/sleep.texi: Document the sleep module.
35141
35142 2007-05-01  Bruno Haible  <bruno@clisp.org>
35143
35144         * lib/sigprocmask.h: Remove file.
35145         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
35146         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
35147         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
35148         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
35149         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
35150         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
35151         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
35152         HAVE_SIGSET_T as a shell variable.
35153         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
35154         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
35155         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
35156         (Depends-on): Add signal. Remove verify.
35157         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
35158         (Include): Mention <signal.h> instead of sigprocmask.h.
35159         * NEWS: Mention the change.
35160         * lib/fatal-signal.c: Don't include sigprocmask.h.
35161
35162 2007-05-01  Bruno Haible  <bruno@clisp.org>
35163
35164         * modules/signal: New file.
35165         * lib/signal_.h: New file.
35166         * m4/signal_h.m4: New file.
35167
35168 2007-05-01  Bruno Haible  <bruno@clisp.org>
35169
35170         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
35171         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
35172         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
35173         HAVE_WCTYPE_CTMP_BUG into wctype.h.
35174
35175 2007-05-01  Bruno Haible  <bruno@clisp.org>
35176
35177         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
35178         configure time.
35179         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
35180         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
35181         * modules/sys_stat (Makefile.am): Substitute their values into
35182         sys/stat.h.
35183
35184 2007-05-01  Bruno Haible  <bruno@clisp.org>
35185
35186         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
35187         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
35188         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
35189
35190 2007-05-01  Bruno Haible  <bruno@clisp.org>
35191
35192         * doc/header/assert.texi: Undo last change: don't mention the gnulib
35193         'assert' module here.
35194
35195 2007-05-01  Bruno Haible  <bruno@clisp.org>
35196
35197         * doc/functions/*.texi: New files.
35198         * doc/functions/google-ranking.txt: New file.
35199         * doc/gnulib.texi (Function Substitutes): New chapter.
35200         (ctime, inet_ntoa): Remove sections.
35201         * doc/ctime.texi: Remove file.
35202         * doc/inet_ntoa.texi: Remove file.
35203         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
35204         dependencies.
35205         (%.info): New rule, specifying a --reference-limit.
35206
35207 2007-05-01  Bruno Haible  <bruno@clisp.org>
35208
35209         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
35210
35211 2007-05-01  Bruno Haible  <bruno@clisp.org>
35212
35213         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
35214         the portability of 'mkdir' to mingw systems.
35215
35216 2007-05-01  Bruno Haible  <bruno@clisp.org>
35217
35218         * doc/headers/google-ranking.txt: New file.
35219
35220 2007-04-30  Eric Blake  <ebb9@byu.net>
35221
35222         Prefer fseeko to fseek.
35223         * modules/getpass (Depends-on): Add fseeko.
35224         * lib/getpass.c (getpass): Use fseeko, not fseek.
35225
35226 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
35227
35228         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
35229         assumes the sorting is stable, while most qsort implementations
35230         are not.  Use argument addresses to ensure they never compare as
35231         equal.
35232
35233         * tests/test-argp-2.sh (usage-indent test): Fix output
35234         (func_compare): Restore diff options
35235         * tests/test-argp.c: Restore #include "progname.h"
35236
35237 2007-04-29  Bruno Haible  <bruno@clisp.org>
35238
35239         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
35240         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35241         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
35242         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35243         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
35244         (configure.ac): Define CHECK_SNPRINTF_POSIX.
35245         (TESTS, check_PROGRAMS): Add test-snprintf.
35246         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
35247         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
35248         (TESTS, check_PROGRAMS): Add test-vsnprintf.
35249         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
35250         assertions that fail on HP-UX, OSF/1, or IRIX.
35251         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
35252
35253 2007-04-29  Bruno Haible  <bruno@clisp.org>
35254
35255         * MODULES.html.sh (posix_functions): Remove 'contents'.
35256
35257 2007-04-29  Karl Berry  <karl@gnu.org>
35258
35259         * config/srclist.txt (gendocs_template_min): new entry.
35260
35261 2007-04-29  Bruno Haible  <bruno@clisp.org>
35262
35263         Work around fpurge bug on BSD systems.
35264         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
35265         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
35266         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
35267         fpurge to rpl_fpurge if the system already has this function.
35268         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
35269         the case where the system already has this function. Correct invariants
35270         on BSD systems.
35271         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
35272         BSD systems.
35273
35274 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
35275
35276         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
35277         proposed by Sven Verdoolaege.
35278
35279         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
35280         options.
35281         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
35282         (usage and help tests): Update
35283
35284 2007-04-29  Bruno Haible  <bruno@clisp.org>
35285
35286         * tests/test-fflush.c (main): Use a file of size 17, not 10.
35287         Print more information in case of failure. Disable a test on BeOS.
35288
35289 2007-04-29  Bruno Haible  <bruno@clisp.org>
35290
35291         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
35292         This helps debugging on systems on which no gdb is available.
35293
35294 2007-04-29  Bruno Haible  <bruno@clisp.org>
35295
35296         * lib/freading.h: Improve comments.
35297         * lib/fwriting.h: Likewise.
35298         * tests/test-freading.c (main): Don't check freading immediately after
35299         repositioning. Needed for glibc.
35300
35301 2007-04-29  Bruno Haible  <bruno@clisp.org>
35302
35303         * lib/freading.c (freading): Trivial simplification.
35304
35305 2007-04-28  Bruno Haible  <bruno@clisp.org>
35306
35307         * tests/test-fwriting.c (main): Also test the interaction between
35308         fflush and fwriting.
35309         * modules/fwriting-tests (Depends-on): Add fflush.
35310
35311         * tests/test-freading.c (main): Also test the interaction between
35312         fflush and freading.
35313         * modules/freading-tests (Depends-on): Add fflush.
35314
35315 2007-04-28  Bruno Haible  <bruno@clisp.org>
35316
35317         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
35318         fseeko and ftello.
35319         Suggested by Eric Blake.
35320
35321 2007-04-28  Jim Meyering  <jim@meyering.net>
35322
35323         Avoid false-negative in gl_STDINT_H's C99 conformance test.
35324         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
35325         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
35326
35327 2007-04-27  Eric Blake  <ebb9@byu.net>
35328
35329         * doc/headers/assert.texi (assert.h): Document assert module use.
35330
35331 2007-04-27  Bruno Haible  <bruno@clisp.org>
35332
35333         * doc/headers/*.texi: New files.
35334         * doc/gnulib.texi (Header File Substitutes): New chapter.
35335         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
35336         dependencies.
35337         (standards.info ,standards.html, standards.dvi): Update dependencies.
35338         (mostlyclean, clean): New targets.
35339
35340 2007-04-27  Bruno Haible  <bruno@clisp.org>
35341
35342         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
35343         * modules/sysexits (Files, Makefile.am): Update.
35344
35345         * lib/sys_socket_.h: Renamed from lib/socket_.h.
35346         * modules/sys_socket (Files, Makefile.am): Update.
35347
35348         * lib/sys_stat_.h: Renamed from lib/stat_.h.
35349         * modules/sys_stat (Files, Makefile.am): Update.
35350
35351 2007-04-27  Eric Blake  <ebb9@byu.net>
35352
35353         * lib/freading.h: Improve comments.
35354         * lib/fwriting.h: Likewise.
35355         * lib/fflush.c: Likewise.
35356
35357         Fix closein for mingw.
35358         * modules/closein-tests: Add tests for closein.
35359         * tests/test-closein.c: New file.
35360         * tests/test-closein.sh: Likewise.
35361         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
35362         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
35363
35364 2007-04-27  Bruno Haible  <bruno@clisp.org>
35365
35366         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
35367         version is < 6.
35368         * lib/math_.h [__DECC]: Likewise.
35369         * lib/stdio_.h [__DECC]: Likewise.
35370         * lib/stdlib_.h [__DECC]: Likewise.
35371         * lib/string_.h [__DECC]: Likewise.
35372         * lib/time_.h [__DECC]: Likewise.
35373         * lib/wchar_.h [__DECC]: Likewise.
35374         * lib/wctype_.h [__DECC]: Likewise.
35375
35376 2007-04-27  Bruno Haible  <bruno@clisp.org>
35377
35378         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
35379
35380 2007-04-27  Bruno Haible  <bruno@clisp.org>
35381
35382         * lib/fflush.c: Add comments.
35383         * modules/fpurge-tests (Depends-on): Add fflush.
35384         * modules/freadable-tests (Depends-on): Likewise.
35385         * modules/fwritable-tests (Depends-on): Likewise.
35386
35387 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
35388
35389         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
35390         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
35391         Report by Bruno Haible <bruno@clisp.org>.
35392
35393 2007-04-26  Eric Blake  <ebb9@byu.net>
35394
35395         Fix fflush on mingw.
35396         * modules/fflush (Depends-on): Add freading.
35397         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
35398         but unread data.
35399
35400 2007-04-26  Eric Blake  <ebb9@byu.net>
35401         and Bruno Haible  <bruno@clisp.org>
35402
35403         Implement freading and fwriting.
35404         * lib/freading.c: New file.
35405         * lib/freading.h: Likewise.
35406         * m4/freading.m4: Likewise.
35407         * modules/freading: Likewise.
35408         * modules/freading-tests: Likewise.
35409         * tests/test-freading.c: Likewise.
35410         * lib/fwriting.c: New file.
35411         * lib/fwriting.h: Likewise.
35412         * m4/fwriting.m4: Likewise.
35413         * modules/fwriting: Likewise.
35414         * modules/fwriting-tests: Likewise.
35415         * tests/test-fwriting.c: Likewise.
35416         * MODULES.html.sh (File stream based Input/Output): Mention them.
35417
35418 2007-04-26  Bruno Haible  <bruno@clisp.org>
35419
35420         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
35421         'long' when we assume it.
35422         Suggested by Eric Blake.
35423
35424 2007-04-26  Bruno Haible  <bruno@clisp.org>
35425
35426         Ensure fseeko, ftello are declared on glibc systems.
35427         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
35428         * modules/fseeko (configure.ac-early): Likewise.
35429         * modules/ftello (configure.ac-early): Likewise.
35430         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
35431         AC_FUNC_FSEEKO for this.
35432         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
35433         (gl_CHECK_FSEEKO): Remove macro.
35434
35435 2007-04-26  Bruno Haible  <bruno@clisp.org>
35436
35437         * tests/test-fflush.c (main): Also check the ftell result after
35438         fflush and fseek/fseeko.
35439         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
35440         file descriptor position cache in the stream.
35441         * lib/fseeko.c (rpl_fseeko): Likewise.
35442
35443 2007-04-26  Bruno Haible  <bruno@clisp.org>
35444
35445         * modules/fflush-tests (Depends-on): Add fseeko.
35446
35447 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
35448             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35449
35450         * lib/argz_.h: ensure error_t definition is obtained in same
35451         mechanism system argz.h would have.
35452         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
35453         argz facilities are known bad.  Err on the side of caution if
35454         cross-compiling.
35455
35456 2007-04-25  Eric Blake  <ebb9@byu.net>
35457
35458         * lib/fpurge.c (includes): Use stdlib.h for free.
35459         * tests/test-fflush.c (main): Also test fflush-fseeko.
35460
35461 2007-04-25  Bruno Haible  <bruno@clisp.org>
35462
35463         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
35464         * lib/fseeko.c: New file.
35465         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
35466         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
35467         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
35468         gl_FUNC_FSEEKO.
35469         (gl_FUNC_FSEEKO): Invoke it.
35470         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
35471         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
35472         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
35473
35474 2007-04-25  Bruno Haible  <bruno@clisp.org>
35475
35476         * modules/fflush (Depends-on): Add ftello.
35477
35478 2007-04-25  Bruno Haible  <bruno@clisp.org>
35479
35480         * modules/ftello-tests: New file.
35481         * tests/test-ftello.c: New file.
35482
35483         * modules/ftello: New file.
35484         * m4/ftello.m4: New file.
35485         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
35486         HAVE_FTELLO.
35487         * lib/stdio_.h (ftello): New declaration.
35488         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
35489         HAVE_FTELLO.
35490
35491 2007-04-25  Bruno Haible  <bruno@clisp.org>
35492
35493         * modules/fseeko-tests: New file.
35494         * tests/test-fseeko.c: New file.
35495
35496         * modules/fseeko: New file.
35497         * m4/fseeko.m4: New file.
35498         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
35499         HAVE_FSEEKO.
35500         * lib/stdio_.h (fseeko): New declaration.
35501         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
35502         HAVE_FSEEKO.
35503
35504 2007-04-25  Bruno Haible  <bruno@clisp.org>
35505
35506         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
35507
35508 2007-04-25  Bruno Haible  <bruno@clisp.org>
35509
35510         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
35511         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
35512         * tests/test-unistd.c: Likewise.
35513         * tests/test-fcntl.c: Likewise.
35514
35515 2007-04-23  Eric Blake  <ebb9@byu.net>
35516
35517         * lib/fflush.c: Fix missing include.
35518         Reported by Bruno Haible.
35519
35520 2007-04-23  Bruno Haible  <bruno@clisp.org>
35521
35522         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
35523         Reported by Eric Blake.
35524
35525 2007-04-23  Bruno Haible  <bruno@clisp.org>
35526
35527         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
35528
35529 2007-04-23  Bruno Haible  <bruno@clisp.org>
35530
35531         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
35532
35533 2007-04-23  Bruno Haible  <bruno@clisp.org>
35534
35535         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
35536         Needed on HP-UX 11.
35537
35538 2007-04-16  Eric Blake  <ebb9@byu.net>
35539
35540         Make fflush rely on fpurge.
35541         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
35542         open coding all variants.
35543         * modules/fflush (Depends-on): Add fpurge and unistd.
35544         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
35545         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
35546
35547         Fix --with-tests compilation on cygwin.
35548         * modules/argmatch-tests (Makefile.am): List gnulib library first
35549         in LDADD.
35550         * modules/argp-tests (Makefile.am): Likewise.
35551         * modules/array-list-tests (Makefile.am): Likewise.
35552         * modules/array-oset-tests (Makefile.am): Likewise.
35553         * modules/avltree-list-tests (Makefile.am): Likewise.
35554         * modules/avltree-oset-tests (Makefile.am): Likewise.
35555         * modules/avltreehash-list-tests (Makefile.am): Likewise.
35556         * modules/carray-list-tests (Makefile.am): Likewise.
35557         * modules/dirname-tests (Makefile.am): Likewise.
35558         * modules/frexp-tests (Makefile.am): Likewise.
35559         * modules/isnanl-tests (Makefile.am): Likewise.
35560         * modules/linked-list-tests (Makefile.am): Likewise.
35561         * modules/linkedhash-list-tests (Makefile.am): Likewise.
35562         * modules/lock-tests (Makefile.am): Likewise.
35563         * modules/rbtree-list-tests (Makefile.am): Likewise.
35564         * modules/rbtree-oset-tests (Makefile.am): Likewise.
35565         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
35566         * modules/tls-tests (Makefile.am): Likewise.
35567         * modules/tsearch-tests (Makefile.am): Likewise.
35568         * modules/xvasprintf-tests (Makefile.am): Likewise.
35569
35570         Fix fpurge for cygwin.
35571         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
35572         value.
35573         * modules/fpurge-tests (Depends-on): Clean up trash.
35574
35575 2007-04-16  Simon Josefsson  <simon@josefsson.org>
35576
35577         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
35578
35579         * m4/autobuild.m4: Re-indent.
35580
35581 2007-04-13  Bruno Haible  <bruno@clisp.org>
35582
35583         * modules/fpurge-tests: New file.
35584         * tests/test-fpurge.c: New file.
35585
35586         * modules/fpurge: New file.
35587         * lib/fpurge.h: New file.
35588         * lib/fpurge.c: New file.
35589         * m4/fpurge.m4: New file.
35590
35591 2007-04-13  Bruno Haible  <bruno@clisp.org>
35592
35593         * modules/fbufmode-tests: New file.
35594         * tests/test-fbufmode.c: New file.
35595
35596         * modules/fbufmode: New file.
35597         * lib/fbufmode.h: New file.
35598         * lib/fbufmode.c: New file.
35599         * m4/fbufmode.m4: New file.
35600
35601 2007-04-13  Bruno Haible  <bruno@clisp.org>
35602
35603         * modules/fwritable-tests: New file.
35604         * tests/test-fwritable.c: New file.
35605
35606         * modules/fwritable: New file.
35607         * lib/fwritable.h: New file.
35608         * lib/fwritable.c: New file.
35609         * m4/fwritable.m4: New file.
35610
35611 2007-04-13  Bruno Haible  <bruno@clisp.org>
35612
35613         * modules/freadable-tests: New file.
35614         * tests/test-freadable.c: New file.
35615
35616         * modules/freadable: New file.
35617         * lib/freadable.h: New file.
35618         * lib/freadable.c: New file.
35619         * m4/freadable.m4: New file.
35620
35621 2007-04-13  Bruno Haible  <bruno@clisp.org>
35622
35623         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
35624         MOSTLYCLEANFILES.
35625
35626 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
35627
35628         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
35629         gzip bootstrap.conf to avoid dragging in i18n machinery.
35630         (gnulib_tool_option): Use it.
35631
35632 2007-04-13  Bruno Haible  <bruno@clisp.org>
35633
35634         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
35635         %F directives.
35636         * tests/test-vasprintf-posix.c (test_function): Likewise.
35637         * tests/test-snprintf-posix.h (test_function): Likewise.
35638         * tests/test-sprintf-posix.h (test_function): Likewise.
35639         * tests/test-fprintf-posix.h (test_function): Likewise.
35640         * tests/test-printf-posix.h (test_function): Likewise.
35641         * tests/test-fprintf-posix.out: Likewise.
35642
35643 2007-04-13  Bruno Haible  <bruno@clisp.org>
35644
35645         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
35646         * modules/tls-tests (configure.ac): Likewise.
35647         Reported by Arto C. Nirkko <anirkko@insel.ch>.
35648
35649 2007-04-13  Bruno Haible  <bruno@clisp.org>
35650
35651         * lib/tls.c (glthread_tls_get): Fix return type.
35652         Patch by Arto C. Nirkko <anirkko@insel.ch>.
35653
35654 2007-04-12  Eric Blake  <ebb9@byu.net>
35655
35656         * modules/gettime (Depends-on): Remove gettime.
35657         Reported by Dmitry V. Levin.
35658
35659 2007-04-12  Bruno Haible  <bruno@clisp.org>
35660
35661         * modules/fflush (Include): Mention <stdio.h>.
35662         * modules/strtoimax (Include): Mention <inttypes.h>.
35663         * modules/strtoumax (Include): Likewise.
35664
35665 2007-04-12  Eric Blake  <ebb9@byu.net>
35666
35667         * .cvsignore: New file.
35668         * .gitignore: Likewise.
35669
35670 2007-04-12  Bruno Haible  <bruno@clisp.org>
35671
35672         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
35673         not before, since $(LDADD) often contains libgnu.a.
35674         * modules/striconv-tests (test_striconv_LDADD): Likewise.
35675         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
35676         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
35677         Needed on Cygwin.
35678
35679 2007-04-12  Eric Blake  <ebb9@byu.net>
35680
35681         Work around glibc's failure to flush stdin on fclose.
35682         * lib/closein.c (close_stdin): Flush stdin before closing.
35683
35684         Work around glibc's failure to reset seekable stdin on exit.
35685         * modules/closein: New module.
35686         * lib/closein.c: New file.
35687         * lib/closein.h: Likewise.
35688         * m4/closein.m4: Likewise.
35689         * MODULES.html.sh (File stream based Input/Output): Document it.
35690
35691 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35692
35693         * gnulib-tool: Rename generated 'autobuild' script to
35694         'do-autobuild' in --create-megatestdir output.
35695
35696         * doc/gnulib.texi (Build robot for gnulib): Fix.
35697
35698 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35699
35700         * modules/sysexits (Depends-on): Add absolute-header.
35701
35702 2007-04-12  Eric Blake  <ebb9@byu.net>
35703
35704         No need to preserve errno on success.
35705         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
35706         Reported by Bruno Haible.
35707
35708 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35709
35710         * MODULES.html.sh (Support for maintaining and releasing
35711         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
35712
35713 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35714
35715         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
35716
35717 2007-04-12  Simon Josefsson  <simon@josefsson.org>
35718
35719         * modules/autobuild: New module.
35720
35721         * m4/autobuild.m4: New file.
35722
35723 2007-04-11  Bruno Haible  <bruno@clisp.org>
35724
35725         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
35726         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
35727         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
35728         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
35729         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35730         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35731         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35732         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35733         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35734         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35735         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
35736         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35737         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35738         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
35739         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35740         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35741         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
35742         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35743         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35744         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
35745         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35746         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35747         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
35748         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35749         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35750         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
35751         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
35752         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
35753         Reported by Eric Blake.
35754
35755 2007-04-11  Bruno Haible  <bruno@clisp.org>
35756
35757         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
35758
35759 2007-04-10  Bruno Haible  <bruno@clisp.org>
35760
35761         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
35762         for NaN and Infinity. Needed on FreeBSD 6.1.
35763         * tests/test-vasnprintf-posix.c (test_function): Undo last change
35764         regarding results for "%010a" of Infinity and NaN.
35765         * tests/test-vasprintf-posix.c (test_function): Likewise.
35766         * tests/test-snprintf-posix.h (test_function): Likewise.
35767         * tests/test-sprintf-posix.h (test_function): Likewise.
35768         * tests/test-fprintf-posix.h (test_function): Likewise.
35769         * tests/test-printf-posix.h (test_function): Likewise.
35770         * tests/test-fprintf-posix.out: Likewise.
35771
35772 2007-04-10  Bruno Haible  <bruno@clisp.org>
35773
35774         * modules/locale-tests: New file.
35775         * tests/test-locale.c: New file.
35776
35777         * modules/locale: New file.
35778         * lib/locale_.h: New file.
35779         * m4/locale_h.m4: New file.
35780
35781 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
35782             Bruno Haible  <bruno@clisp.org>
35783
35784         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
35785         be determined, test for availability of the copysignf, copysign,
35786         copysignl functions.
35787         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
35788         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
35789         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
35790
35791 2007-04-09  Eric Blake  <ebb9@byu.net>
35792
35793         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
35794         * modules/stdio (Makefile.am): Support fflush.
35795         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
35796         * modules/fflush: New file.
35797         * lib/fflush.c: Likewise.
35798         * m4/fflush.m4: Likewise.
35799         * modules/fflush-tests: New test.
35800         * tests/test-fflush.c: Likewise.
35801         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
35802
35803 2007-04-06  Bruno Haible  <bruno@clisp.org>
35804
35805         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
35806         (VASNPRINTF): Use signbit for faster determination whether to print a
35807         minus sign.
35808         * modules/vasnprintf (Files): Remove lib/float+.h.
35809         * modules/fprintf-posix (Depends-on): Add signbit.
35810         * modules/snprintf-posix (Depends-on): Likewise.
35811         * modules/sprintf-posix (Depends-on): Likewise.
35812         * modules/vasnprintf-posix (Depends-on): Likewise.
35813         * modules/vasprintf-posix (Depends-on): Likewise.
35814         * modules/vfprintf-posix (Depends-on): Likewise.
35815         * modules/vsnprintf-posix (Depends-on): Likewise.
35816         * modules/vsprintf-posix (Depends-on): Likewise.
35817
35818 2007-04-06  Bruno Haible  <bruno@clisp.org>
35819
35820         * tests/test-frexp.c (main): Test also the sign bit of zero results.
35821         * tests/test-frexpl.c (main): Likewise.
35822         * tests/test-ldexpl.c (main): Likewise.
35823         * modules/frexp-tests (Depends-on): Add signbit.
35824         * modules/frexpl-tests (Depdends-on): Likewise.
35825         * modules/ldexpl-tests (Depdends-on): Likewise.
35826
35827 2007-04-06  Bruno Haible  <bruno@clisp.org>
35828
35829         * modules/signbit-tests: New file.
35830         * tests/test-signbit.c: New file.
35831
35832         * modules/signbit: New file.
35833         * lib/signbitf.c: New file.
35834         * lib/signbitd.c: New file.
35835         * lib/signbitl.c: New file.
35836         * m4/signbit.m4: New file.
35837         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
35838         (signbit): New macro.
35839         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
35840         REPLACE_SIGNBIT.
35841         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
35842         REPLACE_FREXPL into math.h.
35843
35844 2007-04-06  Bruno Haible  <bruno@clisp.org>
35845
35846         * modules/isnanf-nolibm-tests: New file.
35847         * tests/test-isnanf.c: New file.
35848
35849         * modules/isnanf-nolibm: New file.
35850         * lib/isnanf.h: New file.
35851         * lib/isnanf.c: New file.
35852         * lib/isnan.c: Consider the USE_FLOAT macro.
35853         * m4/isnanf.m4: New file.
35854
35855 2007-04-06  Bruno Haible  <bruno@clisp.org>
35856
35857         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
35858         (Link): New section.
35859
35860         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
35861
35862 2007-04-06  Bruno Haible  <bruno@clisp.org>
35863
35864         Assume the 'long double' type.
35865         * m4/longdouble.m4: Remove file.
35866         * config/srclist.txt: Don't mention longdouble.m4.
35867         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
35868         * lib/float+.h: Likewise.
35869         * lib/frexp.c: Likewise.
35870         * lib/printf-args.h: Likewise.
35871         * lib/printf-args.c: Likewise.
35872         * lib/printf-frexp.c: Likewise.
35873         * lib/printf-parse.c: Likewise.
35874         * lib/vasnprintf.c: Likewise.
35875         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
35876         * m4/intl.m4: Likewise.
35877         * m4/isnanl.m4: Likewise.
35878         * m4/printf.m4: Likewise.
35879         * m4/printf-frexpl.m4: Likewise.
35880         * m4/vasnprintf.m4: Likewise.
35881         * modules/allocsa (Files): Remove m4/longdouble.m4.
35882         * modules/gettext (Files): Likewise.
35883         * modules/relocatable-prog-wrapper (Files): Likewise.
35884         * modules/vasnprintf (Files): Likewise.
35885         * modules/isnanl (Files): Likewise.
35886         (Include): Simplify.
35887         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
35888         (Include): Simplify.
35889         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
35890         (Include): Simplify.
35891         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
35892         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35893         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
35894         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35895         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
35896         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35897         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
35898         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35899         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
35900         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35901         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
35902         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
35903         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
35904         * tests/test-isnanl.c: Likewise.
35905         * tests/test-snprintf-posix.h: Likewise.
35906         * tests/test-sprintf-posix.h: Likewise.
35907         * tests/test-vasnprintf-posix.c: Likewise.
35908         * tests/test-vasnprintf-posix2.c: Likewise.
35909         * tests/test-vasprintf-posix.c: Likewise.
35910
35911 2007-04-06  Bruno Haible  <bruno@clisp.org>
35912
35913         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
35914         * lib/math_.h [__DECC]: Include the overridden include file through
35915         #include_next, outside the double-inclusion guard.
35916         * lib/stdio_.h [__DECC]: Likewise.
35917         * lib/stdlib_.h [__DECC]: Likewise.
35918         * lib/string_.h [__DECC]: Likewise.
35919         * lib/time_.h [__DECC]: Likewise.
35920         * lib/wchar_.h [__DECC]: Likewise.
35921         * lib/wctype_.h [__DECC]: Likewise.
35922         * lib/inttypes_.h [__DECC]: Likewise.
35923         Reported by Albert Chin <china@thewrittenword.com> in
35924         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
35925
35926 2007-04-04  Eric Blake  <ebb9@byu.net>
35927
35928         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
35929         1.5.x.
35930
35931 2007-04-04  Bruno Haible  <bruno@clisp.org>
35932
35933         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
35934         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
35935
35936 2007-04-04  Bruno Haible  <bruno@clisp.org>
35937
35938         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
35939         results for "%010a" of Infinity and NaN.
35940         * tests/test-vasprintf-posix.c (test_function): Likewise.
35941         * tests/test-snprintf-posix.h (test_function): Likewise.
35942         * tests/test-sprintf-posix.h (test_function): Likewise.
35943         * tests/test-fprintf-posix.h (test_function): Remove these tests.
35944         * tests/test-printf-posix.h (test_function): Likewise.
35945         * tests/test-fprintf-posix.out: Update.
35946         Needed for FreeBSD 6.1.
35947
35948 2007-04-04  Bruno Haible  <bruno@clisp.org>
35949
35950         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
35951         directly used by the gnulib modules nor by gnulib-tool.
35952
35953 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
35954
35955         * DEPENDENCIES: Give overall description of version dependency
35956         desirability.  Use more-typical names for apps.
35957         Add shell, coreutils, diffutils, grep, tar, gzip.
35958
35959 2007-04-04  Simon Josefsson  <simon@josefsson.org>
35960
35961         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
35962
35963 2007-04-04  Karl Berry  <karl@gnu.org>
35964
35965         * MODULES.html.sh (func_module): missing '.
35966
35967 2007-04-03  Bruno Haible  <bruno@clisp.org>
35968
35969         * modules/argmatch-tests (Makefile.am): New variable
35970         test_argmatch_LDADD.
35971         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
35972         * modules/array-list-tests (Makefile.am): New variable
35973         test_array_list_LDADD.
35974         * modules/array-oset-tests (Makefile.am): New variable
35975         test_array_oset_LDADD.
35976         * modules/avltree-list-tests (Makefile.am): New variable
35977         test_avltree_list_LDADD.
35978         * modules/avltree-oset-tests (Makefile.am): New variable
35979         test_avltree_oset_LDADD.
35980         * modules/avltreehash-list-tests (Makefile.am): New variable
35981         test_avltreehash_list_LDADD.
35982         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
35983         test_canonicalize_lgpl_LDADD.
35984         * modules/carray-list-tests (Makefile.am): New variable
35985         test_carray_list_LDADD.
35986         * modules/dirname-tests (Makefile.am): New variable
35987         test_dirname_LDADD.
35988         * modules/linked-list-tests (Makefile.am): New variable
35989         test_linked_list_LDADD.
35990         * modules/linkedhash-list-tests (Makefile.am): New variable
35991         test_linkedhash_list_LDADD.
35992         * modules/rbtree-list-tests (Makefile.am): New variable
35993         test_rbtree_list_LDADD.
35994         * modules/rbtree-oset-tests (Makefile.am): New variable
35995         test_rbtree_oset_LDADD.
35996         * modules/rbtreehash-list-tests (Makefile.am): New variable
35997         test_rbtreehash_list_LDADD.
35998         * modules/xvasprintf-tests (Makefile.am): New variable
35999         test_xvasprintf_LDADD.
36000         Reported by Eric Blake.
36001
36002 2007-04-03  Eric Blake  <ebb9@byu.net>
36003
36004         * DEPENDENCIES: Weaken m4 requirements.
36005
36006 2007-04-03  Bruno Haible  <bruno@clisp.org>
36007
36008         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
36009         * modules/isnanl-tests (configure.ac): Likewise.
36010
36011 2007-04-03  Ben Pfaff  <blp@gnu.org>
36012
36013         * modules/iconv_open: Add $(srcdir)/ to source directory
36014         references in Makefile fragments that call gperf, to fix VPATH
36015         builds.
36016
36017 2007-04-03  Bruno Haible  <bruno@clisp.org>
36018
36019         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
36020         * lib/ldexpl.c: Undo last change.
36021
36022 2007-04-03  Bruno Haible  <bruno@clisp.org>
36023
36024         * modules/printf-frexpl (Depends-on): Undo last change.
36025         (Files): Add m4/ldexpl.m4.
36026
36027 2007-04-03  Bruno Haible  <bruno@clisp.org>
36028
36029         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
36030         * modules/isnanl (Link): New section.
36031
36032         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
36033         * modules/frexp (Link): New section.
36034
36035         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
36036         * modules/frexpl (Link): New section.
36037
36038         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
36039         * modules/ldexpl (Link): New section.
36040
36041 2007-04-03  Bruno Haible  <bruno@clisp.org>
36042
36043         * modules/TEMPLATE-EXTENDED: New file.
36044         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
36045
36046 2007-04-03  Bruno Haible  <bruno@clisp.org>
36047
36048         * DEPENDENCIES: New file.
36049         Suggested by Simon Josefsson.
36050
36051 2007-04-03  Bruno Haible  <bruno@clisp.org>
36052
36053         * doc/gnulib.texi: Escape @.
36054
36055 2007-04-03  James Youngman  <jay@gnu.org>
36056         and Paul Eggert  <eggert@cs.ucla.edu>
36057
36058         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
36059         birthtime on all systems that have birthtime, not just those which
36060         use st_birthtimensec rather than st_birthtim.  Putting zero in
36061         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
36062         that the birth time is not available for files on an NFS mount.
36063
36064 2007-04-03  Simon Josefsson  <simon@josefsson.org>
36065
36066         * modules/memxor: Move back from crypto/, suggested by Bruno.
36067         * modules/crypto/hmac-sha1: Fix memxor dependency.
36068
36069         * modules/crypto/gc: Moved from ../.
36070
36071 2007-04-02  Eric Blake  <ebb9@byu.net>
36072
36073         * lib/ldexpl.c (includes): Avoid libm.
36074
36075         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
36076
36077 2007-04-02  Bruno Haible  <bruno@clisp.org>
36078
36079         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
36080         on IRIX.
36081
36082 2007-04-02  Bruno Haible  <bruno@clisp.org>
36083
36084         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
36085         x86 or x86_64 platforms running MacOS X.
36086         Reported by Ryan Schmidt <@ryandesign.com>.
36087
36088 2007-04-02  Bruno Haible  <bruno@clisp.org>
36089
36090         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
36091         i386.
36092
36093 2007-04-01  Simon Josefsson  <simon@josefsson.org>
36094
36095         * modules/crypto/arcfour: Moved from ../.
36096         * modules/crypto/arcfour-tests: Moved from ../.
36097         * modules/crypto/arctwo: Moved from ../.
36098         * modules/crypto/arctwo-tests: Moved from ../.
36099         * modules/crypto/des: Moved from ../.
36100         * modules/crypto/des-tests: Moved from ../.
36101         * modules/crypto/gc-arcfour: Moved from ../.
36102         * modules/crypto/gc-arcfour-tests: Moved from ../.
36103         * modules/crypto/gc-arctwo: Moved from ../.
36104         * modules/crypto/gc-arctwo-tests: Moved from ../.
36105         * modules/crypto/gc-des: Moved from ../.
36106         * modules/crypto/gc-des-tests: Moved from ../.
36107         * modules/crypto/gc-hmac-md5: Moved from ../.
36108         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
36109         * modules/crypto/gc-hmac-sha1: Moved from ../.
36110         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
36111         * modules/crypto/gc-md2: Moved from ../.
36112         * modules/crypto/gc-md2-tests: Moved from ../.
36113         * modules/crypto/gc-md4: Moved from ../.
36114         * modules/crypto/gc-md4-tests: Moved from ../.
36115         * modules/crypto/gc-md5: Moved from ../.
36116         * modules/crypto/gc-md5-tests: Moved from ../.
36117         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
36118         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
36119         * modules/crypto/gc-random: Moved from ../.
36120         * modules/crypto/gc-rijndael: Moved from ../.
36121         * modules/crypto/gc-rijndael-tests: Moved from ../.
36122         * modules/crypto/gc-sha1: Moved from ../.
36123         * modules/crypto/gc-sha1-tests: Moved from ../.
36124         * modules/crypto/gc-tests: Moved from ../.
36125         * modules/crypto/hmac-md5: Moved from ../.
36126         * modules/crypto/hmac-md5-tests: Moved from ../.
36127         * modules/crypto/hmac-sha1: Moved from ../.
36128         * modules/crypto/hmac-sha1-tests: Moved from ../.
36129         * modules/crypto/md2: Moved from ../.
36130         * modules/crypto/md2-tests: Moved from ../.
36131         * modules/crypto/md4: Moved from ../.
36132         * modules/crypto/md4-tests: Moved from ../.
36133         * modules/crypto/md5: Moved from ../.
36134         * modules/crypto/md5-tests: Moved from ../.
36135         * modules/crypto/memxor: Moved from ../.
36136         * modules/crypto/rijndael: Moved from ../.
36137         * modules/crypto/rijndael-tests: Moved from ../.
36138         * modules/crypto/sha1: Moved from ../.
36139
36140 2007-03-30  James Youngman  <jay@gnu.org>
36141
36142         * tests/test-stat-time.c (prepare_test): use chmod() rather than
36143         rename() to change the ctime of a file (because ctime is unaffected
36144         by rename on jfs2 on AIX 5.1).
36145         (main): Start by doing cleanup, in case a previous run failed leaving
36146         test files behind.
36147
36148 2007-03-31  Bruno Haible  <bruno@clisp.org>
36149
36150         Support old proprietary implementations of iconv.
36151         * modules/iconv_open: New file.
36152         * lib/iconv_.h: New file.
36153         * m4/iconv_h.m4: New file.
36154         * lib/iconv_open.c: New file.
36155         * lib/iconv_open-aix.gperf: New file.
36156         * lib/iconv_open-hpux.gperf: New file.
36157         * lib/iconv_open-irix.gperf: New file.
36158         * lib/iconv_open-osf.gperf: New file.
36159         * m4/iconv_open.m4: New file.
36160         * modules/linebreak (Depends-on): Add iconv_open.
36161         * modules/striconv (Depends-on): Likewise.
36162         * modules/striconveh (Depends-on): Likewise.
36163         * modules/unicodeio (Depends-on): Likewise.
36164         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
36165         (iconv_t)(-1).
36166         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
36167         conversion if cd is (iconv_t)(-1).
36168         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
36169         is not possible.
36170
36171 2007-03-31  Bruno Haible  <bruno@clisp.org>
36172
36173         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
36174         work on Solaris either. Protect also second use of "autodetect_jp".
36175
36176 2007-03-31  Bruno Haible  <bruno@clisp.org>
36177
36178         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
36179         the function is not present.
36180
36181 2007-03-31  Bruno Haible  <bruno@clisp.org>
36182
36183         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
36184         the function is not present.
36185
36186 2007-03-31  Bruno Haible  <bruno@clisp.org>
36187
36188         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
36189         a bug in HP-UX iconv_open().
36190
36191 2007-03-31  Bruno Haible  <bruno@clisp.org>
36192
36193         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
36194         (Mathematics <math.h>): New section, add fpieee.
36195         (Input/output <stdio.h>): Add fseterr.
36196         (Mathematics <math.h>): New section, add printf-frexp.
36197         (Container data structures): Add sublist.
36198         (Core language properties): Add fpucw, inline.
36199         (Functions for greatest-width integer types <inttypes.h>): Add
36200         imaxabs, imaxdiv, inttypes.
36201         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
36202         isnanl-nolibm, ldexp.
36203         (Mathematics <math.h>): New section, add printf-frexpl.
36204         (Support for systems lacking POSIX:2001): Add fprintf-posix,
36205         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
36206         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
36207         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
36208         (Unicode string functions): Add unistr/u*-mbtoucr.
36209         (Java): Add javacomp-script, javaexec-script.
36210         (C#): Add csharpcomp-script, csharpexec-script.
36211         (Support for building libraries and executables): Add havelib,
36212         relocatable-*.
36213         (Support for maintaining and releasing projects): Renamed from
36214         'Support for maintaining and release projects'. Add announce-gen.
36215
36216 2007-03-31  Bruno Haible  <bruno@clisp.org>
36217
36218         * README: Talk primarily about git.
36219         (git and CVS): Renamed from CVS.
36220         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
36221         gnulib is available through git.
36222         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
36223
36224 2007-03-30  Bruno Haible  <bruno@clisp.org>
36225
36226         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
36227         * lib/poll_.h: Likewise.
36228         * lib/stat_.h: Likewise.
36229         * lib/sys_time_.h: Likewise.
36230         * lib/sysexit_.h: Likewise.
36231         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
36232         * lib/stdbool_.h: Likewise.
36233         * lib/byteswap_.h: Add double-inclusion guard.
36234
36235 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
36236
36237         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
36238
36239 2007-03-30  Karl Berry  <karl@gnu.org>
36240
36241         * config/srclist-update: double space after USA in the license
36242         substitution, since that's how it's usually (?) written.
36243
36244 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
36245
36246         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
36247         reported by Bruno Haible.
36248
36249 2007-03-29  Bruno Haible  <bruno@clisp.org>
36250
36251         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
36252         a bug in AIX iconv().
36253
36254 2007-03-29  Bruno Haible  <bruno@clisp.org>
36255
36256         * modules/ldexpl-tests: New file.
36257         * tests/test-ldexpl.c: New file.
36258
36259 2007-03-29  Bruno Haible  <bruno@clisp.org>
36260
36261         * lib/ldexpl.c: Include fpucw.h.
36262         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
36263         multiplication.
36264         * modules/ldexpl (Depends-on): Add fpucw.
36265
36266 2007-03-29  Bruno Haible  <bruno@clisp.org>
36267
36268         * modules/ldexpl: New file.
36269         * m4/ldexpl.m4: New file.
36270         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
36271         set.
36272         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
36273         REPLACE_LDEXPL.
36274         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
36275         REPLACE_LDEXPL.
36276         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
36277         gl_FUNC_LDEXPL_WORKS.
36278         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
36279         * modules/mathl (Files): Remove lib/ldexpl.c.
36280         (Depends-on): Add ldexpl.
36281
36282 2007-03-29  Bruno Haible  <bruno@clisp.org>
36283
36284         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
36285
36286 2007-03-29  Bruno Haible  <bruno@clisp.org>
36287
36288         * tests/test-striconveh.c (main): Don't assume that a direct conversion
36289         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
36290         and possibly also HP-UX.
36291         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
36292         work on AIX, IRIX, HP-UX, OSF/1.
36293         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
36294         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
36295         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
36296         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
36297         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
36298         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
36299
36300 2007-03-29  Bruno Haible  <bruno@clisp.org>
36301
36302         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
36303
36304 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
36305
36306         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
36307         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
36308
36309 2007-03-29  Eric Blake  <ebb9@byu.net>
36310
36311         * lib/acl-internal.h: Remove redundant include.
36312         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
36313         Cygwin when a file is locked.
36314
36315 2007-03-29  Bruno Haible  <bruno@clisp.org>
36316
36317         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
36318         file.
36319         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
36320
36321 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
36322
36323         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
36324         try to remove a parent directory if the child couldn't be removed
36325         (except for the first rmdir, which could fail because the child
36326         doesn't exist).  Problem reported by Jeff Blaine in
36327         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
36328
36329 2007-03-28  Bruno Haible  <bruno@clisp.org>
36330
36331         * lib/striconveh.c (utf8conv_carefully): New function.
36332         (mem_cd_iconveh_internal): Invoke it.
36333
36334 2007-03-28  Bruno Haible  <bruno@clisp.org>
36335
36336         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
36337         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
36338         input.
36339         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
36340         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
36341         unistr/u8-uctomb.
36342
36343 2007-03-28  Bruno Haible  <bruno@clisp.org>
36344
36345         * modules/unistr/u8-mbtoucr: New file.
36346         * lib/unistr/u8-mbtoucr.c: New file.
36347         * modules/unistr/u16-mbtoucr: New file.
36348         * lib/unistr/u16-mbtoucr.c: New file.
36349         * modules/unistr/u16-mbtoucr: New file.
36350         * lib/unistr/u16-mbtoucr.c: New file.
36351         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
36352
36353 2007-03-27  Simon Josefsson  <simon@josefsson.org>
36354             Bruno Haible  <bruno@clisp.org>
36355
36356         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
36357         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
36358         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
36359
36360         * m4/stdio_h.m4: Add stubs for vasprintf too.
36361
36362         * modules/stdio: Support vasprintf in sed command.
36363
36364         * modules/vasprintf: Depend on stdio for prototypes.  Remove
36365         vasprintf.h.  Add stdio module indicator.
36366
36367         * lib/stdio_.h: Declare asprintf and vasprintf, based on
36368         vasprintf.h.
36369
36370         * lib/vasprintf.h: File removed.
36371
36372         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
36373         * lib/vasprintf.c: Ditto.
36374         * lib/xvasprintf.c: Ditto.
36375         * tests/test-vasprintf-posix.c: Ditto.
36376         * tests/test-vasprintf.c: Ditto.
36377
36378 2007-03-27  Bruno Haible  <bruno@clisp.org>
36379
36380         Make vasnprintf multithread-safe.
36381         * lib/vasnprintf.c (decimal_point_char): New function.
36382         (VASNPRINTF): Use it.
36383         Suggested by Simon Josefsson.
36384
36385 2007-03-27  Eric Blake  <ebb9@byu.net>
36386
36387         Support sub-second birthtime on cygwin.
36388         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
36389         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
36390         (get_stat_birthtime): Also work with st_birthtim.
36391
36392 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
36393
36394         * lib/stat-time.h (USE_BIRTHTIME): Remove.
36395         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
36396         (get_stat_birthtime_ns): Do not try to use "spare" fields.
36397         (get_stat_birthtime_ns): Simplify compile-time tests.
36398         (get_stat_birthtime): Change the API to look like
36399         get_stat_mtime etc., except return a negative tv_nsec on error.
36400         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
36401         Don't check for "spare" fields.
36402         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
36403         or for struct stat.st_birthtime, as these tests aren't used.
36404         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
36405
36406 2007-03-27  Bruno Haible  <bruno@clisp.org>
36407
36408         * lib/stat-time.h: Include <sys/stat.h>.
36409
36410 2007-03-27  James Youngman  <jay@gnu.org>
36411
36412         * lib/stat-time.h (get_stat_birthtime): New function for
36413           retrieving st_birthtime as provided by UFS2 (hence *BSD).
36414         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
36415           and its variants.
36416         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
36417         * modules/stat-time-test: New file.
36418         * tests/test-stat-time.c: New test, devised by Bruno Haible.
36419
36420 2007-03-26  Bruno Haible  <bruno@clisp.org>
36421
36422         Better support of signalling NaNs.
36423         * lib/atanl.c: Include isnanl.h.
36424         (atanl): Perform test for NaN at the beginning of the function and
36425         through a call to isnanl.
36426         * lib/cosl.c: Include isnanl.h.
36427         (cosl): Perform test for NaN at the beginning of the function and
36428         through a call to isnanl.
36429         * lib/ldexpl.c: Include isnanl.h.
36430         (ldexpl): Perform test for NaN through a call to isnanl.
36431         * lib/logl.c: Include isnanl.h.
36432         (logl): Perform test for NaN at the beginning of the function and
36433         through a call to isnanl.
36434         * lib/sinl.c: Include isnanl.h.
36435         (sinl): Perform test for NaN at the beginning of the function and
36436         through a call to isnanl.
36437         * lib/sqrtl.c: Include isnanl.h.
36438         (sqrtl): Perform test for NaN at the beginning of the function and
36439         through a call to isnanl.
36440         * lib/tanl.c: Include isnanl.h.
36441         (tanl): Perform test for NaN at the beginning of the function and
36442         through a call to isnanl.
36443         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
36444         * modules/mathl (Depends-on): Add isnanl.
36445
36446 2007-03-26  Eric Blake  <ebb9@byu.net>
36447
36448         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
36449         regression in logic sense of previous patch.
36450
36451 2007-03-26  Bruno Haible  <bruno@clisp.org>
36452
36453         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
36454         unportable shell command "if ! ...".
36455         Reported by Ralf Wildenhues.
36456
36457 2007-03-25  Bruno Haible  <bruno@clisp.org>
36458
36459         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
36460         <sysexits.h> file, and only add EX_CONFIG.
36461         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
36462         absolute file name and whether it is sufficient. Substitute also
36463         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
36464         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
36465         ABSOLUTE_SYSEXITS_H into sysexits.h.
36466
36467 2007-03-25  Bruno Haible  <bruno@clisp.org>
36468
36469         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
36470         hints is NULL.
36471
36472 2007-03-25  Bruno Haible  <bruno@clisp.org>
36473
36474         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
36475         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
36476
36477 2007-03-25  Bruno Haible  <bruno@clisp.org>
36478
36479         * lib/vasnprintf.c: Include langinfo.h.
36480         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
36481         multithread-safe.
36482         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
36483         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
36484         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
36485         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
36486         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
36487         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
36488         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
36489         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
36490         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
36491         Reported by Simon Josefsson.
36492
36493 2007-03-25  Bruno Haible  <bruno@clisp.org>
36494
36495         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
36496         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
36497         * modules/vasnprintf (Depends-on): Add stdint.
36498
36499 2007-03-25  Bruno Haible  <bruno@clisp.org>
36500
36501         * modules/fpieee: New file.
36502         * m4/fpieee.m4: New file.
36503         * modules/isnan-nolibm (Depends-on): Add fpieee.
36504         * modules/isnanl-nolibm (Depends-on): Add fpieee.
36505         * modules/isnanl (Depends-on): Add fpieee.
36506
36507 2007-03-25  Bruno Haible  <bruno@clisp.org>
36508
36509         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
36510
36511 2007-03-25  Bruno Haible  <bruno@clisp.org>
36512
36513         Avoid test failures on IRIX 6.5.
36514         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
36515         (main): Use it.
36516         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
36517         macros.
36518         (main): Use them.
36519
36520 2007-03-25  Bruno Haible  <bruno@clisp.org>
36521
36522         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
36523         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
36524         exists but doesn't work.
36525         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
36526         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
36527         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
36528         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
36529
36530 2007-03-25  Bruno Haible  <bruno@clisp.org>
36531
36532         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
36533         returns inf. Needed on IRIX 6.5.
36534
36535 2007-03-25  Bruno Haible  <bruno@clisp.org>
36536
36537         * tests/test-frexpl.c: Include isnanl-nolibm.h.
36538         (main): Use isnanl instead of x != x idiom.
36539         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
36540
36541         * tests/test-frexp.c: Include isnan.h.
36542         (main): Use isnan instead of x != x idiom.
36543         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
36544
36545 2007-03-25  Bruno Haible  <bruno@clisp.org>
36546
36547         * tests/test-frexp.c (NaN): New function/macro.
36548         (main): Use it instead of 0.0 / 0.0.
36549         * tests/test-isnan.c (NaN): New function/macro.
36550         (main): Use it instead of 0.0 / 0.0.
36551         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
36552         (test_function): Use it instead of 0.0 / 0.0.
36553         * tests/test-vasprintf-posix.c (NaN): New function/macro.
36554         (test_function): Use it instead of 0.0 / 0.0.
36555         * tests/test-snprintf-posix.h (NaN): New function/macro.
36556         (test_function): Use it instead of 0.0 / 0.0.
36557         * tests/test-sprintf-posix.h (NaN): New function/macro.
36558         (test_function): Use it instead of 0.0 / 0.0.
36559         * tests/test-fprintf-posix.h (NaN): New function/macro.
36560         (test_function): Use it instead of 0.0 / 0.0.
36561         * tests/test-printf-posix.h (NaN): New function/macro.
36562         (test_function): Use it instead of 0.0 / 0.0.
36563
36564         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
36565
36566 2007-03-25  Bruno Haible  <bruno@clisp.org>
36567
36568         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
36569
36570 2007-03-25  Bruno Haible  <bruno@clisp.org>
36571
36572         * lib/regexec.c (merge_state_with_log): Make static.
36573
36574 2007-03-25  Bruno Haible  <bruno@clisp.org>
36575
36576         * lib/trigl.c (kernel_rem_pio2): Make static.
36577
36578 2007-03-25  Bruno Haible  <bruno@clisp.org>
36579
36580         * lib/sincosl.c (sincosl_table): Make static.
36581
36582 2007-03-25  Bruno Haible  <bruno@clisp.org>
36583
36584         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
36585         if the compiler does not support C99.
36586
36587 2007-03-25  Bruno Haible  <bruno@clisp.org>
36588
36589         * modules/time (Makefile.am): Ensure all rule action lines start with a
36590         tab.
36591
36592 2007-03-24  Bruno Haible  <bruno@clisp.org>
36593
36594         * modules/tsearch-tests: New file.
36595         * tests/test-tsearch.sh: New file.
36596         * tests/test-tsearch.c: New file, mostly copied from glibc.
36597
36598         * modules/search-tests: New file.
36599         * tests/test-search.c: New file.
36600
36601         * modules/search: New file.
36602         * lib/search_.h: New file, incorporating lib/tsearch.h.
36603         * m4/search_h.m4: New file.
36604         * lib/tsearch.h: Remove file.
36605         * lib/tsearch.c: Include search.h instead of tsearch.h.
36606         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
36607         HAVE_TSEARCH.
36608         * modules/tsearch (Files): Remove lib/tsearch.h.
36609         (Depends-on): Add search.
36610         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
36611         (Include): Change tsearch.h into search.h.
36612
36613 2007-03-24  Bruno Haible  <bruno@clisp.org>
36614
36615         * modules/fpucw: New file.
36616         * lib/fpucw.h: New file.
36617         * lib/frexp.c: Include fpucw.h.
36618         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36619         (FUNC): Use them.
36620         * lib/printf-frexp.c: Include fpucw.h.
36621         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
36622         (FUNC): Use them.
36623         * lib/vasnprintf.c: Include fpucw.h.
36624         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
36625         'long double' calculations.
36626         * tests/test-frexpl.c: Include fpucw.h.
36627         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36628         * tests/test-printf-frexpl.c: Include fpucw.h.
36629         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
36630         * modules/frexpl (Depends-on): Add fpucw.
36631         * modules/printf-frexpl (Depends-on): Likewise.
36632         * modules/fprintf-posix (Depends-on): Likewise.
36633         * modules/snprintf-posix (Depends-on): Likewise.
36634         * modules/sprintf-posix (Depends-on): Likewise.
36635         * modules/vasnprintf-posix (Depends-on): Likewise.
36636         * modules/vasprintf-posix (Depends-on): Likewise.
36637         * modules/vfprintf-posix (Depends-on): Likewise.
36638         * modules/vsnprintf-posix (Depends-on): Likewise.
36639         * modules/vsprintf-posix (Depends-on): Likewise.
36640         * modules/frexpl-tests (Depends-on): Likewise.
36641         * modules/printf-frexpl-tests (Depends-on): Likewise.
36642
36643 2007-03-24  Bruno Haible  <bruno@clisp.org>
36644
36645         * lib/float+.h: New file.
36646         * lib/isnan.c: Include float+.h.
36647         (SIZE): New macro.
36648         (FUNC): Compare only SIZE bytes of the value.
36649         * lib/vasnprintf.c: Include float+.h.
36650         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
36651         SIZEOF_LDBL or SIZEOF_DBL bytes.
36652         * modules/isnan-nolibm (Files): Add lib/float+.h.
36653         * modules/isnanl-nolibm (Files): Add lib/float+.h.
36654         * modules/isnanl (Files): Add lib/float+.h.
36655         * modules/vasnprintf (Files): Add lib/float+.h.
36656
36657 2007-03-24  Bruno Haible  <bruno@clisp.org>
36658
36659         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
36660         include isnanl-nolibm.h.
36661
36662 2007-03-24  Bruno Haible  <bruno@clisp.org>
36663
36664         * tests/test-read-file.c (main): Don't produce spurious output for
36665         expected situations. Make the test fail if it encountered unexpected
36666         results.
36667
36668 2007-03-24  Bruno Haible  <bruno@clisp.org>
36669
36670         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
36671         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
36672
36673 2007-03-24  Bruno Haible  <bruno@clisp.org>
36674
36675         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
36676
36677 2007-03-24  Bruno Haible  <bruno@clisp.org>
36678
36679         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
36680         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
36681
36682         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
36683         * modules/utf8-ucs4: Turn into a symbolic link to module
36684         unistr/u8-mbtouc.
36685
36686         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
36687         utf8-ucs4-unsafe.
36688         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
36689         unistr/u8-mbtouc-unsafe.
36690
36691         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
36692         * modules/utf16-ucs4: Turn into a symbolic link to module
36693         unistr/u16-mbtouc.
36694
36695         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
36696         utf16-ucs4-unsafe.
36697         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
36698         unistr/u16-mbtouc-unsafe.
36699
36700         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
36701         * modules/ucs4-utf8: Turn into a symbolic link to module
36702         unistr/u8-ubtomb.
36703
36704         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
36705         * modules/ucs4-utf16: Turn into a symbolic link to module
36706         unistr/u16-ubtomb.
36707
36708 2007-03-24  Bruno Haible  <bruno@clisp.org>
36709
36710         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
36711         Enable the function only if HAVE_INLINE.
36712         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
36713         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36714         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
36715         Enable the function only if HAVE_INLINE.
36716         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
36717         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
36718         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
36719         Enable the function only if HAVE_INLINE.
36720         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
36721         Enable the function only if HAVE_INLINE.
36722         * modules/utf8-ucs4: Update.
36723         * modules/utf8-ucs4-unsafe: Update.
36724         * modules/utf16-ucs4: Update.
36725         * modules/utf16-ucs4-unsafe: Update.
36726         * modules/ucs4-utf8: Update.
36727         * modules/ucs4-utf16: Update.
36728
36729 2007-03-24  Bruno Haible  <bruno@clisp.org>
36730
36731         * lib/utf8-ucs4.h: Remove file.
36732         * lib/utf8-ucs4-unsafe.h: Remove file.
36733         * lib/utf16-ucs4.h: Remove file.
36734         * lib/utf16-ucs4-unsafe.h: Remove file.
36735         * lib/ucs4-utf8.h: Remove file.
36736         * lib/ucs4-utf16.h: Remove file.
36737         * lib/unistr.h: Include their previous contents.
36738         * m4/utf-ucs4.m4: Remove file.
36739         * m4/ucs4-utf.m4: Remove file.
36740         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
36741         (Depends-on): Add unistr/base.
36742         (configure.ac): Remove gl_UTF_UCS4.
36743         (Makefile.am): Update.
36744         (Include): Change to unistr.h.
36745         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
36746         (Depends-on): Add unistr/base.
36747         (configure.ac): Remove gl_UTF_UCS4.
36748         (Makefile.am): Update.
36749         (Include): Change to unistr.h.
36750         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
36751         (Depends-on): Add unistr/base.
36752         (configure.ac): Remove gl_UTF_UCS4.
36753         (Makefile.am): Update.
36754         (Include): Change to unistr.h.
36755         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
36756         (Depends-on): Add unistr/base.
36757         (configure.ac): Remove gl_UTF_UCS4.
36758         (Makefile.am): Update.
36759         (Include): Change to unistr.h.
36760         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
36761         (Depends-on): Add unistr/base.
36762         (configure.ac): Remove gl_UCS4_UTF.
36763         (Makefile.am): Update.
36764         (Include): Change to unistr.h.
36765         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
36766         (Depends-on): Add unistr/base.
36767         (configure.ac): Remove gl_UCS4_UTF.
36768         (Makefile.am): Update.
36769         (Include): Change to unistr.h.
36770         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
36771         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
36772         utf8-ucs4-unsafe.h.
36773         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
36774         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
36775         utf16-ucs4-unsafe.h.
36776         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
36777         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
36778         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
36779         * lib/unistr/u8-strchr.c: Likewise.
36780         * lib/unistr/u8-strrchr.c: Likewise.
36781         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
36782         * lib/unistr/u16-strchr.c: Likewise.
36783         * lib/unistr/u16-strrchr.c: Likewise.
36784         * lib/striconveh.c: Update.
36785         * lib/linebreak.c: Update.
36786
36787 2007-03-24  Bruno Haible  <bruno@clisp.org>
36788
36789         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
36790         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
36791
36792 2007-03-22  Bruno Haible  <bruno@clisp.org>
36793
36794         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
36795
36796 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
36797
36798         * MODULES.html.sh (File system functions): New module write-any-file.
36799         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
36800         * m4/write-any-file.m4: New files.
36801
36802 2007-03-23  Eric Blake  <ebb9@byu.net>
36803
36804         * gnulib-tool: Rearrange space-tab sequences, since some editors
36805         like to eat them.
36806
36807 2007-03-23  Eric Blake  <ebb9@byu.net>
36808
36809         * lib/version-etc.c (version_etc_va): Update license wording to
36810         be more concise.  Recommended by Richard Stallman.
36811
36812 2007-03-22  Bruno Haible  <bruno@clisp.org>
36813
36814         * lib/poll.c (MSG_PEEK): New fallback definition.
36815
36816 2007-03-22  Bruno Haible  <bruno@clisp.org>
36817
36818         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
36819         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
36820         (main): Update.
36821         Fixes a compilation error on BeOS.
36822
36823 2007-03-22  Bruno Haible  <bruno@clisp.org>
36824
36825         * modules/frexpl-tests: New file.
36826         * tests/test-frexpl.c: New file.
36827
36828         * modules/frexpl: New file.
36829         * m4/frexpl.m4: New file.
36830         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
36831         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
36832         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
36833         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
36834         (Depends-on): Add frexpl. Remove isnanl-nolibm.
36835         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
36836
36837 2007-03-22  Bruno Haible  <bruno@clisp.org>
36838
36839         * lib/frexpl.c: Share code with lib/frexp.c.
36840         * modules/mathl (Files): Add lib/frexp.c.
36841         (Depends-on): Add isnanl-nolibm.
36842
36843 2007-03-22  Bruno Haible  <bruno@clisp.org>
36844
36845         * modules/printf-frexp (Files): Add m4/frexp.m4.
36846         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
36847         only if the found frexp function actually works.
36848
36849 2007-03-22  Bruno Haible  <bruno@clisp.org>
36850
36851         * lib/frexp.c: Remove older implementation that uses divisions.
36852
36853 2007-03-21  Bruno Haible  <bruno@clisp.org>
36854
36855         * modules/frexp-tests: New file.
36856         * tests/test-frexp.c: New file.
36857
36858         * modules/frexp: New file.
36859         * lib/frexp.c: New file.
36860         * m4/frexp.m4: New file.
36861         * lib/math_.h (frexp): New declaration.
36862         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
36863         REPLACE_FREXP.
36864         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
36865
36866 2007-03-21  Bruno Haible  <bruno@clisp.org>
36867
36868         * modules/isnanl-tests: New file.
36869         * tests/test-isnanl.c: New file.
36870
36871         * modules/isnanl: New file.
36872         * lib/isnanl.h: New file.
36873         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
36874         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
36875         gl_FUNC_ISNANL_WORKS.
36876         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
36877         New macros.
36878
36879 2007-03-21  Bruno Haible  <bruno@clisp.org>
36880
36881         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
36882         lib/isnanl.h.
36883         (Include): Update.
36884         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
36885         * lib/vasnprintf.c: Update.
36886         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
36887         tests/test-isnanl.h, remove tests/test-isnanl.c.
36888         (Makefile.am): Update.
36889         * tests/test-isnanl-nolibm.c: New file.
36890         * tests/test-isnanl.h: New file.
36891         * tests/test-isnanl.c: Remove file.
36892
36893 2007-03-21  Jim Meyering  <jim@meyering.net>
36894
36895         When trying to open ".", treat ESTALE like EACCES.
36896         * lib/savewd.c (savewd_save): Resort to forking not just upon
36897         failure with EACCES, but also when errno is ESTALE.
36898
36899 2007-03-20  Bruno Haible  <bruno@clisp.org>
36900
36901         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
36902         Needed on AIX 5.1. Reported by Matthew Woehlke.
36903
36904 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36905
36906         Suggestions by Bruno Haible:
36907         * lib/acl-internal.h: Include "gettext.h" rather than rolling
36908         our own.
36909         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
36910         * modules/acl (Depends-on): Add gettext.
36911
36912 2007-03-19  Bruno Haible  <bruno@clisp.org>
36913
36914         * modules/iconvme: Remove file.
36915         * lib/iconvme.h: Remove file.
36916         * lib/iconvme.c: Remove file.
36917         * m4/iconvme.m4: Remove file.
36918
36919 2007-03-19  Bruno Haible  <bruno@clisp.org>
36920
36921         * doc/relocatable-maint.texi: Break long shell script line.
36922         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
36923
36924 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36925
36926         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
36927         handle file_has_acl.
36928         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
36929         * lib/acl.c: Move header inclusions and related macro defns into
36930         lib/acl-internal.h.
36931         (S_ISLNK): Remove defn, since that's now done for us.
36932         (file_has_acl): Move to lib/file-has-acl.c.
36933         Call acl_trivial if available.  This is the crucial part of the fix.
36934         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
36935         shared within the library.  Rewrite a bit, partly to make it compatible
36936         with the GNU coding style.
36937         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
36938         Remove unnecessary double-quotes.
36939         Don't test for acl_to_text; the build will catch that.
36940         Replace acl_entries if it doesn't exist and it is needed.
36941         Check for -lsec and acl_trivial (as used on Solaris 10).
36942         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
36943         lib/file-has-acl.c.
36944         (Depends-on): Add sys_stat, for S_ISLNK.
36945
36946 2007-03-19  Ben Pfaff  <blp@gnu.org>
36947
36948         * doc/gnulib.texi: Fix typos.
36949         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
36950
36951 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
36952
36953         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
36954         If size is zero here, buf must be zero.
36955
36956 2007-03-19  Simon Josefsson  <simon@josefsson.org>
36957
36958         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
36959         <bruno@clisp.org>.
36960
36961 2007-03-18  Bruno Haible  <bruno@clisp.org>
36962
36963         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
36964         Suggested by Eric Blake.
36965
36966 2007-03-18  Ben Pfaff  <blp@gnu.org>
36967
36968         * doc/relocatable.texi: Recommend using as prefix a directory
36969         that does not exist and will never be created.  Based on
36970         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
36971         and others.
36972
36973 2007-03-17  Bruno Haible  <bruno@clisp.org>
36974
36975         * lib/fchownat.c: Include lchown.h.
36976
36977 2007-03-17  Bruno Haible  <bruno@clisp.org>
36978
36979         Fix endless loop when the given allocated size was > INT_MAX.
36980         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
36981         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
36982         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
36983         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
36984         * lib/sprintf.c (sprintf): Likewise.
36985
36986 2007-03-17  Bruno Haible  <bruno@clisp.org>
36987
36988         * tests/test-argp-2.sh (func_compare): Output a context diff.
36989
36990 2007-03-17  Bruno Haible  <bruno@clisp.org>
36991
36992         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
36993         locale's decimal-point character.
36994
36995 2007-03-17  Bruno Haible  <bruno@clisp.org>
36996
36997         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
36998         before comparing it. Needed because on some platforms (e.g. x86) a
36999         'long double' occupies less bytes than sizeof (long double).
37000
37001 2007-03-17  Bruno Haible  <bruno@clisp.org>
37002
37003         * tests/test-crc.c (main): Make printf statements 64-bit clean.
37004         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
37005         * tests/test-getaddrinfo.c (simple): Likewise.
37006         * tests/test-read-file.c (main): Likewise.
37007
37008 2007-03-17  Bruno Haible  <bruno@clisp.org>
37009
37010         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
37011
37012 2007-03-17  Bruno Haible  <bruno@clisp.org>
37013
37014         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
37015         unused variable.
37016
37017 2007-03-17  Bruno Haible  <bruno@clisp.org>
37018
37019         * tests/test-c-strcasecmp.c: Include c-strcase.h.
37020         * tests/test-c-strncasecmp.c: Likewise.
37021
37022 2007-03-17  Bruno Haible  <bruno@clisp.org>
37023
37024         * modules/stdlib (Depends-on): Add unistd.
37025         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
37026         Needed for MacOS X 10.3.
37027
37028 2007-03-17  Bruno Haible  <bruno@clisp.org>
37029
37030         * lib/unistr/u-strdup.h: Include <stdlib.h>.
37031
37032 2007-03-17  Bruno Haible  <bruno@clisp.org>
37033
37034         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
37035
37036 2007-03-17  Bruno Haible  <bruno@clisp.org>
37037
37038         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
37039         to reflect files copied from gnulib (with or without modifications).
37040         Suggested by Jim Meyering.
37041
37042 2007-03-17  Eric Blake  <ebb9@byu.net>
37043
37044         * NEWS: Document stdlib change from 2007-02-18.
37045
37046 2007-03-17  Jim Meyering  <jim@meyering.net>
37047
37048         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
37049         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
37050         someone uses a name containing shell meta-characters.
37051         Reported by Alfred M. Szmidt.
37052
37053         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
37054
37055 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
37056
37057         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
37058         and copy gettext configuration files only if configure.ac contains
37059         a use of AM_GNU_GETTEXT_VERSION.
37060
37061 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
37062
37063         * build-aux/bootstrap (gnulib_name): New variable.
37064         (gnulib_tool_options): Use it.
37065
37066 2007-03-13  Simon Josefsson  <simon@josefsson.org>
37067
37068         * tests/test-des.c: Use new namespace.
37069
37070 2007-03-15  Bruno Haible  <bruno@clisp.org>
37071
37072         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
37073         Reported by James Youngman <jay@gnu.org>.
37074
37075 2007-03-15  Bruno Haible  <bruno@clisp.org>
37076
37077         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
37078         declared prototype. Needed with cc on OSF/1 5.1.
37079
37080 2007-03-15  Bruno Haible  <bruno@clisp.org>
37081
37082         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
37083         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
37084         (struct gl_list_implementation): Add dispose_fn argument to the
37085         'create_empty', 'create' methods.
37086         (struct gl_list_impl_base): Add field 'dispose_fn'.
37087         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
37088         argument.
37089         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
37090         dispose_fn argument.
37091         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
37092         dispose_fn on the dropped values.
37093         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
37094         dispose_fn argument.
37095         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
37096         dropped values.
37097         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
37098         (gl_tree_remove_node): Call dispose_fn on the dropped value.
37099         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
37100         (gl_tree_remove_node): Call dispose_fn on the dropped value.
37101         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
37102         argument.
37103         (gl_tree_list_free): Call dispose_fn on the dropped values.
37104         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
37105         the dropped values.
37106         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
37107         Add dispose_fn argument.
37108         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
37109         Call dispose_fn on the dropped values.
37110         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
37111         Add dispose_fn argument.
37112         (gl_sublist_create): Initialize the 'dispose_fn' field.
37113         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
37114         * tests/test-array_list.c (main): Update.
37115         * tests/test-carray_list.c (main): Update.
37116         * tests/test-avltree_list.c (main): Update.
37117         * tests/test-rbtree_list.c (main): Update.
37118         * tests/test-avltreehash_list.c (main): Update.
37119         * tests/test-rbtreehash_list.c (main): Update.
37120         * tests/test-linked_list.c (main): Update.
37121         * tests/test-linkedhash_list.c (main): Update.
37122         * tests/test-array_oset.c (main): Update.
37123
37124 2007-03-15  Bruno Haible  <bruno@clisp.org>
37125
37126         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
37127         (gl_oset_create_empty): Add dispose_fn argument.
37128         (struct gl_oset_implementation): Add dispose_fn argument to
37129         'create_empty' method.
37130         (struct gl_oset_impl_base): Add dispose_fn field.
37131         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
37132         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
37133         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
37134         values.
37135         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
37136         (gl_tree_oset_free): Call dispose_fn on the dropped values.
37137         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
37138         dropped value.
37139         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
37140         dropped value.
37141         * tests/test-array_oset.c (main): Update.
37142         * tests/test-avltree_oset.c (main): Update.
37143         * tests/test-rbtree_oset.c (main): Update.
37144         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
37145
37146 2007-03-13  Bruno Haible  <bruno@clisp.org>
37147
37148         * tests/test-stdbool.c (i): Update after last patch.
37149
37150 2007-03-12  Bruno Haible  <bruno@clisp.org>
37151
37152         * lib/quotearg.c: Include <wctype.h> early, before the definition of
37153         the iswprint macro. Needed on Solaris 2.5.1.
37154
37155 2007-03-12  Bruno Haible  <bruno@clisp.org>
37156
37157         * tests/test-printf-frexp.c (main): Declare x as volatile.
37158
37159 2007-03-12  Simon Josefsson  <simon@josefsson.org>
37160
37161         * doc/gnulib.texi (Build robot for gnulib): New section.
37162
37163 2007-03-12  Jim Meyering  <jim@meyering.net>
37164
37165         * build-aux/bootstrap: New file.
37166         * build-aux/bootstrap.conf: New file, from coreutils.
37167
37168 2007-03-11  Bruno Haible  <bruno@clisp.org>
37169
37170         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
37171
37172 2007-03-12  Simon Josefsson  <simon@josefsson.org>
37173
37174         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
37175         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
37176         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
37177
37178 2007-03-11  Bruno Haible  <bruno@clisp.org>
37179
37180         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
37181         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
37182
37183 2007-03-11  Bruno Haible  <bruno@clisp.org>
37184
37185         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
37186         formula. Needed for SunPRO C 5.0.
37187
37188 2007-03-11  Bruno Haible  <bruno@clisp.org>
37189
37190         * modules/long-options (Depends-on): Add getopt.
37191
37192 2007-03-11  Bruno Haible  <bruno@clisp.org>
37193
37194         * modules/modechange (Depends-on): Add stdbool.
37195
37196 2007-03-11  Bruno Haible  <bruno@clisp.org>
37197
37198         * modules/i-ring (Depends-on): Add stdbool.
37199
37200 2007-03-11  Bruno Haible  <bruno@clisp.org>
37201
37202         * modules/gc-des (Depends-on): Add stdbool.
37203
37204 2007-03-11  Bruno Haible  <bruno@clisp.org>
37205
37206         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
37207
37208 2007-03-11  Bruno Haible  <bruno@clisp.org>
37209
37210         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
37211
37212 2007-03-11  Bruno Haible  <bruno@clisp.org>
37213
37214         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
37215
37216 2007-03-11  Bruno Haible  <bruno@clisp.org>
37217
37218         * lib/vasnprintf.c (sprintf): Undefine.
37219
37220 2007-03-11  Bruno Haible  <bruno@clisp.org>
37221
37222         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
37223         initializers in SunPRO C and Compaq C compilers.
37224
37225 2007-03-11  Bruno Haible  <bruno@clisp.org>
37226
37227         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
37228         decrementing code ANSI C compliant.
37229
37230 2007-03-11  Bruno Haible  <bruno@clisp.org>
37231
37232         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
37233         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
37234
37235 2007-03-11  Bruno Haible  <bruno@clisp.org>
37236
37237         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
37238         <stdbool.h> substitute doesn't pass.
37239
37240 2007-03-11  Bruno Haible  <bruno@clisp.org>
37241
37242         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
37243
37244 2007-03-11  Bruno Haible  <bruno@clisp.org>
37245
37246         * gnulib-tool (func_create_megatestdir): Create also an autobuild
37247         script, for submission to autobuild.josefsson.org.
37248
37249 2007-03-10  Bruno Haible  <bruno@clisp.org>
37250
37251         * modules/canonicalize-lgpl-tests: New file.
37252         * tests/test-canonicalize-lgpl.sh: New file.
37253         * tests/test-canonicalize-lgpl.c: New file.
37254
37255         * modules/c-strcase-tests: New file.
37256         * tests/test-c-strcase.sh: New file.
37257         * tests/test-c-strcasecmp.c: New file.
37258         * tests/test-c-strncasecmp.c: New file.
37259
37260         * modules/atexit-tests: New file.
37261         * tests/test-atexit.sh: New file.
37262         * tests/test-atexit.c: New file.
37263
37264 2007-03-10  Bruno Haible  <bruno@clisp.org>
37265
37266         * tests/test-binary-io.sh: Use temporary filenames that are not so
37267         likely to clash with those of other tests (in a parallel make).
37268         * tests/test-binary-io.c: Likewise.
37269
37270 2007-03-10  Bruno Haible  <bruno@clisp.org>
37271
37272         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
37273         fallback; use #error instead.
37274         Suggested by Simon Josefsson.
37275
37276 2007-03-10  Bruno Haible  <bruno@clisp.org>
37277
37278         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
37279         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
37280         first and the last.
37281
37282 2007-03-10  Bruno Haible  <bruno@clisp.org>
37283
37284         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
37285
37286 2007-03-10  Bruno Haible  <bruno@clisp.org>
37287
37288         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
37289         "make distcheck".
37290         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
37291         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
37292         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
37293
37294 2007-03-10  Bruno Haible  <bruno@clisp.org>
37295
37296         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
37297         variable.
37298         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
37299         variable.
37300
37301 2007-03-09  Eric Blake  <ebb9@byu.net>
37302         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
37303
37304         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
37305         types are not being provided by gnulib.
37306         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
37307         types are supported.
37308
37309 2007-03-10  Bruno Haible  <bruno@clisp.org>
37310
37311         * lib/stdio_.h (__attribute__): New macro.
37312         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
37313         vsprintf): Specify __attribute__ __format__ for GCC.
37314         Suggested by Eric Blake.
37315
37316 2007-03-09  Bruno Haible  <bruno@clisp.org>
37317
37318         * modules/printf-posix-tests: New file.
37319         * tests/test-printf-posix.sh: New file.
37320         * tests/test-printf-posix.c: New file.
37321
37322         * modules/printf-posix: New file.
37323         * lib/printf.c: New file.
37324         * m4/printf-posix-rpl.m4: New file.
37325         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
37326         REPLACE_PRINTF.
37327         * lib/stdio_.h (printf): New declaration.
37328         (format, __format__, ____printf____, ____scanf____, ____strftime____,
37329         ____strfmon____): New macros.
37330         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
37331         REPLACE_PRINTF.
37332
37333 2007-03-09  Bruno Haible  <bruno@clisp.org>
37334
37335         * tests/test-vasnprintf-posix2.sh: New file.
37336         * tests/test-vasnprintf-posix2.c: New file.
37337         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
37338         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
37339         (Makefile.am): Activate test-vasnprintf-posix2.sh.
37340
37341         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
37342         a locale dependent decimal point, rather than always '.'.
37343
37344 2007-03-09  Eric Blake  <ebb9@byu.net>
37345
37346         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
37347         spite of platforms like Tandem/NSK that define it to -1.
37348
37349 2007-03-08  Bruno Haible  <bruno@clisp.org>
37350
37351         * modules/vprintf-posix-tests: New file.
37352         * tests/test-vprintf-posix.sh: New file.
37353         * tests/test-vprintf-posix.c: New file.
37354         * tests/test-printf-posix.h: New file.
37355
37356         * modules/vprintf-posix: New file.
37357         * lib/vprintf.c: New file.
37358         * m4/vprintf-posix.m4: New file.
37359         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
37360         REPLACE_VPRINTF.
37361         * lib/stdio_.h (vprintf): New declaration.
37362         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
37363         REPLACE_VPRINTF.
37364
37365 2007-03-08  Bruno Haible  <bruno@clisp.org>
37366
37367         * modules/fprintf-posix-tests: New file.
37368         * tests/test-fprintf-posix.sh: New file.
37369         * tests/test-fprintf-posix.c: New file.
37370
37371         * modules/fprintf-posix: New file.
37372         * lib/fprintf.c: New file.
37373         * m4/fprintf-posix.m4: New file.
37374         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
37375         REPLACE_FPRINTF.
37376         * lib/stdio_.h (fprintf): New declaration.
37377         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
37378         REPLACE_FPRINTF.
37379
37380 2007-03-08  Bruno Haible  <bruno@clisp.org>
37381
37382         * modules/vfprintf-posix-tests: New file.
37383         * tests/test-vfprintf-posix.sh: New file.
37384         * tests/test-vfprintf-posix.c: New file.
37385         * tests/test-fprintf-posix.h: New file.
37386         * tests/test-fprintf-posix.out: New file.
37387
37388         * modules/vfprintf-posix: New file.
37389         * lib/vfprintf.c: New file.
37390         * m4/vfprintf-posix.m4: New file.
37391         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
37392         REPLACE_VFPRINTF.
37393         * lib/stdio_.h (vfprintf): New declaration.
37394         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
37395         REPLACE_VFPRINTF.
37396
37397 2007-03-08  Bruno Haible  <bruno@clisp.org>
37398
37399         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
37400
37401 2007-03-08  Bruno Haible  <bruno@clisp.org>
37402
37403         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
37404         instead of 'expr' invocations.
37405         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
37406         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
37407         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
37408         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
37409         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
37410         Suggested by Paul Eggert.
37411
37412 2007-03-08  Bruno Haible  <bruno@clisp.org>
37413
37414         * modules/fseterr-tests: New file.
37415         * tests/test-fseterr.c: New file.
37416
37417         * modules/fseterr: New file.
37418         * lib/fseterr.h: New file.
37419         * lib/fseterr.c: New file.
37420
37421 2007-03-08  Bruno Haible  <bruno@clisp.org>
37422
37423         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
37424         * lib/getopt_.h: Likewise.
37425         * lib/mbswidth.h: Likewise.
37426         * lib/setenv.h: Likewise.
37427         * lib/vasnprintf.h: Likewise.
37428         * lib/vasprintf.h: Likewise.
37429         * lib/verror.h: Likewise.
37430         * lib/xsetenv.h: Likewise.
37431         * lib/xvasprintf.h: Likewise.
37432
37433 2007-03-08  Jim Meyering  <jim@meyering.net>
37434
37435         * users.txt: Add parted.
37436
37437         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
37438
37439 2007-03-07  Bruno Haible  <bruno@clisp.org>
37440
37441         * m4/printf.m4: Make the shell script snippets copy&pastable.
37442
37443 2007-03-02  Bruno Haible  <bruno@clisp.org>
37444
37445         * lib/netinet_in_.h: New file.
37446         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
37447         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
37448         * modules/netinet_in (Files): Add lib/netinet_in_.h.
37449         (Depends-on): Add absolute-header.
37450         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
37451         into netinet/in.h.
37452
37453 2007-03-03  Bruno Haible  <bruno@clisp.org>
37454
37455         * lib/sys_select_.h: New file.
37456         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
37457         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
37458         * modules/sys_select (Files): Add lib/sys_select_.h.
37459         (Depends-on): Add absolute-header.
37460         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
37461         into sys/select.h.
37462
37463 2007-03-02  Bruno Haible  <bruno@clisp.org>
37464
37465         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
37466         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
37467         values.
37468         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
37469         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
37470         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
37471         * modules/sys_socket (Depends-on): Add absolute-header.
37472         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
37473         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
37474         (Include): Remove requirement of inclusion of <sys/types.h>.
37475
37476 2007-03-02  Bruno Haible  <bruno@clisp.org>
37477
37478         * lib/byteswap_.h (bswap_32): Fix formula.
37479
37480 2007-03-06  Bruno Haible  <bruno@clisp.org>
37481
37482         * modules/sprintf-posix-tests: New file.
37483         * tests/test-sprintf-posix.c: New file.
37484
37485         * modules/sprintf-posix: New file.
37486         * lib/sprintf.c: New file.
37487         * m4/sprintf-posix.m4: New file.
37488         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
37489         REPLACE_SPRINTF.
37490         * lib/stdio_.h (sprintf): New declaration.
37491         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
37492         REPLACE_SPRINTF.
37493
37494 2007-03-06  Bruno Haible  <bruno@clisp.org>
37495
37496         * modules/vsprintf-posix-tests: New file.
37497         * tests/test-vsprintf-posix.c: New file.
37498         * tests/test-sprintf-posix.h: New file.
37499
37500         * modules/vsprintf-posix: New file.
37501         * lib/vsprintf.c: New file.
37502         * m4/vsprintf-posix.m4: New file.
37503         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
37504         REPLACE_VSPRINTF.
37505         * lib/stdio_.h (vsprintf): New declaration.
37506         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
37507         REPLACE_VSPRINTF.
37508
37509 2007-03-06  Bruno Haible  <bruno@clisp.org>
37510
37511         * modules/vsnprintf (Depend-on): Remove minmax.
37512
37513 2007-03-06  Bruno Haible  <bruno@clisp.org>
37514
37515         * modules/snprintf-posix-tests: New file.
37516         * tests/test-snprintf-posix.c: New file.
37517
37518         * modules/snprintf-posix: New file.
37519         * m4/snprintf-posix.m4: New file.
37520         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
37521         gl_FUNC_SNPRINTF.
37522         (gl_FUNC_SNPRINTF): Invoke it.
37523         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
37524         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
37525         is set.
37526         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
37527
37528 2007-03-06  Bruno Haible  <bruno@clisp.org>
37529
37530         * modules/vsnprintf-posix-tests: New file.
37531         * tests/test-vsnprintf-posix.c: New file.
37532         * tests/test-snprintf-posix.h: New file.
37533
37534         * modules/vsnprintf-posix: New file.
37535         * m4/vsnprintf-posix.m4: New file.
37536         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
37537         gl_FUNC_VSNPRINTF.
37538         (gl_FUNC_VSNPRINTF): Invoke it.
37539         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
37540         * lib/stdio_.h (vsnprintf): Define as a replacement if
37541         REPLACE_VSNPRINTF is set.
37542         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
37543
37544 2007-03-06  Bruno Haible  <bruno@clisp.org>
37545
37546         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
37547         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
37548
37549 2007-03-06  Bruno Haible  <bruno@clisp.org>
37550
37551         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
37552         (asinl): Declare also if HAVE_DECL_ASINL is set.
37553         (atanl): Declare also if HAVE_DECL_ATANL is set.
37554         (ceill): Declare also if HAVE_DECL_CEILL is set.
37555         (cosl): Declare also if HAVE_DECL_COSL is set.
37556         (expl): Declare also if HAVE_DECL_EXPL is set.
37557         (floorl): Declare also if HAVE_DECL_FLOORL is set.
37558         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
37559         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
37560         (logl): Declare also if HAVE_DECL_LOGL is set.
37561         (sinl): Declare also if HAVE_DECL_SINL is set.
37562         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
37563         (tanl): Declare also if HAVE_DECL_TANL is set.
37564         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
37565         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
37566         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
37567         declaration of frexpl, ldexpl.
37568         * modules/printf-frexpl (Depends-on): Add math.
37569         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
37570
37571 2007-03-05  Bruno Haible  <bruno@clisp.org>
37572
37573         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
37574         frexpl and ldexpl are declared.
37575         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
37576
37577 2007-03-05  Bruno Haible  <bruno@clisp.org>
37578
37579         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
37580         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
37581
37582 2007-03-05  Bruno Haible  <bruno@clisp.org>
37583
37584         * lib/stdio_.h: Include <stddef.h>.
37585
37586 2007-03-05  Bruno Haible  <bruno@clisp.org>
37587
37588         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
37589
37590 2007-03-05  Bruno Haible  <bruno@clisp.org>
37591
37592         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
37593         NetBSD 4, from Ralf Wildenhues.
37594
37595 2007-03-04  Bruno Haible  <bruno@clisp.org>
37596
37597         * lib/vasprintf.h: Update #if logic for the case when the functions
37598         exist but are overridden.
37599
37600 2007-03-04  Bruno Haible  <bruno@clisp.org>
37601
37602         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
37603         implementations: glibc-2.4 and MacOS X 10.3.
37604         * tests/test-vasnprintf-posix.c (test_function): Test also the case
37605         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
37606         * tests/test-vasprintf-posix.c (test_function): Likewise.
37607
37608 2007-03-04  Bruno Haible  <bruno@clisp.org>
37609
37610         * modules/vasprintf-posix-tests: New file.
37611         * tests/test-vasprintf-posix.c: New file.
37612
37613         * modules/vasprintf-posix: New file.
37614         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
37615         defined.
37616         * m4/vasprintf-posix.m4: New file.
37617         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
37618         gl_FUNC_VASPRINTF.
37619         (gl_FUNC_VASPRINTF): Invoke it.
37620         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
37621         here.
37622         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
37623
37624 2007-03-04  Bruno Haible  <bruno@clisp.org>
37625
37626         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
37627         REPLACE_GETTIMEOFDAY.
37628         * modules/sys_time (Makefile.am): Likewise.
37629         * m4/sys_time_h.m4: Likewise.
37630         * m4/gettimeofday.m4: Likewise.
37631
37632 2007-03-04  Bruno Haible  <bruno@clisp.org>
37633
37634         * modules/vasnprintf-posix-tests: New file.
37635         * tests/test-vasnprintf-posix.c: New file.
37636
37637         * modules/vasnprintf-posix: New file.
37638         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
37639         printf-frexpl.h.
37640         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
37641         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
37642         REPLACE_VASNPRINTF is defined.
37643         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
37644         gl_FUNC_VASNPRINTF.
37645         (gl_FUNC_VASNPRINTF): Invoke it.
37646         * m4/vasnprintf-posix.m4: New file.
37647         * m4/printf.m4: New file.
37648
37649 2007-03-04  Bruno Haible  <bruno@clisp.org>
37650
37651         Compile progreloc.c only if --enable-relocatable is specified.
37652         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
37653         if --enable-relocatable was specified.
37654         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
37655         lib_SOURCES.
37656
37657 2007-03-04  Jim Meyering  <jim@meyering.net>
37658
37659         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
37660         Use it consistently, rather than enumerating errno constants.
37661
37662 2007-03-04  Bruno Haible  <bruno@clisp.org>
37663
37664         * modules/xvasprintf-tests: New file.
37665         * tests/test-xvasprintf.c: New file.
37666
37667         * modules/vasprintf-tests: New file.
37668         * tests/test-vasprintf.c: New file.
37669
37670         * modules/vasnprintf-tests: New file.
37671         * tests/test-vasnprintf.c: New file.
37672
37673         * modules/vsnprintf-tests: New file.
37674         * tests/test-vsnprintf.c: New file.
37675
37676         * modules/snprintf-tests: New file.
37677         * tests/test-snprintf.c: New file.
37678
37679 2007-03-04  Bruno Haible  <bruno@clisp.org>
37680
37681         Compile relocatable.c only if --enable-relocatable is specified.
37682         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
37683         gl_RELOCATABLE_LIBRARY.
37684         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
37685         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
37686         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
37687         gl_RELOCATABLE_LIBRARY.
37688         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
37689         (Makefile.am): Remove lib_SOURCES.
37690         * modules/relocatable-lib-lgpl (configure.ac): Invoke
37691         gl_RELOCATABLE_LIBRARY.
37692         (Makefile.am): Remove lib_SOURCES.
37693         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
37694         always.
37695         * modules/relocatable-prog-wrapper (configure.ac): Invoke
37696         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
37697
37698 2007-03-04  Bruno Haible  <bruno@clisp.org>
37699
37700         * modules/argmatch-tests: New file.
37701         * tests/test-argmatch.c: New file.
37702
37703         * tests/test-allocsa.c (main): Halve the number of loop runs.
37704
37705         * modules/alloca-opt-tests: New file.
37706         * tests/test-alloca-opt.c: New file.
37707
37708 2007-03-04  Jim Meyering  <jim@meyering.net>
37709
37710         Work around difference between Linux ACLs and Solaris 10 ZFS.
37711         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
37712         for EINVAL.
37713
37714 2007-03-03  Bruno Haible  <bruno@clisp.org>
37715
37716         * modules/relocatable-prog (Depends-on): Add back progreloc's
37717         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
37718
37719 2007-03-03  Bruno Haible  <bruno@clisp.org>
37720
37721         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
37722         * modules/relocatable-lib: New file.
37723
37724 2007-03-03  Bruno Haible  <bruno@clisp.org>
37725
37726         * modules/relocatable-prog: Renamed from modules/relocatable.
37727         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
37728
37729 2007-03-03  Bruno Haible  <bruno@clisp.org>
37730
37731         * modules/relocatable-script (Files): Add doc/relocatable.texi,
37732         m4/relocatable-lib.m4.
37733         (Depends-on): Remove 'relocatable'.
37734         (configure.ac): Add gl_RELOCATABLE_NOP.
37735
37736 2007-03-03  Bruno Haible  <bruno@clisp.org>
37737
37738         * modules/relocatable-prog-wrapper: New file.
37739         * modules/relocatable (Depends-on): Add it. Remove all other
37740         dependencies except progname.
37741         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
37742
37743         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
37744         (gl_FUNC_STRERROR): Nop.
37745         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
37746
37747         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
37748         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
37749
37750         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
37751         (gl_FUNC_READLINK): Update.
37752
37753         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
37754
37755 2007-03-03  Bruno Haible  <bruno@clisp.org>
37756
37757         * lib/xreadlink.c: Include <unistd.h> unconditionally.
37758         * modules/xreadlink (Depends-on): Add unistd.
37759         * modules/xreadlink-with-size (Depends-on): Likewise.
37760
37761 2007-03-03  Bruno Haible  <bruno@clisp.org>
37762
37763         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
37764         extracted from gt_FUNC_SETENV.
37765         (gt_FUNC_SETENV): Remove macro.
37766         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
37767         remove gt_FUNC_SETENV.
37768
37769 2007-03-03  Bruno Haible  <bruno@clisp.org>
37770
37771         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
37772         ENABLE_RELOCATABLE here.
37773         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
37774
37775 2007-03-03  Bruno Haible  <bruno@clisp.org>
37776
37777         * modules/rbtreehash-list-tests (Depends-on): Add progname.
37778         * tests/test-rbtreehash_list.c: Include progname.h.
37779         (main): Call set_program_name.
37780
37781         * modules/rbtree-oset-tests (Depends-on): Add progname.
37782         * tests/test-rbtree_oset.c: Include progname.h.
37783         (main): Call set_program_name.
37784
37785         * modules/rbtree-list-tests (Depends-on): Add progname.
37786         * tests/test-rbtree_list.c: Include progname.h.
37787         (main): Call set_program_name.
37788
37789         * modules/linked-list-tests (Depends-on): Add progname.
37790         * tests/test-linked_list.c: Include progname.h.
37791         (main): Call set_program_name.
37792
37793 2007-03-03  Bruno Haible  <bruno@clisp.org>
37794
37795         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
37796         All uses of __restrict changed to _Restrict_.
37797         * lib/glob_.h (__restrict): Remove macro.
37798
37799 2007-03-02  Bruno Haible  <bruno@clisp.org>
37800
37801         * modules/gettext (configure.ac): Require gettext infrastructure
37802         from version 0.16.1.
37803
37804 2007-03-02  Bruno Haible  <bruno@clisp.org>
37805
37806         * modules/linkedhash-list-tests (Depends-on): Add progname.
37807         * tests/test-linkedhash_list.c: Include progname.h.
37808         (main): Call set_program_name.
37809
37810         * modules/carray-list-tests (Depends-on): Add progname.
37811         * tests/test-carray_list.c: Include progname.h.
37812         (main): Call set_program_name.
37813
37814         * modules/avltreehash-list-tests (Depends-on): Add progname.
37815         * tests/test-avltreehash_list.c: Include progname.h.
37816         (main): Call set_program_name.
37817
37818         * modules/avltree-oset-tests (Depends-on): Add progname.
37819         * tests/test-avltree_oset.c: Include progname.h.
37820         (main): Call set_program_name.
37821
37822         * modules/avltree-list-tests (Depends-on): Add progname.
37823         * tests/test-avltree_list.c: Include progname.h.
37824         (main): Call set_program_name.
37825
37826         * modules/array-oset-tests (Depends-on): Add progname.
37827         * tests/test-array_oset.c: Include progname.h.
37828         (main): Call set_program_name.
37829
37830         * modules/array-list-tests (Depends-on): Add progname.
37831         * tests/test-array_list.c: Include progname.h.
37832         (main): Call set_program_name.
37833
37834         * modules/argp-tests (Depends-on): Add progname.
37835         * tests/test-argp.c: Include argp.h first. Include progname.h.
37836         (main): Call set_program_name.
37837
37838 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
37839
37840         * doc/gnulib-tool.texi (Initial import): Reword description of
37841         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
37842         limited effect even if defined after the first system include.
37843
37844 2007-03-01  Bruno Haible  <bruno@clisp.org>
37845
37846         * build-aux/config.libpath: Update to libtool-1.5.22.
37847         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
37848
37849 2007-03-01  Bruno Haible  <bruno@clisp.org>
37850
37851         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
37852         foo_CFLAGS.
37853         Reported by Ralf Wildenhues.
37854
37855 2007-03-01  Bruno Haible  <bruno@clisp.org>
37856
37857         * build-aux/install-reloc: Remove object files left over by some
37858         compilers.
37859         Reported by Ralf Wildenhues.
37860
37861 2007-03-01  Bruno Haible  <bruno@clisp.org>
37862
37863         * build-aux/install-reloc: Break long lines.
37864
37865 2007-03-01  Bruno Haible  <bruno@clisp.org>
37866
37867         * doc/relocatable.texi: Document that it may not work on OpenBSD.
37868         Reported by Ralf Wildenhues.
37869
37870 2007-03-01  Bruno Haible  <bruno@clisp.org>
37871
37872         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
37873         include ordering constraints.
37874
37875 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
37876
37877         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
37878         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
37879         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
37880         as another example.
37881         * lib/time_.h: Fix misspelling.
37882         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37883         Require gl_HEADER_TIME_H_DEFAULTS.
37884         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
37885         * m4/time_r.m4 (gl_TIME_R): Likewise.
37886         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
37887
37888 2007-03-01  Bruno Haible  <bruno@clisp.org>
37889
37890         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
37891         * m4/utimens.m4 (gl_UTIMENS): Likewise.
37892
37893 2007-03-01  Jim Meyering  <jim@meyering.net>
37894
37895         * modules/xreadlink (Maintainer): Add my name.
37896         * modules/xreadlink-with-size (Depends-on): Alphabetize.
37897
37898 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
37899             Bruno Haible  <bruno@clisp.org>
37900
37901         * build-aux/install-reloc: Compile also c-ctype.c.
37902         * build-aux/relocatable.sh.in: New file.
37903         * doc/relocatable.texi: New file.
37904         * doc/relocatable-maint.texi: New file.
37905         * doc/gnulib.texi: Include relocatable-maint.texi.
37906         * lib/progreloc.c: Include unistd.h unconditionally.
37907         * lib/relocwrapper.c: Include unistd.h unconditionally.
37908         Include c-ctype.h.
37909         (add_dotbin): Use c_tolower.
37910         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
37911         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
37912         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
37913         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
37914         to m4/relocatable-lib.m4.
37915         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
37916         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
37917         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
37918         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
37919         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
37920         * modules/relocatable: New file.
37921         * modules/relocatable-lib: New file.
37922         * modules/relocatable-script: New file.
37923
37924 2007-02-28  Bruno Haible  <bruno@clisp.org>
37925
37926         Import --enable-relocatable infrastructure.
37927         * build-aux/config.libpath: New file, from GNU gettext.
37928         * build-aux/install-reloc: New file, from GNU gettext.
37929         * build-aux/reloc-ldflags: New file, from GNU gettext.
37930         * lib/relocatable.h: New file, from GNU gettext.
37931         * lib/relocatable.c: New file, from GNU gettext.
37932         * lib/relocwrapper.c: New file, from GNU gettext.
37933         * m4/relocatable.m4: New file, from GNU gettext.
37934
37935 2007-02-28  Bruno Haible  <bruno@clisp.org>
37936
37937         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
37938
37939         * modules/xreadlink: New file, from GNU gettext with modifications.
37940         * lib/xreadlink.c: New file, from GNU gettext.
37941         * lib/xreadlink.h: Add comments.
37942         (xreadlink): New declaration.
37943
37944         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
37945         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
37946         lib/xreadlink-with-size.c.
37947         (configure.ac): Remove gl_XREADLINK invocation.
37948         (Makefile.am): Augment lib_SOURCES.
37949         * m4/xreadlink.m4: Remove file.
37950         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
37951         (xreadlink_with_size): Renamed from xreadink.
37952         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
37953         * modules/canonicalize (Depends-on): Replace xreadlink with
37954         xreadlink-with-size.
37955         * lib/canonicalize.c (canonicalize_filename_mode): Update.
37956
37957 2007-02-25  Jim Meyering  <jim@meyering.net>
37958
37959         * build-aux/announce-gen: When complaining about excess arguments,
37960         list them.
37961
37962 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
37963
37964         * README: Document signed integer overflow situation more
37965         accurately.
37966
37967 2007-02-25  Bruno Haible  <bruno@clisp.org>
37968
37969         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
37970         'a' or 'A' conversion.
37971
37972 2007-02-25  Bruno Haible  <bruno@clisp.org>
37973
37974         * modules/filename: Renamed from modules/pathname.
37975         (Files): Replace lib/pathname.h with lib/filename.h. Replace
37976         lib/concatpath.c with lib/concat-filename.c.
37977         (Makefile.am): Update.
37978         (Include): Replace pathname.h with filename.h.
37979         * lib/filename.h: Renamed from lib/pathname.h.
37980         (concatenated_filename): Renamed from concatenated_pathname.
37981         * lib/concat-filename.c: Renamed from lib/concatpath.c.
37982         (concatenated_filename): Renamed from concatenated_pathname.
37983         * lib/findprog.c: Include filename.h instead of pathname.h.
37984         (find_in_path): Update.
37985         * lib/javacomp.c: Include filename.h instead of pathname.h.
37986         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
37987         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
37988         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
37989         is_oldgcj_14_13_usable, is_javac_usable): Update.
37990         * lib/javaexec.c: Include filename.h instead of pathname.h.
37991         (execute_java_class): Update.
37992         * modules/findprog: Update.
37993         * modules/javacomp: Update.
37994         * modules/javaexec: Update.
37995         * MODULES.html.sh (File system functions): Add 'filename', remove
37996         'pathname'.
37997
37998 2007-02-25  Bruno Haible  <bruno@clisp.org>
37999
38000         * modules/printf-frexpl-tests: New file.
38001         * tests/test-printf-frexpl.c: New file.
38002
38003         * modules/printf-frexpl: New file.
38004         * lib/printf-frexpl.h: New file.
38005         * lib/printf-frexpl.c: New file.
38006         * m4/printf-frexpl.m4: New file.
38007
38008 2007-02-25  Bruno Haible  <bruno@clisp.org>
38009
38010         * modules/printf-frexp-tests: New file.
38011         * tests/test-printf-frexp.c: New file.
38012
38013         * modules/printf-frexp: New file.
38014         * lib/printf-frexp.h: New file.
38015         * lib/printf-frexp.c: New file.
38016         * m4/printf-frexp.m4: New file.
38017
38018 2007-02-25  Bruno Haible  <bruno@clisp.org>
38019
38020         Assume automake >= 1.10 for the tests.
38021         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
38022         * modules/arctwo-tests: Likewise.
38023         * modules/argp-tests: Likewise.
38024         * modules/avltree-list-tests: Likewise.
38025         * modules/avltree-oset-tests: Likewise.
38026         * modules/avltreehash-list-tests: Likewise.
38027         * modules/carray-list-tests: Likewise.
38028         * modules/crc-tests: Likewise.
38029         * modules/des-tests: Likewise.
38030         * modules/gc-arcfour-tests: Likewise.
38031         * modules/gc-arctwo-tests: Likewise.
38032         * modules/gc-des-tests: Likewise.
38033         * modules/gc-hmac-md5-tests: Likewise.
38034         * modules/gc-hmac-sha1-tests: Likewise.
38035         * modules/gc-md2-tests: Likewise.
38036         * modules/gc-md4-tests: Likewise.
38037         * modules/gc-md5-tests: Likewise.
38038         * modules/gc-pbkdf2-sha1-tests: Likewise.
38039         * modules/gc-rijndael-tests: Likewise.
38040         * modules/gc-sha1-tests: Likewise.
38041         * modules/gc-tests: Likewise.
38042         * modules/getaddrinfo-tests: Likewise.
38043         * modules/hmac-md5-tests: Likewise.
38044         * modules/hmac-sha1-tests: Likewise.
38045         * modules/linked-list-tests: Likewise.
38046         * modules/linkedhash-list-tests: Likewise.
38047         * modules/lock-tests: Likewise.
38048         * modules/md2-tests: Likewise.
38049         * modules/md4-tests: Likewise.
38050         * modules/md5-tests: Likewise.
38051         * modules/rbtree-list-tests: Likewise.
38052         * modules/rbtree-oset-tests: Likewise.
38053         * modules/rbtreehash-list-tests: Likewise.
38054         * modules/read-file-tests: Likewise.
38055         * modules/rijndael-tests: Likewise.
38056         * modules/stdint-tests: Likewise.
38057         * modules/tls-tests: Likewise.
38058
38059 2007-02-24  Bruno Haible  <bruno@clisp.org>
38060
38061         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
38062         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
38063         function; instead check whether isnan with a double argument links.
38064         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
38065         function; instead check whether isnan with a 'long double' argument
38066         links.
38067         Reported by Eric Blake <ebb9@byu.net>.
38068
38069 2007-02-24  Bruno Haible  <bruno@clisp.org>
38070
38071         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
38072         defined.
38073         * lib/isnanl.c: Remove all code. Just include isnan.c.
38074         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
38075
38076 2007-02-25  Jim Meyering  <jim@meyering.net>
38077
38078         Avoid conflicting types for 'unsetenv' on FreeBSD.
38079         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
38080         conflicting with FreeBSD's (5.0 and 6.1) function declaration
38081         in stdlib.h.
38082
38083 2007-02-24  Bruno Haible  <bruno@clisp.org>
38084
38085         * modules/isnanl-nolibm-tests: New file.
38086         * tests/test-isnanl.c: New file.
38087
38088         * modules/isnanl-nolibm: New file.
38089         * lib/isnanl.h: New file.
38090         * lib/isnanl.c: New file.
38091         * m4/isnanl.m4: New file.
38092
38093 2007-02-24  Bruno Haible  <bruno@clisp.org>
38094
38095         * modules/isnan-nolibm-tests: New file.
38096         * tests/test-isnan.c: New file.
38097
38098         * modules/isnan-nolibm: New file.
38099         * lib/isnan.h: New file.
38100         * lib/isnan.c: New file.
38101         * m4/isnan.m4: New file.
38102
38103 2007-02-24  Bruno Haible  <bruno@clisp.org>
38104
38105         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
38106         assume that an exponent fits in 20 bits.
38107
38108 2007-02-24  Jim Meyering  <jim@meyering.net>
38109
38110         * m4/regex.m4: Update the description of the configure-time option,
38111         --without-included-regex, to state accurately what the defaults are,
38112         and perhaps to give people an idea why using this option is risky.
38113
38114 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
38115
38116         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
38117         loops on small arguments.  This attempts to avoid the problem
38118         Bruno Haible reported for AIX 4.3.2 in
38119         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
38120
38121 2007-02-23  Bruno Haible  <bruno@clisp.org>
38122
38123         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
38124         Needed for help2man.
38125
38126 2007-02-23  Karl Berry  <karl@gnu.org>
38127
38128         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
38129         exists, foo.h should be cvs-ignored, not committed.
38130
38131 2007-02-23  Eric Blake  <ebb9@byu.net>
38132
38133         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
38134         * lib/stat-time.h (includes): Likewise.
38135         * lib/utimecmp.c (includes): Likewise.
38136         * lib/utimens.h (includes): Likewise.
38137         * lib/getdate.y (includes): Also include "timespec.h" for use
38138         internal to the module.
38139         * modules/utimens (Depends-on): Revert yesterday's patch.
38140         * modules/nanosleep (Depends-on): Add missing dependency.
38141
38142 2007-02-22  Bruno Haible  <bruno@clisp.org>
38143
38144         * lib/glob.c: Don't include getlogin_r.h.
38145
38146 2007-02-22  Jim Meyering  <jim@meyering.net>
38147
38148         * modules/utimens (Depends-on): Add timespec, required for
38149         utimens.h's inclusion of timespec.h.
38150
38151 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
38152
38153         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
38154         long unreadable paths in GNU/Linux.  Problem reported by Andreas
38155         Schwab in
38156         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
38157         I'll try to think of a better way to fix the Solaris problem.
38158
38159         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
38160         like glibc; on Solaris 10, it fails with errno == EINVAL.
38161         POSIX says the behavior is unspecified if the first argument is NULL,
38162         so play it safe and never pass NULL to the system getcwd.
38163
38164 2007-02-21  Jim Meyering  <jim@meyering.net>
38165
38166         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
38167         of gettimeofday.  It would conflict with the one now always
38168         provided via sys_time_.h.  Reported by Matthew Woehlke, as
38169         an IRIX 6.5 build failure.
38170
38171 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
38172
38173         Minor fixups to port to Solaris 10 with Sun C 5.8.
38174         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
38175         * modules/getcwd (Depends-on): Add dirfd.
38176         * lib/putenv.c (putenv): #undef it.
38177         (rpl_putenv): New decl.
38178         (malloc, free): Include <stdlib.h> rather than prototyping separately.
38179
38180 2007-02-20  Bruno Haible  <bruno@clisp.org>
38181
38182         * modules/stdio-tests: New file.
38183         * tests/test-stdio.c: New file.
38184
38185         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
38186         (Depends-on): Add stdio.
38187         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
38188         (Include): Use <stdio.h> instead of vsnprintf.h.
38189         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
38190         HAVE_DECL_VSNPRINTF.
38191         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
38192
38193         * modules/snprintf (Files): Remove lib/snprintf.h.
38194         (Depends-on): Add stdio.
38195         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
38196         (Include): Use <stdio.h> instead of snprintf.h.
38197         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
38198         HAVE_DECL_SNPRINTF.
38199         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
38200         * lib/getaddrinfo.c: Likewise.
38201
38202         * modules/stdio: New file.
38203         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
38204         * lib/snprintf.h: Remove file.
38205         * lib/vsnprintf.h: Remove file.
38206         * lib/.cppi-disable: Remove snprintf.h.
38207         * m4/stdio_h.m4: New file.
38208         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
38209
38210 2007-02-20  Jim Meyering  <jim@meyering.net>
38211
38212         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
38213         used by e.g., mingw.  From Bruno Haible.
38214
38215 2007-02-19  Bruno Haible  <bruno@clisp.org>
38216
38217         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
38218         warnings.
38219         Reported by Ben Pfaff <blp@cs.stanford.edu>.
38220
38221 2007-02-19  Bruno Haible  <bruno@clisp.org>
38222
38223         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
38224         from mingw users.
38225
38226 2007-02-19  Bruno Haible  <bruno@clisp.org>
38227
38228         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
38229         warnings.
38230         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
38231
38232 2007-02-19  Jim Meyering  <jim@meyering.net>
38233
38234         Don't use FD after a successful "fdopendir (fd)".
38235         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
38236         Reset it by calling dirfd on the just-obtained DIR*.
38237
38238         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
38239         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
38240
38241 2007-02-18  Bruno Haible  <bruno@clisp.org>
38242
38243         * lib/readlink.c: Include <unistd.h>.
38244         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
38245         HAVE_READLINK.
38246         * modules/readlink (Depends-on): Add unistd.
38247         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38248         (Include): Add <unistd.h>.
38249
38250         * lib/getlogin_r.h: Remove file.
38251         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
38252         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
38253         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
38254         HAVE_DECL_GETLOGIN_R.
38255         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
38256         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38257         (Include): Use <unistd.h> instead of getlogin_r.h.
38258
38259         * lib/getcwd.h: Remove file.
38260         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
38261         * lib/xgetcwd.c: Likewise.
38262         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
38263         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
38264         * modules/getcwd (Files): Remove lib/getcwd.h.
38265         (Depends-on): Add unistd.
38266         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38267         (Include): Use <unistd.h> instad of getcwd.h.
38268
38269         * lib/ftruncate.c: Include <unistd.h> first.
38270         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
38271         Set HAVE_FTRUNCATE.
38272         * modules/ftruncate (Depends-on): Add unistd.
38273         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38274
38275         * lib/fchdir.c: Include <unistd.h> first.
38276         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
38277         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
38278         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
38279         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38280         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
38281
38282         * lib/dup2.c: Include <unistd.h> first.
38283         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
38284         HAVE_DUP2.
38285         * modules/dup2 (Depends-on): Add unistd.
38286         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38287
38288         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
38289         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
38290         REPLACE_CHOWN. Don't define chown as a macro here.
38291         * modules/chown (Depends-on): Add unistd.
38292         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
38293
38294         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
38295         Add definition for GL_LINK_WARNING.
38296         (chown, dup2): New declarations.
38297         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
38298         link warning.
38299         (ftruncate): New declaration.
38300         (getcwd): New declaration, taken from old getcwd.h.
38301         (getlogin_r): New declaration, taken from old getlogin_r.h.
38302         (readlink): New declaration.
38303         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
38304         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
38305         (gl_PREREQ_UNISTD): Remove macro.
38306         (gl_UNISTD_MODULE_INDICATOR): New macro.
38307         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
38308         many new variables. Don't set UNISTD_H.
38309         * modules/unistd (Description): Change.
38310         (Depends-on): Add link-warning.
38311         (configure.ac): Update.
38312         (Makefile.am): Create unistd.h always. Substitute many new variables
38313         into it.
38314
38315 2007-02-18  Bruno Haible  <bruno@clisp.org>
38316
38317         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
38318         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
38319         HAVE_GETSUBOPT.
38320         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
38321         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
38322         * lib/getsubopt.h: Remove file.
38323         * modules/getsubopt (Files): Remove lib/getsubopt.h.
38324         (Depends-on): Add stdlib.
38325         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
38326         (Includes): Use <stdlib.h> instead of getsubopt.h.
38327         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
38328         Set HAVE_GETSUBOPT.
38329         * lib/getsubopt.c: Don't include getsubopt.h.
38330
38331 2007-02-18  Bruno Haible  <bruno@clisp.org>
38332
38333         * modules/fchdir (Depends-on): Add dup2.
38334
38335 2007-02-18  Bruno Haible  <bruno@clisp.org>
38336
38337         * lib/stdlib_.h: Handle glibc's special invocation convention
38338         specially.
38339
38340 2007-02-18  Bruno Haible  <bruno@clisp.org>
38341
38342         * modules/stdlib-tests: New file.
38343         * tests/test-stdlib.c: New file.
38344
38345         * modules/mkstemp (Files): Remove lib/mkstemp.h.
38346         (Depends-on): Add stdlib.
38347         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
38348         (Includes): Use <stdlib.h> instead of mkstemp.h.
38349         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
38350         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
38351         * lib/mkstemp.c: Don't include mkstemp.h.
38352         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
38353         * lib/stdlib--.h: Don't include mkstemp.h.
38354
38355         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
38356         (Depends-on): Add stdlib.
38357         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
38358         (Includes): Use <stdlib.h> instead of mkdtemp.h.
38359         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
38360         HAVE_MKDTEMP.
38361         * lib/mkdtemp.c: Don't include mkdtemp.h.
38362         * lib/clean-temp.c: Don't include mkdtemp.h.
38363
38364         * modules/exit (Files): Remove lib/exit.h.
38365         (Depends-on): Add stdlib.
38366         (Makefile.am): Remove lib_SOURCES.
38367         (Include): Use <stdlib.h> instead of exit.h.
38368         * lib/argmatch.c: Don't include exit.h.
38369         * lib/execute.c: Likewise.
38370         * lib/pagealign_alloc.c: Likewise.
38371         * lib/pipe.c: Likewise.
38372         * lib/wait-process.c: Likewise.
38373         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
38374         * lib/exitfail.c: Likewise.
38375         * lib/savewd.c: Likewise.
38376         * lib/xsetenv.c: Likewise.
38377
38378         * modules/stdlib: New file.
38379         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
38380         and extra comments about mkstemp().
38381         * lib/exit.h: Remove file.
38382         * lib/mkdtemp.h: Remove file.
38383         * lib/mkstemp.h: Remove file.
38384         * m4/stdlib_h.m4: New file.
38385         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
38386
38387 2007-02-18  Bruno Haible  <bruno@clisp.org>
38388
38389         * modules/math-tests: New file.
38390         * tests/test-math.c: New file.
38391
38392         * modules/math: New file.
38393         * modules/mathl (Files): Remove lib/mathl.h.
38394         (Depends-on): Add math.
38395         (Makefile.am): Don't mention mathl.h.
38396         (Include): Use <math.h> instead of mathl.h.
38397         * lib/math_.h: New file.
38398         * lib/mathl.h: Remove file.
38399         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
38400         mathl.h.
38401         * lib/asinl.c: Likewise.
38402         * lib/atanl.c: Likewise.
38403         * lib/ceill.c: Likewise.
38404         * lib/cosl.c: Likewise.
38405         * lib/expl.c: Likewise.
38406         * lib/floorl.c: Likewise.
38407         * lib/frexpl.c: Likewise.
38408         * lib/ldexpl.c: Likewise.
38409         * lib/logl.c: Likewise.
38410         * lib/sincosl.c: Likewise.
38411         * lib/sinl.c: Likewise.
38412         * lib/sqrtl.c: Likewise.
38413         * lib/tanl.c: Likewise.
38414         * lib/trigl.c: Likewise.
38415         * m4/math_h.m4: New file.
38416         * MODULES.html.sh (Mathematics): Add math.
38417
38418 2007-02-17  Bruno Haible  <bruno@clisp.org>
38419
38420         * modules/wctype-tests: New file.
38421         * tests/test-wctype.c: New file.
38422
38423         * modules/wchar-tests: New file.
38424         * tests/test-wchar.c: New file.
38425
38426         * modules/unistd-tests: New file.
38427         * tests/test-unistd.c: New file.
38428
38429         * modules/time-tests: New file.
38430         * tests/test-time.c: New file.
38431
38432         * modules/sysexits-tests: New file.
38433         * tests/test-sysexits.c: New file.
38434
38435         * modules/sys_time-tests: New file.
38436         * tests/test-sys_time.c: New file.
38437
38438         * modules/sys_stat-tests: New file.
38439         * tests/test-sys_stat.c: New file.
38440
38441         * modules/sys_socket-tests: New file.
38442         * tests/test-sys_socket.c: New file.
38443
38444         * modules/sys_select-tests: New file.
38445         * tests/test-sys_select.c: New file.
38446
38447         * modules/string-tests: New file.
38448         * tests/test-string.c: New file.
38449
38450         * modules/stdbool-tests: New file.
38451         * tests/test-stdbool.c: New file.
38452
38453         * modules/netinet_in-tests: New file.
38454         * tests/test-netinet_in.c: New file.
38455
38456         * modules/inttypes-tests: New file.
38457         * tests/test-inttypes.c: New file.
38458
38459         * modules/fcntl-tests: New file.
38460         * tests/test-fcntl.c: New file.
38461
38462         * modules/byteswap-tests: New file.
38463         * tests/test-byteswap.c: New file.
38464
38465         * modules/arpa_inet-tests: New file.
38466         * tests/test-arpa_inet.c: New file.
38467
38468 2007-02-17  Bruno Haible  <bruno@clisp.org>
38469
38470         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
38471         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
38472         if the corresponding module is not enabled. Emit link warnings if
38473         the function is used nevertheless.
38474         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
38475         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
38476         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
38477         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
38478         * modules/inttypes (Depends-on): Add link-warning.
38479         (Makefile.am): Copy the contents of build-aux/link-warning.h into
38480         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
38481         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
38482         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
38483         * modules/imaxdiv (configure.ac): Likewise.
38484         * modules/strtoimax (configure.ac): Likewise.
38485         * modules/strtoumax (configure.ac): Likewise.
38486
38487 2007-02-17  Bruno Haible  <bruno@clisp.org>
38488
38489         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
38490         gl_STRING_MODULE_INDICATOR_DEFAULTS.
38491         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
38492         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
38493
38494 2007-02-17  Bruno Haible  <bruno@clisp.org>
38495
38496         * modules/link-warning: New file.
38497         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
38498         * lib/string_.h (GL_LINK_WARNING): Remove definition.
38499         * modules/string (Depends-on): Add link-warning.
38500         (Makefile.am): Copy the contents of build-aux/link-warning.h into
38501         string.h.
38502         * MODULES.html.sh (Support for building libraries and executables): Add
38503         link-warning.
38504
38505 2007-02-17  Bruno Haible  <bruno@clisp.org>
38506
38507         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
38508         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
38509         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
38510         long lines.
38511
38512 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
38513             Bruno Haible  <bruno@clisp.org>
38514
38515         * modules/tmpfile: New file.
38516         * lib/tmpfile.c: New file.
38517         * m4/tmpfile.m4: New file.
38518         * MODULES.html.sh (func_all_modules): New section "Input/output".
38519
38520 2007-02-15  Bruno Haible  <bruno@clisp.org>
38521
38522         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
38523         (supports_delete_on_close): New function.
38524         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
38525
38526 2007-02-14  Bruno Haible  <bruno@clisp.org>
38527
38528         * modules/mbspcasecmp-tests: New file.
38529         * tests/test-mbspcasecmp.sh: New file.
38530         * tests/test-mbspcasecmp.c: New file.
38531
38532         New module mbspcasecmp.
38533         * modules/mbspcasecmp: New file.
38534         * lib/mbspcasecmp.c: New file.
38535         * lib/string_.h (strncasecmp): Change warning message.
38536         (mbspcasecmp): New declaration.
38537         * m4/mbspcasecmp.m4: New file.
38538         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38539         GNULIB_MBSPCASECMP.
38540         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
38541         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
38542
38543 2007-02-14  Bruno Haible  <bruno@clisp.org>
38544
38545         * modules/mbsncasecmp-tests: New file.
38546         * tests/test-mbsncasecmp.sh: New file.
38547         * tests/test-mbsncasecmp.c: New file.
38548
38549         New module mbsncasecmp.
38550         * modules/mbsncasecmp: New file.
38551         * lib/mbsncasecmp.c: New file.
38552         * lib/string_.h (mbsncasecmp): New declaration.
38553         * m4/mbsncasecmp.m4: New file.
38554         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38555         GNULIB_MBSNCASECMP.
38556         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
38557         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
38558
38559 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
38560
38561         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
38562         Verify that it doesn't overlap with our flags.
38563         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
38564         do not have the desired effect in multibyte locales; instead, use
38565         mbscasecmp.
38566         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
38567         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
38568         we don't require GNU fnmatch ourselves (if our users require it, they
38569         should do so explicitly).
38570
38571         Fix regex code so it doesn't rely on strcasecmp.
38572         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
38573         Otherwise, include gnulib's langinfo.h.
38574         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
38575         undesirable behavior in non-C locales.  Instead, rely on localecharset.
38576         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
38577         * modules/regex (FILES): Remove m4/codeset.m4.
38578         (Depends-on): Add localcharset.  Remove strcase.
38579
38580 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38581
38582         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
38583         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
38584
38585 2007-02-13  Bruno Haible  <bruno@clisp.org>
38586
38587         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
38588         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38589
38590 2007-02-12  Bruno Haible  <bruno@clisp.org>
38591
38592         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
38593         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
38594         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
38595         time warning rather than a link error.
38596
38597 2007-02-12  Bruno Haible  <bruno@clisp.org>
38598
38599         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
38600         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
38601         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38602
38603 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38604
38605         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
38606         args, not 2.
38607
38608 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
38609
38610         New module 'time', so that apps can include <time.h> as per
38611         POSIX and GNU instead of separate include files like time_r.h
38612         and timegm.h.  This implementation tries out a simpler approach
38613         for replacing decls in standard include files (as compared to
38614         the string module), somewhat as an experiment.
38615
38616         * config/srclist.txt: Comment out mktime.c for now.
38617         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
38618         since it doesn't apply any more.  Use generic wording instead.
38619         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
38620         'time'.
38621         * lib/time_.h, m4/time_h.m4, modules/time: New files.
38622         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
38623         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
38624         Don't include <sys/types.h>; no longer needed since we assume C89.
38625         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
38626         * lib/strftime.c: Likewise.
38627         * lib/time_r.c: Likewise.
38628         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
38629         * lib/nanosleep.c: Include <time.h> first, to check interface.
38630         * lib/strptime.c: Likewise.
38631         * lib/time_r.c: Likewise.
38632         * lib/timegm.c: Likewise.
38633         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
38634         needed.
38635         * lib/timegm.c: Don't include timegm.h; no longer needed.
38636         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
38637         time.h now handles any problems in that area.
38638         (struct timespec, nanosleep): Remove; time.h now arranges for these.
38639         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
38640         that time.h defines struct timespec.
38641         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
38642         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
38643         handles that.
38644         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
38645         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
38646         needed.  Set REPLACE_LOCALTIME.
38647         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
38648         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
38649         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
38650         nanosleep; time_h.m4 now does that.  Don't require
38651         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
38652         module handles this now.
38653         * modules/getdate (Depends-on): Remove timespec.  Add time.
38654         * modules/nanosleep (Depends-on): Likewise.
38655         * modules/stat-time (Depends-on): Likewise.
38656         * modules/nanosleep (Include): Include time.h, not timespec.h.
38657         * modules/strptime (Files): Remove lib/strptime.h.
38658         (Depends-on): Add extensions, time.
38659         (Include): Include time.h, not strptime.h.
38660         * modules/time_r (Files): Remove lib/time_r.h.
38661         (Depends-on): Add time.
38662         (Include): Include time.h, not time_r.h.
38663         * modules/timegm: Likewise.
38664         * modules/timespec (Description): Now does timespec-related decls
38665         of our own, instead of struct timespec itself.
38666         (Depends-on): Add time; remove extensions.
38667         (Maintainer): Add self.
38668         * modules/utimecmp (Depends-on): Add time; remove timespec.
38669         * modules/utimens (Depends-on): Likewise.
38670         * modules/xnanosleep (Depends-on): Likewise.
38671
38672 2007-02-11  Bruno Haible  <bruno@clisp.org>
38673
38674         * lib/c-strstr.c: Include allocsa.h.
38675         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38676         * lib/c-strcasestr.c: Include allocsa.h.
38677         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38678         * lib/strcasestr.c: Include allocsa.h.
38679         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
38680         * lib/mbsstr.c: Include allocsa.h.
38681         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38682         allocsa/freesa instead of malloc/free.
38683         * lib/mbscasestr.c: Include allocsa.h.
38684         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
38685         allocsa/freesa instead of malloc/free.
38686         * modules/c-strstr (Depends-on): Add allocsa.
38687         * modules/c-strcasestr (Depends-on): Likewise.
38688         * modules/strcasestr (Depends-on): Likewise.
38689         * modules/mbsstr (Depends-on): Likewise.
38690         * modules/mbscasestr (Depends-on): Likewise.
38691
38692 2007-02-11  Bruno Haible  <bruno@clisp.org>
38693
38694         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
38695
38696         * modules/mbsspn-tests: New file.
38697         * tests/test-mbsspn.sh: New file.
38698         * tests/test-mbsspn.c: New file.
38699
38700 2007-02-11  Bruno Haible  <bruno@clisp.org>
38701
38702         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
38703
38704         * modules/mbspbrk-tests: New file.
38705         * tests/test-mbspbrk.sh: New file.
38706         * tests/test-mbspbrk.c: New file.
38707
38708 2007-02-11  Bruno Haible  <bruno@clisp.org>
38709
38710         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
38711         unneeded cast.
38712
38713         * modules/mbscspn-tests: New file.
38714         * tests/test-mbscspn.sh: New file.
38715         * tests/test-mbscspn.c: New file.
38716
38717 2007-02-11  Bruno Haible  <bruno@clisp.org>
38718
38719         * modules/mbscasecmp-tests: New file.
38720         * tests/test-mbscasecmp.sh: New file.
38721         * tests/test-mbscasecmp.c: New file.
38722
38723 2007-02-11  Bruno Haible  <bruno@clisp.org>
38724
38725         Ensure O(n) worst-case complexity of mbscasestr.
38726         * lib/mbscasestr.c: Include stdbool.h.
38727         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38728         functions.
38729         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
38730         the bookkeeping indicates that it's worth it.
38731         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
38732
38733         * modules/mbscasestr-tests: New file.
38734         * tests/test-mbscasestr1.c: New file.
38735         * tests/test-mbscasestr2.sh: New file.
38736         * tests/test-mbscasestr2.c: New file.
38737         * tests/test-mbscasestr3.sh: New file.
38738         * tests/test-mbscasestr3.c: New file.
38739         * tests/test-mbscasestr4.sh: New file.
38740         * tests/test-mbscasestr4.c: New file.
38741         * m4/locale-tr.m4: New file.
38742
38743 2007-02-11  Bruno Haible  <bruno@clisp.org>
38744
38745         Ensure O(n) worst-case complexity of mbsstr.
38746         * lib/mbsstr.c: Include stdbool.h.
38747         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
38748         functions.
38749         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
38750         bookkeeping indicates that it's worth it.
38751         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
38752
38753         * modules/mbsstr-tests: New file.
38754         * tests/test-mbsstr1.c: New file.
38755         * tests/test-mbsstr2.sh: New file.
38756         * tests/test-mbsstr2.c: New file.
38757         * tests/test-mbsstr3.sh: New file.
38758         * tests/test-mbsstr3.c: New file.
38759         * m4/locale-fr.m4: New file.
38760
38761 2007-02-11  Bruno Haible  <bruno@clisp.org>
38762
38763         * lib/mbsrchr.c (mbsrchr): Fix bug.
38764
38765         * modules/mbsrchr-tests: New file.
38766         * tests/test-mbsrchr.sh: New file.
38767         * tests/test-mbsrchr.c: New file.
38768
38769 2007-02-11  Bruno Haible  <bruno@clisp.org>
38770
38771         * lib/mbschr.c (mbschr): Fix bug.
38772
38773         * modules/mbschr-tests: New file.
38774         * tests/test-mbschr.sh: New file.
38775         * tests/test-mbschr.c: New file.
38776         * m4/locale-zh.m4: New file.
38777
38778 2007-02-11  Bruno Haible  <bruno@clisp.org>
38779
38780         Support for copying multibyte string iterators.
38781         * lib/mbiter.h: Include <string.h>.
38782         (mbiter_multi_copy): New function.
38783         (mbi_copy): New macro.
38784         * lib/mbuiter.h: Include <string.h>.
38785         (mbuiter_multi_copy): New function.
38786         (mbui_copy): New macro.
38787
38788 2007-02-11  Bruno Haible  <bruno@clisp.org>
38789
38790         New module mbslen.
38791         * modules/mbslen: New file.
38792         * lib/mbslen.c: New file.
38793         * lib/string_.h (mbslen): New declaration.
38794         * m4/mbslen.m4: New file.
38795         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38796         GNULIB_MBSLEN.
38797         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
38798         * MODULES.html.sh (Internationalization functions): Add mbslen.
38799
38800 2007-02-11  Bruno Haible  <bruno@clisp.org>
38801
38802         Ensure O(n) worst-case complexity of strcasestr substitute.
38803         * lib/strcasestr.c: Include stdbool.h.
38804         (knuth_morris_pratt): New function.
38805         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38806         bookkeeping indicates that it's worth it.
38807         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
38808
38809         * modules/strcasestr-tests: New file.
38810         * tests/test-strcasestr.c: New file.
38811
38812 2007-02-11  Bruno Haible  <bruno@clisp.org>
38813
38814         Ensure O(n) worst-case complexity of c_strcasestr.
38815         * lib/c-strcasestr.c: Include stdbool.h, string.h.
38816         (knuth_morris_pratt): New function.
38817         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
38818         the bookkeeping indicates that it's worth it.
38819         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
38820
38821         * modules/c-strcasestr-tests: New file.
38822         * tests/test-c-strcasestr.c: New file.
38823
38824 2007-02-11  Bruno Haible  <bruno@clisp.org>
38825
38826         Ensure O(n) worst-case complexity of c_strstr.
38827         * lib/c-strstr.c: Include stdbool.h, string.h.
38828         (knuth_morris_pratt): New function.
38829         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
38830         bookkeeping indicates that it's worth it.
38831         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
38832
38833         * lib/c-strstr.c: Complete rewrite for maintainability.
38834
38835         * modules/c-strstr-tests: New file.
38836         * tests/test-c-strstr.c: New file.
38837
38838 2007-02-11  Bruno Haible  <bruno@clisp.org>
38839
38840         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
38841         5.2.1 and earlier, whereby \055 was treated just like the range
38842         delimiter '-'.
38843         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
38844
38845 2007-02-08  Bruno Haible  <bruno@clisp.org>
38846
38847         * modules/regex (Depends-on): Add stdbool.
38848         Reported by Dalibor Topic <robilad@kaffe.org>.
38849
38850 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
38851
38852         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
38853         Prefer returning from main to exiting from it.
38854         Remove unnecessary parens after sizeof.
38855
38856 2007-02-05  Bruno Haible  <bruno@clisp.org>
38857
38858         New module mbssep.
38859         * modules/mbssep: New file.
38860         * lib/mbssep.c: New file.
38861         * lib/string_.h (strsep): Add a conditional link warning.
38862         (mbssep): New declaration.
38863         * m4/mbssep.m4: New file.
38864         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38865         GNULIB_MBSSEP.
38866         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
38867         * MODULES.html.sh (Internationalization functions): Add mbssep.
38868
38869 2007-02-05  Bruno Haible  <bruno@clisp.org>
38870
38871         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
38872         Optimize search in case of 1 delimiter.
38873
38874 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
38875
38876         * lib/acl.h: Include sys/types.h before sys/acl.h.
38877
38878 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
38879
38880         Merge upstream fix for glibc bugzilla #3957:
38881
38882         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
38883
38884         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
38885         bit for RE_HAT_LISTS_NOT_NEWLINE.
38886         (build_charclass_op): Remove bogus comment.
38887
38888 2007-02-05  Simon Josefsson  <simon@josefsson.org>
38889
38890         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
38891
38892 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
38893
38894         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
38895         * lib/memmem.c [!defined _LIBC]: Include config.h.
38896
38897 2007-02-04  Bruno Haible  <bruno@clisp.org>
38898
38899         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
38900         warning message.
38901
38902 2007-02-04  Bruno Haible  <bruno@clisp.org>
38903
38904         New module mbstok_r.
38905         * modules/mbstok_r: New file.
38906         * lib/mbstok_r.c: New file.
38907         * lib/string_.h (strtok_r): Change argument names to match the
38908         comments. Add a conditional link warning.
38909         (mbstok_r): New declaration.
38910         * m4/mbstok_r.m4: New file.
38911         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38912         GNULIB_MBSTOK_R.
38913         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
38914         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
38915
38916 2007-02-04  Bruno Haible  <bruno@clisp.org>
38917
38918         New module mbsspn.
38919         * modules/mbsspn: New file.
38920         * lib/mbsspn.c: New file.
38921         * lib/string_.h (strspn): Add a conditional link warning.
38922         (mbsspn): New declaration.
38923         * m4/mbsspn.m4: New file.
38924         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38925         GNULIB_MBSSPN.
38926         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
38927         * MODULES.html.sh (Internationalization functions): Add mbsspn.
38928
38929 2007-02-04  Bruno Haible  <bruno@clisp.org>
38930
38931         New module mbspbrk.
38932         * modules/mbspbrk: New file.
38933         * lib/mbspbrk.c: New file.
38934         * lib/string_.h (strpbrk): Add a conditional link warning.
38935         (mbspbrk): New declaration.
38936         * m4/mbspbrk.m4: New file.
38937         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38938         GNULIB_MBSPBRK.
38939         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
38940         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
38941
38942 2007-02-04  Bruno Haible  <bruno@clisp.org>
38943
38944         New module mbscspn.
38945         * modules/mbscspn: New file.
38946         * lib/mbscspn.c: New file.
38947         * lib/string_.h (strcspn): Add a conditional link warning.
38948         (mbscspn): New declaration.
38949         * m4/mbscspn.m4: New file.
38950         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
38951         GNULIB_MBSCSPN.
38952         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
38953         * MODULES.html.sh (Internationalization functions): Add mbscspn.
38954
38955 2007-02-04  Bruno Haible  <bruno@clisp.org>
38956
38957         New module mbscasestr, reduced goal of strcasestr.
38958         * modules/mbscasestr: New file.
38959         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
38960         (mbscasestr): Renamed from strcasestr.
38961         * lib/strcasestr.c: Don't include mbuiter.h.
38962         (strcasestr): Remove support for multibyte locales.
38963         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
38964         Change the conditional link warning.
38965         (mbscasestr): New declaration.
38966         * m4/mbscasestr.m4: New file.
38967         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
38968         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
38969         REPLACE_STRCASESTR.
38970         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
38971         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
38972         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
38973         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
38974         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
38975         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
38976         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
38977         (Depends-on): Remove mbuiter.
38978         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
38979
38980 2007-02-04  Bruno Haible  <bruno@clisp.org>
38981
38982         Simplify handling of strncasecmp.
38983         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
38984         the conditional link warning.
38985         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
38986         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
38987         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
38988         * modules/strcase (configure.ac): Don't invoke
38989         gl_STRING_MODULE_INDICATOR.
38990         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
38991
38992 2007-02-04  Bruno Haible  <bruno@clisp.org>
38993
38994         New module mbscasecmp, reduced goal of strcasecmp.
38995         * modules/mbscasecmp: New file.
38996         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
38997         (mbscasecmp): Renamed from strcasecmp.
38998         * lib/strcasecmp.c: Don't include mbuiter.h.
38999         (strcasecmp): Remove support for multibyte locales.
39000         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
39001         Change the conditional link warning.
39002         (mbscasecmp): New declaration.
39003         * m4/mbscasecmp.m4: New file.
39004         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
39005         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
39006         REPLACE_STRCASECMP.
39007         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
39008         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39009         GNULIB_MBSCASECMP.
39010         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
39011         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
39012         * modules/strcase (Files): Remove m4/mbrtowc.m4.
39013         (Depends-on): Remove mbuiter.
39014         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
39015
39016 2007-02-04  Bruno Haible  <bruno@clisp.org>
39017
39018         New module mbsstr. Remove module strstr.
39019         * modules/mbsstr: New file.
39020         * modules/strstr: Remove file.
39021         * lib/mbsstr.c: Renamed from lib/strstr.c.
39022         (mbsstr): Renamed from strstr.
39023         * lib/string_.h (strstr): Remove declaration. Change the conditional
39024         link warning.
39025         (mbsstr): New declaration.
39026         * m4/mbsstr.m4: New file.
39027         * m4/strstr.m4: Remove file.
39028         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
39029         REPLACE_STRSTR.
39030         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
39031         Don't initialize GNULIB_STRSTR.
39032         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
39033         substitute GNULIB_STRSTR and REPLACE_STRSTR.
39034         * MODULES.html.sh (Internationalization functions): Add mbsstr.
39035         (Support for systems lacking ANSI C 89): Remove strstr.
39036
39037 2007-02-04  Bruno Haible  <bruno@clisp.org>
39038
39039         New module mbsrchr.
39040         * modules/mbsrchr: New file.
39041         * lib/mbsrchr.c: New file.
39042         * lib/string_.h (strrchr): Add a conditional link warning.
39043         (mbsrchr): New declaration.
39044         * m4/mbsrchr.m4: New file.
39045         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39046         GNULIB_MBSRCHR.
39047         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
39048         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
39049
39050 2007-02-04  Bruno Haible  <bruno@clisp.org>
39051
39052         New module mbschr.
39053         * modules/mbschr: New file.
39054         * lib/mbschr.c: New file.
39055         * lib/string_.h (strchr): Add a conditional link warning.
39056         (mbschr): New declaration.
39057         * m4/mbschr.m4: New file.
39058         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39059         GNULIB_MBSCHR.
39060         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
39061         * MODULES.html.sh (Internationalization functions): Add mbschr.
39062
39063 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
39064
39065         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
39066
39067         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
39068
39069 2007-02-04  Bruno Haible  <bruno@clisp.org>
39070
39071         New module description section 'configure.ac-early'.
39072         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
39073         (func_get_autoconf_early_snippet): New function.
39074         (func_import, func_create_testdir): Use it. Remove special cases for
39075         modules 'extensions' and 'lock'.
39076         * modules/extensions (configure.ac-early): Require
39077         gl_USE_SYSTEM_EXTENSIONS.
39078         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
39079
39080 2007-02-04  Bruno Haible  <bruno@clisp.org>
39081
39082         Make use of gcj-4.3's -fsource and -ftarget option.
39083         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
39084         and if so try the options -fsource and -ftarget.
39085         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
39086         source_version, ftarget_option, target_version arguments.
39087         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
39088         (is_envjavac_oldgcj_14_14_usable): Renamed from
39089         is_envjavac_gcj_14_14_usable.
39090         (is_envjavac_oldgcj_14_13_usable): Renamed from
39091         is_envjavac_gcj_14_13_usable.
39092         (is_gcj_present): Update.
39093         (is_gcj_43, is_gcj43_usable): New functions.
39094         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
39095         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
39096         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
39097         try the options -fsource and -ftarget.
39098
39099 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
39100
39101         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
39102         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
39103         larger value.
39104
39105 2007-02-03  Jim Meyering  <jim@meyering.net>
39106
39107         Give tools a better chance to allocate space for very large buffers.
39108         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
39109
39110         Make pwd and readlink work also when run with an unreadable parent dir
39111         on systems with openat support.
39112         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
39113         provided getcwd function, even when we have openat support.
39114         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
39115
39116 2007-02-02  Bruno Haible  <bruno@clisp.org>
39117
39118         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
39119         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
39120         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
39121         portability problems if one of these functions is only used on specific
39122         platforms.
39123         Reported by Paul Eggert.
39124
39125 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
39126
39127         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
39128         is causing more trouble than it's curing.
39129         * lib/regex_internal.h (__mempcpy): Remove.
39130         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
39131         (and make the code a tad smaller to boot).
39132         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
39133
39134 2007-02-02  Jim Meyering  <jim@meyering.net>
39135
39136         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
39137         section, not in the Makefile.am: one.
39138
39139 2007-02-02  Eric Blake  <ebb9@byu.net>
39140
39141         * lib/strchrnul.c: Always include config.h first.
39142
39143         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
39144         gnulib strstr is not necessary here.
39145
39146 2007-02-02  Simon Josefsson  <simon@josefsson.org>
39147
39148         * m4/socklen.m4: Fix typo.
39149
39150 2007-02-02  Eric Blake  <ebb9@byu.net>
39151
39152         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
39153         * modules/netinet_in (Makefile.am): Likewise.
39154
39155 2007-02-01  Bruno Haible  <bruno@clisp.org>
39156
39157         * lib/string_.h (GL_LINK_WARNING): New macro.
39158         (strcasecmp, strstr, strcasestr): If provided by the system,
39159         conditionally define as a macro that leads to a warning instead of to
39160         an error.
39161         (strncasecmp): Conditionally define as a macro that leads to a warning.
39162
39163 2007-02-01  Karl Berry  <karl@gnu.org>
39164
39165         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
39166
39167 2007-02-01  Bruno Haible  <bruno@clisp.org>
39168
39169         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
39170         renamings.
39171
39172 2007-02-01  Eric Blake  <ebb9@byu.net>
39173
39174         * modules/regex (Depends-on): Revert dependence on mempcpy.
39175         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
39176         module's definition of mempcpy.
39177         Reported by Paul Eggert.
39178
39179 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
39180
39181         * lib/string_.h: If the gnulib module XYZ is not present, undefine
39182         the symbol XYZ before redefining it.  This fixes a problem with
39183         programs that don't use XYZ, when compiled on systems that define
39184         XYZ to something else.
39185
39186 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
39187
39188         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
39189         occurs when "mkdir -m foo" creates a setgid directory that is (1)
39190         writeable to group or other and (2) is intended to have a special
39191         mode bit that is set or cleared.  In such a case, the directory
39192         should be neither group- nor other-writeable until the special
39193         mode bits are right.
39194
39195 2007-01-31  Eric Blake  <ebb9@byu.net>
39196
39197         * modules/mountlist (Depends-on): Add strstr.
39198
39199         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
39200         bug.
39201         * modules/string (Makefile.am): Remove redundant replacement.
39202         * modules/regex (Depends-on): Add mempcpy.
39203
39204 2007-01-31  Bruno Haible  <bruno@clisp.org>
39205
39206         New module description field 'Link'.
39207         * gnulib-tool (func_usage): Document --extract-link-directive.
39208         (sed_extract_prog): Recognize 'Link' directive.
39209         (func_get_link_directive): New function.
39210         (func_import): Show summary of link directives.
39211         Handle --extract-link-directive option.
39212         * modules/acl (Link): New section.
39213         * modules/clock-time (Link): New section.
39214         * modules/euidaccess (Link): New section.
39215         * modules/gettext (Link): New section.
39216         * modules/iconv (Link): New section.
39217         * modules/lock (Link): New section.
39218         * modules/nanosleep (Link): New section.
39219         * modules/readline (Link): New section.
39220
39221 2007-01-27  Bruno Haible  <bruno@clisp.org>
39222
39223         Enforce the use of gnulib modules for unportable <string.h> functions.
39224         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
39225         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
39226         (gl_HEADER_STRING_H_BODY): Require it.
39227         * lib/string_.h: If the gnulib module XYZ is not present, redefine
39228         the symbol XYZ to one that gives a link error.
39229         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
39230         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
39231         * modules/mempcpy (configure.ac): Likewise.
39232         * modules/memrchr (configure.ac): Likewise.
39233         * modules/stpcpy (configure.ac): Likewise.
39234         * modules/stpncpy (configure.ac): Likewise.
39235         * modules/strcase (configure.ac): Likewise.
39236         * modules/strcasestr (configure.ac): Likewise.
39237         * modules/strchrnul (configure.ac): Likewise.
39238         * modules/strdup (configure.ac): Likewise.
39239         * modules/strndup (configure.ac): Likewise.
39240         * modules/strnlen (configure.ac): Likewise.
39241         * modules/strpbrk (configure.ac): Likewise.
39242         * modules/strsep (configure.ac): Likewise.
39243         * modules/strstr (configure.ac): Likewise.
39244         * modules/strtok_r (configure.ac): Likewise.
39245
39246 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
39247
39248         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
39249
39250 2007-01-30  Jim Meyering  <jim@meyering.net>
39251
39252         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
39253
39254 2007-01-29  Bruno Haible  <bruno@clisp.org>
39255
39256         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
39257         * lib/execute.c: Likewise.
39258         * lib/pipe.c: Likewise.
39259         * lib/printf-args.h: Likewise.
39260         * lib/printf-args.c: Likewise.
39261         * lib/printf-parse.c: Likewise.
39262         * lib/vasnprintf.c: Likewise.
39263
39264 2007-01-29  Eric Blake  <ebb9@byu.net>
39265
39266         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
39267         declaration.
39268
39269 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
39270
39271         * lib/strptime.h (strptime): Use 'restrict' for args where
39272         POSIX requires this.
39273         * lib/strptime.c (strptime): Likewise.
39274         Change license notice from LGPL to GPL, since gnulib-tool will
39275         change this as needed.
39276         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
39277         defined.
39278         Include "strptime.h" first, to check interface.
39279         Do not #undef _LIBC and _NL_CURRENT.
39280         Do not include <stdlib.h>; no longer needed.
39281         Include "time_r.h" and declare ptime_locale_status
39282         only if _LIBC is not defined.
39283         (__P): Remove unused macro.
39284         (match_string): Bring back glibc version, but use it only if _LIBC
39285         is defined.
39286         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
39287         Remove unnecessary assertion and abort() call.
39288         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
39289         * m4/strptime.m4: Fix serial number comment.
39290         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
39291         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
39292         (Depends-on): Add time_r.
39293
39294 2007-01-29  Bruno Haible  <bruno@clisp.org>
39295
39296         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
39297         strptime.
39298         * modules/strptime (Depends-on): Add stdbool.
39299         * lib/strptime.h: Include <time.h> always. Add comments.
39300
39301 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
39302
39303         * modules/strptime: New file.
39304         * lib/strptime.h: New file.
39305         * lib/strptime.c: New file.
39306         * m4/strptime.m4: New file.
39307
39308 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
39309
39310         * MODULES.html.sh: New module mpsort.
39311         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
39312
39313         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
39314         a circularity problem with HP-UX ia64 reported by Bob Proulx in
39315         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
39316         All uses changed.
39317         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
39318         All uses changed.
39319         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
39320         to _Restrict_.
39321         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
39322         the parameter matches the prototype.
39323
39324 2007-01-28  Jim Meyering  <jim@meyering.net>
39325
39326         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
39327         sys/time.h here, reverting that part of the previous patch:
39328         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
39329
39330 2007-01-28  Bruno Haible  <bruno@clisp.org>
39331
39332         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
39333         value of $(SYS_TIME_H).
39334         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
39335         remove it conditionally, too. [added by Jim Meyering]
39336         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
39337         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
39338         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
39339         GETTIMEOFDAY_REPLACEMENT to 1.
39340
39341 2007-01-28  Bruno Haible  <bruno@clisp.org>
39342
39343         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
39344         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
39345         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
39346         Set UNISTD_H instead of UNISTD_H2.
39347         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
39348
39349 2007-01-28  Bruno Haible  <bruno@clisp.org>
39350
39351         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
39352         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
39353
39354 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39355
39356         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
39357         (func_create_testdir): Ensure C locale for `grep' and `tr'
39358         character ranges.
39359         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
39360         ACLOCAL_AMFLAGS parsing state machine.
39361
39362 2007-01-27  Bruno Haible  <bruno@clisp.org>
39363
39364         * modules/unistr/base: Update.
39365
39366 2007-01-27  Bruno Haible  <bruno@clisp.org>
39367
39368         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
39369         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
39370         * modules/unistr/u32-mbtouc-unsafe: Renamed from
39371         modules/unistr/u32-mbtouc.
39372         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
39373         * lib/unistr.h: Update.
39374         * lib/linebreak.c: Update.
39375         * modules/unistr/u32-mbtouc: Renamed from
39376         modules/unistr/u32-mbtouc-safe.
39377         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
39378         * lib/unistr.h: Update.
39379         * lib/unistr/u32-to-u8.c: Update.
39380         * lib/unistr/u32-to-u16.c: Update.
39381
39382 2007-01-27  Bruno Haible  <bruno@clisp.org>
39383
39384         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
39385         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
39386         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
39387         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
39388         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
39389         * modules/unistr/u16-mbtouc-unsafe: Renamed from
39390         modules/unistr/u16-mbtouc.
39391         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
39392         * lib/unistr.h: Update.
39393         * lib/linebreak.c: Update.
39394         * modules/linebreak: Update.
39395         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
39396         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
39397         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
39398         * modules/unistr/u16-mbtouc: Renamed from
39399         modules/unistr/u16-mbtouc-safe.
39400         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
39401         * lib/unistr.h: Update.
39402         * lib/unistr/u16-to-u8.c: Update.
39403         * modules/unistr/u16-to-u8: Update.
39404         * lib/unistr/u16-to-u32.c: Update.
39405         * modules/unistr/u16-to-u32: Update.
39406
39407 2007-01-27  Bruno Haible  <bruno@clisp.org>
39408
39409         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
39410         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
39411         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
39412         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
39413         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
39414         * modules/unistr/u8-mbtouc-unsafe: Renamed from
39415         modules/unistr/u8-mbtouc.
39416         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
39417         * lib/unistr.h: Update.
39418         * lib/striconveh.c: Update.
39419         * modules/striconveh: Update.
39420         * lib/linebreak.c: Update.
39421         * modules/linebreak: Update.
39422         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
39423         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
39424         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
39425         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
39426         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
39427         * lib/unistr.h: Update.
39428         * lib/striconveh.c: Update.
39429         * modules/striconveh: Update.
39430         * lib/unistr/u8-to-u16.c: Update.
39431         * modules/unistr/u8-to-u16: Update.
39432         * lib/unistr/u8-to-u32.c: Update.
39433         * modules/unistr/u8-to-u32: Update.
39434
39435 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39436
39437         Sync from Libtool.
39438         * lib/argz.c: Do not include strings.h nor memory.h, include
39439         string.h unconditionally.  Patch by Simon Josefsson.
39440
39441 2007-01-27  Bruno Haible  <bruno@clisp.org>
39442
39443         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
39444         from gl_HEADER_STRING_H_BODY.
39445         (gl_HEADER_STRING_H_BODY): Require it.
39446         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
39447         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
39448         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
39449         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
39450         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
39451         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
39452         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
39453         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
39454         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
39455         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
39456         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
39457         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
39458         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
39459         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
39460         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
39461
39462 2007-01-27  Bruno Haible  <bruno@clisp.org>
39463
39464         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
39465         check_PROGRAMS into noinst_PROGRAMS.
39466         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
39467         check_PROGRAMS in this case.
39468         (func_import): Set for_test to false.
39469         (func_create_testdir): Set for_test to true.
39470
39471 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
39472             Bruno Haible  <bruno@clisp.org>
39473
39474         * modules/strcasestr (Files): Remove lib/strcasestr.h.
39475         (Depends-on): Add string.
39476         (Includes): Use <string.h> instead of strcasestr.h.
39477         * modules/string (Makefile.am): Also substitute the value of
39478         REPLACE_STRCASESTR.
39479         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
39480         assume strcasestr is declared in <string.h> not <strings.h>. Also
39481         set REPLACE_STRCASESTR.
39482         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
39483         REPLACE_STRCASESTR.
39484         * lib/strcasestr.h: Remove file.
39485         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
39486         * lib/string_.h (strcasestr): New declaration.
39487
39488 2007-01-27  Bruno Haible  <bruno@clisp.org>
39489
39490         * lib/string_.h: Use 'extern'.
39491
39492 2007-01-27  Jim Meyering  <jim@meyering.net>
39493
39494         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
39495         of set-but-not-used local, "q".
39496
39497         * lib/mempcpy.c: Include <config.h> before <string.h>.
39498         This fixes a compilation error on HP-UX, due to the system's
39499         "restrict"-using mempcpy prototype.
39500
39501 2007-01-26  Bruno Haible  <bruno@clisp.org>
39502
39503         Small optimization.
39504         * lib/javacomp.c: Include c-strstr.h.
39505          (is_envjavac_gcj): Use c_strstr instead of strstr.
39506         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
39507
39508 2007-01-26  Bruno Haible  <bruno@clisp.org>
39509
39510         * MODULES.html.sh (Unicode string functions): Add the new modules.
39511
39512         * modules/uniconv/u32-strconv-to-locale: New file.
39513         * lib/uniconv/u32-strconv-to-locale.c: New file.
39514
39515         * modules/uniconv/u16-strconv-to-locale: New file.
39516         * lib/uniconv/u16-strconv-to-locale.c: New file.
39517
39518         * modules/uniconv/u8-strconv-to-locale: New file.
39519         * lib/uniconv/u8-strconv-to-locale.c: New file.
39520
39521         * modules/uniconv/u32-strconv-from-locale: New file.
39522         * lib/uniconv/u32-strconv-from-locale.c: New file.
39523
39524         * modules/uniconv/u16-strconv-from-locale: New file.
39525         * lib/uniconv/u16-strconv-from-locale.c: New file.
39526
39527         * modules/uniconv/u8-strconv-from-locale: New file.
39528         * lib/uniconv/u8-strconv-from-locale.c: New file.
39529
39530         * modules/uniconv/u32-strconv-to-enc: New file.
39531         * lib/uniconv/u32-strconv-to-enc.c: New file.
39532         * modules/uniconv/u32-strconv-to-enc-tests: New file.
39533         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
39534
39535         * modules/uniconv/u16-strconv-to-enc: New file.
39536         * lib/uniconv/u16-strconv-to-enc.c: New file.
39537         * lib/uniconv/u-strconv-to-enc.h: New file.
39538         * modules/uniconv/u16-strconv-to-enc-tests: New file.
39539         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
39540
39541         * modules/uniconv/u8-strconv-to-enc: New file.
39542         * lib/uniconv/u8-strconv-to-enc.c: New file.
39543         * modules/uniconv/u8-strconv-to-enc-tests: New file.
39544         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
39545
39546         * modules/uniconv/u32-strconv-from-enc: New file.
39547         * lib/uniconv/u32-strconv-from-enc.c: New file.
39548         * modules/uniconv/u32-strconv-from-enc-tests: New file.
39549         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
39550
39551         * modules/uniconv/u16-strconv-from-enc: New file.
39552         * lib/uniconv/u16-strconv-from-enc.c: New file.
39553         * modules/uniconv/u16-strconv-from-enc-tests: New file.
39554         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
39555
39556         * modules/uniconv/u8-strconv-from-enc: New file.
39557         * lib/uniconv/u8-strconv-from-enc.c: New file.
39558         * lib/uniconv/u-strconv-from-enc.h: New file.
39559         * modules/uniconv/u8-strconv-from-enc-tests: New file.
39560         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
39561
39562         * modules/uniconv/u32-conv-from-enc: New file.
39563         * lib/uniconv/u32-conv-from-enc.c: New file.
39564         * modules/uniconv/u32-conv-from-enc-tests: New file.
39565         * tests/uniconv/test-u32-conv-from-enc.c: New file.
39566
39567         * modules/uniconv/u16-conv-from-enc: New file.
39568         * lib/uniconv/u16-conv-from-enc.c: New file.
39569         * lib/uniconv/u-conv-from-enc.h: New file.
39570         * modules/uniconv/u16-conv-from-enc-tests: New file.
39571         * tests/uniconv/test-u16-conv-from-enc.c: New file.
39572
39573         * modules/uniconv/u8-conv-from-enc: New file.
39574         * lib/uniconv/u8-conv-from-enc.c: New file.
39575         * modules/uniconv/u8-conv-from-enc-tests: New file.
39576         * tests/uniconv/test-u8-conv-from-enc.c: New file.
39577
39578         * modules/uniconv/base: New file.
39579         * lib/uniconv.h: New file.
39580
39581 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
39582
39583         * doc/gnulib-tool.texi (Initial import): Update to match current
39584         behavior with strdup module.
39585         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
39586         * lib/memmem.h: Remove; all uses removed.  This is now done
39587         by <string.h>.
39588         * lib/mempcpy.h: Likewise.
39589         * lib/memrchr.h: Likewise.
39590         * lib/stpcpy.h: Likewise.
39591         * lib/stpncpy.h: Likewise.
39592         * lib/strcase.h: Likewise.
39593         * lib/strchrnul.h: Likewise.
39594         * lib/strdup.h: Likewise.
39595         * lib/strndup.h: Likewise.
39596         * lib/strnlen.h: Likewise.
39597         * lib/strpbrk.h: Likewise.
39598         * lib/strsep.h: Likewise.
39599         * lib/strstr.h: Likewise.
39600         * lib/strtok_r.h: Likewise.
39601         * lib/string_.h: New file.
39602         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
39603         Rely on <string.h> instead.
39604         * lib/canon-host.c: Likewise.
39605         * lib/chdir-long.c: Likewise.
39606         * lib/concatpath.c: Likewise.
39607         * lib/exclude.c: Likewise.
39608         * lib/fchdir.c: Likewise.
39609         * lib/getaddrinfo.c: Likewise.
39610         * lib/getcwd.c: Likewise.
39611         * lib/getsubopt.c: Likewise.
39612         * lib/glob.c: Likewise.
39613         * lib/hard-locale.c: Likewise.
39614         * lib/iconvme.c: Likewise.
39615         * lib/javacomp.c: Likewise.
39616         * lib/mempcpy.c: Likewise.
39617         * lib/memrchr.c: Likewise.
39618         * lib/regex_internal.h: Likewise.
39619         * lib/stpncpy.c: Likewise.
39620         * lib/strcasecmp.c: Likewise.
39621         * lib/strchrnul.c: Likewise.
39622         * lib/strdup.c: Likewise.
39623         * lib/striconv.c: Likewise.
39624         * lib/striconveh.c: Likewise.
39625         * lib/striconveha.c: Likewise.
39626         * lib/strncasecmp.c: Likewise.
39627         * lib/strndup.c: Likewise.
39628         * lib/strnlen.c: Likewise.
39629         * lib/strsep.c: Likewise.
39630         * lib/strstr.c: Likewise.
39631         * lib/strtok_r.c: Likewise.
39632         * lib/userspec.c: Likewise.
39633         * lib/w32spawn.h: Likewise.
39634         * lib/xstrndup.c: Likewise.
39635         * lib/mountlist.c (strstr): Remove decl.
39636         * m4/string_h.m4: New file.
39637         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
39638         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
39639         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
39640         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
39641         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
39642         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
39643         Set REPLACE_STRCASECMP if necessary.
39644         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
39645         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
39646         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
39647         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
39648         HAVE_DECL_STRDUP if necessary.
39649         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
39650         since gl_FUNC_STRNDUP does that now.
39651         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
39652         Check for decl here...
39653         (gl_PREREQ_STRNLEN): ... not here.
39654         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
39655         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
39656         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
39657         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
39658         necessary.
39659         * modules/string: New file.
39660         * modules/memmem (Files): Remove special-purpose include file.
39661         (Depends-on): Add string.
39662         (Include): Include <string.h>, not the removed file.
39663         * modules/mempcpy: Likewise.
39664         * modules/memrchr: Likewise.
39665         * modules/stpcpy: Likewise.
39666         * modules/stpncpy: Likewise.
39667         * modules/strcase: Likewise.
39668         * modules/strchrnul: Likewise.
39669         * modules/strdup: Likewise.
39670         * modules/strndup: Likewise.
39671         * modules/strnlen: Likewise.
39672         * modules/strpbrk: Likewise.
39673         * modules/strsep: Likewise.
39674         * modules/strstr: Likewise.
39675         * modules/strtok_r: Likewise.
39676         * tests/test-dirname.c: Don't include "strdup.h", since
39677         <string.h> now suffices.
39678         * tests/test-memmem.c: Don't include "memmem.h", since
39679         <string.h> now suffices.
39680
39681 2007-01-25  Bruno Haible  <bruno@clisp.org>
39682
39683         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
39684         *resultp is 0.
39685
39686         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
39687         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
39688         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
39689         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
39690
39691         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
39692         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
39693         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
39694         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
39695         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
39696         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
39697
39698 2007-01-24  Bruno Haible  <bruno@clisp.org>
39699
39700         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
39701         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
39702         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
39703         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
39704         gl_FUNC_FTS_CORE.
39705         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
39706         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
39707         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39708         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
39709         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
39710         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
39711         gl_FUNC_FCHOWNAT.
39712         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
39713         gl_FUNC_STRFTIME.
39714         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
39715         Reported by Ralf Wildenhues.
39716
39717 2007-01-24  Bruno Haible  <bruno@clisp.org>
39718
39719         Drop AC_REQUIRE calls that are redundant with the module dependencies.
39720         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
39721         gl_GETADDRINFO.
39722         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
39723         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
39724         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
39725
39726 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
39727
39728         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
39729         Don't use 'exit'; just return from 'main'.
39730         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
39731
39732         * lib/fnmatch_.h: Readjust white space and comments to match
39733         glibc, to avoid spurious diffs.
39734
39735 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39736
39737         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
39738         2004-12-01 change by Jakub Jelinek, since this code won't compile
39739         if !LIBC.  Problem reported by Bob Proulx.
39740
39741 2007-01-23  Bruno Haible  <bruno@clisp.org>
39742
39743         * lib/striconveh.c: Include c-strcaseeq.h.
39744         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
39745         * modules/striconveh (Depends-on): Add c-strcaseeq.
39746
39747 2007-01-23  Bruno Haible  <bruno@clisp.org>
39748
39749         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
39750
39751         * modules/c-strcaseeq: New file.
39752         * lib/c-strcaseeq.h: New file.
39753
39754         * modules/streq: New file.
39755         * lib/streq.h: New file.
39756
39757 2007-01-23  Bruno Haible  <bruno@clisp.org>
39758
39759         * modules/striconveha-tests: New file.
39760         * tests/test-striconveha.c: New file.
39761
39762         * lib/striconveha.h: Include <stdbool.h>.
39763         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
39764         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
39765         (mem_iconveha_notranslit): Renamed from mem_iconveha.
39766         (mem_iconveha): New function.
39767         (str_iconveha_notranslit): Renamed from str_iconveha.
39768         (str_iconveha): New function.
39769         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
39770         c-strcase.
39771
39772 2007-01-23  Bruno Haible  <bruno@clisp.org>
39773
39774         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
39775         encodings without forgiving before trying any encoding with handler.
39776         (str_iconveha): Try all encodings without forgiving before trying any
39777         encoding with handler.
39778
39779 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39780
39781         Import the following changes from libc.
39782
39783         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
39784
39785         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
39786
39787         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
39788
39789         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
39790         normal_bracket label.
39791
39792         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
39793
39794         [BZ #361]
39795         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
39796         to normal_bracket after fetching the next character.
39797
39798 2007-01-22  Bruno Haible  <bruno@clisp.org>
39799
39800         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
39801         argument.
39802         * lib/striconveh.c (iconv_carefully_1): New function.
39803         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
39804         argument.
39805         (str_cd_iconveh): Update.
39806         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
39807         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
39808         * tests/test-striconveh.c (MAGIC): New macro.
39809         (new_offsets): New function.
39810         (main): Test call with and without offsets.
39811
39812 2007-01-22  Bruno Haible  <bruno@clisp.org>
39813
39814         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
39815         * modules/sys_select (Makefile.am): Likewise.
39816         * modules/sys_socket (Makefile.am): Likewise.
39817         * modules/sys_time (Makefile.am): Likewise.
39818
39819 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
39820
39821         * modules/gettimeofday (License): Change from GPL to LGPL, since
39822         gettimeofday is a library function.
39823
39824 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39825
39826         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
39827
39828 2007-01-21  Bruno Haible  <bruno@clisp.org>
39829
39830         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
39831
39832 2007-01-21  Bruno Haible  <bruno@clisp.org>
39833
39834         * modules/striconveha: New file.
39835         * lib/striconveha.h: New file.
39836         * lib/striconveha.c: New file.
39837         * MODULES.html.sh (Internationalization functions): Add striconveha.
39838         * lib/striconv.c (str_iconv): Optimize the case of an empty input
39839         string.
39840         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
39841
39842 2007-01-21  Bruno Haible  <bruno@clisp.org>
39843
39844         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
39845         * lib/striconveh.c (str_iconveh): Likewise.
39846
39847 2007-01-21  Bruno Haible  <bruno@clisp.org>
39848
39849         * lib/striconveh.h (mem_iconveh): New declaration.
39850         * lib/striconveh.c (mem_iconveh): New function.
39851         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
39852
39853 2007-01-21  Bruno Haible  <bruno@clisp.org>
39854
39855         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
39856
39857         * lib/striconveh.h (mem_cd_iconveh): Change specification.
39858         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
39859         original result buffer.
39860         (str_cd_iconveh): Update.
39861         * tests/test-striconveh.c (main): Update.
39862
39863         * lib/striconv.h (mem_cd_iconv): Change specification.
39864         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
39865         result buffer.
39866         (str_cd_iconv): Update.
39867         * tests/test-striconv.c (main): Update.
39868
39869 2007-01-21  Bruno Haible  <bruno@clisp.org>
39870
39871         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
39872
39873 2007-01-20  Jim Meyering  <jim@meyering.net>
39874
39875         * lib/userspec.c (parse_with_separator): If a user or group string
39876         starts with "+", skip the corresponding name-to-ID look-up, since
39877         such a look-up must fail: user and group names may not include "+".
39878
39879 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
39880
39881         * lib/poll.c: Include sys/time.h and time.h unconditionally,
39882         since we now assume the sys_time module.
39883         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
39884         check for sys/time.h; no longer needed.
39885         * modules/poll (Depends-on): Depend on sys_time.
39886
39887 2007-01-18  Bruno Haible  <bruno@clisp.org>
39888
39889         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
39890         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
39891
39892         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
39893         gettimeofday.
39894
39895         * tests/test-gettimeofday.c: Include <time.h>.
39896         (dummy): Remove variable.
39897
39898         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
39899         gl_HEADER_SYS_TIME_H.
39900         (gl_HEADER_SYS_TIME_H): New macro.
39901
39902         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
39903         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39904         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
39905         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
39906         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39907         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
39908         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
39909         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39910         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
39911         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
39912         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39913
39914         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
39915         last change; it caused a compilation error when cross-compiling to
39916         Cygwin.
39917
39918 2007-01-18  Jim Meyering  <jim@meyering.net>
39919
39920         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
39921         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
39922         than the race-prone "test -d sys || mkdir sys".
39923         (configure.ac): Use AC_PROG_MKDIR_P.
39924         * modules/sys_select: Likewise.
39925         * modules/sys_socket: Likewise.
39926         * modules/sys_time: Likewise.
39927
39928 2007-01-18  Eric Blake  <ebb9@byu.net>
39929
39930         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
39931         replace gettimeofday.
39932         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
39933         name, to avoid infinite recursion.
39934
39935 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
39936
39937         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
39938         module sys_time.
39939         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
39940         assume timespec.h defines struct timeval.
39941         * lib/settime.c: Likewise.
39942         * lib/utimens.c: Likewise.
39943         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
39944         since we now assume the gettimeofday module.
39945         * lib/tempname.c (__gen_tempname): Likewise.
39946         * lib/gettimeofday.h: Remove.
39947         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
39948         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
39949         Include <time.h>, for 'time()'.
39950         (localtime_buffer_addr): Also use this workaround if
39951         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
39952         to simplify the uses.  All uses changed.
39953         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
39954         that #undef is inside {}, and 'const' follows type name consistently.
39955         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
39956         (gettimeofday): Do not use the maximum possible value for
39957         tv->tv_usec, since that might break usages other than ls.c.
39958         Instead, we'll leave ls.c alone.  This undoes today's patch
39959         by Bruno.  Add a compile-time warning for 1s-clock resolution;
39960         we've never observed the problem but might as well keep the
39961         canary.
39962         * lib/nanosleep.c: Include timespec.h first, for interface check.
39963         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
39964         now assume the sys_time module.
39965         * lib/tempname.c: Likewise.
39966         * lib/timespec.h: Likewise.
39967         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
39968         needed.
39969         * lib/strftime.c: Likewise.
39970         * lib/timespec.h: Likewise.
39971         * lib/posixtm.c: Include posixtm.h first, for interface check.
39972         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
39973         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
39974         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
39975         * lib/sys_time_.h: New file.
39976         * lib/timespec.h (struct timespec): Use long int, not long.
39977         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
39978         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
39979         Remove obsolescent call to AC_HEADER_TIME.
39980         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
39981         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
39982         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
39983         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
39984         Likewise.
39985         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
39986         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
39987         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
39988         into the sys_time module.  Check for gettimeofday just once.
39989         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
39990         for gettimeofday signature to just check the signature.  Merely
39991         compile it, since linking doesn't test signature.  Improve test for
39992         whether gettimeofday.o is actually needed.
39993         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
39994         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
39995         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
39996         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
39997         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
39998         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
39999         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
40000         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
40001         than worrying about sys/time.h.
40002         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
40003         Don't bother worrying about TIME_WITH_SYS_TIME.
40004         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
40005         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
40006         * m4/sys_time_h.m4: New file.
40007         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
40008         Don't include sys/time.h.  Return from main rather than exiting.
40009         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
40010         all uses changed.
40011         * modules/gethrxtime (Depends-on): Add sys_time.
40012         * modules/gettime (Depends-on): Likewise.
40013         * modules/gettimeofday (Depends-on): Likewise.
40014         * modules/nanosleep (Depends-on): Likewise.
40015         * modules/settime (Depends-on): Likewise.
40016         * modules/tempname (Depends-on): Likewise.
40017         * modules/utimens (Depends-on): Likewise.
40018         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
40019         (Include:) Change back to <sys/time.h>.
40020         (Maintainer:) Add self.
40021         * modules/sys_time: New file.
40022         * modules/tempname (Depends-on): Add gettimeofday.
40023         * tests/test-gettimeofday.c: Include <sys/time.h>
40024         rather than gettimeofday.h.
40025
40026 2007-01-17  Bruno Haible  <bruno@clisp.org>
40027
40028         * gnulib-tool (func_get_license): Revert last patch. Instead, let
40029         the license default to GPL.
40030         (func_create_testdir): Don't complain if a module is LGPL and its
40031         tests module depends on GPLed modules.
40032
40033 2007-01-17  Bruno Haible  <bruno@clisp.org>
40034
40035         * lib/gettimeofday.c (gettimeofday): Add code for the case
40036         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
40037         maximum possible value for tv->tv_usec, rather than the minimum one.
40038
40039 2005-10-08  Martin Lambers  <marlam@marlam.de>
40040 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
40041 2007-01-16  Bruno Haible  <bruno@clisp.org>
40042
40043         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
40044         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
40045         gl_FUNC_GETTIMEOFDAY.
40046         (Include): Add gettimeofday.h.
40047         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
40048         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
40049         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
40050         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
40051         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
40052         * lib/gettimeofday.h: New file.
40053         * lib/gettimeofday.c: Include <sys/timeb.h>.
40054         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
40055         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40056         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
40057         fall back on time().
40058
40059         * tests/test-gettimeofday.c: New file.
40060         * modules/gettimeofday-tests: New file.
40061
40062 2007-01-16  Eric Blake  <ebb9@byu.net>
40063
40064         * modules/fnmatch (Depends-on): Depend on wchar.
40065         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
40066         * m4/fnmatch.m4: Likewise.
40067         * modules/mbchar (Makefile.am): Assume <wchar.h>.
40068         * m4/mbchar.m4: Likewise.
40069         * modules/mbswidth (Depends-on): Depend on wchar.
40070         * lib/mbswidth.c: Assume <wchar.h>.
40071         * m4/mbswidth.m4: Likewise.
40072         * modules/quotearg (Depends-on): Depend on wchar.
40073         * lib/quotearg.c: Assume <wchar.h>.
40074         * m4/quotearg.m4: Likewise.
40075         * modules/regex (Depends-on): Depend on wchar.
40076         * lib/regex_internal.h: Assume <wchar.h>.
40077         * m4/regex.m4: Likewise.
40078         * modules/stdint (Depends-on): Depend on wchar.
40079         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
40080         * m4/stdint.m4: Likewise.
40081         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
40082         * modules/strftime (Depends-on): Depend on wchar.
40083         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
40084         * modules/strtol (Depends-on): Depend on wchar.
40085         * lib/strtol.c: Assume <wchar.h>.
40086         * modules/wcwidth (Depends-on): Depend on wchar.
40087         * lib/wcwidth.h: Assume <wchar.h>.
40088         * m4/wcwidth.m4: Likewise.
40089
40090 2007-01-16  Bruno Haible  <bruno@clisp.org>
40091
40092         * modules/csharpexec-script: New, created from...
40093         * modules/csharpexec: ... this.
40094
40095 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
40096
40097         * modules/javaexec-script: New, created from...
40098         * modules/javaexec: ... this.
40099
40100 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40101
40102         * modules/poll (Dependencies): Add sys_select.
40103
40104 2007-01-15  Jim Meyering  <jim@meyering.net>
40105
40106         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
40107         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
40108         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
40109         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
40110
40111 2007-01-15  Bruno Haible  <bruno@clisp.org>
40112
40113         * modules/striconveh: New file.
40114         * lib/striconveh.h: New file.
40115         * lib/striconveh.c: New file.
40116         * MODULES.html.sh (Internationalization functions): Add striconveh.
40117
40118         * modules/striconveh-tests: New file.
40119         * tests/test-striconveh.c: New file.
40120
40121 2007-01-15  Bruno Haible  <bruno@clisp.org>
40122
40123         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
40124         not from GNU libiconv or GNU libc.
40125
40126 2007-01-15  Bruno Haible  <bruno@clisp.org>
40127
40128         * doc/gnulib-intro.texi (Copyright): Explain the different license
40129         terms for module descriptions, autoconf macros, tests, documentation.
40130
40131 2007-01-14  Bruno Haible  <bruno@clisp.org>
40132
40133         * modules/striconv-tests: New file.
40134         * tests/test-striconv.c: New file.
40135
40136 2007-01-14  Bruno Haible  <bruno@clisp.org>
40137
40138         * modules/iconv-tests: New file.
40139         * tests/test-iconv.c: New file.
40140
40141 2007-01-14  Bruno Haible  <bruno@clisp.org>
40142
40143         * gnulib-tool (func_get_license): For test modules, use the license of
40144         the main module.
40145
40146 2007-01-14  Bruno Haible  <bruno@clisp.org>
40147
40148         * modules/iconv (Include): Clarify that <iconv.h> can only be included
40149         if iconv is found to exist.
40150
40151 2007-01-14  Bruno Haible  <bruno@clisp.org>
40152
40153         * modules/c-ctype-tests: New file.
40154         * tests/test-c-ctype.c: New file.
40155
40156 2007-01-14  Bruno Haible  <bruno@clisp.org>
40157
40158         * modules/binary-io-tests: New file.
40159         * tests/test-binary-io.sh: New file.
40160         * tests/test-binary-io.c: New file.
40161
40162 2007-01-14  Bruno Haible  <bruno@clisp.org>
40163
40164         * modules/array-oset-tests: New file.
40165         * tests/test-array_oset.c: New file.
40166
40167 2007-01-14  Bruno Haible  <bruno@clisp.org>
40168
40169         * modules/array-list-tests: New file.
40170         * tests/test-array_list.c: New file.
40171
40172 2007-01-14  Bruno Haible  <bruno@clisp.org>
40173
40174         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
40175         and make.
40176         Reported by Simon Josefsson in
40177         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
40178
40179 2007-01-14  Bruno Haible  <bruno@clisp.org>
40180
40181         * modules/allocsa-tests: New file.
40182         * tests/test-allocsa.c: New file.
40183
40184 2007-01-14  Bruno Haible  <bruno@clisp.org>
40185
40186         * modules/fchdir (Depends-on): Add absolute-header.
40187         * modules/unistd (Depends-on): Likewise.
40188
40189 2006-12-30  Bruno Haible  <bruno@clisp.org>
40190
40191         * modules/fchdir: New file.
40192         * modules/unistd (Files): Add lib/unistd_.h.
40193         (Makefile.am): Generate unistd.h from unistd_.h.
40194         * lib/fchdir.c: New file.
40195         * lib/dirent_.h: New file.
40196         * lib/unistd_.h: New file.
40197         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
40198         * m4/fchdir.m4: New file.
40199         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
40200         (gl_HEADER_UNISTD): Invoke it.
40201         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
40202         function.
40203         * lib/backupfile.c (opendir, closedir): Undefine.
40204         * lib/chown.c (open, close): Undefine.
40205         * lib/clean-temp.c (open, close): Undefine.
40206         * lib/copy-file.c (open, close): Undefine.
40207         * lib/execute.c (open, close): Undefine.
40208         * lib/fsusage.c (open, close): Undefine.
40209         * lib/gc-gnulib.c (open, close): Undefine.
40210         * lib/getcwd.c (opendir, closedir): Undefine.
40211         * lib/glob.c (opendir, closedir): Undefine.
40212         * lib/javacomp.c (open, close): Undefine.
40213         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
40214         * lib/openat-proc.c (open, close): Undefine.
40215         * lib/pagealign_alloc.c (open, close): Undefine.
40216         * lib/pipe.c (open, close): Undefine.
40217         * lib/progreloc.c (open, close): Undefine.
40218         * lib/savedir.c (opendir, closedir): Undefine.
40219         * lib/utime.c (open, close): Undefine.
40220         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
40221
40222 2007-01-10  Bruno Haible  <bruno@clisp.org>
40223
40224         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
40225
40226 2007-01-12  Eric Blake  <ebb9@byu.net>
40227
40228         Provide a robust <wchar.h>.  Further simplifications are now
40229         possible in other modules, but not included here.
40230         * modules/wchar: New module.
40231         * m4/wchar.m4: New file.
40232         * lib/wchar_.h: Likewise.
40233         * modules/mbchar (Depends-on): Depend on wchar, as the first use
40234         of the new module.
40235         * MODULES.html.sh (Extended multibyte and wide character utilities):
40236         New section.
40237
40238 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
40239
40240         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
40241         to a reasonable default for memory allocation.
40242         (xreadlink): Don't allocate a huge buffer, to work around a buggy
40243         file system that reports garbage st_size values for symlinks.
40244         Problem reported by Liyang Hu.
40245
40246 2007-01-11  Simon Josefsson  <simon@josefsson.org>
40247
40248         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
40249         Emacs .#* auto-save files).
40250
40251 2007-01-11  Bruno Haible  <bruno@clisp.org>
40252
40253         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
40254         directory.
40255
40256 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
40257
40258         Use @...@ consistently in lib/wctype_.h.
40259         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
40260         on it being set to 1 or 0.
40261         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
40262         go back to AC_SUBSTing it.
40263         * modules/wctype (Makefile.am): Undo previous change.
40264
40265 2007-01-10  Eric Blake  <ebb9@byu.net>
40266
40267         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
40268         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
40269         * modules/wctype (Makefile.am): Likewise.
40270         Reported by Chris McGuire.
40271
40272 2007-01-10  Jim Meyering  <jim@meyering.net>
40273
40274         fts.c: a small readability/maintainability improvement
40275         * lib/fts.c (fts_read): Make this code slightly more readable and
40276         maintainable by hoisting the "sp->fts_cur = p" assignments to
40277         immediately follow the statements that set P.  Derived from
40278         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
40279
40280 2007-01-10  Eric Blake  <ebb9@byu.net>
40281
40282         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
40283         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
40284         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
40285         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
40286         Reported by Chris McGuire.
40287
40288 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40289
40290         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
40291         in sed script.
40292
40293 2007-01-09  Bruno Haible  <bruno@clisp.org>
40294
40295         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
40296         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
40297         variables.
40298         (func_module): Use them.
40299
40300 2007-01-09  Bruno Haible  <bruno@clisp.org>
40301
40302         * modules/unistr/base: New file.
40303         * lib/unistr.h: New file.
40304
40305         * modules/unistr/u8-to-u16: New file.
40306         * lib/unistr/u8-to-u16.c: New file.
40307
40308         * modules/unistr/u8-to-u32: New file.
40309         * lib/unistr/u8-to-u32.c: New file.
40310
40311         * modules/unistr/u16-to-u8: New file.
40312         * lib/unistr/u16-to-u8.c: New file.
40313
40314         * modules/unistr/u16-to-u32: New file.
40315         * lib/unistr/u16-to-u32.c: New file.
40316
40317         * modules/unistr/u32-to-u8: New file.
40318         * lib/unistr/u32-to-u8.c: New file.
40319
40320         * modules/unistr/u32-to-u16: New file.
40321         * lib/unistr/u32-to-u16.c: New file.
40322
40323         * modules/unistr/u8-check: New file.
40324         * modules/unistr/u16-check: New file.
40325         * modules/unistr/u32-check: New file.
40326         * lib/unistr/u8-check.c: New file.
40327         * lib/unistr/u16-check.c: New file.
40328         * lib/unistr/u32-check.c: New file.
40329
40330         * modules/unistr/u8-chr: New file.
40331         * modules/unistr/u16-chr: New file.
40332         * modules/unistr/u32-chr: New file.
40333         * lib/unistr/u8-chr.c: New file.
40334         * lib/unistr/u16-chr.c: New file.
40335         * lib/unistr/u32-chr.c: New file.
40336
40337         * modules/unistr/u8-cmp: New file.
40338         * modules/unistr/u16-cmp: New file.
40339         * modules/unistr/u32-cmp: New file.
40340         * lib/unistr/u8-cmp.c: New file.
40341         * lib/unistr/u16-cmp.c: New file.
40342         * lib/unistr/u32-cmp.c: New file.
40343
40344         * modules/unistr/u8-cpy: New file.
40345         * modules/unistr/u16-cpy: New file.
40346         * modules/unistr/u32-cpy: New file.
40347         * lib/unistr/u8-cpy.c: New file.
40348         * lib/unistr/u16-cpy.c: New file.
40349         * lib/unistr/u32-cpy.c: New file.
40350         * lib/unistr/u-cpy.h: New file.
40351
40352         * modules/unistr/u8-cpy-alloc: New file.
40353         * modules/unistr/u16-cpy-alloc: New file.
40354         * modules/unistr/u32-cpy-alloc: New file.
40355         * lib/unistr/u8-cpy-alloc.c: New file.
40356         * lib/unistr/u16-cpy-alloc.c: New file.
40357         * lib/unistr/u32-cpy-alloc.c: New file.
40358         * lib/unistr/u-cpy-alloc.h: New file.
40359
40360         * modules/unistr/u8-endswith: New file.
40361         * modules/unistr/u16-endswith: New file.
40362         * modules/unistr/u32-endswith: New file.
40363         * lib/unistr/u8-endswith.c: New file.
40364         * lib/unistr/u16-endswith.c: New file.
40365         * lib/unistr/u32-endswith.c: New file.
40366         * lib/unistr/u-endswith.h: New file.
40367
40368         * modules/unistr/u8-mblen: New file.
40369         * modules/unistr/u16-mblen: New file.
40370         * modules/unistr/u32-mblen: New file.
40371         * lib/unistr/u8-mblen.c: New file.
40372         * lib/unistr/u16-mblen.c: New file.
40373         * lib/unistr/u32-mblen.c: New file.
40374
40375         * modules/unistr/u8-mbtouc: New file.
40376         * modules/unistr/u16-mbtouc: New file.
40377         * modules/unistr/u32-mbtouc: New file.
40378         * lib/unistr/u8-mbtouc.c: New file.
40379         * lib/unistr/u16-mbtouc.c: New file.
40380         * lib/unistr/u32-mbtouc.c: New file.
40381
40382         * modules/unistr/u8-mbtouc-safe: New file.
40383         * modules/unistr/u16-mbtouc-safe: New file.
40384         * modules/unistr/u32-mbtouc-safe: New file.
40385         * lib/unistr/u8-mbtouc-safe.c: New file.
40386         * lib/unistr/u16-mbtouc-safe.c: New file.
40387         * lib/unistr/u32-mbtouc-safe.c: New file.
40388
40389         * modules/unistr/u8-move: New file.
40390         * modules/unistr/u16-move: New file.
40391         * modules/unistr/u32-move: New file.
40392         * lib/unistr/u8-move.c: New file.
40393         * lib/unistr/u16-move.c: New file.
40394         * lib/unistr/u32-move.c: New file.
40395         * lib/unistr/u-move.h: New file.
40396
40397         * modules/unistr/u8-next: New file.
40398         * modules/unistr/u16-next: New file.
40399         * modules/unistr/u32-next: New file.
40400         * lib/unistr/u8-next.c: New file.
40401         * lib/unistr/u16-next.c: New file.
40402         * lib/unistr/u32-next.c: New file.
40403
40404         * modules/unistr/u8-prev: New file.
40405         * modules/unistr/u16-prev: New file.
40406         * modules/unistr/u32-prev: New file.
40407         * lib/unistr/u8-prev.c: New file.
40408         * lib/unistr/u16-prev.c: New file.
40409         * lib/unistr/u32-prev.c: New file.
40410
40411         * modules/unistr/u8-set: New file.
40412         * modules/unistr/u16-set: New file.
40413         * modules/unistr/u32-set: New file.
40414         * lib/unistr/u8-set.c: New file.
40415         * lib/unistr/u16-set.c: New file.
40416         * lib/unistr/u32-set.c: New file.
40417         * lib/unistr/u-set.h: New file.
40418
40419         * modules/unistr/u8-startswith: New file.
40420         * modules/unistr/u16-startswith: New file.
40421         * modules/unistr/u32-startswith: New file.
40422         * lib/unistr/u8-startswith.c: New file.
40423         * lib/unistr/u16-startswith.c: New file.
40424         * lib/unistr/u32-startswith.c: New file.
40425         * lib/unistr/u-startswith.h: New file.
40426
40427         * modules/unistr/u8-stpcpy: New file.
40428         * modules/unistr/u16-stpcpy: New file.
40429         * modules/unistr/u32-stpcpy: New file.
40430         * lib/unistr/u8-stpcpy.c: New file.
40431         * lib/unistr/u16-stpcpy.c: New file.
40432         * lib/unistr/u32-stpcpy.c: New file.
40433         * lib/unistr/u-stpcpy.h: New file.
40434
40435         * modules/unistr/u8-stpncpy: New file.
40436         * modules/unistr/u16-stpncpy: New file.
40437         * modules/unistr/u32-stpncpy: New file.
40438         * lib/unistr/u8-stpncpy.c: New file.
40439         * lib/unistr/u16-stpncpy.c: New file.
40440         * lib/unistr/u32-stpncpy.c: New file.
40441         * lib/unistr/u-stpncpy.h: New file.
40442
40443         * modules/unistr/u8-strcat: New file.
40444         * modules/unistr/u16-strcat: New file.
40445         * modules/unistr/u32-strcat: New file.
40446         * lib/unistr/u8-strcat.c: New file.
40447         * lib/unistr/u16-strcat.c: New file.
40448         * lib/unistr/u32-strcat.c: New file.
40449         * lib/unistr/u-strcat.h: New file.
40450
40451         * modules/unistr/u8-strchr: New file.
40452         * modules/unistr/u16-strchr: New file.
40453         * modules/unistr/u32-strchr: New file.
40454         * lib/unistr/u8-strchr.c: New file.
40455         * lib/unistr/u16-strchr.c: New file.
40456         * lib/unistr/u32-strchr.c: New file.
40457
40458         * modules/unistr/u8-strcmp: New file.
40459         * modules/unistr/u16-strcmp: New file.
40460         * modules/unistr/u32-strcmp: New file.
40461         * lib/unistr/u8-strcmp.c: New file.
40462         * lib/unistr/u16-strcmp.c: New file.
40463         * lib/unistr/u32-strcmp.c: New file.
40464
40465         * modules/unistr/u8-strcpy: New file.
40466         * modules/unistr/u16-strcpy: New file.
40467         * modules/unistr/u32-strcpy: New file.
40468         * lib/unistr/u8-strcpy.c: New file.
40469         * lib/unistr/u16-strcpy.c: New file.
40470         * lib/unistr/u32-strcpy.c: New file.
40471         * lib/unistr/u-strcpy.h: New file.
40472
40473         * modules/unistr/u8-strcspn: New file.
40474         * modules/unistr/u16-strcspn: New file.
40475         * modules/unistr/u32-strcspn: New file.
40476         * lib/unistr/u8-strcspn.c: New file.
40477         * lib/unistr/u16-strcspn.c: New file.
40478         * lib/unistr/u32-strcspn.c: New file.
40479         * lib/unistr/u-strcspn.h: New file.
40480
40481         * modules/unistr/u8-strdup: New file.
40482         * modules/unistr/u16-strdup: New file.
40483         * modules/unistr/u32-strdup: New file.
40484         * lib/unistr/u8-strdup.c: New file.
40485         * lib/unistr/u16-strdup.c: New file.
40486         * lib/unistr/u32-strdup.c: New file.
40487         * lib/unistr/u-strdup.h: New file.
40488
40489         * modules/unistr/u8-strlen: New file.
40490         * modules/unistr/u16-strlen: New file.
40491         * modules/unistr/u32-strlen: New file.
40492         * lib/unistr/u8-strlen.c: New file.
40493         * lib/unistr/u16-strlen.c: New file.
40494         * lib/unistr/u32-strlen.c: New file.
40495         * lib/unistr/u-strlen.h: New file.
40496
40497         * modules/unistr/u8-strmblen: New file.
40498         * modules/unistr/u16-strmblen: New file.
40499         * modules/unistr/u32-strmblen: New file.
40500         * lib/unistr/u8-strmblen.c: New file.
40501         * lib/unistr/u16-strmblen.c: New file.
40502         * lib/unistr/u32-strmblen.c: New file.
40503
40504         * modules/unistr/u8-strmbtouc: New file.
40505         * modules/unistr/u16-strmbtouc: New file.
40506         * modules/unistr/u32-strmbtouc: New file.
40507         * lib/unistr/u8-strmbtouc.c: New file.
40508         * lib/unistr/u16-strmbtouc.c: New file.
40509         * lib/unistr/u32-strmbtouc.c: New file.
40510
40511         * modules/unistr/u8-strncat: New file.
40512         * modules/unistr/u16-strncat: New file.
40513         * modules/unistr/u32-strncat: New file.
40514         * lib/unistr/u8-strncat.c: New file.
40515         * lib/unistr/u16-strncat.c: New file.
40516         * lib/unistr/u32-strncat.c: New file.
40517         * lib/unistr/u-strncat.h: New file.
40518
40519         * modules/unistr/u8-strncmp: New file.
40520         * modules/unistr/u16-strncmp: New file.
40521         * modules/unistr/u32-strncmp: New file.
40522         * lib/unistr/u8-strncmp.c: New file.
40523         * lib/unistr/u16-strncmp.c: New file.
40524         * lib/unistr/u32-strncmp.c: New file.
40525
40526         * modules/unistr/u8-strncpy: New file.
40527         * modules/unistr/u16-strncpy: New file.
40528         * modules/unistr/u32-strncpy: New file.
40529         * lib/unistr/u8-strncpy.c: New file.
40530         * lib/unistr/u16-strncpy.c: New file.
40531         * lib/unistr/u32-strncpy.c: New file.
40532         * lib/unistr/u-strncpy.h: New file.
40533
40534         * modules/unistr/u8-strnlen: New file.
40535         * modules/unistr/u16-strnlen: New file.
40536         * modules/unistr/u32-strnlen: New file.
40537         * lib/unistr/u8-strnlen.c: New file.
40538         * lib/unistr/u16-strnlen.c: New file.
40539         * lib/unistr/u32-strnlen.c: New file.
40540         * lib/unistr/u-strnlen.h: New file.
40541
40542         * modules/unistr/u8-strpbrk: New file.
40543         * modules/unistr/u16-strpbrk: New file.
40544         * modules/unistr/u32-strpbrk: New file.
40545         * lib/unistr/u8-strpbrk.c: New file.
40546         * lib/unistr/u16-strpbrk.c: New file.
40547         * lib/unistr/u32-strpbrk.c: New file.
40548         * lib/unistr/u-strpbrk.h: New file.
40549
40550         * modules/unistr/u8-strrchr: New file.
40551         * modules/unistr/u16-strrchr: New file.
40552         * modules/unistr/u32-strrchr: New file.
40553         * lib/unistr/u8-strrchr.c: New file.
40554         * lib/unistr/u16-strrchr.c: New file.
40555         * lib/unistr/u32-strrchr.c: New file.
40556
40557         * modules/unistr/u8-strspn: New file.
40558         * modules/unistr/u16-strspn: New file.
40559         * modules/unistr/u32-strspn: New file.
40560         * lib/unistr/u8-strspn.c: New file.
40561         * lib/unistr/u16-strspn.c: New file.
40562         * lib/unistr/u32-strspn.c: New file.
40563         * lib/unistr/u-strspn.h: New file.
40564
40565         * modules/unistr/u8-strstr: New file.
40566         * modules/unistr/u16-strstr: New file.
40567         * modules/unistr/u32-strstr: New file.
40568         * lib/unistr/u8-strstr.c: New file.
40569         * lib/unistr/u16-strstr.c: New file.
40570         * lib/unistr/u32-strstr.c: New file.
40571         * lib/unistr/u-strstr.h: New file.
40572
40573         * modules/unistr/u8-strtok: New file.
40574         * modules/unistr/u16-strtok: New file.
40575         * modules/unistr/u32-strtok: New file.
40576         * lib/unistr/u8-strtok.c: New file.
40577         * lib/unistr/u16-strtok.c: New file.
40578         * lib/unistr/u32-strtok.c: New file.
40579         * lib/unistr/u-strtok.h: New file.
40580
40581         * modules/unistr/u8-uctomb: New file.
40582         * modules/unistr/u16-uctomb: New file.
40583         * modules/unistr/u32-uctomb: New file.
40584         * lib/unistr/u8-uctomb.c: New file.
40585         * lib/unistr/u16-uctomb.c: New file.
40586         * lib/unistr/u32-uctomb.c: New file.
40587
40588         * MODULES.html.sh (Unicode string functions): Add the new modules.
40589
40590 2007-01-08  Bruno Haible  <bruno@clisp.org>
40591
40592         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
40593         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
40594         subdirectories.
40595
40596 2007-01-08  Karl Berry  <karl@gnu.org>
40597
40598         * doc/error.texi: mention that main() fns must set program_name
40599         when progname is used.
40600
40601 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
40602
40603         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
40604         WCTYPE_H is empty, for the benefit of builds from non-distclean
40605         directories.  Problem reported by Eric Blake in
40606         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
40607
40608 2007-01-08  Bruno Haible  <bruno@clisp.org>
40609
40610         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
40611         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
40612         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
40613         PROVIDE_CANONICALIZE_FILENAME_MODE.
40614         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
40615
40616 2007-01-08  Bruno Haible  <bruno@clisp.org>
40617
40618         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
40619         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
40620         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
40621         * lib/fts.c: Likewise.
40622         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
40623
40624 2006-12-25  Bruno Haible  <bruno@clisp.org>
40625
40626         * modules/utf8-ucs4-safe: New file.
40627         * lib/utf8-ucs4-safe.h: New file.
40628         * lib/unistr/utf8-ucs4-safe.c: New file.
40629
40630         * modules/utf16-ucs4-safe: New file.
40631         * lib/utf16-ucs4-safe.h: New file.
40632         * lib/unistr/utf16-ucs4-safe.c: New file.
40633
40634         * MODULES.html.sh (Unicode string functions): Add the new modules.
40635
40636 2007-01-08  Bruno Haible  <bruno@clisp.org>
40637
40638         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
40639         (Depends-on): Add unitypes.
40640         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40641         (u8_mbtouc_aux): Move out to separate file.
40642         (u8_mbtouc): Use ucs4_t, uint8_t types.
40643         * lib/unistr/utf8-ucs4.c: New file.
40644
40645         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
40646         (Depends-on): Add unitypes.
40647         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
40648         (u16_mbtouc_aux): Move out to separate file.
40649         (u16_mbtouc): Use ucs4_t, uint16_t types.
40650         * lib/unistr/utf16-ucs4.c: New file.
40651
40652         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
40653         (Depends-on): Add unitypes.
40654         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
40655         (u8_uctomb_aux): Move out to separate file.
40656         (u8_uctomb): Use ucs4_t, uint8_t types.
40657         * lib/unistr/ucs4-utf8.c: New file.
40658
40659         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
40660         (Depends-on): Add unitypes.
40661         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
40662         (u16_uctomb_aux): Move out to separate file.
40663         (u16_uctomb): Use ucs4_t, uint16_t types.
40664         * lib/unistr/ucs4-utf16.c: New file.
40665
40666 2006-12-25  Bruno Haible  <bruno@clisp.org>
40667
40668         * modules/unitypes: New file.
40669         * lib/unitypes.h: New file.
40670         * MODULES.html.sh (func_all_modules): New section "Unicode string
40671         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
40672         this section. Add unitypes.
40673
40674 2007-01-08  Bruno Haible  <bruno@clisp.org>
40675
40676         Avoid variable names that conflict with those from libtool.
40677         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
40678         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
40679         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
40680         library_names_spec to acl_library_names_spec, hardcode_* to
40681         acl_hardcode_*.
40682         Reported by Ralf Wildenhues.
40683
40684 2007-01-08  Bruno Haible  <bruno@clisp.org>
40685
40686         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
40687         definition.
40688         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
40689         definition.
40690         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
40691         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
40692         definition.
40693         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
40694         definition.
40695         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
40696         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
40697         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
40698         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
40699         definition.
40700         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
40701         definition.
40702         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
40703         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
40704         GC_USE_<algorithm>.
40705         * lib/gc-libgcrypt.c: Likewise.
40706         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
40707         * modules/gc-arctwo (configure.ac): Likewise.
40708         * modules/gc-des (configure.ac): Likewise.
40709         * modules/gc-hmac-md5 (configure.ac): Likewise.
40710         * modules/gc-hmac-sha1 (configure.ac): Likewise.
40711         * modules/gc-md2 (configure.ac): Likewise.
40712         * modules/gc-md4 (configure.ac): Likewise.
40713         * modules/gc-md5 (configure.ac): Likewise.
40714         * modules/gc-random (configure.ac): Likewise.
40715         * modules/gc-rijndael (configure.ac): Likewise.
40716         * modules/gc-sha1 (configure.ac): Likewise.
40717
40718 2007-01-08  Bruno Haible  <bruno@clisp.org>
40719
40720         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
40721         macro definition.
40722         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
40723         definition.
40724         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
40725         definition.
40726         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
40727         * modules/fcntl-safer (configure.ac): Likewise.
40728         * modules/fopen-safer (configure.ac): Likewise.
40729         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
40730         GNULIB_FWRITEERROR macro definition.
40731
40732 2007-01-08  Bruno Haible  <bruno@clisp.org>
40733
40734         * m4/gnulib-common.m4: New file.
40735         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
40736         (func_get_filelist): Add m4/gnulib-common.m4.
40737
40738 2007-01-08  Bruno Haible  <bruno@clisp.org>
40739
40740         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
40741         command.
40742
40743 2007-01-08  Jim Meyering  <jim@meyering.net>
40744
40745         Use a more robust test for a "can't happen" condition.
40746         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
40747         narrowed the st_size value.  Presuming the "can't happen" condition
40748         is true, that narrowing could conceivably convert an invalid st_size
40749         value into a valid one.  Instead, use a change based on Matthew
40750         Woehlke's original patch.
40751
40752         Slight readability improvement: use an assert-like macro
40753         in place of literal "abort ()" uses.
40754         * lib/fts.c (fts_assert): Define.
40755         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
40756         Use this macro instead of a bare 'abort'.
40757
40758 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
40759
40760         Don't worry about using IRIX 5.3's wctype.h broken definitions;
40761         simply work around them.
40762         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
40763         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
40764         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
40765         declaring.
40766         Don't bother to define as macros, since the standard doesn't require it.
40767         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
40768         longer worry about IRIX 5.3.
40769         (HAVE_WCTYPE_CTMP_BUG): Remove.
40770
40771 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
40772
40773         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
40774         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
40775         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
40776         Problems reported by Georg Schwarz for IRIX 5.3.
40777
40778         * gnulib-tool (autoconf_minversion): Take the maximum version number
40779         found, not the minimum.  Problem reported by James Youngman.
40780
40781 2007-01-03  Karl Berry  <karl@gnu.org>
40782
40783         * doc/error.texi: new file, explaining interaction with progname.
40784         * doc/gnulib.texi: include it.  Update copyright.
40785
40786 2007-01-03  Simon Josefsson  <simon@josefsson.org>
40787
40788         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
40789         AC_CANONICAL_HOST, to improve autobuild outputs.
40790
40791 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
40792             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
40793
40794         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
40795         sockets, server sockets, and other file descriptors.  Count errors
40796         to compute the return value.  Reorder the code a bit to be easier
40797         to follow.  Don't set event bits that were not requested (except
40798         POLLERR and POLLHUP).
40799
40800 2007-01-01  Bruno Haible  <bruno@clisp.org>
40801
40802         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
40803
40804 2007-01-03  Jim Meyering  <jim@meyering.net>
40805
40806         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
40807
40808 2007-01-02  Bruno Haible  <bruno@clisp.org>
40809
40810         * modules/settime (Include): Require timespec.h.
40811         * modules/nanosleep (Include): Likewise.
40812
40813 2007-01-01  Bruno Haible  <bruno@clisp.org>
40814
40815         * gnulib-tool (func_emit_copyright_notice): Bump year.
40816         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
40817
40818 2007-01-01  Bruno Haible  <bruno@clisp.org>
40819
40820         Improve support for OpenBSD.
40821         * build-aux/config.rpath (libname_spec): Export.
40822         (library_names_spec): New variable. Export.
40823         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
40824         library_names_spec from the config.rpath output. Locate shared library
40825         through the name pattern in library_names_spec.
40826
40827 2007-01-01  Eric Blake  <ebb9@byu.net>
40828
40829         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
40830
40831 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
40832
40833         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
40834         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
40835         assume the C locale, and avoid an "eval" that could cause trouble.
40836         Problem with SORT reported by Bob Proulx.
40837
40838         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
40839         Define.  Trivial patch from Henning Nielsen Lund, originally
40840         sent to bug-grep@gnu.org today.
40841
40842 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
40843
40844         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
40845         struct stat.  Problem reported by Henning Nielsen Lund.
40846         * lib/acl.c: Include acl.h first, to check interface.  Don't
40847         bother to include sys/types.h and sys/stat.h again.
40848
40849 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
40850
40851         Import the following change from libc; problem reported by
40852         Sven Verdoolaege.
40853
40854         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
40855
40856         [BZ #1373]
40857         * lib/argp.h: Remove __NTH for __argp_usage inline function.
40858
40859 2006-12-28  Jim Meyering  <jim@meyering.net>
40860
40861         * build-aux/announce-gen: Do not assume that the package
40862         builds any of tar.gz, tar.bz2, and .xdelta files.
40863         Suggestion from Simon Josefsson.
40864
40865 2006-12-28  Simon Josefsson  <simon@josefsson.org>
40866
40867         * modules/announce-gen: New file.
40868
40869 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
40870
40871         * lib/mbchar.h: Just include <wctype.h>; the wctype module
40872         handles its gotchas now.
40873         * lib/mbswidth.c: Likewise.
40874         * lib/wcwidth.h: Likewise.
40875         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
40876         and iswcntrl; the wctype module does this stuff now.
40877         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
40878         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
40879         * modules/mbchar (Depends-on): Add wctype.
40880         * modules/mbswidth (Depends-on): Likewise.
40881         * modules/wcwidth (Depends-on): Likewise.
40882
40883 2006-12-27  Eric Blake  <ebb9@byu.net>
40884
40885         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
40886         module uses more than what <wctype.h> is required to provide.
40887
40888 2006-12-26  Eric Blake  <ebb9@byu.net>
40889
40890         * gnulib-tool (sed_extract_prog): Avoid space-tab.
40891
40892 2006-12-26  Eric Blake  <ebb9@byu.net>
40893
40894         * modules/absolute-header: New module.
40895         * modules/fcntl (Depends-on): Depend on it.
40896         * modules/inttypes (Depends-on): Likewise.
40897         * modules/stdint (Depends-on): Likewise.
40898         * modules/sys_stat (Depends-on): Likewise.
40899         * modules/wctype (Depends-on): Likewise.
40900         * MODULES.html.sh (Support for building libraries and
40901         executables): Document it.
40902
40903 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
40904
40905         * gnulib-tool (SED): Remove, undoing previous change.
40906         The problem was that it broke coreutils on Solaris, because
40907         "sed --posix" leaked into a makefile.
40908         (sed): New alias, if 'alias' and GNU sed.
40909
40910 2006-12-24  Jim Meyering  <jim@meyering.net>
40911
40912         Work around an fchownat bug in glibc-2.4:
40913         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
40914         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
40915         in spite of the -P option.
40916         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
40917         New macros.
40918         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
40919         * modules/openat (Files): Add lib/fchownat.c.
40920         * lib/openat.c (fchownat): Don't define here.  Move to...
40921         * lib/fchownat.c: ...this new file.
40922
40923 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
40924
40925         Fix bug reported by Bruno Haible in
40926         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
40927         where quotearg.c didn't compile on Mac OS X 10.2 because it
40928         lacks <wchar.h> and wint_t.
40929         * lib/wctype_.h (__wctype_wint_t): New type.
40930         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
40931         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
40932         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
40933         Arg is now of type __wctype_wint_t, not wint_t.
40934         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
40935         substitute HAVE_WINT_T.
40936         * modules/wctype (Files): Add m4/wint_t.m4.
40937         (wctype.h): Substitute HAVE_WINT_T.
40938
40939 2006-12-23  Bruno Haible  <bruno@clisp.org>
40940
40941         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
40942
40943 2006-12-23  Bruno Haible  <bruno@clisp.org>
40944
40945         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
40946         S_ISLNK.
40947         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
40948         mingw.
40949
40950 2006-12-22  Bruno Haible  <bruno@clisp.org>
40951
40952         * lib/copy-file.c: Include acl.h.
40953         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
40954         Close the file descriptors only after being done with copy_acl.
40955         * modules/copy-file (Depends-on): Add acl.
40956
40957 2006-12-22  Bruno Haible  <bruno@clisp.org>
40958
40959         * gnulib-tool (SED): New variable.
40960         Use $SED instead of sed everywhere.
40961
40962 2006-12-22  Bruno Haible  <bruno@clisp.org>
40963
40964         * modules/no-c++: New file.
40965         * m4/no-c++.m4: New file.
40966         * MODULES.html.sh (Support for building libraries and executables):
40967         Add no-c++.
40968
40969 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
40970
40971         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
40972         Include <limits.h>, and use its INT_MAX to rewrite the
40973         j loop so that it does not overflow 'int'.  Problem reported by
40974         Ralf Wildenhues in
40975         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
40976         Play it safe by shifting left by 1 rather than multiplying by 2,
40977         as GCC is less likely to optimize this away when the value
40978         is signed (when it assumes overflow leads to undefined behavior).
40979         Also, don't assume time_t uses two's complement.
40980
40981 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
40982
40983         * MODULES.html.sh: New module wctype.
40984         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
40985         * lib/fnmatch.c: Don't bother to include <wchar.h> before
40986         <wctype.h>, since the new wctype module should fix this.
40987         * lib/quotearg.c: Include <wctype.h> unconditionally, since
40988         the wctype module should arrange for it.
40989         * lib/regex_internal.h: Likewise.
40990         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
40991         since the wctype module should handle this now.
40992         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
40993         * modules/fnmatch (Depends-on): Add wctype.
40994         * modules/quotearg (Depends-on): Likewise.
40995         * modules/regex (Depends-on): Likewise.
40996
40997 2006-12-19  Bruno Haible  <bruno@clisp.org>
40998
40999         * lib/strdup.h [C++]: Wrap definitions in extern "C".
41000         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
41001
41002 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41003
41004         * modules/savewd (Depends-on): Fix dependency on fcntl.
41005
41006 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
41007
41008         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
41009         conforms to C99, rather than relying on the user's environment
41010         setting of STDINT_H.
41011
41012 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
41013         and Eric Blake  <ebb9@byu.net>
41014
41015         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
41016         This is more consistent with the other defines here.
41017         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
41018         Port to z/OS.  Problem reported by Paul Gilmartin.
41019         Change local vars to use gl_ prefix rather than ac_.
41020         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
41021         with other defines.
41022         * modules/double-slash-root: New module.
41023         * modules/dirname (Files): Remove m4/double-slash-root.m4.
41024         (Depends-on): Add double-slash-root.
41025         * MODULES.html.sh (File system functions): Mention new module.
41026
41027 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
41028
41029         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
41030         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
41031         This is for the benefit of gzip, which doesn't do i18n.
41032
41033 2006-12-12  Jim Meyering  <jim@meyering.net>
41034
41035         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
41036         Reported by Andreas Schwab <schwab@suse.de>.
41037
41038 2006-12-12  Bruno Haible  <bruno@clisp.org>
41039
41040         Merge these changes.
41041         2006-09-05  Bruno Haible  <bruno@clisp.org>
41042         * lib/iconvme.c (iconv_string): No need to save and restore errno when
41043         iconv_alloc succeeded.
41044         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
41045         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
41046         test for " && dest " at the end - dest is always != NULL there. Call
41047         iconv with 4xNULL arguments initially, to reset the state. Call iconv
41048         with 2xNULL arguments, also to flush the state storage. Handle the
41049         IRIX iconv behaviour. Realloc the final result, to throw away unused
41050         memory.
41051
41052 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
41053
41054         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
41055         and fchmodat unconditionally, since glibc 2.4 has them.
41056         Problem reported by Arkadiusz Miskiewicz.
41057
41058 2006-12-10  Bruno Haible  <bruno@clisp.org>
41059
41060         * gnulib-tool (func_import): Show the include files only for those
41061         modules that are copied and specified.
41062         Reported by Karl Berry.
41063
41064 2006-12-08  Jim Meyering  <jim@meyering.net>
41065
41066         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
41067         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
41068
41069         * build-aux/announce-gen: Add two new options, both optional:
41070         --bootstrap-tools=TOOL_LIST
41071               a comma-separated list of tools, e.g.,
41072               autoconf,automake,bison,gnulib
41073         --gnulib-snapshot-date=DATE
41074               if gnulib is in the bootstrap tool list,
41075               then report this as the snapshot date.
41076               If not specified, use the current date/time.
41077               If you specify a date here, be sure it's UTC.
41078
41079 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41080
41081         * tests/test-argp-2.sh: Fix test to match actual output.
41082         (func_compare): Fix sed script to be portable.
41083
41084 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
41085
41086         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
41087         workaround for this case.  It is not autoconfigured now; offhand
41088         it's hard to see how to autoconfigure it.
41089
41090 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
41091
41092         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
41093         a directory that is about to be chowned.  Such a directory's
41094         initial file permissions should permit the owner only and this
41095         should not be changed until after the chown, since the group and
41096         other bits would be incorrect if they granted permission before
41097         the chown.
41098
41099         Fix porting problem for iswctype reported by Georg Schwarz in:
41100         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
41101         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
41102         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
41103         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
41104         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
41105
41106 2006-12-03  Jim Meyering  <jim@meyering.net>
41107
41108         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
41109         p->fts_statp may not yet be defined.
41110         (fts_read): Instead, set it in the caller, once p->fts_statp is
41111         sure to be defined, and corresponds to a top-level directory.
41112         This bug made du -x fail.  Here's the coreutils test case:
41113         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
41114         Reported by Mike Frysinger.
41115
41116 2006-12-01  Jim Meyering  <jim@meyering.net>
41117
41118         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
41119         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
41120         Reported by Simon Josefsson.
41121
41122 2006-11-30  Jim Meyering  <jim@meyering.net>
41123
41124         * m4/warning.m4: Use the all-permissive copyright notice
41125         recommended by RMS (rather than LGPL).
41126         * m4/vararrays.m4: Likewise.
41127         * m4/flexmember.m4: Likewise.
41128
41129 2006-11-29  Bruno Haible  <bruno@clisp.org>
41130
41131         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
41132         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
41133         using +=.
41134         Reported by Simon Josefsson <simon@josefsson.org>.
41135
41136 2006-11-28  James Youngman <jay@gnu.org>
41137
41138         * README: Advise users that they might find the bug-gnulib@gnu.org
41139         and autotools-announce@gnu.org mailing lists useful.
41140
41141 2006-11-28  Bruno Haible  <bruno@clisp.org>
41142
41143         * m4/ptrdiff_max.m4: Remove file.
41144
41145 2006-11-21  Bruno Haible  <bruno@clisp.org>
41146
41147         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
41148         _AC_COMPUTE_INT.
41149         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41150         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
41151         _AC_COMPUTE_INT.
41152         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41153         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
41154         _AC_COMPUTE_INT.
41155         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41156
41157 2006-11-28  Jim Meyering  <jim@meyering.net>
41158
41159         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
41160         warning from "gcc -Wshadow" about shadowing the builtin.
41161
41162 2006-11-27  Bruno Haible  <bruno@clisp.org>
41163
41164         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
41165         _AC_COMPUTE_INT.
41166         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41167
41168 2006-11-27  Bruno Haible  <bruno@clisp.org>
41169             Paul Eggert  <eggert@cs.ucla.edu>
41170
41171         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
41172
41173 2006-11-26  Bruno Haible  <bruno@clisp.org>
41174
41175         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
41176         noinst_LTLIBRARIES.
41177
41178 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
41179             Bruno Haible  <bruno@clisp.org>
41180
41181         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
41182         if compiling with "gcc -ansi".
41183
41184 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
41185
41186         Fix some incompatibilities with gcc -ansi -pedantic.
41187         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
41188         if compiling pedantically with GCC, unless it's C99 or later.
41189         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
41190         it mishandles gcc -ansi -pedantic as well.
41191         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
41192         if gcc -pedantic.
41193         * lib/regexec.c (check_node_accept_bytes): Don't use auto
41194         initializers for struct if -pedantic, unless it's C99 or later.
41195
41196 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
41197
41198         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
41199         Don't close an fd more than once. Identical atimes indicate
41200         success, not failure.
41201
41202 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
41203
41204         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
41205
41206 2006-11-23  Jim Meyering  <jim@meyering.net>
41207
41208         * build-aux/announce-gen: New file.  From coreutils.
41209
41210 2006-11-22  Jim Meyering  <jim@meyering.net>
41211
41212         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
41213         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
41214         (fts_read): Use a temporary to narrow the overused st_size member
41215         before using it in a switch statement.  Reported by Matthew Woehlke.
41216
41217         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
41218         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
41219
41220 2006-11-20  Bruno Haible  <bruno@clisp.org>
41221
41222         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
41223         changequote instead of pairs of brackets.
41224         Reported by Andreas Schwab <schwab@suse.de>.
41225
41226 2006-11-21  Jim Meyering  <jim@meyering.net>
41227
41228         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
41229         so as to remain compatible with older compilers.
41230         Patch from Michael Deutschmann.
41231
41232 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
41233
41234         * MODULES.html.sh (File system functions): Add openat.
41235
41236         * lib/openat.h (rpl_fstatat): New macro, if
41237         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
41238         (fstatat): Define to rpl_fstatat under the same conditions,
41239         unless COMPILING_FSTATAT.
41240         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
41241         seems to have the bug.
41242         * lib/fstatat.c: New file.
41243         * modules/openat (Files): Add it.
41244
41245 2006-11-20  Bruno Haible  <bruno@clisp.org>
41246
41247         * Makefile: New file.
41248
41249 2006-11-20  Jim Meyering  <jim@meyering.net>
41250
41251         The beginnings of syntax-related checks for gnulib.
41252         * lib/Makefile: New file.
41253         * lib/t-idcache: New script.  Ensure that the two halves of
41254         idcache.c stay in sync.
41255
41256         * lib/idcache.c: Adjust comments in user- and group- portions to
41257         be more accurate, and to be consistent with one another.
41258
41259 2006-11-20  Jim Meyering  <jim@meyering.net>
41260
41261         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
41262         continue using the flexible array member (thus, this module performs
41263         half as many malloc calls), with the addition that...
41264         (getgroup, getuser): Consistently record a non-match via an empty
41265         "name" string, and map an empty string match to a NULL return value.
41266         * modules/idcache (Depends-on): Re-add flexmember.
41267
41268         * lib/idcache.c (getuser): Remove all uses of the register keyword.
41269         (getuidbyname, getgroup, getgidbyname): Likewise.
41270
41271         Use cleaner syntax: NULL rather than 0.
41272         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
41273
41274 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
41275
41276         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
41277         It mishandled the case where the group was missing.
41278         Problem reported by Greg Schafer.
41279         * modules/idcache: Likewise.
41280
41281 2006-11-18  Jim Meyering  <jim@meyering.net>
41282
41283         * check-module (%exempt_header): Add exception for some
41284         conditionally-included headers.
41285
41286         * modules/i-ring (Depends-on): Add verify.
41287         (License): Change to LGPL.
41288
41289 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41290
41291         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
41292         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
41293         and inttostr.h.  Use snprintf rather than uinttostr, so that
41294         LGPLed code doesn't depend on GPLed.
41295
41296 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
41297
41298         * modules/inline (License): Change from GPL to LGPL.
41299
41300 2006-11-17  Jim Meyering  <jim@meyering.net>
41301
41302         * modules/d-type (License): Switch to LGPL.
41303
41304 2006-11-15  Bruno Haible  <bruno@clisp.org>
41305
41306         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
41307
41308 2006-11-15  Eric Blake  <ebb9@byu.net>
41309
41310         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
41311         the module dependency.
41312
41313 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
41314             Bruno Haible  <bruno@clisp.org>
41315
41316         * gnulib-tool (func_create_testdir): Add license consistency check.
41317
41318 2006-11-15  Eric Blake  <ebb9@byu.net>
41319
41320         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
41321         random "(cached)" in configure output.
41322
41323 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41324
41325         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
41326         test for conforming inttypes.h is both announced and cached.
41327
41328         * MODULES.html.sh (seen_modules, seen_files): New variables.
41329         (func_module): Rewrite to use a few less gnulib-tool and sed
41330         invocations.  Avoid a couple of quadratic algorithms for ...
41331         (missed_modules, missed_files): ... these, with ...
41332         (func_append, func_tmpdir): ... these new functions, from
41333         gnulib-tool.  Analogously, install traps for cleanup.
41334
41335         * tests/test-gc.c (main): Remove unused variables.
41336         * tests/test-read-file.c: Include stdlib.h, for 'free'.
41337
41338 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
41339
41340         * modules/inttostr (License): Change to LGPL.
41341
41342 2006-11-14  Eric Blake  <ebb9@byu.net>
41343
41344         * modules/tempname (License): Change to LGPL.
41345
41346 2006-11-14  Eric Blake  <ebb9@byu.net>
41347
41348         * doc/functions.texi (Function Portability): *printf functions on
41349         Cygwin now understand all POSIX size specifiers.
41350
41351 2006-11-14  Bruno Haible  <bruno@clisp.org>
41352
41353         * modules/c-ctype (License): Change to LGPL.
41354
41355 2006-11-12  Bruno Haible  <bruno@clisp.org>
41356
41357         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
41358         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
41359         for GNOME libraries, for which the include files are installed in
41360         subdirectories of $prefix/include.
41361
41362 2006-11-12  Bruno Haible  <bruno@clisp.org>
41363
41364         * m4/lib-link.m4: Require at least autoconf-2.54.
41365         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
41366         name to underscores for the --with option.
41367
41368 2006-11-13  Bruno Haible  <bruno@clisp.org>
41369
41370         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
41371         the tests directory.
41372         Reported by Ralf Wildenhues.
41373
41374 2006-11-13  Bruno Haible  <bruno@clisp.org>
41375
41376         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
41377         (func_emit_initmacro_end): Undo the override here.
41378         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
41379         Works around the famous automake error in coreutils.
41380
41381 2006-11-13  Eric Blake  <ebb9@byu.net>
41382
41383         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
41384         element, not its node.
41385
41386 2006-11-12  Bruno Haible  <bruno@clisp.org>
41387
41388         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
41389         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
41390
41391 2006-11-12  Bruno Haible  <bruno@clisp.org>
41392
41393         * gnulib-tool: New option --local-symlink.
41394         (func_usage): Document it.
41395         (lsymbolic): New variable.
41396         (func_import, func_create_testdir): If --symlink was not specified,
41397         test whether --local-symlink was specified and the file comes from
41398         the local_gnulib_dir.
41399
41400 2006-11-12  Bruno Haible  <bruno@clisp.org>
41401
41402         * gnulib-tool (func_ln): New function.
41403         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
41404
41405 2006-11-12  Bruno Haible  <bruno@clisp.org>
41406
41407         Finish support for source files in subdirectories.
41408         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
41409         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
41410         AUTOMAKE_OPTIONS.
41411         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
41412
41413 2006-11-12  Bruno Haible  <bruno@clisp.org>
41414
41415         * gnulib-tool (func_get_automake_snippet): Synthesize also an
41416         EXTRA_lib_SOURCES augmentation.
41417         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
41418
41419 2006-11-12  Jim Meyering  <jim@meyering.net>
41420
41421         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
41422         file descriptors.  This also averts a failure on systems with
41423         native openat support when a traversed directory lacks "x" access.
41424         * lib/fts_.h: Include "i-ring.h"
41425         (struct FTS) [fts_fd_ring]: New member.
41426         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
41427         (FCHDIR): Add parentheses.
41428         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
41429         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
41430         When descending, rather than simply closing the previous
41431         fts_cwd_fd value, push that file descriptor onto the ring.
41432         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
41433         (fts_open): Initialize the new fd_ring member.
41434         (fts_close): Clear the ring.
41435         (fts_safe_changedir): When possible, use our new fd_ring to skip
41436         the diropen and fstat and dev/ino comparison that would normally
41437         accompany a virtual `chdir ("..")'.
41438
41439         * modules/fts (Depends-on): Add i-ring.
41440         * modules/i-ring: New module.
41441         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
41442         * m4/i-ring.m4: New file.
41443
41444 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41445
41446         * gnulib-tool (func_create_testdir): Fix replacement of
41447         `build-aux' in configure.ac.  Run autotools in gltests
41448         subdirectory.
41449         (func_create_testdir, func_create_megatestdir, test): There is
41450         no need for '--force' in most autotool invocations in a new
41451         tree.  Actually fail the whole test if any of the tools, or the
41452         configure or make stages fail.
41453
41454         Sync from Automake.
41455         * build-aux/gnupload: Revert last change.  Add pointer to upload
41456         instructions of the GNU Maintenance Instructions.
41457         Suggestion by Karl Berry.
41458
41459 2006-11-10  Jim Meyering  <jim@meyering.net>
41460
41461         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
41462
41463 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41464
41465         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
41466         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
41467         (bind_textdomain_codeset) [! ENABLE_NLS]:
41468         Evaluate all the arguments.  That way, callers get compatible behavior
41469         if the arguments have side effects.  Also, it avoids some GCC
41470         diagnostics in some cases; Joel E. Denny reported problems when Bison
41471         was configured with --enable-gcc-warnigs.
41472
41473 2006-11-10  Jim Meyering  <jim@meyering.net>
41474
41475         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
41476         relevant options in CFLAGS (like -O, -fno-inline) are taken into
41477         account.
41478
41479 2006-11-10  Jim Meyering  <jim@meyering.net>
41480
41481         * modules/inline: New file/module.
41482         * modules/xalloc (Files): Remove m4/inline.m4.
41483         (Depends-on): Add inline, instead.
41484         * modules/oset: Likewise.
41485         * modules/list: Likewise.
41486
41487 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41488
41489         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
41490         Problem reported by Matthew Woehlke.
41491
41492 2006-11-09  Bruno Haible  <bruno@clisp.org>
41493
41494         * lib/tempname.c (gen_tempname): Remove variant that invokes
41495         __gen_tempname.
41496         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
41497         __gen_tempname.
41498
41499 2006-11-08  Bruno Haible  <bruno@clisp.org>
41500
41501         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
41502         to 'yes' instead of 'cross-compiling'.
41503
41504 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
41505
41506         * lib/quotearg.h (quotearg_free): New decl.
41507         * lib/quotearg.c (quotearg_free): New function.
41508         (slot0, nslots, slotvec0, slotvec):
41509         Now file-scope so that quotearg_free can get at them.
41510
41511 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41512
41513         Sync from Automake.
41514         * build-aux/gnupload: Add missing 'gnu' to example URL.
41515         Report by Karl Berry.
41516
41517 2006-11-08  Bruno Haible  <bruno@clisp.org>
41518
41519         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
41520         Suggested by Paul Eggert.
41521
41522 2006-11-08  Jim Meyering  <jim@meyering.net>
41523
41524         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
41525         It's already included if !_LIBC.
41526         (fts_safe_changedir): Add a comment.
41527
41528 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
41529
41530         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
41531         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
41532         Matthew Woehlke.
41533
41534         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
41535         definitions up, to avoid colliding with change below.
41536         (static_inline) [HAVE_INLINE]: New macro.
41537         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
41538         Provide extern decls when !HAVE_INLINE.  Do not define unless
41539         static_inline is defined, either by us or by xmalloc.c.  Use
41540         static_inline rather than static inline.
41541         (XCALLOC): Optimize sizeof(T) = 1 case.
41542         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
41543
41544 2006-11-07  Bruno Haible  <bruno@clisp.org>
41545
41546         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
41547         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
41548         AC_C_INLINE.
41549         * modules/xalloc (Files): Add m4/inline.m4.
41550
41551 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41552
41553         * README: Fix typo.
41554         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
41555         (Miscellanous Notes): ...from this.
41556
41557 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
41558
41559         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
41560         Mention that offsetof should be used instead of sizeof.
41561         From Bruno Haible.
41562
41563 2006-11-07  Bruno Haible  <bruno@clisp.org>
41564
41565         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
41566
41567 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41568
41569         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41570         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
41571         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41572         (gl_tree_add_before, gl_tree_add_after):
41573         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
41574         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
41575         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
41576         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
41577         (gl_linked_add_after, gl_linked_add_at): Likewise.
41578         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
41579         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41580         (gl_tree_add_before, gl_tree_add_after): Likewise.
41581         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
41582         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
41583         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
41584
41585 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41586
41587         * lib/gl_oset.h: Use C comment style, not C++ comment style.
41588
41589 2006-11-06  Bruno Haible  <bruno@clisp.org>
41590
41591         * m4/inline.m4: New file.
41592         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
41593         * modules/list (Files): Add m4/inline.m4.
41594         * modules/oset (Files): Likewise.
41595
41596 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
41597
41598         * lib/idcache.c: Include <stddef.h>, for offsetof.
41599         (struct userid.name): Change from char * to a flexible array member.
41600         All uses changed.
41601         * modules/idcache (Depends-on): Add flexmember.
41602
41603         * MODULES.html.sh (Core language properties): New module flexmember.
41604         * modules/flexmember, m4/flexmember.m4: New files.
41605
41606         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
41607         inline functions that are identical with the old xnmalloc_inline,
41608         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
41609         that we can avoid some unnecessary integer multiplications and
41610         divisions in the common case where the element size is known at
41611         compile time.
41612         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
41613         needed.
41614         (xnboundedmalloc): Remove.
41615         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
41616         arguments, for consistency with rest of this header.
41617         (xcharalloc): Rewrite using XNMALLOC.
41618         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
41619         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
41620         versions have been moved to lib/xalloc.h and renamed to be the
41621         non-*_inline versions.
41622         (xmalloc, xrealloc): Implement without reference to the xnmalloc
41623         and xnrealloc functions, since those functions are now inline and
41624         now call us.
41625         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
41626         renaming described above.
41627         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
41628         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
41629         captures the dependency in AC_C_INLINE.
41630
41631         New module canonicalize-lgpl, proposed by Charles Wilson in
41632         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
41633         with a few small changes afterwards.
41634         * MODULES.html.sh (File system functions): New module
41635         canonicalize-lgpl.
41636         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
41637         and canonicalize_file_name.
41638         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
41639         * modules/canonicalize-lgpl: New files.
41640
41641 2006-11-05  Bruno Haible  <bruno@clisp.org>
41642
41643         * gnulib-tool (func_import, func_create_testdir): Create directories
41644         also for files in subdirectories of lib/.
41645
41646 2006-11-05  Bruno Haible  <bruno@clisp.org>
41647
41648         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
41649         ANSI C compliant.
41650
41651 2006-11-03  Bruno Haible  <bruno@clisp.org>
41652
41653         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
41654         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
41655         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
41656         (xnboundedmalloc): New inline function.
41657         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
41658         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
41659         xmalloc.
41660         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
41661         xmalloc.
41662         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
41663         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
41664         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
41665         xmalloc.
41666         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41667         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
41668         xmalloc.
41669         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
41670         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41671         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
41672         xmalloc.
41673         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
41674         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
41675         gl_tree_add_after): Use XMALLOC instead of xmalloc.
41676         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
41677         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
41678         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
41679         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
41680
41681 2006-11-03  Bruno Haible  <bruno@clisp.org>
41682
41683         * lib/c-ctype.h [C++]: Define functions without name mangling.
41684         * lib/fwriteerror.h [C++]: Likewise.
41685         * lib/gcd.h [C++]: Likewise.
41686         * lib/linebreak.h [C++]: Likewise.
41687
41688 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
41689
41690         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
41691         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
41692         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
41693         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
41694         Check for functions and headers just once.
41695         Check for declaration of canonicalize_file_name.
41696         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
41697
41698 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
41699
41700         * gnulib-tool (func_import): Fix typo in actioncmd.
41701
41702 2006-11-02  Bruno Haible  <bruno@clisp.org>
41703
41704         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
41705         newline sequence in the Makefile.am snippet as a space, like "make"
41706         does.
41707         Reported by Roger Persson <perrog@gmail.com>.
41708
41709 2006-11-01  Bruno Haible  <bruno@clisp.org>
41710
41711         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
41712         already declared in <string.h>.
41713         * lib/strcase.h (strncasecmp): Don't declare it if yes.
41714
41715 2006-11-01  Bruno Haible  <bruno@clisp.org>
41716
41717         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
41718         * lib/strcase.h: Include <string.h>.
41719         (strcasecmp): Define to rpl_strcasecmp here.
41720
41721 2006-11-01  Bruno Haible  <bruno@clisp.org>
41722
41723         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
41724
41725 2006-11-01  Eric Blake  <ebb9@byu.net>
41726
41727         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
41728
41729         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
41730
41731 2006-10-29  Bruno Haible  <bruno@clisp.org>
41732
41733         Make it compile in C++ mode.
41734         * lib/full-write.c (full_rw): Add a cast.
41735
41736 2006-11-01  Bruno Haible  <bruno@clisp.org>
41737
41738         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
41739         be POSIX compliant.
41740         Reported by Roger Persson <perrog@gmail.com>.
41741
41742 2006-11-01  Eric Blake  <ebb9@byu.net>
41743
41744         * lib/getopt_.h: Fix comments.
41745
41746 2006-10-31  Eric Blake  <ebb9@byu.net>
41747
41748         * modules/tmpdir (Depends-on): Add sys_stat.
41749         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
41750         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
41751         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
41752         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
41753         tempname.
41754
41755 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
41756
41757         Avoid some C++ diagnostics reported by Bruno Haible.
41758         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
41759         xmalloc.
41760         (quotearg_alloc): Use xcharalloc rather than xmalloc.
41761         (struct slotvec): Move to top level.
41762         (quotearg_n_options): Rewrite to avoid xmalloc.
41763         * lib/xalloc.h (xcharalloc): New function.
41764         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
41765         [defined __cplusplus]: Add function template that provides result
41766         type propagation.  This part of the change is from Bruno Haible.
41767
41768 2006-10-29  Bruno Haible  <bruno@clisp.org>
41769
41770         Make it compile in C++ mode.
41771         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
41772         * lib/strnlen1.c (strnlen1): Cast memchr result.
41773         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
41774         * lib/clean-temp.c (string_equals, string_hash): Add casts.
41775         (create_temp_dir): Rename local variable 'template'.
41776         (compile_csharp_using_sscli): Add cast.
41777         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
41778         * lib/findprog.c (find_in_path): Likewise.
41779         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
41780         * lib/wait-process.c (register_slave_subprocess): Likewise.
41781
41782 2006-10-22  Bruno Haible  <bruno@clisp.org>
41783
41784         * modules/tsearch: New file.
41785         * lib/tsearch.h: New file.
41786         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
41787         * m4/tsearch.m4: New file.
41788         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
41789
41790 2006-10-29  Eric Blake  <ebb9@byu.net>
41791
41792         * lib/arcfour.c: Assume config.h.
41793         * lib/arctwo.c: Likewise.
41794         * lib/base64.c: Likewise.
41795         * lib/check-version.c: Likewise.
41796         * lib/crc.c: Likewise.
41797         * lib/des.c: Likewise.
41798         * lib/gc-gnulib.c: Likewise.
41799         * lib/gc-libgcrypt.c: Likewise.
41800         * lib/gc-pbkdf2-sha1.c: Likewise.
41801         * lib/getaddrinfo.c: Likewise.
41802         * lib/getdelim.c: Likewise.
41803         * lib/getline.c: Likewise.
41804         * lib/hmac-md5.c: Likewise.
41805         * lib/hmac-sha1.c: Likewise.
41806         * lib/iconvme.c: Likewise.
41807         * lib/md2.c: Likewise.
41808         * lib/md4.c: Likewise.
41809         * lib/memxor.c: Likewise.
41810         * lib/read-file.c: Likewise.
41811         * lib/readline.c: Likewise.
41812         * lib/rijndael-alg-fst.c: Likewise.
41813         * lib/rijndael-api-fst.c: Likewise.
41814         * lib/xgetdomainname.c: Likewise.
41815
41816 2006-10-28  Eric Blake  <ebb9@byu.net>
41817
41818         * lib/xstrndup.c: Assume config.h.
41819
41820 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
41821
41822         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
41823         stat-macros.h is now for our own macros, whereas stat_h is for
41824         macros in the <sys/stat.h> name space.
41825         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
41826         (STAT_MACROS_H): Remove.
41827         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
41828         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
41829         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
41830         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
41831         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
41832         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
41833         Move these macros to ...
41834         * lib/stat_.h: here.  Don't include stat-macros.h.
41835         * lib/canonicalize.c: Don't include stat-macros.h.
41836         * lib/chown.c: Likewise.
41837         * lib/euidaccess.c: Likewise.
41838         * lib/file-type.c: Likewise.
41839         * lib/filemode.c: Likewise.
41840         * lib/glob.c: Likewise.
41841         * lib/isapipe.c: Likewise.
41842         * lib/lchown.c: Likewise.
41843         * lib/lstat.c: Likewise.
41844         * lib/mkdir-p.c: Likewise.
41845         * lib/rmdir.c: Likewise.
41846         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
41847         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
41848         unless mkdir isn't declared, to speed up 'configure'.
41849         Always create sys/stat.h, since it's unlikely any real sys/stat.h
41850         would define all the S_* symbols.
41851         * modules/canonicalize (Depends-on):
41852         Depend on sys_stat, not stat-macros.
41853         * modules/chown: Likewise.
41854         * modules/euidaccess: Likewise.
41855         * modules/filemode: Likewise.
41856         * modules/file-type: Likewise.
41857         * modules/glob: Likewise.
41858         * modules/isapipe: Likewise.
41859         * modules/lchown: Likewise.
41860         * modules/lstat: Likewise.
41861         * modules/mkancesdirs: Likewise.
41862         * modules/rmdir: Likewise.
41863         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
41864         * modules/modechange: Likewise.
41865         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
41866         (configure.ac): Remove gl_STAT_MACROS.
41867         * modules/sys_stat (Depends-on): Remove stat-macros.
41868
41869 2006-10-27  Bruno Haible  <bruno@clisp.org>
41870
41871         * m4/signed.m4: Remove file.
41872         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
41873         invocation.
41874         * modules/vasnprintf (Files): Remove m4/signed.m4.
41875
41876 2006-10-27  Bruno Haible  <bruno@clisp.org>
41877
41878         Update to GNU gettext 0.16.
41879         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
41880         m4/inttypes-h.m4, m4/signed.m4.
41881         * m4/gettext.m4: Update to GNU gettext 0.16.
41882         * m4/intl.m4: New file, from GNU gettext.
41883         * m4/intldir.m4: New file, from GNU gettext.
41884         * config/srclist.txt: Update
41885
41886 2006-10-27  Eric Blake  <ebb9@byu.net>
41887
41888         * MODULES.html.sh: Document tempname.
41889         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
41890         dependencies.
41891         (Files): Move lib/tempname.c...
41892         * modules/tempname: ...to this new module.
41893         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
41894         (gl_PREREQ_TEMPNAME): Move...
41895         * m4/tempname.m4: ...to this new file.
41896         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
41897         * modules/sys_stat (Depends-on): Add stat-macros.
41898         * lib/stat_.h (includes): Pick up stat macros.
41899         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
41900         if stat macros are broken.
41901         * lib/tempname.c (includes): No need to include "stat-macros.h".
41902         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
41903         (direxists, __path_search) [!_LIBC]: Don't compile these in
41904         gnulib; the tmpdir module covers that.
41905         * lib/tempname.h: New file.
41906
41907 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
41908
41909         * COPYING: Explain how gnulib-tool converts licence headers.
41910         Almost all wording by Eric Blake.
41911
41912 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
41913
41914         * lib/mbchar.h (is_basic_table): Make read-only.
41915         * lib/mbchar.c (is_basic_table): Likewise.
41916         Reported by John Darrington.
41917
41918 2006-10-25  Bruno Haible  <bruno@clisp.org>
41919
41920         * lib/progname.h (set_program_name): Undefine before defining.
41921
41922 2006-10-25  Bruno Haible  <bruno@clisp.org>
41923
41924         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
41925         false for non-gcc C++ compilers.
41926         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
41927
41928 2006-10-24  Bruno Haible  <bruno@clisp.org>
41929
41930         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
41931         iconv implementations like Irix iconv.
41932
41933 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41934
41935         * modules/vararrays: New file.
41936         * m4/vararrays.m4: New file, taken from diffutils.
41937         * MODULES.html.sh: New module vararrays.
41938
41939 2006-10-24  Karl Berry  <karl@gnu.org>
41940
41941         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
41942         Don't call GNU Unix.
41943
41944 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41945
41946         * users.txt: Add Libtool.
41947
41948         Sync from Libtool:
41949
41950         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41951
41952         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
41953         to gnulib's policy of including config.h unconditionally.
41954
41955 2006-10-24  Bruno Haible  <bruno@clisp.org>
41956
41957         * modules/wcwidth (Files): Add m4/wint_t.m4.
41958         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
41959         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
41960
41961 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41962
41963         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
41964         to pacify GCC with some -W flags enabled.  Problem reported by
41965         Bruno Haible.
41966
41967 2006-10-24  Jim Meyering  <jim@meyering.net>
41968
41969         * MODULES.html.sh: Remove uinttostr.  It's not a module.
41970         Reported by Karl Berry.
41971
41972 2006-10-23  Bruno Haible  <bruno@clisp.org>
41973
41974         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
41975
41976 2006-10-24  Bruno Haible  <bruno@clisp.org>
41977
41978         * lib/gl_list.h: Use C comment style, not C++ comment style.
41979
41980 2006-10-23  Eric Blake  <ebb9@byu.net>
41981
41982         * lib/getaddrinfo.c (includes): Add missing include.
41983
41984 2006-10-23  Bruno Haible  <bruno@clisp.org>
41985             Paul Eggert  <eggert@cs.ucla.edu>
41986
41987         Ability to rename obstack_free.
41988         * lib/obstack.h (__obstack_free): New macro. Declare instead of
41989         obstack_free.
41990         (obstack_free): Invoke the __obstack_free macro.
41991         * lib/obstack.c (obstack_free): Use __obstack_free macro.
41992
41993 2006-10-23  Bruno Haible  <bruno@clisp.org>
41994             Paul Eggert  <eggert@cs.ucla.edu>
41995
41996         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
41997         __argc, __argv from the declaration. (They are defined as macros on
41998         mingw.)
41999
42000 2006-10-22  Bruno Haible  <bruno@clisp.org>
42001
42002         * doc/gnulib-intro.texi: New file.
42003         * doc/gnulib.texi: Include it.
42004
42005 2006-10-21  Bruno Haible  <bruno@clisp.org>
42006
42007         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
42008         "Introduction", "Miscellanous Notes", "Particular Modules".
42009
42010 2006-10-21  Bruno Haible  <bruno@clisp.org>
42011
42012         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
42013         Change mostlyclean-local rule to avoid sh syntax error from bash
42014         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
42015
42016 2006-10-23  Jim Meyering  <jim@meyering.net>
42017
42018         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
42019         in place of snprintf.
42020
42021         * modules/inttostr (Files): Add lib/uinttostr.c.
42022         * lib/uinttostr.c (inttostr): New file/function.
42023         * lib/inttostr.h (uinttostr): Declare.
42024         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
42025         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
42026         Add uinttostr.
42027         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
42028
42029 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
42030
42031         * lib/canonicalize.c (ELOOP): Define if not already defined.
42032         Problem reported by Bruno Haible in
42033         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
42034
42035 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
42036
42037         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
42038         Problem reported by Perry Smith and Ville Laurikari.
42039
42040         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
42041         uses.
42042
42043 2006-10-19  Bruno Haible  <bruno@clisp.org>
42044
42045         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
42046         for mingw.
42047
42048 2006-10-19  Bruno Haible  <bruno@clisp.org>
42049
42050         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
42051         Needed for mingw.
42052
42053 2006-10-19  Bruno Haible  <bruno@clisp.org>
42054
42055         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
42056
42057 2006-10-19  Bruno Haible  <bruno@clisp.org>
42058
42059         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
42060         it.
42061
42062 2006-10-19  Bruno Haible  <bruno@clisp.org>
42063
42064         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
42065         invocation.
42066
42067 2006-10-19  Bruno Haible  <bruno@clisp.org>
42068
42069         * gnulib-tool (func_create_testdir): Don't include ftruncate and
42070         mountlist by default.
42071
42072 2006-10-16  Bruno Haible  <bruno@clisp.org>
42073
42074         * lib/c-strstr.c: Include c-strstr.h.
42075
42076 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
42077
42078         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
42079         in a slash.
42080
42081 2006-10-18  Bruno Haible  <bruno@clisp.org>
42082
42083         * lib/lock.h [C++]: Wrap definitions in extern "C".
42084
42085 2006-10-18  Bruno Haible  <bruno@clisp.org>
42086
42087         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
42088         gl_LIBOBJS list.
42089
42090 2006-10-18  Bruno Haible  <bruno@clisp.org>
42091
42092         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
42093
42094 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
42095
42096         * lib/xstrtol.h: Include gettext.h.
42097         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
42098         Problem reported by Eric Blake.
42099         * modules/xstrtol (Depends-on): Add gettext-h.
42100
42101 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
42102
42103         * lib/strftime.c (advance): New macro.
42104         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
42105         incomplete type, so you can't add 0 to it.  Problem and patch
42106         reported by Eelco Dolstra for dietlibc.
42107
42108 2006-10-18  Jim Meyering  <jim@meyering.net>
42109
42110         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
42111         type for a local, and rename it: s/up/user_proc/.
42112
42113 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
42114
42115         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
42116         READ_UTMP_USER_PROCESS.
42117         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
42118
42119 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
42120
42121         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
42122         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
42123
42124 2006-10-17  Eric Blake  <ebb9@byu.net>
42125
42126         * lib/sigprocmask.c (sigprocmask): Fix typo.
42127
42128         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
42129
42130         * modules/clean-temp (Makefile.am): Don't add to make output...
42131         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
42132         config.h.
42133
42134 2006-10-17  Bruno Haible  <bruno@clisp.org>
42135
42136         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
42137         differently if DEFAULT_TEXT_DOMAIN is set.
42138
42139 2006-10-16  Bruno Haible  <bruno@clisp.org>
42140
42141         * lib/clean-temp.c: Include fwriteerror.h.
42142
42143 2006-10-16  Bruno Haible  <bruno@clisp.org>
42144
42145         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
42146
42147 2006-10-16  Bruno Haible  <bruno@clisp.org>
42148
42149         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
42150         * lib/sigprocmask.h: Include <sys/types.h>.
42151         (sigset_t): Use the system's definition if present.
42152
42153 2006-10-17  Eric Blake  <ebb9@byu.net>
42154
42155         * lib/xvasprintf.c (includes): Assume config.h.
42156         * lib/xasprintf.c (includes): Likewise.
42157
42158 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
42159
42160         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
42161         at least as wide as intmax_t.
42162
42163 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
42164
42165         (Imported from Automake.)
42166         * build-aux/gnupload: Update to version 1.1 of directive file.
42167
42168 2006-10-16  Eric Blake  <ebb9@byu.net>
42169
42170         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
42171         match Automake 1.10a.
42172
42173 2006-10-14  Bruno Haible  <bruno@clisp.org>
42174
42175         * modules/sigprocmask: New file.
42176         * lib/sigprocmask.h: New file.
42177         * lib/sigprocmask.c: New file.
42178         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
42179         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
42180         request sigprocmask.o.
42181         (gl_PREREQ_SIGPROCMASK): New macro.
42182         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
42183         (Depends-on): Add sigprocmask.
42184         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
42185         gt_SIGNALBLOCKING. Test for 'raise' only once.
42186         * lib/fatal-signal.c: Include sigprocmask.h.
42187         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
42188         unblock_fatal_signals): Define always.
42189         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
42190         sigprocmask.
42191
42192 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42193
42194         Sync from Automake.
42195         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
42196         which incorrectly sets the mode of an existing destination
42197         directory.  In some cases the unpatched install-sh could do the
42198         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
42199         system.  We hope this is rare in practice, but it's clearly worth
42200         fixing.  Problem reported by Alex Unleashed in
42201         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
42202         Also, don't bother to check for -m bugs unless we're using -m;
42203         suggested by Stepan Kasal.
42204
42205 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42206
42207         Sync from Automake.
42208         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
42209         `-c' flag, so they appear at the same position as in %FASTDEP%
42210         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
42211         which ignores unknown options only after the first non-option.
42212         Bug report against M4 by Nelson H. F. Beebe.
42213
42214 2006-10-13  Jim Meyering  <jim@meyering.net>
42215
42216         Fix a bug in yesterday's change.
42217         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
42218         p->fts_statp->st_dev would be used uninitialized.
42219         Ensures that we always call fts_stat on the very first entry.
42220         Miklos Szeredi reported that find -xdev stopped working.
42221
42222 2006-10-12  Bruno Haible  <bruno@clisp.org>
42223
42224         * gnulib-tool (func_get_automake_snippet): Append an automatically
42225         computed EXTRA_DIST augmentation.
42226         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
42227         * modules/alloca-opt (Makefile.am): Likewise.
42228         * modules/allocsa (Makefile.am): Likewise.
42229         * modules/arcfour (Makefile.am): Likewise.
42230         * modules/arctwo (Makefile.am): Likewise.
42231         * modules/argmatch (Makefile.am): Likewise.
42232         * modules/argz (Makefile.am): Likewise.
42233         * modules/atexit (Makefile.am): Likewise.
42234         * modules/backupfile (Makefile.am): Likewise.
42235         * modules/byteswap (Makefile.am): Likewise.
42236         * modules/c-strtod (Makefile.am): Likewise.
42237         * modules/c-strtold (Makefile.am): Likewise.
42238         * modules/calloc (Makefile.am): Likewise.
42239         * modules/canon-host (Makefile.am): Likewise.
42240         * modules/canonicalize (Makefile.am): Likewise.
42241         * modules/chdir-long (Makefile.am): Likewise.
42242         * modules/chdir-safer (Makefile.am): Likewise.
42243         * modules/check-version (Makefile.am): Likewise.
42244         * modules/chown (Makefile.am): Likewise.
42245         * modules/cloexec (Makefile.am): Likewise.
42246         * modules/close-stream (Makefile.am): Likewise.
42247         * modules/closeout (Makefile.am): Likewise.
42248         * modules/crc (Makefile.am): Likewise.
42249         * modules/csharpexec (Makefile.am): Likewise.
42250         * modules/cycle-check (Makefile.am): Likewise.
42251         * modules/des (Makefile.am): Likewise.
42252         * modules/dev-ino (Makefile.am): Likewise.
42253         * modules/dirfd (Makefile.am): Likewise.
42254         * modules/dirname (Makefile.am): Likewise.
42255         * modules/dup2 (Makefile.am): Likewise.
42256         * modules/eealloc (Makefile.am): Likewise.
42257         * modules/error (Makefile.am): Likewise.
42258         * modules/euidaccess (Makefile.am): Likewise.
42259         * modules/exclude (Makefile.am): Likewise.
42260         * modules/exitfail (Makefile.am): Likewise.
42261         * modules/fcntl-safer (Makefile.am): Likewise.
42262         * modules/fcntl (Makefile.am): Likewise.
42263         * modules/file-type (Makefile.am): Likewise.
42264         * modules/fileblocks (Makefile.am): Likewise.
42265         * modules/filemode (Makefile.am): Likewise.
42266         * modules/filenamecat (Makefile.am): Likewise.
42267         * modules/fnmatch (Makefile.am): Likewise.
42268         * modules/fopen-safer (Makefile.am): Likewise.
42269         * modules/fpending (Makefile.am): Likewise.
42270         * modules/fprintftime (Makefile.am): Likewise.
42271         * modules/free (Makefile.am): Likewise.
42272         * modules/fsusage (Makefile.am): Likewise.
42273         * modules/ftruncate (Makefile.am): Likewise.
42274         * modules/fts (Makefile.am): Likewise.
42275         * modules/gc-arcfour (Makefile.am): Likewise.
42276         * modules/gc-des (Makefile.am): Likewise.
42277         * modules/gc-hmac-md5 (Makefile.am): Likewise.
42278         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
42279         * modules/gc-md4 (Makefile.am): Likewise.
42280         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
42281         * modules/gc-sha1 (Makefile.am): Likewise.
42282         * modules/gc (Makefile.am): Likewise.
42283         * modules/getaddrinfo (Makefile.am): Likewise.
42284         * modules/getcwd (Makefile.am): Likewise.
42285         * modules/getdelim (Makefile.am): Likewise.
42286         * modules/getdomainname (Makefile.am): Likewise.
42287         * modules/getgroups (Makefile.am): Likewise.
42288         * modules/gethostname (Makefile.am): Likewise.
42289         * modules/gethrxtime (Makefile.am): Likewise.
42290         * modules/getline (Makefile.am): Likewise.
42291         * modules/getloadavg (Makefile.am): Likewise.
42292         * modules/getlogin_r (Makefile.am): Likewise.
42293         * modules/getndelim2 (Makefile.am): Likewise.
42294         * modules/getopt (Makefile.am): Likewise.
42295         * modules/getpagesize (Makefile.am): Likewise.
42296         * modules/getpass-gnu (Makefile.am): Likewise.
42297         * modules/getpass (Makefile.am): Likewise.
42298         * modules/getsubopt (Makefile.am): Likewise.
42299         * modules/gettime (Makefile.am): Likewise.
42300         * modules/gettimeofday (Makefile.am): Likewise.
42301         * modules/getugroups (Makefile.am): Likewise.
42302         * modules/getusershell (Makefile.am): Likewise.
42303         * modules/glob (Makefile.am): Likewise.
42304         * modules/group-member (Makefile.am): Likewise.
42305         * modules/hard-locale (Makefile.am): Likewise.
42306         * modules/hash (Makefile.am): Likewise.
42307         * modules/hmac-md5 (Makefile.am): Likewise.
42308         * modules/hmac-sha1 (Makefile.am): Likewise.
42309         * modules/human (Makefile.am): Likewise.
42310         * modules/idcache (Makefile.am): Likewise.
42311         * modules/imaxabs (Makefile.am): Likewise.
42312         * modules/imaxdiv (Makefile.am): Likewise.
42313         * modules/inet_ntop (Makefile.am): Likewise.
42314         * modules/inet_pton (Makefile.am): Likewise.
42315         * modules/intprops (Makefile.am): Likewise.
42316         * modules/inttostr (Makefile.am): Likewise.
42317         * modules/inttypes (Makefile.am): Likewise.
42318         * modules/isapipe (Makefile.am): Likewise.
42319         * modules/javaversion (Makefile.am): Likewise.
42320         * modules/lchmod (Makefile.am): Likewise.
42321         * modules/lchown (Makefile.am): Likewise.
42322         * modules/localcharset (Makefile.am): Likewise.
42323         * modules/long-options (Makefile.am): Likewise.
42324         * modules/lstat (Makefile.am): Likewise.
42325         * modules/malloc (Makefile.am): Likewise.
42326         * modules/mathl (Makefile.am): Likewise.
42327         * modules/mbchar (Makefile.am): Likewise.
42328         * modules/md2 (Makefile.am): Likewise.
42329         * modules/md4 (Makefile.am): Likewise.
42330         * modules/md5 (Makefile.am): Likewise.
42331         * modules/memcasecmp (Makefile.am): Likewise.
42332         * modules/memchr (Makefile.am): Likewise.
42333         * modules/memcmp (Makefile.am): Likewise.
42334         * modules/memcoll (Makefile.am): Likewise.
42335         * modules/memcpy (Makefile.am): Likewise.
42336         * modules/memmem (Makefile.am): Likewise.
42337         * modules/memmove (Makefile.am): Likewise.
42338         * modules/mempcpy (Makefile.am): Likewise.
42339         * modules/memrchr (Makefile.am): Likewise.
42340         * modules/memset (Makefile.am): Likewise.
42341         * modules/memxor (Makefile.am): Likewise.
42342         * modules/mkancesdirs (Makefile.am): Likewise.
42343         * modules/mkdir-p (Makefile.am): Likewise.
42344         * modules/mkdir (Makefile.am): Likewise.
42345         * modules/mkdtemp (Makefile.am): Likewise.
42346         * modules/mkstemp (Makefile.am): Likewise.
42347         * modules/mktime (Makefile.am): Likewise.
42348         * modules/modechange (Makefile.am): Likewise.
42349         * modules/mountlist (Makefile.am): Likewise.
42350         * modules/nanosleep (Makefile.am): Likewise.
42351         * modules/obstack (Makefile.am): Likewise.
42352         * modules/openat (Makefile.am): Likewise.
42353         * modules/pagealign_alloc (Makefile.am): Likewise.
42354         * modules/pathmax (Makefile.am): Likewise.
42355         * modules/physmem (Makefile.am): Likewise.
42356         * modules/poll (Makefile.am): Likewise.
42357         * modules/posixtm (Makefile.am): Likewise.
42358         * modules/posixver (Makefile.am): Likewise.
42359         * modules/putenv (Makefile.am): Likewise.
42360         * modules/quote (Makefile.am): Likewise.
42361         * modules/quotearg (Makefile.am): Likewise.
42362         * modules/raise (Makefile.am): Likewise.
42363         * modules/read-file (Makefile.am): Likewise.
42364         * modules/readline (Makefile.am): Likewise.
42365         * modules/readlink (Makefile.am): Likewise.
42366         * modules/readtokens (Makefile.am): Likewise.
42367         * modules/readutmp (Makefile.am): Likewise.
42368         * modules/realloc (Makefile.am): Likewise.
42369         * modules/regex (Makefile.am): Likewise.
42370         * modules/rename-dest-slash (Makefile.am): Likewise.
42371         * modules/rename (Makefile.am): Likewise.
42372         * modules/rijndael (Makefile.am): Likewise.
42373         * modules/rmdir (Makefile.am): Likewise.
42374         * modules/rpmatch (Makefile.am): Likewise.
42375         * modules/safe-read (Makefile.am): Likewise.
42376         * modules/safe-write (Makefile.am): Likewise.
42377         * modules/same-inode (Makefile.am): Likewise.
42378         * modules/same (Makefile.am): Likewise.
42379         * modules/save-cwd (Makefile.am): Likewise.
42380         * modules/savedir (Makefile.am): Likewise.
42381         * modules/setenv (Makefile.am): Likewise.
42382         * modules/settime (Makefile.am): Likewise.
42383         * modules/sha1 (Makefile.am): Likewise.
42384         * modules/sig2str (Makefile.am): Likewise.
42385         * modules/snprintf (Makefile.am): Likewise.
42386         * modules/stat-macros (Makefile.am): Likewise.
42387         * modules/stat-time (Makefile.am): Likewise.
42388         * modules/stdbool (Makefile.am): Likewise.
42389         * modules/stdint (Makefile.am): Likewise.
42390         * modules/stdlib-safer (Makefile.am): Likewise.
42391         * modules/stpcpy (Makefile.am): Likewise.
42392         * modules/stpncpy (Makefile.am): Likewise.
42393         * modules/strcase (Makefile.am): Likewise.
42394         * modules/strcasestr (Makefile.am): Likewise.
42395         * modules/strchrnul (Makefile.am): Likewise.
42396         * modules/strcspn (Makefile.am): Likewise.
42397         * modules/strdup (Makefile.am): Likewise.
42398         * modules/strerror (Makefile.am): Likewise.
42399         * modules/strftime (Makefile.am): Likewise.
42400         * modules/strndup (Makefile.am): Likewise.
42401         * modules/strnlen (Makefile.am): Likewise.
42402         * modules/strpbrk (Makefile.am): Likewise.
42403         * modules/strsep (Makefile.am): Likewise.
42404         * modules/strstr (Makefile.am): Likewise.
42405         * modules/strtod (Makefile.am): Likewise.
42406         * modules/strtoimax (Makefile.am): Likewise.
42407         * modules/strtok_r (Makefile.am): Likewise.
42408         * modules/strtol (Makefile.am): Likewise.
42409         * modules/strtoll (Makefile.am): Likewise.
42410         * modules/strtoul (Makefile.am): Likewise.
42411         * modules/strtoull (Makefile.am): Likewise.
42412         * modules/strtoumax (Makefile.am): Likewise.
42413         * modules/strverscmp (Makefile.am): Likewise.
42414         * modules/sys_socket (Makefile.am): Likewise.
42415         * modules/sys_stat (Makefile.am): Likewise.
42416         * modules/sysexits (Makefile.am): Likewise.
42417         * modules/time_r (Makefile.am): Likewise.
42418         * modules/timegm (Makefile.am): Likewise.
42419         * modules/timespec (Makefile.am): Likewise.
42420         * modules/tmpfile-safer (Makefile.am): Likewise.
42421         * modules/trim (Makefile.am): Likewise.
42422         * modules/unistd-safer (Makefile.am): Likewise.
42423         * modules/unlinkdir (Makefile.am): Likewise.
42424         * modules/unlocked-io (Makefile.am): Likewise.
42425         * modules/userspec (Makefile.am): Likewise.
42426         * modules/utime (Makefile.am): Likewise.
42427         * modules/utimecmp (Makefile.am): Likewise.
42428         * modules/utimens (Makefile.am): Likewise.
42429         * modules/vasnprintf (Makefile.am): Likewise.
42430         * modules/vasprintf (Makefile.am): Likewise.
42431         * modules/vsnprintf (Makefile.am): Likewise.
42432         * modules/xalloc (Makefile.am): Likewise.
42433         * modules/xgetcwd (Makefile.am): Likewise.
42434         * modules/xnanosleep (Makefile.am): Likewise.
42435         * modules/xreadlink (Makefile.am): Likewise.
42436         * modules/xstrtod (Makefile.am): Likewise.
42437         * modules/xstrtol (Makefile.am): Likewise.
42438         * modules/xstrtold (Makefile.am): Likewise.
42439         * modules/yesno (Makefile.am): Likewise.
42440         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
42441
42442 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
42443
42444         * modules/error (Makefile.am): Distribute files through
42445         EXTRA_DIST, not lib_SOURCES.
42446
42447 2006-10-12  Eric Blake  <ebb9@byu.net>
42448
42449         * modules/error (Makefile.am): Distribute files in /lib.
42450         * modules/obstack (Makefile.am): Likewise.
42451
42452 2006-10-12  Bruno Haible  <bruno@clisp.org>
42453
42454         * modules/acl (Makefile.am): Distribute all files in lib/ through
42455         EXTRA_DIST.
42456         * modules/arcfour (Makefile.am): Likewise.
42457         * modules/arctwo (Makefile.am): Likewise.
42458         * modules/argmatch (Makefile.am): Likewise.
42459         * modules/argz (Makefile.am): Likewise.
42460         * modules/atexit (Makefile.am): Likewise.
42461         * modules/backupfile (Makefile.am): Likewise.
42462         * modules/c-strtod (Makefile.am): Likewise.
42463         * modules/c-strtold (Makefile.am): Likewise.
42464         * modules/calloc (Makefile.am): Likewise.
42465         * modules/canon-host (Makefile.am): Likewise.
42466         * modules/canonicalize (Makefile.am): Likewise.
42467         * modules/chdir-long (Makefile.am): Likewise.
42468         * modules/chdir-safer (Makefile.am): Likewise.
42469         * modules/check-version (Makefile.am): Likewise.
42470         * modules/chown (Makefile.am): Likewise.
42471         * modules/cloexec (Makefile.am): Likewise.
42472         * modules/close-stream (Makefile.am): Likewise.
42473         * modules/closeout (Makefile.am): Likewise.
42474         * modules/crc (Makefile.am): Likewise.
42475         * modules/cycle-check (Makefile.am): Likewise.
42476         * modules/des (Makefile.am): Likewise.
42477         * modules/dirfd (Makefile.am): Likewise.
42478         * modules/dirname (Makefile.am): Likewise.
42479         * modules/dup2 (Makefile.am): Likewise.
42480         * modules/euidaccess (Makefile.am): Likewise.
42481         * modules/exclude (Makefile.am): Likewise.
42482         * modules/exitfail (Makefile.am): Likewise.
42483         * modules/fcntl-safer (Makefile.am): Likewise.
42484         * modules/file-type (Makefile.am): Likewise.
42485         * modules/fileblocks (Makefile.am): Likewise.
42486         * modules/filemode (Makefile.am): Likewise.
42487         * modules/filenamecat (Makefile.am): Likewise.
42488         * modules/fnmatch (Makefile.am): Likewise.
42489         * modules/fopen-safer (Makefile.am): Likewise.
42490         * modules/fpending (Makefile.am): Likewise.
42491         * modules/fprintftime (Makefile.am): Likewise.
42492         * modules/free (Makefile.am): Likewise.
42493         * modules/fsusage (Makefile.am): Likewise.
42494         * modules/ftruncate (Makefile.am): Likewise.
42495         * modules/fts (Makefile.am): Likewise.
42496         * modules/gc (Makefile.am): Likewise.
42497         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
42498         * modules/getaddrinfo (Makefile.am): Likewise.
42499         * modules/getcwd (Makefile.am): Likewise.
42500         * modules/getdelim (Makefile.am): Likewise.
42501         * modules/getdomainname (Makefile.am): Likewise.
42502         * modules/getgroups (Makefile.am): Likewise.
42503         * modules/gethostname (Makefile.am): Likewise.
42504         * modules/gethrxtime (Makefile.am): Likewise.
42505         * modules/getline (Makefile.am): Likewise.
42506         * modules/getloadavg (Makefile.am): Likewise.
42507         * modules/getlogin_r (Makefile.am): Likewise.
42508         * modules/getopt (Makefile.am): Likewise.
42509         * modules/getpass (Makefile.am): Likewise.
42510         * modules/getpass-gnu (Makefile.am): Likewise.
42511         * modules/getsubopt (Makefile.am): Likewise.
42512         * modules/gettime (Makefile.am): Likewise.
42513         * modules/gettimeofday (Makefile.am): Likewise.
42514         * modules/getugroups (Makefile.am): Likewise.
42515         * modules/getusershell (Makefile.am): Likewise.
42516         * modules/glob (Makefile.am): Likewise.
42517         * modules/group-member (Makefile.am): Likewise.
42518         * modules/hard-locale (Makefile.am): Likewise.
42519         * modules/hash (Makefile.am): Likewise.
42520         * modules/hmac-md5 (Makefile.am): Likewise.
42521         * modules/hmac-sha1 (Makefile.am): Likewise.
42522         * modules/human (Makefile.am): Likewise.
42523         * modules/idcache (Makefile.am): Likewise.
42524         * modules/imaxabs (Makefile.am): Likewise.
42525         * modules/imaxdiv (Makefile.am): Likewise.
42526         * modules/inet_ntop (Makefile.am): Likewise.
42527         * modules/inet_pton (Makefile.am): Likewise.
42528         * modules/inttostr (Makefile.am): Likewise.
42529         * modules/isapipe (Makefile.am): Likewise.
42530         * modules/lchown (Makefile.am): Likewise.
42531         * modules/long-options (Makefile.am): Likewise.
42532         * modules/lstat (Makefile.am): Likewise.
42533         * modules/malloc (Makefile.am): Likewise.
42534         * modules/mathl (Makefile.am): Likewise.
42535         * modules/mbchar (Makefile.am): Likewise.
42536         * modules/md2 (Makefile.am): Likewise.
42537         * modules/md4 (Makefile.am): Likewise.
42538         * modules/md5 (Makefile.am): Likewise.
42539         * modules/memcasecmp (Makefile.am): Likewise.
42540         * modules/memchr (Makefile.am): Likewise.
42541         * modules/memcmp (Makefile.am): Likewise.
42542         * modules/memcoll (Makefile.am): Likewise.
42543         * modules/memcpy (Makefile.am): Likewise.
42544         * modules/memmem (Makefile.am): Likewise.
42545         * modules/memmove (Makefile.am): Likewise.
42546         * modules/mempcpy (Makefile.am): Likewise.
42547         * modules/memrchr (Makefile.am): Likewise.
42548         * modules/memset (Makefile.am): Likewise.
42549         * modules/memxor (Makefile.am): Likewise.
42550         * modules/mkancesdirs (Makefile.am): Likewise.
42551         * modules/mkdir (Makefile.am): Likewise.
42552         * modules/mkdir-p (Makefile.am): Likewise.
42553         * modules/mkdtemp (Makefile.am): Likewise.
42554         * modules/mkstemp (Makefile.am): Likewise.
42555         * modules/mktime (Makefile.am): Likewise.
42556         * modules/modechange (Makefile.am): Likewise.
42557         * modules/mountlist (Makefile.am): Likewise.
42558         * modules/nanosleep (Makefile.am): Likewise.
42559         * modules/openat (Makefile.am): Likewise.
42560         * modules/pagealign_alloc (Makefile.am): Likewise.
42561         * modules/physmem (Makefile.am): Likewise.
42562         * modules/poll (Makefile.am): Likewise.
42563         * modules/posixtm (Makefile.am): Likewise.
42564         * modules/posixver (Makefile.am): Likewise.
42565         * modules/putenv (Makefile.am): Likewise.
42566         * modules/quote (Makefile.am): Likewise.
42567         * modules/quotearg (Makefile.am): Likewise.
42568         * modules/raise (Makefile.am): Likewise.
42569         * modules/read-file (Makefile.am): Likewise.
42570         * modules/readline (Makefile.am): Likewise.
42571         * modules/readlink (Makefile.am): Likewise.
42572         * modules/readtokens (Makefile.am): Likewise.
42573         * modules/readutmp (Makefile.am): Likewise.
42574         * modules/realloc (Makefile.am): Likewise.
42575         * modules/regex (Makefile.am): Likewise.
42576         * modules/rename (Makefile.am): Likewise.
42577         * modules/rename-dest-slash (Makefile.am): Likewise.
42578         * modules/rijndael (Makefile.am): Likewise.
42579         * modules/rmdir (Makefile.am): Likewise.
42580         * modules/rpmatch (Makefile.am): Likewise.
42581         * modules/safe-read (Makefile.am): Likewise.
42582         * modules/safe-write (Makefile.am): Likewise.
42583         * modules/same (Makefile.am): Likewise.
42584         * modules/save-cwd (Makefile.am): Likewise.
42585         * modules/savedir (Makefile.am): Likewise.
42586         * modules/setenv (Makefile.am): Likewise.
42587         * modules/settime (Makefile.am): Likewise.
42588         * modules/sha1 (Makefile.am): Likewise.
42589         * modules/sig2str (Makefile.am): Likewise.
42590         * modules/snprintf (Makefile.am): Likewise.
42591         * modules/stdlib-safer (Makefile.am): Likewise.
42592         * modules/stpcpy (Makefile.am): Likewise.
42593         * modules/stpncpy (Makefile.am): Likewise.
42594         * modules/strcase (Makefile.am): Likewise.
42595         * modules/strcasestr (Makefile.am): Likewise.
42596         * modules/strchrnul (Makefile.am): Likewise.
42597         * modules/strcspn (Makefile.am): Likewise.
42598         * modules/strdup (Makefile.am): Likewise.
42599         * modules/strerror (Makefile.am): Likewise.
42600         * modules/strftime (Makefile.am): Likewise.
42601         * modules/strndup (Makefile.am): Likewise.
42602         * modules/strnlen (Makefile.am): Likewise.
42603         * modules/strpbrk (Makefile.am): Likewise.
42604         * modules/strsep (Makefile.am): Likewise.
42605         * modules/strstr (Makefile.am): Likewise.
42606         * modules/strtod (Makefile.am): Likewise.
42607         * modules/strtoimax (Makefile.am): Likewise.
42608         * modules/strtok_r (Makefile.am): Likewise.
42609         * modules/strtol (Makefile.am): Likewise.
42610         * modules/strtoll (Makefile.am): Likewise.
42611         * modules/strtoul (Makefile.am): Likewise.
42612         * modules/strtoull (Makefile.am): Likewise.
42613         * modules/strtoumax (Makefile.am): Likewise.
42614         * modules/strverscmp (Makefile.am): Likewise.
42615         * modules/time_r (Makefile.am): Likewise.
42616         * modules/timegm (Makefile.am): Likewise.
42617         * modules/tmpfile-safer (Makefile.am): Likewise.
42618         * modules/unistd-safer (Makefile.am): Likewise.
42619         * modules/unlinkdir (Makefile.am): Likewise.
42620         * modules/userspec (Makefile.am): Likewise.
42621         * modules/utime (Makefile.am): Likewise.
42622         * modules/utimecmp (Makefile.am): Likewise.
42623         * modules/utimens (Makefile.am): Likewise.
42624         * modules/vasnprintf (Makefile.am): Likewise.
42625         * modules/vasprintf (Makefile.am): Likewise.
42626         * modules/vsnprintf (Makefile.am): Likewise.
42627         * modules/xalloc (Makefile.am): Likewise.
42628         * modules/xgetcwd (Makefile.am): Likewise.
42629         * modules/xnanosleep (Makefile.am): Likewise.
42630         * modules/xreadlink (Makefile.am): Likewise.
42631         * modules/xstrtod (Makefile.am): Likewise.
42632         * modules/xstrtol (Makefile.am): Likewise.
42633         * modules/xstrtold (Makefile.am): Likewise.
42634         * modules/yesno (Makefile.am): Likewise.
42635
42636 2006-10-12  Jim Meyering  <jim@meyering.net>
42637
42638         * m4/getloadavg.m4: Revert the change below.
42639
42640         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
42641         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
42642         fail with a symlink, which is what coreutils' ./bootstrap now
42643         creates by default.
42644
42645 2006-10-12  Bruno Haible  <bruno@clisp.org>
42646
42647         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
42648         mingw.
42649         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
42650         MSVC and mingw explicitly.
42651
42652 2006-10-11  Simon Josefsson  <jas@extundo.com>
42653             Bruno Haible  <bruno@clisp.org>
42654
42655         Add support for multiple gnulib-tool invocations in the scope of a
42656         single configure.ac file.
42657         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
42658         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
42659         with the same contents as the _LIBADD variable.
42660         (func_emit_initmacro_start, func_emit_initmacro_end,
42661         func_emit_initmacro_done): New functions.
42662         (func_import, func_create_testdir): Invoke them. Allow the identifiers
42663         gl_LIBOBJS and gl_LTLIBOBJS.
42664
42665 2006-10-11  Bruno Haible  <bruno@clisp.org>
42666
42667         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
42668         (func_create_testdir): Don't create po/Makefile.am, don't invoke
42669         autoreconf. Instead, invoke autopoint explicitly but move back the
42670         *.m4 files from gnulib.
42671
42672 2006-10-11  Bruno Haible  <bruno@clisp.org>
42673
42674         * gnulib-tool (func_usage): Make module names after --create-testdir
42675         optional.
42676         (func_create_testdir): If no module was specified, use nearly all
42677         modules.
42678
42679 2006-10-12  Jim Meyering  <jim@meyering.net>
42680
42681         Big performance improvement for fts-based tools that use FTS_NOSTAT.
42682         Avoid spurious inode-mismatch problems on non-POSIX file systems.
42683         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
42684         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
42685         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
42686         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
42687         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
42688         (fts_set_stat_required): New function.
42689         (fts_open): Defer the calls to fts_stat, if possible or requested.
42690         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
42691         into fts_stat itself.
42692         (fts_read): Perform any required (deferred) fts_stat call.
42693         (fts_build): Likewise, for the directory we're about to open and read.
42694         In the readdir loop, carefully decide whether each entry will require
42695         an eventual call to fts_stat, using dirent.d_type info if available.
42696         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
42697         a command line argument into this function.  Update all callers.
42698         Map a return value of FTS_DOT to FTS_D for a command line argument.
42699         * modules/fts (Depends-on): Add d-type.  Alphabetize.
42700         Thanks to Miklos Szeredi for his tenacity and for the initial
42701         bug report about "find" failing on a FUSE-based file system.
42702
42703         * lib/fts.c (fts_open): Use consistent indentation.
42704
42705 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
42706
42707         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
42708         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
42709         reported by Jim Meyering.  All uses of cache variables renamed
42710         to match Autoconf's.
42711         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
42712         the other one.
42713
42714         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
42715         Fix misspelling in diagnostic.
42716
42717 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42718
42719         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
42720         defined.  Problem reported by Matthew Woehlke.
42721
42722         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
42723         Add support for Tandem NonStop R series.
42724         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
42725         Use new macro.
42726
42727         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
42728         (has_trailing_slash): Omit size arg; all callers changed.
42729         Omit 'inline', since it doesn't help performance and we'd
42730         need to configure it.
42731         Don't count //, ///, etc. as having a trailing slash.
42732         As a side effect, this removes a C99ism reported by Matthew Woehlke.
42733         (rpl_rename_dest_slash): On failure, use rename's errno rather
42734         than (in some cases) an incorrect or junk errno.
42735         Simplify code by removing need to compute length; this does
42736         cause it to make two passes instead of one over the file name,
42737         but it's worth it.
42738
42739         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
42740         change, since Autoconf's version may no longer be appropriate now
42741         that we are using CVS Autoconf's version.  Add support for Tandem.
42742
42743 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
42744             Bruno Haible  <bruno@clisp.org>
42745
42746         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
42747         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
42748         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
42749         gl_AC_TYPE_LONG_LONG.
42750
42751         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
42752         instead of HAVE_LONG_LONG.
42753         * lib/printf-args.c (printf_fetchargs): Likewise.
42754         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
42755         * lib/vasnprintf.c (VASNPRINTF): Likewise.
42756         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
42757         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
42758         gl_AC_TYPE_LONG_LONG.
42759
42760 2006-10-11  Bruno Haible  <bruno@clisp.org>
42761
42762         * m4/longlong.m4: Add comments.
42763         * m4/ulonglong.m4: Likewise.
42764
42765 2006-10-10  Bruno Haible  <bruno@clisp.org>
42766
42767         Make it possible to #define stpcpy, strdup to aliases.
42768         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
42769         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
42770
42771 2006-10-10  Bruno Haible  <bruno@clisp.org>
42772
42773         Make it possible to #define gcd to an alias.
42774         * lib/gcd.c: Include config.h.
42775
42776 2006-10-10  Bruno Haible  <bruno@clisp.org>
42777
42778         Make it possible to #define c_isascii to an alias.
42779         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
42780         defined. Undefine the macros before defining them, to avoid gcc
42781         warnings.
42782         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
42783         define NO_C_CTYPE_MACROS early.
42784
42785 2006-10-10  Bruno Haible  <bruno@clisp.org>
42786
42787         Make it possible to #define set_program_name to an alias.
42788         * lib/progname.c: Don't undefine set_program_name; instead, undefine
42789         ENABLE_RELOCATABLE early.
42790
42791 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42792
42793         Port to Tandem NSK OSS, which has 64-bit signed int but at most
42794         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
42795         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
42796         More generally, don't assume that 64-bit signed int is available
42797         if unsigned int is, and vice versa.
42798         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
42799         unsigned symbols, not on their signed counterparts.
42800         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
42801         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
42802         (UINT64_C, UINTMAX_C):
42803         Likewise.
42804         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
42805         unsigned counterparts.
42806         (Have_long_long, Unsigned): New macros.
42807         (Int): Renamed from INT.
42808         (strtoimax): Use the new macros.
42809         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
42810         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
42811         * modules/inttypes (inttypes.h): Substitute
42812         HAVE_UNSIGNED_LONG_LONG_INT.
42813         * modules/stdint (stdint.h): Likewise.
42814         (Files): Add m4/ulonglong.m4.
42815
42816 2006-10-10  Bruno Haible  <bruno@clisp.org>
42817
42818         Fix a gcc -Wshadow warning.
42819         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
42820         to 'bucket'.
42821         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
42822         gl_linked_indexof_from_to): Likewise.
42823         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
42824         Likewise.
42825         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
42826         Likewise.
42827         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
42828         Reported by Eric Blake.
42829
42830 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
42831
42832         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
42833         for NetBSD.  Problem reported by Bruno Haible.
42834
42835 2006-10-09  Jim Meyering  <jim@meyering.net>
42836
42837         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
42838         Patch from Bruno Haible.
42839
42840 2006-10-09  Jim Meyering  <jim@meyering.net>
42841
42842         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
42843         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
42844         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
42845
42846 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
42847
42848         Don't include <config.h> twice; this doesn't work in some cases,
42849         e.g., when config.h has "#define intmax_t long long int" and
42850         we include <config.h>, <inttypes.h>, <config.h> in that order.
42851         Problem reported by Matthew Woehlke in:
42852         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
42853         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
42854         * lib/fts-cycle.c: Don't include config.h.
42855         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
42856         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
42857         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
42858         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
42859         inttypes.h.
42860         * lib/xstrtoumax.c: Likewise.
42861         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
42862         __strtol and the like, so that this module is more like its siblings.
42863         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
42864         Remove; no longer needed now that we assume gnulib inttypes.h.
42865
42866 2006-10-08  Bruno Haible  <bruno@clisp.org>
42867
42868         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
42869         option.
42870
42871 2006-10-07  Jim Meyering  <jim@meyering.net>
42872
42873         * modules/inttypes (inttypes.h): Revert what seems to have been
42874         an inadvertent part of today's change: use "|", not "/" in the
42875         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
42876
42877 2006-10-07  Bruno Haible  <bruno@clisp.org>
42878
42879         * modules/sublist: New file.
42880
42881 2006-10-07  Bruno Haible  <bruno@clisp.org>
42882
42883         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
42884         * modules/argz (argz.h): Likewise.
42885         * modules/arpa_inet (arpa/inet.h): Likewise.
42886         * modules/byteswap (byteswap.h): Likewise.
42887         * modules/configmake (configmake.h): Likewise.
42888         * modules/fcntl (fcntl.h): Likewise.
42889         * modules/fnmatch (fnmatch.h): Likewise.
42890         * modules/getopt (getopt.h): Likewise.
42891         * modules/glob (glob.h): Likewise.
42892         * modules/inttypes (inttypes.h): Likewise.
42893         * modules/netinet_in (netinet/in.h): Likewise.
42894         * modules/poll (poll.h): Likewise.
42895         * modules/stdbool (stdbool.h): Likewise.
42896         * modules/stdint (stdint.h): Likewise.
42897         * modules/sys_select (sys/select.h): Likewise.
42898         * modules/sys_socket (sys/socket.h): Likewise.
42899         * modules/sys_stat (sys/stat.h): Likewise.
42900         * modules/sysexits (sysexits.h): Likewise.
42901         * modules/unistd (unistd.h): Likewise.
42902         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
42903         Add a "DO NOT EDIT" comment to the generated file.
42904         (func_import): Likewise for gnulib-comp.m4.
42905
42906 2006-10-07  Bruno Haible  <bruno@clisp.org>
42907
42908         * lib/gl_sublist.h: New file.
42909         * lib/gl_sublist.c: New file.
42910
42911 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
42912
42913         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
42914         name (relative to the original working directory) and the file
42915         name component (relative to the temporary working directory).  All
42916         callers changed.
42917         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
42918         * lib/mkdir-p.c (make_dir_parents): Likewise.
42919         * lib/mkdir-p.h (make_dir_parents): Likewise.
42920
42921 2006-10-06  Eric Blake  <ebb9@byu.net>
42922
42923         Define several macros for use by the clean-temp module.
42924         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
42925         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
42926         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
42927
42928         * lib/clean-temp.h (close_stream_temp): New declaration.
42929         * lib/clean-temp.c (includes): Pull in headers according to what
42930         other modules are in use.
42931         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
42932
42933 2006-10-06  Bruno Haible  <bruno@clisp.org>
42934
42935         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
42936         instead of fopen, fwriteerror.
42937
42938 2006-10-06  Bruno Haible  <bruno@clisp.org>
42939
42940         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
42941         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
42942         int.
42943         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
42944         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
42945         Return an error indicator.
42946         Suggested by Eric Blake.
42947
42948 2006-10-06  Bruno Haible  <bruno@clisp.org>
42949
42950         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
42951         Reported by Eric Blake.
42952
42953 2006-10-06  Bruno Haible  <bruno@clisp.org>
42954
42955         * modules/closeout (Description): Mention stderr too.
42956
42957 2006-10-06  Bruno Haible  <bruno@clisp.org>
42958         and Paul Eggert  <eggert@cs.ucla.edu>
42959
42960         * lib/closeout.c (close_stdout): Also close stderr.
42961         * lib/closeout.h: Update comment.
42962
42963 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42964
42965         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
42966         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
42967         * lib/dirchownmod.c: Include lchown.h.
42968         * lib/lchown.c: Don't include files that lchown.h now includes.
42969         Don't declare chown, since lchown.h now does that.
42970         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
42971         (lchown): Define to rpl_chown if lchown is declared but
42972         does not exist.  Declare using a prototype if lchown is not
42973         declared.  Add a copyright notice.
42974         * lib/mkstemp.h: Include <unistd.h>.
42975         * lib/openat.c: Include lchown.h.
42976
42977         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
42978         we now test for that separately.
42979         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
42980         rather than O_NOFOLLOW, when testing whether it's possible to
42981         avoid a race condition reliably.
42982         * lib/savewd.c (savewd_chdir): Likewise.
42983
42984         Remove macros that are no longer needed now that stdint.h is
42985         reliable.
42986         * lib/fsusage.c (UINTMAX_MAX): Remove.
42987         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
42988         * lib/utimecmp.c (SIZE_MAX): Remove.
42989
42990         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
42991
42992         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
42993         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
42994         O_NOATIME works.
42995
42996 2006-10-05  Bruno Haible  <bruno@clisp.org>
42997
42998         * lib/gl_list.h (gl_sortedlist_search_from_to,
42999         gl_sortedlist_indexof_from_to): New declarations.
43000         (gl_list_implementation): New fields sortedlist_search_from_to,
43001         sortedlist_indexof_from_to.
43002         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
43003         inline functions.
43004         * lib/gl_list.c (gl_sortedlist_search_from_to,
43005         gl_sortedlist_indexof_from_to): New functions.
43006         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
43007         function.
43008         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
43009         (gl_array_sortedlist_search_from_to): New function.
43010         (gl_array_list_implementation): Update.
43011         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
43012         function.
43013         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
43014         (gl_carray_sortedlist_search_from_to): New function.
43015         (gl_carray_list_implementation): Update.
43016         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
43017         gl_linked_sortedlist_indexof_from_to): New functions.
43018         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
43019         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
43020         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
43021         gl_tree_sortedlist_indexof_from_to): New functions.
43022         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
43023         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
43024         Update.
43025         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
43026         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
43027         Update.
43028
43029 2006-10-05  Bruno Haible  <bruno@clisp.org>
43030
43031         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
43032         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
43033         (struct gl_list_implementation): Add fields search_from_to,
43034         indexof_from_to. Remove fields search, indexof.
43035         (gl_list_search): Use the search_from_to method.
43036         (gl_list_search_from, gl_list_search_from_to): New functions.
43037         (gl_list_indexof): Use the indexof_from_to method.
43038         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
43039         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
43040         (gl_list_search_from, gl_list_search_from_to): New functions.
43041         (gl_list_indexof): Use the indexof_from_to method.
43042         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
43043         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
43044         gl_array_indexof. Add start_index, end_index arguments.
43045         (gl_array_search_from_to): Renamed from gl_array_search. Add
43046         start_index, end_index arguments.
43047         (gl_array_remove, gl_array_list_implementation): Update.
43048         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
43049         gl_carray_indexof. Add start_index, end_index arguments.
43050         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
43051         start_index, end_index arguments.
43052         (gl_carray_remove, gl_carray_list_implementation): Update.
43053         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
43054         gl_linked_search. Add start_index, end_index arguments.
43055         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
43056         start_index, end_index arguments.
43057         (gl_linked_remove): Update.
43058         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
43059         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
43060         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
43061         field to 'size_t'.
43062         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
43063         gl_tree_search. Add start_index, end_index arguments.
43064         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
43065         start_index, end_index arguments.
43066         (gl_tree_remove): Update.
43067         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
43068         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
43069         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
43070         function.
43071         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
43072         gl_tree_search. Add start_index, end_index arguments.
43073         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
43074         start_index, end_index arguments.
43075         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
43076         Update.
43077         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
43078
43079 2006-10-05  Bruno Haible  <bruno@clisp.org>
43080
43081         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
43082
43083         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
43084         fwriteerror_temp): New declarations.
43085         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
43086         (descriptors): New variable.
43087         (cleanup): First, close the descriptors.
43088         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
43089         fclose_temp, fwriteerror_temp): New functions.
43090
43091 2006-10-04  Jim Meyering  <jim@meyering.net>
43092
43093         * lib/fts.c (fts_open): Tiny comment change.
43094
43095 2006-10-04  Bruno Haible  <bruno@clisp.org>
43096
43097         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
43098         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
43099         gl_LOCK_BODY.
43100         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
43101         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
43102         gl_LOCK_EARLY_BODY.
43103         (gl_LOCK): Require gl_LOCK_BODY.
43104
43105 2006-10-04  Bruno Haible  <bruno@clisp.org>
43106
43107         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
43108         (gl_oset_search_atleast): New declaration.
43109         (struct gl_oset_implementation): Add field 'search_atleast'.
43110         (gl_oset_search_atleast): New inline function.
43111         * lib/gl_oset.c (gl_oset_search_atleast): New function.
43112         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
43113         (gl_array_oset_implementation): Update.
43114         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
43115         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
43116         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
43117
43118 2006-10-04  Bruno Haible  <bruno@clisp.org>
43119
43120         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
43121
43122 2006-10-03  Bruno Haible  <bruno@clisp.org>
43123
43124         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
43125         from gl_avltreehash_list_implementation.
43126
43127 2006-10-03  Bruno Haible  <bruno@clisp.org>
43128
43129         * lib/gl_oset.c (gl_oset_add): Fix return type.
43130
43131 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
43132
43133         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
43134
43135 2006-10-02  Eric Blake  <ebb9@byu.net>
43136
43137         * modules/strnlen (Depends-on): Add extensions.
43138
43139 2006-10-02  Eric Blake  <ebb9@byu.net>
43140
43141         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
43142         definition in 2.60+.
43143
43144 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
43145
43146         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
43147         checks.
43148
43149 2006-10-02  Bruno Haible  <bruno@clisp.org>
43150
43151         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
43152         to the AUTOMAKE_OPTIONS.
43153         Reported by Jim Meyering.
43154
43155 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
43156
43157         Work around bug in Solaris 10 /proc file system:
43158         /proc/self/fd/NNN/.. isn't the parent directory of
43159         the directory whose file descriptor is NNN.  This needs to
43160         be worked around at run time, not compile time, since a
43161         program might be built on Solaris 8, where things work, and
43162         run on Solaris 10.
43163         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
43164         to use the following interface instead:
43165         (OPENAT_BUFFER_SIZE): New macro.
43166         (openat_proc_name): New function.
43167         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
43168         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
43169         Likewise.
43170         * lib/openat-proc.c: New file.
43171         * modules/openat (Files): Add lib/openat-proc.c.
43172         (Depends-on): Add same-inode, stdbool.
43173         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
43174
43175 2006-09-29  Bruno Haible  <bruno@clisp.org>
43176
43177         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
43178         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
43179         argument. Set stdout_closed before testing for ferror, not after.
43180         (fwriteerror, fwriteerror_no_ebadf): New functions.
43181
43182 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43183
43184         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
43185
43186 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
43187
43188         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
43189         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
43190
43191 2006-09-28  Jim Meyering  <jim@meyering.net>
43192
43193         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
43194         Include <unistd.h>.
43195
43196 2006-09-28  Bruno Haible  <bruno@clisp.org>
43197
43198         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
43199         * modules/linkedhash-list (Depends-on): Likewise.
43200         * modules/rbtreehash-list (Depends-on): Likewise.
43201
43202 2006-09-28  Bruno Haible  <bruno@clisp.org>
43203
43204         * lib/strndup.h: Simplify the redefinition of strndup.
43205         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
43206         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
43207
43208 2006-09-28  Bruno Haible  <bruno@clisp.org>
43209
43210         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
43211         * lib/gl_linkedhash_list.c: Likewise.
43212         * lib/gl_rbtreehash_list.c: Likewise.
43213
43214 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
43215
43216         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
43217         getaddrinfo.
43218
43219         * lib/__fpending.h: Don't include <stdio_ext.h> unless
43220         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
43221         it causes <stdio_ext.h> to cause a compile-time error.
43222         Problem reported by Nelson H. F. Beebe.
43223         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
43224         of HAVE_DECL___PENDING.
43225
43226         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
43227         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
43228         declaration.
43229
43230 2006-09-27  Jim Meyering  <jim@meyering.net>
43231
43232         This file could end up with a definition for a function
43233         named __strndup, rather than rpl_strndup on a system with
43234         incomplete weak_alias support.
43235         * lib/strndup.c (strndup): Rename from __strndup.
43236         Remove #defines that used to map __strndup to strndup.
43237         Don't use K&R prototypes.
43238         Remove LIBC-related code, since this file is not sync'd with glibc.
43239         * lib/strndup.h: Revamp, accordingly.
43240         * m4/strndup.m4: Modernize.
43241
43242 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
43243
43244         * modules/savewd (Depends-on): Add 'raise'.
43245         * lib/savewd.c: Include <signal.h>, for 'raise'.
43246
43247 2006-09-26  Jim Meyering  <jim@meyering.net>
43248
43249         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
43250         when we detect Darwin 8.7.0's acl_get_file bug.
43251         Rearrange to perform the new (below) run-test while $LIBS
43252         contains any acl-related library.  Set USE_ACL at the end.
43253         (gl_ACL_GET_FILE): New function.
43254
43255 2006-09-26  Eric Blake  <ebb9@byu.net>
43256
43257         * lib/verror.c: Include <config.h> unconditionally.
43258
43259 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
43260
43261         * modules/clock-time (Maintainer): Add self.
43262         * modules/getlogin_r (Depends-on): Add extensions.
43263
43264 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43265
43266         * modules/clock-time: New module.
43267         * modules/nanosleep (Depends-on): Add clock-time.
43268         * modules/gethrxtime (Depends-on): Likewise.
43269         * modules/gettime (Depends-on): Likewise.
43270         * modules/settime (Depends-on): Likewise.
43271
43272         * modules/fts-lgpl: Depend on openat.
43273         * modules/mkancesdirs: Depend on savewd.
43274         * modules/mkdir-p: Likewise.
43275
43276 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43277
43278         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
43279
43280         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
43281         `gl_have_arbitrary_file_name_length_limit' to
43282         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
43283         actually works between configure runs.
43284
43285 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43286             Bruno Haible  <bruno@clisp.org>
43287
43288         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
43289
43290 2006-09-25  Jim Meyering  <jim@meyering.net>
43291
43292         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
43293         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
43294
43295 2006-09-25  Eric Blake  <ebb9@byu.net>
43296
43297         * gnulib-tool (func_import, func_create_testdir): Fix typos in
43298         exec's in 2006-09-18 patch when shuffling fds.
43299
43300 2006-09-25  Bruno Haible  <bruno@clisp.org>
43301
43302         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
43303         Reported by Jim Meyering.
43304
43305 2006-09-24  Jim Meyering  <jim@meyering.net>
43306
43307         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
43308         compare a pointer against a literal "0".  That caused failures with
43309         at least HP-UX's hpcc.
43310
43311 2006-09-22  Simon Josefsson  <jas@extundo.com>
43312
43313         * modules/gc-sha1:
43314         * modules/gc-md4:
43315         * modules/gc-hmac-sha1:
43316         * modules/gc-hmac-md5:
43317         * modules/gc-des:
43318         * modules/gc-arcfour: Distribute more files.
43319
43320 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43321
43322         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
43323         (gl_linked_iterator_from_to): Initialize struct completely.
43324         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
43325         (gl_tree_iterator_from_to): Likewise
43326         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
43327         * lib/gl_array_list.c [lint] (gl_array_iterator)
43328         (gl_array_iterator_from_to): Likewise.
43329         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
43330         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
43331         (gl_carray_iterator_from_to): Likewise.
43332
43333         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
43334         * lib/md4.c (md4_process_block): Remove unused variable.
43335         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
43336         parentheses for clarity.
43337
43338 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43339
43340         * modules/bison-i18n (Depends-on): Add gettext.
43341
43342 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43343
43344         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
43345         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
43346         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
43347         also add missing comma that caused broken test.
43348         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
43349         stdlib.h, for `abort'.
43350         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
43351         variables.
43352         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
43353         include unistd.h if present, for `rmdir'.
43354         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
43355         variables.
43356         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
43357         in the process include standard headers for prototypes.
43358         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
43359         gets declared on GNU/Linux.
43360         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
43361         unistd.h, for `rmdir'.
43362         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
43363
43364         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
43365         always true.
43366         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
43367
43368         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
43369
43370 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43371
43372         * gnulib-tool (func_version): Create output all at once.  This
43373         may help avoid triggering unnecessary SIGPIPEs, and at any
43374         rate it doesn't hurt.
43375
43376 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43377             Bruno Haible  <bruno@clisp.org>
43378
43379         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
43380         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
43381         * m4/signed.m4 (bh_C_SIGNED): Likewise.
43382
43383         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
43384         (gl_FUNC_VASPRINTF): Invoke it.
43385
43386 2006-09-22  Bruno Haible  <bruno@clisp.org>
43387
43388         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
43389         getloadavg.c as first argument.
43390
43391 2006-09-22  Bruno Haible  <bruno@clisp.org>
43392
43393         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
43394         at the beginning of the gl_INIT macro.
43395         * modules/getloadavg (configure.ac): Pass $gl_source_base to
43396         gl_GETLOADAVG.
43397
43398 2006-09-22  Bruno Haible  <bruno@clisp.org>
43399
43400         * gnulib-tool (func_create_megatestdir): Don't include the config-h
43401         module.
43402         Suggested by Ralf Wildenhues.
43403
43404 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
43405
43406         Import this patch from libc:
43407
43408         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
43409
43410         * lib/regex_internal.c (re_string_reconstruct): Handle
43411         offset < pstr->valid_raw_len && pstr->offsets_needed case.
43412         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
43413         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
43414         re_string_context_at.
43415
43416         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
43417         now requires it.
43418         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
43419         gl_REGEX now does it for us.
43420         (gl_REGEX): Add test taken from
43421         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
43422
43423         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
43424         Check that large offsets work.  Modernize Autoconf usages.
43425         Prefer "yes" to mean a good thing rather than a bad.
43426         Don't put "#define mkstemp" in config.h, as this might interfere
43427         with standard system headers that "#define mkstemp mkstemp64".
43428
43429         * modules/mkstemp (Depends-on): Add extensions, so that
43430         mkstemp is visible on some platforms.
43431         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
43432         (Include): Change to "mkstemp.h" from <stdlib.h>.
43433         (Files): Add mkstemp.h.
43434
43435         * lib/mkstemp.h: New file, since some standard headers
43436         #define mkstemp.
43437         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
43438         Include "mkstemp.h".
43439         Make the _LIBC code resemble glibc original more,
43440         e.g., use K&R style.
43441         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
43442         (mkstemp): Remove, since mkstemp.h does this for us.
43443         * lib/stdlib--.h: Include mkstemp.h.
43444
43445         Import this patch from libc:
43446
43447         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
43448
43449         * lib/tempname.c (__gen_tempname): Change attempts_min
43450         into a macro.  Use preprocessor to decide how to initialize
43451         attempts [Coverity CID 67].
43452
43453 2006-09-20  Bruno Haible  <bruno@clisp.org>
43454
43455         * lib/mkdtemp.c: Import from libc.
43456         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
43457                 * sysdeps/posix/tempname.c (__gen_tempname): Change
43458                 attempts_min into a macro.  Use preprocessor to decide how to
43459                 initialize attempts [Coverity CID 67].
43460         2001-11-27  Paul Eggert  <eggert@twinsun.com>
43461                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
43462                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
43463
43464 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43465
43466         * gnulib-tool (func_exit): New function, to allow to pass the
43467         exit status portably through the trap.  Use everywhere.
43468         (--help, --version): Signal a write error.
43469         (trap): catch SIGPIPE, for write errors.
43470         Exit at the end of the trap, with the correct exit status.
43471
43472 2006-09-19  Karl Berry  <karl@gnu.org>
43473
43474         * doc/gnulib.texi: note about the license texinfo files.
43475
43476 2006-09-19  Eric Blake  <ebb9@byu.net>
43477
43478         * gnulib-tool: Avoid space-tab.
43479
43480 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
43481
43482         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
43483         that prevented coreutils 6.1 from building.  Problem reported
43484         by Petter Reinholdtsen.
43485
43486 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
43487
43488         * gnulib-tool (avoidlist): Fix typo that broke options like
43489         --avoid=lock that are used by coreutils bootstrap.
43490
43491 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
43492
43493         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
43494         more systematically.
43495
43496 2006-09-18  Jim Meyering  <jim@meyering.net>
43497
43498         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
43499
43500 2006-09-18  Bruno Haible  <bruno@clisp.org>
43501
43502         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
43503
43504 2006-09-18  Bruno Haible  <bruno@clisp.org>
43505
43506         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
43507         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
43508         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
43509         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
43510         * m4/gettext.m4: Require autoconf >= 2.52.
43511         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
43512         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
43513         of gl_cv_header_inttypes_h.
43514
43515 2006-09-18  Bruno Haible  <bruno@clisp.org>
43516
43517         * lib/javaversion.c: Include configmake.h.
43518
43519 2006-09-18  Bruno Haible  <bruno@clisp.org>
43520
43521         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
43522         avoid that the while loops be executed in a subshell.
43523
43524 2006-09-18  Bruno Haible  <bruno@clisp.org>
43525
43526         * MODULES.html.sh (func_module): Break long lines.
43527         Suggested by Bruce Korb <bkorb@gnu.org>.
43528
43529 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43530
43531         Speed up by a factor of 1.12.
43532         * gnulib-tool (nl): New variable.
43533         (func_import): Rewrite include directive extraction to only read each
43534         directive once.
43535
43536 2006-09-17  Bruno Haible  <bruno@clisp.org>
43537
43538         * modules/javaversion (Makefile.am): Remove DEFS setting.
43539         (Depends-on): Add configmake, for PKGDATADIR definition.
43540
43541 2006-09-17  Bruno Haible  <bruno@clisp.org>
43542
43543         * gnulib-tool (func_create_testdir): Rewrite all files at once.
43544
43545 2006-09-17  Bruno Haible  <bruno@clisp.org>
43546
43547         * gnulib-tool (func_append): New function, stolen from libtool.m4.
43548         (func_modules_transitive_closure, func_modules_add_dummy,
43549         func_modules_to_filelist, func_import, func_create_testdir,
43550         func_create_megatestdir, ...): Use it wherever possible.
43551         Suggested by Ralf Wildenhues.
43552
43553 2006-09-16  Karl Berry  <karl@gnu.org>
43554
43555         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
43556         to avoid sectioning errors.
43557         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
43558         [ifinfo]: blank line after @center-ed titles.
43559         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
43560         Spell FSF address consistently with others.
43561         (These changes approved by rms.)
43562
43563 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43564
43565         Speed up by a factor of 1.61.
43566         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
43567         already checked module names again.
43568
43569 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43570
43571         Speed up by a factor of 1.13.
43572         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
43573         for new_files, and the input to func_add_or_update.
43574
43575 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43576
43577         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
43578         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
43579
43580 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43581
43582         * modules/mkancesdirs (Depends-on): Add fcntl.
43583         * modules/savewd: New file.
43584         * MODULES.html.sh (File system functions): Add savewd.
43585
43586         * modules/configmake (Makefile.am): Add support for the
43587         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
43588
43589 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43590
43591         * m4/savewd.m4: New file.
43592
43593 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43594
43595         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
43596         (dirchownmod): New arg FD.  All callers changed.
43597         Use FD rather than opening the directory ourself, as opening is
43598         now the caller's responsibility.
43599         * lib/dirchownmod.h: Likewise.
43600         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
43601         hosts that require <sys/types.h> before <sys/stat.h>.  Include
43602         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
43603         (test_dir): Remove.
43604         (mkancesdirs): Return length of prefix of FILE that has already
43605         been made, or -2 if there is a child doing the work.  Redo
43606         algorithm so that it is O(N) rather than O(N**2).  Optimize away
43607         ".", and treat ".." specially since it might stray back into
43608         already-created areas.  Use a subprocess if necessary.  New arg
43609         WD; all users changed.  MAKE_DIR function should now return 1
43610         if it creates a directory that is not readable.  Return -2 if
43611         a child process is spun off.
43612         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
43613         Adjust signature to match code.
43614         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
43615         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
43616         all users changed.
43617         * lib/savewd.c, lib/savewd.h: New files.
43618
43619 2006-09-15  Jim Meyering  <jim@meyering.net>
43620
43621         * modules/rename-dest-slash: New module.
43622         * MODULES.html.sh (posix_compat): Add it here.
43623
43624         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
43625
43626 2006-09-15  Jim Meyering  <jim@meyering.net>
43627
43628         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
43629         file.
43630
43631         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
43632
43633 2006-09-15  Jim Meyering  <jim@meyering.net>
43634
43635         * lib/rename-dest-slash.c (has_trailing_slash): Use
43636         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
43637         (rpl_rename_dest_slash): Perform the cheaper trailing slash
43638         test before testing whether SRC is a directory.
43639         Suggestions from Bruno Haible.
43640
43641         Avoid a warning about an unused variable.
43642         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
43643         into the #ifdef block where it's used.
43644
43645         * lib/rename-dest-slash.c: New file.
43646
43647 2006-09-14  Bruno Haible  <bruno@clisp.org>
43648
43649         * lib/allocsa.c: Include <config.h> unconditionally.
43650         * lib/asnprintf.c: Likewise.
43651         * lib/asprintf.c: Likewise.
43652         * lib/c-strcasecmp.c: Likewise.
43653         * lib/c-strcasestr.c: Likewise.
43654         * lib/c-strncasecmp.c: Likewise.
43655         * lib/c-strstr.c: Likewise.
43656         * lib/classpath.c: Likewise.
43657         * lib/clean-temp.c: Likewise.
43658         * lib/concatpath.c: Likewise.
43659         * lib/copy-file.c: Likewise.
43660         * lib/csharpcomp.c: Likewise.
43661         * lib/csharpexec.c: Likewise.
43662         * lib/execute.c: Likewise.
43663         * lib/fatal-signal.c: Likewise.
43664         * lib/findprog.c: Likewise.
43665         * lib/fwriteerror.c: Likewise.
43666         * lib/gl_array_list.c: Likewise.
43667         * lib/gl_array_oset.c: Likewise.
43668         * lib/gl_avltree_list.c: Likewise.
43669         * lib/gl_avltree_oset.c: Likewise.
43670         * lib/gl_avltreehash_list.c: Likewise.
43671         * lib/gl_carray_list.c: Likewise.
43672         * lib/gl_linked_list.c: Likewise.
43673         * lib/gl_linkedhash_list.c: Likewise.
43674         * lib/gl_list.c: Likewise.
43675         * lib/gl_oset.c: Likewise.
43676         * lib/gl_rbtree_list.c: Likewise.
43677         * lib/gl_rbtree_oset.c: Likewise.
43678         * lib/gl_rbtreehash_list.c: Likewise.
43679         * lib/imaxabs.c: Likewise.
43680         * lib/imaxdiv.c: Likewise.
43681         * lib/javacomp.c: Likewise.
43682         * lib/javaexec.c: Likewise.
43683         * lib/javaversion.c: Likewise.
43684         * lib/linebreak.c: Likewise.
43685         * lib/localcharset.c: Likewise.
43686         * lib/lock.c: Likewise.
43687         * lib/mbchar.c: Likewise.
43688         * lib/mbswidth.c: Likewise.
43689         * lib/mkdtemp.c: Likewise.
43690         * lib/pipe.c: Likewise.
43691         * lib/printf-args.c: Likewise.
43692         * lib/printf-parse.c: Likewise.
43693         * lib/progname.c: Likewise.
43694         * lib/progreloc.c: Likewise.
43695         * lib/readlink.c: Likewise.
43696         * lib/sh-quote.c: Likewise.
43697         * lib/stpcpy.c: Likewise.
43698         * lib/stpncpy.c: Likewise.
43699         * lib/strcasecmp.c: Likewise.
43700         * lib/strcasestr.c: Likewise.
43701         * lib/strcspn.c: Likewise.
43702         * lib/striconv.c: Likewise.
43703         * lib/strncasecmp.c: Likewise.
43704         * lib/strnlen1.c: Likewise.
43705         * lib/strstr.c: Likewise.
43706         * lib/strtok_r.c: Likewise.
43707         * lib/tls.c: Likewise.
43708         * lib/tmpdir.c: Likewise.
43709         * lib/unicodeio.c: Likewise.
43710         * lib/unsetenv.c: Likewise.
43711         * lib/vasnprintf.c: Likewise.
43712         * lib/vasprintf.c: Likewise.
43713         * lib/wait-process.c: Likewise.
43714         * lib/xallocsa.c: Likewise.
43715         * lib/xsetenv.c: Likewise.
43716         * lib/xstriconv.c: Likewise.
43717
43718 2006-09-13  Simon Josefsson  <jas@extundo.com>
43719
43720         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
43721         that internally, suggested by Ralf Wildenhues
43722         <Ralf.Wildenhues@gmx.de>.
43723
43724 2006-09-13  Simon Josefsson  <jas@extundo.com>
43725
43726         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
43727         @LIBOBJS@.
43728         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
43729
43730 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
43731
43732         * lib/_fpending.c: Include <config.h> unconditionally, since we no
43733         longer worry about uses that don't define HAVE_CONFIG_H.
43734         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
43735         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
43736         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
43737         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
43738         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
43739         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
43740         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
43741         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
43742         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
43743         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
43744         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
43745         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
43746         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
43747         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
43748         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
43749         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
43750         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
43751         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
43752         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
43753         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
43754         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
43755         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
43756         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
43757         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
43758         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
43759         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
43760         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
43761         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
43762         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
43763         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
43764         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
43765         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
43766         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
43767         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
43768         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
43769         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
43770         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
43771         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
43772         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
43773         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
43774         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
43775         Likewise.
43776
43777 2006-09-13  Eric Blake  <ebb9@byu.net>
43778
43779         * lib/getopt.c: Fix typo in last commit.
43780
43781 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
43782
43783         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
43784         dgettext.
43785
43786 2006-09-12  Jim Meyering  <jim@meyering.net>
43787
43788         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
43789         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
43790         Reported by Nelson H. F. Beebe.
43791
43792 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
43793
43794         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
43795         program_invocation_name and program_invocation_short_name are
43796         initialized.
43797         * lib/argp-namefrob.h: Move declarations of program_invocation_name
43798         and program_invocation_short_name to argp.h, so they are visible
43799         to user programs.
43800         * lib/argp.h: Likewise
43801
43802 2006-09-10  Bruno Haible  <bruno@clisp.org>
43803
43804         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
43805         m4/inttypes_h.m4, m4/uintmax_t.m4.
43806
43807 2006-09-10  Bruno Haible  <bruno@clisp.org>
43808
43809         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
43810         gl_AC_TYPE_UINTMAX_T.
43811
43812 2006-09-10  Bruno Haible  <bruno@clisp.org>
43813
43814         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
43815
43816 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
43817
43818         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
43819         convention.  Text proposed by Bruno Haible.
43820         (struct argp_option): Document the use of N_() wrappers.
43821
43822         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
43823         '\v', and translate the two parts separately, instead of feeding
43824         the whole string to gettext.  This allows to exclude
43825         '\v' from the strings visible to the translator by writing doc
43826         strings as N_("..") "\v" N_("..").
43827
43828 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
43829
43830         * config/srclist.txt: Undo latest change; the bug was fixed.
43831
43832 2006-09-09  Bruno Haible  <bruno@clisp.org>
43833
43834         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
43835         assignments if building a library without libtool.
43836         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
43837         in func_emit_lib_Makefile_am.
43838         (func_import): When building a static library libfoo.a, arrange to
43839         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
43840         (func_create_testdir): Likewise.
43841         * modules/gc (configure.ac, Makefile.am): If building statically,
43842         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
43843         * modules/iconvme (configure.ac, Makefile.am): Likewise.
43844         * modules/striconv (configure.ac, Makefile.am): Likewise.
43845         Based on a suggestion by Ralf Wildenhues.
43846
43847 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43848
43849         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
43850         Check for unistd.h too, since Autoconf doesn't assume POSIX.
43851         Also:
43852
43853         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43854         Add year_2050_test to catch glibc bug 2821
43855         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
43856
43857         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
43858         Prefer #ifdef to #if.
43859
43860         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
43861         Return from 'main' instead of calling 'exit'.
43862
43863 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43864
43865         * lib/mktime.c (guess_time_tm): Fix bug where mktime
43866         returned the maximum time_t value rather than (time_t) -1.
43867         Problem originally reported by William Bardwell
43868         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
43869
43870         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
43871         Moved to here ...
43872         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
43873         ... from here.
43874
43875 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43876
43877         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
43878         2821 is fixed.
43879
43880 2006-09-08  Jim Meyering  <jim@meyering.net>
43881
43882         Don't make generated files read-only.  That would bother too many
43883         people.  However, do retain the ability to work when targets are
43884         read-only: remove the destination and temporary files before writing
43885         them (when generated via sed or echo), or by using the -f option for
43886         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
43887         * modules/alloca-opt, modules/argz, modules/arpa_inet:
43888         * modules/byteswap, modules/configmake, modules/fcntl:
43889         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
43890         * modules/localcharset, modules/netinet_in, modules/poll:
43891         * modules/stdbool, modules/stdint, modules/sys_select:
43892         * modules/sys_socket, modules/sys_stat, modules/sysexits:
43893
43894 2006-09-08  Jim Meyering  <jim@meyering.net>
43895
43896         Avoid new build failure on FreeBSD 6.0.
43897         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
43898         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
43899         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
43900
43901 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43902
43903         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
43904
43905 2006-09-07  Jim Meyering  <jim@meyering.net>
43906
43907         Fix global typo in last change: use chmod u-w, not chmod u-x.
43908         Spotted by Paul Eggert and Bruce Korb.
43909         * modules/alloca-opt, modules/argz, modules/arpa_inet:
43910         * modules/byteswap, modules/configmake, modules/fcntl:
43911         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
43912         * modules/localcharset, modules/netinet_in, modules/poll:
43913         * modules/stdbool, modules/stdint, modules/sys_select:
43914         * modules/sys_socket, modules/sys_stat, modules/sysexits:
43915
43916 2006-09-06  Jim Meyering  <jim@meyering.net>
43917
43918         Make generated files be read-only.
43919         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
43920         Ensure that each generated file is now read-only.
43921         * modules/argz: Likewise.
43922         * modules/arpa_inet: Likewise.
43923         * modules/byteswap: Likewise.
43924         * modules/configmake: Likewise.
43925         * modules/fcntl: Likewise.
43926         * modules/fnmatch: Likewise.
43927         * modules/getopt: Likewise.
43928         * modules/glob: Likewise.
43929         * modules/inttypes: Likewise.
43930         * modules/netinet_in: Likewise.
43931         * modules/poll: Likewise.
43932         * modules/stdbool: Likewise.
43933         * modules/stdint: Likewise.
43934         * modules/sys_select: Likewise.
43935         * modules/sys_socket: Likewise.
43936         * modules/sys_stat: Likewise.
43937         * modules/sysexits: Likewise.
43938         * modules/localcharset: Same as above, but continue using temporary
43939         file named "t-$@" (why different?) rather than the "$@-t" used
43940         everywhere else.
43941
43942         * modules/sysexits (Makefile.am): Replace literal occurrences
43943         of "sysexit.h" more readable, and more consistent, "$@".
43944
43945 2006-09-06  Bruno Haible  <bruno@clisp.org>
43946
43947         * modules/striconv: New file.
43948         * modules/xstriconv: New file.
43949         * MODULES.html.sh (Internationalization functions): Add striconv,
43950         xstriconv.
43951
43952 2006-09-06  Bruno Haible  <bruno@clisp.org>
43953
43954         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
43955         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
43956         not using libtool correctly.
43957
43958 2006-09-06  Bruno Haible  <bruno@clisp.org>
43959
43960         * lib/striconv.h: New file.
43961         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
43962         iconvstring.c.
43963         * lib/xstriconv.h: New file.
43964         * lib/xstriconv.c: New file.
43965
43966 2006-09-06  Bruno Haible  <bruno@clisp.org>
43967
43968         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
43969         lib_..._LDFLAGS.
43970
43971 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43972
43973         * lib/argz_.h: Sync from Libtool.
43974
43975         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
43976                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
43977
43978         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
43979
43980 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
43981
43982         * modules/trim: New file.
43983
43984 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
43985
43986         * lib/trim.h: New file.
43987         * lib/trim.c: New file.
43988
43989 2006-09-05  Bruno Haible  <bruno@clisp.org>
43990
43991         * MODULES.html.sh (String handling): Add trim.
43992
43993 2006-09-04  Karl Berry  <karl@gnu.org>
43994
43995         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
43996         until next release.
43997
43998 2006-09-03  Bruno Haible  <bruno@clisp.org>
43999
44000         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
44001         correctly.
44002
44003 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44004
44005         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
44006         not gl_GETLOADAVG.  Omit unneeded semicolons.
44007         Problems reported by Ralf Wildenhues in
44008         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
44009         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
44010         at the end, which is the usual gnulib style.
44011
44012         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
44013         of doing all the work ourselves.
44014         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
44015         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
44016
44017 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44018
44019         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
44020         Problem reported by Ralf Wildenhues in
44021         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
44022
44023         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
44024         HAVE_STRUCT_STATFS_F_FSTYPENAME.
44025
44026 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44027
44028         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
44029         yesterday's patch by changing test -n to test -z.
44030
44031 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44032
44033         * modules/getloadavg (Files): Add m4/getloadavg.m4.
44034         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
44035         the former is now obsolescent.
44036
44037         * modules/chdir-long (Depends-on): Add fcntl.
44038
44039 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44040
44041         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
44042         obsolescent, and programs should use gnulib instead.
44043         * m4/getloadavg.m4: New file, with contents taken from Autoconf
44044         but with prefixes changed.
44045
44046 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44047
44048         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
44049         or stdbool.h, because they might not exist while configuring.
44050
44051         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
44052         Don't include unistd.h or limits.h; not needed, since chdir-long.h
44053         does that for us.
44054         (O_DIRECTORY): Remove.
44055
44056 2006-08-31  Eric Blake  <ebb9@byu.net>
44057
44058         * gnulib-tool: Don't let emacs change spaces to TAB.
44059
44060 2006-08-31  Bruno Haible  <bruno@clisp.org>
44061
44062         * gnulib-tool: When calling func_import more than once, do it in a
44063         subshell.
44064         Reported by Eric Blake <ebb9@byu.net>.
44065
44066 2006-08-31  Bruno Haible  <bruno@clisp.org>
44067
44068         * gnulib-tool (nl): Remove variable.
44069         (sed_transform_lib_file): Use more robust test for config-h module.
44070         (func_import): Fix typo in 2006-08-25 patch.
44071
44072 2006-08-31  Bruno Haible  <bruno@clisp.org>
44073
44074         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
44075         specified, augment Makefile.am variables instead of assigning them.
44076
44077 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44078
44079         Work around a bug in both the Linux and SunOS 64-bit kernels:
44080         nanosleep mishandles sleeps for longer than 2**31 seconds.
44081         Problem reported by Frank v Waveren in
44082         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
44083         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
44084         Check for nanosleep bug.
44085         (LIB_NANOSLEEP): Append clock_gettime library if needed.
44086
44087 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44088
44089         Work around a bug in both the Linux and SunOS 64-bit kernels:
44090         nanosleep mishandles sleeps for longer than 2**31 seconds.
44091         Problem reported by Frank v Waveren in
44092         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
44093         * lib/nanosleep.c (BILLION): New constant.
44094         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
44095         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
44096         implementation.
44097
44098 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44099
44100         * modules/nanosleep (Depends-on): Add gettime.
44101
44102 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44103         and Simon Josefsson  <jas@extundo.com>
44104         and Oskar Liljeblad  <oskar@osk.mine.nu>
44105
44106         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
44107         * gnulib-tool (func_import): New license type 'unmodifiable license
44108         text'.
44109         * modules/fdl: Use it.  Longer description.
44110         * module/gpl, module/lgpl: New files.
44111
44112 2006-08-30  Jim Meyering  <jim@meyering.net>
44113
44114         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
44115         shadowing the parameter.
44116
44117 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44118
44119         Sync from Libtool:
44120
44121         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44122
44123         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
44124         sharing with gnulib.  Report by Eric Blake.
44125
44126 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44127
44128         * modules/isapipe: New file.
44129         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
44130
44131 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44132
44133         * modules/configmake (Makefile.am): Add a comment, and omit
44134         the CONFIGMAKE_ prefix from generated macro names.  Suggested
44135         by Bruno Haible.
44136
44137 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44138
44139         * m4/isapipe.m4: New file.
44140
44141 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44142
44143         * lib/isapipe.c, lib/isapipe.h: New files.
44144
44145 2006-08-29  Jim Meyering  <jim@meyering.net>
44146
44147         * modules/configmake (Makefile.am): Make configmake.h depend on
44148         Makefile.  Otherwise, a stale configmake.h could hang around.
44149
44150 2006-08-29  Eric Blake  <ebb9@byu.net>
44151
44152         * lib/error.c (error_at_line, print_errno_message): Match libc, after
44153         resolution of upstream bug 3044.
44154
44155 2006-08-29  Bruno Haible  <bruno@clisp.org>
44156
44157         * modules/localcharset (Depends-on): Add configmake.
44158         (Makefile.am): Remove setting of LIBDIR through DEFS.
44159
44160 2006-08-29  Bruno Haible  <bruno@clisp.org>
44161
44162         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
44163         defined.
44164
44165 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44166
44167         * modules/fcntl: New file.
44168         * modules/chdir-safer (Depends-on): Add fcntl.
44169         * modules/fts: Likewise.
44170         * modules/mkdir-p: Likewise.
44171
44172         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
44173         This undoes the most recent change, since we're now addressing the
44174         problem in a different way.
44175
44176         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
44177         into output, since the output might be called Makefile.am even
44178         if $makefile_name is something different.
44179         (func_import): Use $makefile_am rather than
44180         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
44181         empty.
44182
44183         * modules/inttypes (Files): Add m4/inttypes-h.m4.
44184
44185 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44186
44187         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
44188         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
44189         recent change to stdint.m4, since we're now addressing the problem in a
44190         different way.
44191
44192 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44193
44194         * m4/fcntl_h.m4: New file.
44195
44196 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44197
44198         * lib/fcntl_.h: New file.
44199         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
44200         the fcntl module.
44201         * lib/dirchownmod.c: Likewise.
44202         * lib/fts.c: Likewise.
44203
44204         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
44205         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
44206         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
44207         just before including <inttypes.h>, to avoid circular inclusion.
44208
44209 2006-08-28  Jim Meyering  <jim@meyering.net>
44210
44211         * doc/visibility.texi: Actually read and correct the grammar of the
44212         sentence affected by yesterday's change.
44213
44214 2006-08-28  Eric Blake  <ebb9@byu.net>
44215
44216         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
44217         needs wrapper.
44218
44219 2006-08-28  Eric Blake  <ebb9@byu.net>
44220
44221         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
44222
44223 2006-08-28  Eric Blake  <ebb9@byu.net>
44224
44225         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
44226
44227 2006-08-28  Bruno Haible  <bruno@clisp.org>
44228
44229         * modules/c-strstr: New file, from GNU gettext.
44230         * MODULES.html.sh (String handling): Add c-strstr.
44231
44232 2006-08-28  Bruno Haible  <bruno@clisp.org>
44233
44234         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
44235         macros.
44236         Reported by Eric Blake.
44237
44238 2006-08-28  Bruno Haible  <bruno@clisp.org>
44239
44240         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
44241         (VASNPRINTF): Return a string of length > INT_MAX without failing.
44242         * lib/vasprintf.c: Include errno.h, limits.h.
44243         (EOVERFLOW): New fallback definition.
44244         (vasprintf): Test here whether the string length is > INT_MAX.
44245         * lib/vsnprintf.c: Include errno.h, limits.h.
44246         (EOVERFLOW): New fallback definition.
44247         (vsnprintf): Fix bug when generated string was too long for the buffer.
44248         Test here whether the string length is > INT_MAX.
44249
44250 2006-08-28  Bruno Haible  <bruno@clisp.org>
44251
44252         * lib/inttypes_.h (SCNX*): Remove definitions.
44253         Reported by Eric Blake.
44254
44255 2006-08-28  Bruno Haible  <bruno@clisp.org>
44256
44257         * lib/c-strstr.h: New file, from GNU gettext.
44258         * lib/c-strstr.c: New file, from GNU gettext.
44259
44260 2006-08-28  Bruno Haible  <bruno@clisp.org>
44261
44262         * gnulib-tool: Reorder some statements.
44263
44264 2006-08-28  Bruno Haible  <bruno@clisp.org>
44265
44266         * gnulib-tool: New option --makefile-name.
44267         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
44268         $makefile_name.
44269         (func_import): Write $makefile_name to the cache file, and read it from
44270         there unless explicitly specified. Use $makefile_name as file name
44271         instead of Makefile.am. Adjust the recommendations accordingly.
44272
44273 2006-08-28  Bruno Haible  <bruno@clisp.org>
44274
44275         * gnulib-tool (func_verify_module): Check against misapplying patch.
44276
44277 2006-08-28  Bruno Haible  <bruno@clisp.org>
44278
44279         * gnulib-tool (func_relativize, func_relconcat): New functions.
44280         Give an error if --local-dir is given with --update.
44281         Remove trailing slashes from $local_gnulib_dir.
44282         (func_import): Store the relativized $local_gnulib_dir in
44283         gnulib-cache.m4, and read it from there if not specified explicitly.
44284
44285 2006-08-28  Bruno Haible  <bruno@clisp.org>
44286
44287         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
44288         is the current directory. Respect also $local_gnulib_dir.
44289
44290 2006-08-28  Bruno Haible  <bruno@clisp.org>
44291             Simon Josefsson  <jas@extundo.com>
44292
44293         BeOS portability.
44294         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
44295
44296 2006-08-27  Jim Meyering  <jim@meyering.net>
44297
44298         * doc/visibility.texi: Remove duplicate word: "pointer".
44299
44300 2006-08-26  Bruno Haible  <bruno@clisp.org>
44301
44302         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
44303         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
44304         (Makefile.am): Create inttypes.h from inttypes_.h.
44305         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
44306
44307         * modules/imaxabs: New file.
44308
44309         * modules/imaxdiv: New file.
44310
44311 2006-08-26  Bruno Haible  <bruno@clisp.org>
44312
44313         * m4/inttypes.m4: New file.
44314         * m4/_inttypes_h.m4: Remove file.
44315         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
44316         PRI_MACROS_BROKEN.
44317         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
44318
44319         * m4/imaxabs.m4: New file.
44320
44321         * m4/imaxdiv.m4: New file.
44322
44323 2006-08-26  Bruno Haible  <bruno@clisp.org>
44324
44325         * lib/inttypes_.h: New file.
44326         * lib/inttypes.h: Remove file.
44327         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
44328
44329         * lib/imaxabs.c: New file.
44330
44331         * lib/imaxdiv.c: New file.
44332
44333 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44334
44335         New config-h module, so that "make" output needn't be cluttered
44336         by -DHAVE_CONFIG_H.
44337         * MODULES.html.sh (Support for building libraries and executables):
44338         Add config-h.
44339         * modules/config-h: New file.
44340         * gnulib-tool (nl, sed_transform_lib_file): New vars.
44341         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
44342         the config-h module is used.
44343
44344         New configmake module, so that "make" output needn't be cluttered
44345         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
44346         * MODULES.html.sh (Support for building libraries and executables):
44347         Add configmake.
44348         * modules/configmake: New file.
44349
44350 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44351
44352         * m4/config-h.m4: New file.
44353
44354 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44355
44356         * config/srclist.txt: Add elisp-comp.
44357
44358 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44359
44360         * MODULES.html.sh (Support for building libraries and executables):
44361         Add elisp-comp.
44362         * build-aux/elisp-comp: New file.
44363         * modules/elisp-comp: New file.
44364
44365 2006-08-24  Bruno Haible  <bruno@clisp.org>
44366
44367         * gnulib-tool (func_create_testdir): Use non-default values of
44368         sourcebase and m4base.
44369
44370 2006-08-24  Bruno Haible  <bruno@clisp.org>
44371
44372         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
44373         HTML structure.
44374
44375 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44376
44377         * modules/openat (Depends-on): Add lchown.
44378
44379 2006-08-23  Bruno Haible  <bruno@clisp.org>
44380
44381         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
44382         of gl_LOCK_EARLY instead of gl_LOCK.
44383
44384 2006-08-23  Bruno Haible  <bruno@clisp.org>
44385
44386         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
44387         on OSF/1 to no.
44388         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
44389
44390 2006-08-23  Bruno Haible  <bruno@clisp.org>
44391
44392         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
44393         as unusable.
44394
44395         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
44396         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
44397         (gl_LOCK): New macro.
44398
44399 2006-08-22  Simon Josefsson  <jas@extundo.com>
44400
44401         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
44402         to md5 module.
44403
44404 2006-08-22  Simon Josefsson  <jas@extundo.com>
44405
44406         * MODULES.html.sh: Add "Support for maintaining and release
44407         projects".
44408
44409         * build-aux/gnupload: New file, from coreutils.
44410
44411 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
44412
44413         Avoid the need for AC_LIBSOURCES in m4 macros.
44414         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
44415         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
44416         * modules/check-version (EXTRA_DIST): Add check-version.h.
44417         * modules/crc (EXTRA_DIST): Add crc.h.
44418         * modules/des (EXTRA_DIST): Add des.h.
44419         * modules/gc (EXTRA_DIST): Add gc.h.
44420         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
44421         * modules/getline (EXTRA_DIST): Add getline.h.
44422         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
44423         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
44424         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
44425         * modules/md2 (EXTRA_DIST): Add md2.h.
44426         * modules/md4 (EXTRA_DIST): Add md4.h.
44427         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
44428         * modules/read-file (EXTRA_DIST): Add read-file.h.
44429         * modules/readline (EXTRA_DIST): Add readline.h.
44430         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
44431         rijndael-api-fst.h.
44432
44433 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
44434
44435         * m4/rijndael.m4 (gl_ARCFOUR):
44436         * m4/arctwo.m4 (gl_ARCTWO):
44437         * m4/check-version.m4 (gl_CHECK_VERSION):
44438         * m4/crc.m4 (gl_CRC):
44439         * m4/des.m4 (gl_DES):
44440         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
44441         * m4/gc.m4 (gl_GC):
44442         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
44443         * m4/getline.m4 (gl_FUNC_GETLINE):
44444         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
44445         * m4/hmac-md5.m4 (gl_HMAC_MD5):
44446         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
44447         * m4/md2.m4 (gl_MD2):
44448         * m4/md4.m4 (gl_MD4):
44449         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
44450         * m4/read-file.m4 (gl_FUNC_READ_FILE):
44451         * m4/readline.m4 (gl_FUNC_READLINE):
44452         * m4/rijndael.m4 (gl_RIJNDAEL):
44453         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
44454         to get the necessary .h files and whatnot.
44455
44456 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
44457
44458         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
44459         gnulib rather than the other way around.
44460         * config/srclistvars.sh (COREUTILS): Remove.
44461
44462 2006-08-22  Jim Meyering  <jim@meyering.net>
44463
44464         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
44465
44466         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
44467
44468 2006-08-22  Eric Blake  <ebb9@byu.net>
44469
44470         * modules/regexprops-generic: New file.
44471         * MODULES.html.sh (Support for building documentation): List it.
44472
44473 2006-08-22  Eric Blake  <ebb9@byu.net>
44474
44475         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
44476         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
44477         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
44478         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
44479
44480 2006-08-22  Bruno Haible  <bruno@clisp.org>
44481
44482         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
44483         and lib_LTLIBRARIES like the other lib_* variables.
44484
44485 2006-08-22  Bruno Haible  <bruno@clisp.org>
44486
44487         * build-aux/x-to-1.in: New file, from GNU gettext.
44488
44489 2006-08-22  Bruno Haible  <bruno@clisp.org>
44490
44491         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
44492         <utmpx.h> exists.
44493
44494 2006-08-22  Bruno Haible  <bruno@clisp.org>
44495
44496         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
44497         <utmpx.h> exists.
44498
44499 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44500
44501         BeOS portability.
44502         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
44503         exist.
44504         Problem reported by Bruno Haible.
44505
44506 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44507
44508         Avoid the need for AC_LIBSOURCES in m4 macros.
44509         * modules/acl (EXTRA_DIST): Add acl.h.
44510         * modules/argmatch (Files): Add m4/argmatch.m4.
44511         (configure.ac): Add gl_ARGMATCH.
44512         (EXTRA_DIST): Renamed from lib_SOURCES, for
44513         consistency with the other modules.  Remove argmatch.c.
44514         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
44515         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
44516         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
44517         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
44518         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
44519         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
44520         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
44521         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
44522         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
44523         * modules/closeout (EXTRA_DIST): Add closeout.h.
44524         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
44525         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
44526         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
44527         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
44528         dirname.h; remove basename.c and stripslash.c.
44529         * modules/exclude (EXTRA_DIST): Add exclude.h.
44530         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
44531         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
44532         * modules/file-type (EXTRA_DIST): Add file-type.h.
44533         * modules/filemode (EXTRA_DIST): Add filemode.h.
44534         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
44535         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44536         * modules/fpending (EXTRA_DIST): Add __fpending.h.
44537         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
44538         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
44539         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
44540         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
44541         * modules/getdate (EXTRA_DIST): Add getdate.c.
44542         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
44543         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
44544         * modules/getpass (EXTRA_DIST): Add getpass.h.
44545         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
44546         * modules/group-member (EXTRA_DIST): Add group-member.h.
44547         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
44548         * modules/hash (EXTRA_DIST): Add hash.h.
44549         * modules/human (EXTRA_DIST): Add human.h.
44550         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
44551         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
44552         * modules/lchown (EXTRA_DIST): Add lchown.h.
44553         * modules/long-options (EXTRA_DIST): Add long-options.h.
44554         * modules/lstat (EXTRA_DIST): Add lstat.h.
44555         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
44556         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
44557         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
44558         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
44559         * modules/memxor (EXTRA_DIST): Add memxor.h.
44560         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
44561         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
44562         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
44563         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
44564         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
44565         * modules/physmem (EXTRA_DIST): Add physmem.h.
44566         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
44567         * modules/posixver (EXTRA_DIST): Add posixver.h.
44568         * modules/quote (EXTRA_DIST): Add quote.h.
44569         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
44570         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
44571         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
44572         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
44573         regex_internal.h regexec.c.
44574         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
44575         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
44576         * modules/same (EXTRA_DIST): Add same.h.
44577         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
44578         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
44579         * modules/savedir (EXTRA_DIST): Add savedir.h.
44580         * modules/sha1 (EXTRA_DIST): Add sha1.h.
44581         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
44582         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
44583         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
44584         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
44585         * modules/strdup (EXTRA_DIST): Add strdup.h.
44586         * modules/strftime (EXTRA_DIST): Add strftime.h.
44587         * modules/strndup (EXTRA_DIST): Add strndup.h.
44588         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
44589         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
44590         * modules/time_r (EXTRA_DIST): Add time_r.h.
44591         * modules/timespec (EXTRA_DIST): Add timespec.h.
44592         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
44593         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
44594         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
44595         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
44596         * modules/userspec (EXTRA_DIST): Add userspec.h.
44597         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
44598         * modules/utimens (EXTRA_DIST): Add utimens.h.
44599         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
44600         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
44601         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
44602         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
44603         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
44604         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
44605         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
44606         * modules/yesno (EXTRA_DIST): Add yesno.h.
44607
44608 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
44609
44610         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
44611
44612         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
44613         * m4/dev-ino.m4, same-inode.m4: Remove.
44614
44615         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
44616         * m4/acl.m4 (AC_FUNC_ACL):
44617         * m4/backupfile.m4 (gl_BACKUPFILE):
44618         * m4/c-strtod.m4 (gl_C99_STRTOLD):
44619         * m4/canon-host.m4 (gl_CANON_HOST):
44620         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
44621         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
44622         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
44623         * m4/cloexec.m4 (gl_CLOEXEC):
44624         * m4/close-stream.m4 (gl_CLOSE_STREAM):
44625         * m4/closeout.m4 (gl_CLOSEOUT):
44626         * m4/dirfd.m4 (gl_FUNC_DIRFD):
44627         * m4/dirname.m4 (gl_DIRNAME):
44628         * m4/exclude.m4 (gl_EXCLUDE):
44629         * m4/exitfail.m4 (gl_EXITFAIL):
44630         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
44631         * m4/file-type.m4 (gl_FILE_TYPE):
44632         * m4/filemode.m4 (gl_FILEMODE):
44633         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
44634         * m4/fpending.m4 (gl_FUNC_FPENDING):
44635         * m4/fprintftime.m4 (gl_FPRINTFTIME):
44636         * m4/fts.m4 (gl_FUNC_FTS):
44637         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
44638         * m4/getdate.m4 (gl_GETDATE):
44639         * m4/gethrxtime.m4 (gl_GETHRXTIME):
44640         * m4/getpagesize.m4 (gl_GETPAGESIZE):
44641         * m4/getpass.m4 (gl_FUNC_GETPASS):
44642         * m4/gettime.m4 (gl_GETTIME):
44643         * m4/getugroups.m4 (gl_GETUGROUPS):
44644         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
44645         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
44646         * m4/hard-locale.m4 (gl_HARD_LOCALE):
44647         * m4/hash.m4 (gl_HASH):
44648         * m4/idcache.m4 (gl_IDCACHE):
44649         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
44650         * m4/lchown.m4 (gl_FUNC_LCHOWN):
44651         * m4/long-options.m4 (gl_LONG_OPTIONS):
44652         * m4/lstat.m4 (gl_FUNC_LSTAT):
44653         * m4/md5.m4 (gl_MD5):
44654         * m4/memcasecmp.m4 (gl_MEMCASECMP):
44655         * m4/memcoll.m4 (gl_MEMCOLL):
44656         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
44657         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
44658         * m4/memxor.m4 (gl_MEMXOR):
44659         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
44660         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
44661         * m4/modechange.m4 (gl_MODECHANGE):
44662         * m4/mountlist.m4 (gl_MOUNTLIST):
44663         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
44664         * m4/openat.m4 (gl_FUNC_OPENAT):
44665         * m4/pathmax.m4 (gl_PATHMAX):
44666         * m4/physmem.m4 (gl_PHYSMEM):
44667         * m4/posixtm.m4 (gl_POSIXTM):
44668         * m4/posixver.m4 (gl_POSIXVER):
44669         * m4/quote.m4 (gl_QUOTE):
44670         * m4/quotearg.m4 (gl_QUOTEARG):
44671         * m4/readtokens.m4 (gl_READTOKENS):
44672         * m4/readutmp.m4 (gl_READUTMP):
44673         * m4/regex.m4 (gl_REGEX):
44674         * m4/safe-read.m4 (gl_SAFE_READ):
44675         * m4/safe-write.m4 (gl_SAFE_WRITE):
44676         * m4/same.m4 (gl_SAME):
44677         * m4/save-cwd.m4 (gl_SAVE_CWD):
44678         * m4/savedir.m4 (gl_SAVEDIR):
44679         * m4/settime.m4 (gl_SETTIME):
44680         * m4/sha1.m4 (gl_SHA1):
44681         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
44682         * m4/stat-macros.m4 (gl_STAT_MACROS):
44683         * m4/stat-time.m4 (gl_STAT_TIME):
44684         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
44685         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
44686         * m4/strdup.m4 (gl_FUNC_STRDUP):
44687         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
44688         * m4/strndup.m4 (gl_FUNC_STRNDUP):
44689         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
44690         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
44691         * m4/time_r.m4 (gl_TIME_R):
44692         * m4/timespec.m4 (gl_TIMESPEC):
44693         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
44694         * m4/unlinkdir.m4 (gl_UNLINKDIR):
44695         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
44696         * m4/userspec.m4 (gl_USERSPEC):
44697         * m4/utimecmp.m4 (gl_UTIMECMP):
44698         * m4/utimens.m4 (gl_UTIMENS):
44699         * m4/xalloc.m4 (gl_XALLOC):
44700         * m4/xgetcwd.m4 (gl_XGETCWD):
44701         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
44702         * m4/xreadlink.m4 (gl_XREADLINK):
44703         * m4/xstrtod.m4 (gl_XSTRTOD):
44704         * m4/yesno.m4 (gl_YESNO):
44705         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
44706         to get the necessary .h files and whatnot.
44707
44708 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
44709             Bruno Haible  <bruno@clisp.org>
44710
44711         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
44712         /bin/sh understanding of '!' conditional negation.
44713
44714 2006-08-21  Jim Meyering  <jim@meyering.net>
44715
44716         * modules/openat (Depends-on): Really alphabetize.
44717
44718         * modules/acl (Depends-on): Add error and quote.
44719
44720         * check-module (find_included_lib_files): Add at-func.c to the
44721         ok-to-include-more-than-once white list.
44722
44723         * modules/openat (Depends-on): Add lstat.  Alphabetize.
44724
44725 2006-08-21  Bruno Haible  <bruno@clisp.org>
44726
44727         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
44728         Emit a pkgdata_DATA variable only if some snippets add contents to it.
44729         Reported by Martin Lambers <marlam@marlam.de>.
44730
44731 2006-08-21  Bruno Haible  <bruno@clisp.org>
44732
44733         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
44734         specify an installation location, don't emit a noinst_LIBRARIES or
44735         noinst_LTLIBRARIES assignment.
44736
44737 2006-08-21  Bruno Haible  <bruno@clisp.org>
44738
44739         BeOS portability.
44740         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
44741         BeOS has mbrtowc() but no <wctype.h>.
44742
44743 2006-08-21  Bruno Haible  <bruno@clisp.org>
44744
44745         BeOS portability.
44746         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
44747         exist.
44748
44749 2006-08-21  Bruno Haible  <bruno@clisp.org>
44750
44751         BeOS portability.
44752         * lib/mbchar.h: Include <wctype.h> only if it exists.
44753
44754 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44755
44756         Remove files that are no longer needed by their respective modules.
44757         * m4/obstack.m4: Remove.
44758         * m4/strerror_r.m4: Remove.
44759         * m4/uint32_t.m4: Remove.
44760         * m4/uintptr_t.m4: Remove.
44761         * m4/ullong_max.m4: Remove.
44762         * m4/xstrtoimax.m4: Remove.
44763         * m4/xstrtoumax.m4: Remove.
44764
44765         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
44766         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
44767         dependencies now capture this.
44768
44769         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
44770         Do not use AC_LIBSOURCES, since gnulib modules now do this.
44771         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
44772         * m4/human.m4 (gl_HUMAN): Likewise.
44773         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
44774         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
44775
44776         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
44777
44778         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
44779         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
44780         stdint.
44781         * m4/human.m4 (gl_HUMAN): Likewise.
44782         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
44783         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
44784         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44785         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44786         * m4/xstrtol (gl_XSTRTOL): Likewise.
44787
44788         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
44789         AC_TYPE_LONG_LONG_INT.
44790         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
44791         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
44792         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
44793         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
44794
44795         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
44796         on stdbool.
44797
44798         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
44799         (gl_PREREQ_XSTRTOUL): Remove.
44800
44801         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
44802
44803         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
44804         mode.
44805
44806 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44807
44808         Add and change modules to make it easier for coreutils to use
44809         gnulib-tool.
44810         * modules/backupfile (Files): Remove m4/d-ino.m4.
44811         (Depends-on): Add d-ino.
44812         * modules/cycle-check (Depends-on): Add stdint.
44813         (lib_SOURCES): Add cycle-check.h.
44814         * modules/d-ino: New module.
44815         * modules/d-type: New module.
44816         * modules/error (Files): Remove m4/strerror_r.m4.
44817         * modules/filemode (Files): Add m4/st_dm_mode.m4.
44818         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
44819         m4/inttypes_h.m4, m4/uintmax_t.m4.
44820         (Depends-on): Add stdint.
44821         (lib_SOURCES): Add fsusage.h.
44822         * modules/getcwd (Files): Remove d-ino.m4.
44823         (Depends-on): Add d-ino.
44824         * modules/getndelim2 (Depends-on): Add stdint.
44825         * modules/glob (Files): Remove m4/d-type.m4.
44826         (Depends-on): Add d-type.
44827         * modules/host-os: New module.
44828         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
44829         m4/inttypes_h.m4, m4/uintmax_t.m4.
44830         * Depends-on: Add stdint.
44831         (lib_SOURCES): Add human.h.
44832         * modules/inttostr (Files): Remove m4/intmax_t.m4,
44833         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
44834         m4/uintmax_t.m4, m4/ulonglong.m4.
44835         (Depends-on): Add stdint.
44836         (EXTRA_DIST): Add inttostr.h.
44837         * modules/lchmod: New module.
44838         * modules/link-follow: New module.
44839         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
44840         (Depends-on): Add lchmod.
44841         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
44842         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
44843         (Depends-on): Add stdint.
44844         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
44845         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
44846         (Depends-on): Add stdint.
44847         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
44848         * modules/perl: New module.
44849         * modules/regex (Depends-on): Add stdint.
44850         * modules/rmdir-errno: New module.
44851         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
44852         m4/intmax_t.m4.
44853         (Depends-on): Add stdint.
44854         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
44855         m4/uintmax_t.m4.
44856         (Depends-on): Add stdint.
44857         * modules/unlink-busy: New module.
44858         * modules/utimecmp (Depends-on): Add stdint.
44859         * modules/uptime: New module.
44860         * modules/winsz-ioctl: New module.
44861         * modules/winsz-termios: New module.
44862         * modules/xnanosleep (Depends-on): Add nanosleep.
44863         * modules/ullong_max: Remove.
44864         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
44865         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
44866         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
44867         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
44868         (Depends-on): Add inttypes.
44869         (lib_SOURCES): Add xstrtol.h.
44870         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
44871         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
44872         * MODULES.html.sh: Move 'assert' into the assert section.
44873         Move 'dummy' into the linking section.
44874         Remove ullong_max.
44875         Add section for compatibility checks for POSIX:2001 functions,
44876         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
44877         winsz-ioctl, and winsz-termios into it.
44878         Add lchmod.
44879         Add top-level Misc section and put host-os, perl, and uptime
44880         into it.
44881
44882 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44883
44884         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
44885         now assume the stdint module.  Do not include inttypes.h.
44886         * lib/fsusage.h: Likewise.
44887         * lib/getndelim2.c: Likewise.
44888         * lib/human.h: Likewise.
44889         * lib/inttostr.h: Likewise.
44890         * lib/obstack.c: Likewise.
44891         * lib/regex_internal.h: Likewise.
44892         * lib/tempname.c: Likewise.
44893         * lib/utimecmp.c: Likewise.
44894         * lib/xstrtol.h: Likewise.
44895
44896         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
44897
44898         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
44899         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
44900         * lib/xtime.h: Likewise.
44901
44902 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44903
44904         * modules/openat (Files): Add lib/fchmodat.c.
44905         Fixes problem reported by Jay Youngman.
44906
44907 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44908
44909         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
44910         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
44911
44912 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
44913             Bruno Haible  <bruno@clisp.org>
44914
44915         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
44916         and is a script that invokes bison. Tighten the code. Add comments.
44917
44918 2006-08-18  Jim Meyering  <jim@meyering.net>
44919
44920         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
44921         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
44922         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
44923         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
44924
44925 2006-08-18  Bruno Haible  <bruno@clisp.org>
44926
44927         * modules/bison-i18n: New file.
44928         * MODULES.html.sh (Internationalization functions): Add it.
44929
44930 2006-08-18  Bruno Haible  <bruno@clisp.org>
44931
44932         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
44933         sys/statvfs.h. When getmntinfo was found, check its declaration and
44934         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
44935
44936 2006-08-18  Bruno Haible  <bruno@clisp.org>
44937
44938         * m4/bison-i18n.m4: New file, from bison.
44939
44940 2006-08-18  Bruno Haible  <bruno@clisp.org>
44941
44942         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
44943         (ME_DUMMY): Treat "kernfs" as a dummy.
44944         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
44945
44946 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44947
44948         Update from coreutils.
44949
44950         2006-08-15  Jim Meyering  <jim@meyering.net>
44951
44952         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
44953
44954         2006-01-17  Jim Meyering  <jim@meyering.net>
44955
44956         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
44957
44958         2006-01-11  Jim Meyering  <jim@meyering.net>
44959
44960         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
44961         Check for the lchmod function.
44962
44963 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44964
44965         Update from coreutils.
44966
44967         * lib/__fpending.h: Add copyright notice.
44968         * lib/fprintftime.h: Likewise.
44969         * lib/savedir.c: Use (C) in copyright notice.
44970         * lib/savedir.h: Likewise.
44971
44972         2006-08-15  Jim Meyering  <jim@meyering.net>
44973
44974         * lib/at-func.c: New file, with the logic of all emulated at-functions.
44975         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
44976         in support of the EXPECTED_ERRNO macro.
44977         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
44978         definitions.  Instead, define the appropriate symbols and include
44979         "at-func.c".
44980         * lib/mkdirat.c (mkdirat): Likewise.
44981         * lib/fchmodat.c (fchmodat): Likewise.
44982         (ENOSYS): Remove definition.
44983         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
44984         it.  Don't include "unistd--.h" -- it wasn't ever used.
44985
44986         2006-01-17  Jim Meyering  <jim@meyering.net>
44987
44988         Rewrite fts.c not to change the current working directory,
44989         by using openat, fstatat, fdopendir, etc..
44990
44991         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
44992         (HAVE_OPENAT_SUPPORT): Define.
44993         [_LIBC] (fchdir): Don't undef or define; no longer used.
44994         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
44995         Now, this `function' always succeeds, and consumes its file descriptor
44996         parameter -- so callers must not close such FDs.  Update callers.
44997         (diropen_fd, opendirat, cwd_advance_fd): New functions.
44998         (diropen): Add parameter, SP.  Adjust all callers.
44999         Implement using diropen_fd, rather than open.
45000         (fts_open): Initialize new member, fts_cwd_fd.
45001         Remove fts_rft-setting code.
45002         (fts_close): Close fts_cwd_fd, if necessary.
45003         (__opendir2): Define in terms of opendir or opendirat,
45004         depending on whether the FST_NOCHDIR flag is set.
45005         (fts_build): Since fts_safe_changedir consumes its FD, and since
45006         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
45007         and close the dup'd file descriptor upon failure.
45008         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
45009         (fts_safe_changedir): Tweak semantics to reflect that this function
45010         now calls cwd_advance_fd and hence consumes its FD argument.
45011         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
45012         [struct FTS] (fts_rft): Remove now-unused member.
45013         [struct FTS] (fts_cycle.state): Improve comment.
45014
45015         * lib/openat.c (openat_needs_fchdir): New function.
45016         * lib/openat.h (openat_needs_fchdir): Declare it.
45017
45018 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
45019
45020         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
45021         Problem and fix reported by Pádraig Brady in
45022         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
45023
45024 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45025
45026         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
45027
45028 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45029
45030         * lib/memcoll.c (memcoll): Optimize for the common case where the
45031         arguments are bytewise equal.
45032
45033 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45034
45035         * doc/regexprops-generic.texi: Add a copyright notice.
45036
45037 2006-08-15  Bruno Haible  <bruno@clisp.org>
45038
45039         * modules/tmpdir (License): Change to LGPL.
45040
45041 2006-08-15  Bruno Haible  <bruno@clisp.org>
45042
45043         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
45044         module.
45045
45046 2006-08-14  Simon Josefsson  <jas@extundo.com>
45047
45048         * config/srclist.txt: Add gnupload.
45049
45050 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45051
45052         Change copyright notice from LGPL 2 to GPL 2, since that's the
45053         standard form used in the gnulib repository.
45054         * tests/test-lock.c: Likewise.
45055         * tests/test-stdint.c: Likewise.
45056         * tests/test-tls.c: Likewise.
45057
45058         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
45059         prelude-manager.  User shorter URLs for GNU projects, without '?'.
45060         Add copyright notice.
45061
45062         * check-module: Add copyright notice.  Output a copyright
45063         notice if "--version" is specified.
45064         * modules/COPYING: New file.
45065         * tests/test-getaddrinfo.c: Add copyright notice.
45066         * tests/test-verify.c: Likewise.
45067
45068 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45069
45070         Change copyright notice from LGPL 2 to GPL 2, since that's the
45071         standard form used in the gnulib repository.
45072         * lib/lock.c: LGPL -> GPL.
45073         * lib/lock.h: Likewise.
45074         * lib/strnlen1.c: Likewise.
45075         * lib/strnlen1.h: Likewise.
45076         * lib/tls.c: Likewise.
45077         * lib/tls.h: Likewise.
45078         * lib/tmpdir.c: Likewise.
45079
45080         * lib/TODO: Remove; this belongs only in coreutils.
45081
45082 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45083
45084         Add copyright notices to long-enough files that lack them, since
45085         otherwise the files aren't clearly free.  Use the same notice that
45086         getdate.texi already uses.
45087         * doc/alloca-opt.texi: Add copyright notice.
45088         * doc/alloca.texi: Likewise.
45089         * doc/ctime.texi: Likewise.
45090         * doc/functions.texi: Likewise.
45091         * doc/gcd.texi: Likewise.
45092         * doc/gnulib-tool.texi: Likewise.
45093         * doc/inet_ntoa.texi: Likewise.
45094         * doc/visibility.texi: Likewise.
45095
45096         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
45097         * doc/quote.texi: Add copyright notice.
45098
45099         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
45100         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
45101         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
45102         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
45103         is now obsolete, and give a pointer to the Sun list.
45104         Add copyright notice.
45105
45106 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45107
45108         * config/srclistvars.sh: Add copyright notice.
45109
45110 2006-08-14  Eric Blake  <ebb9@byu.net>
45111
45112         Import the following change from libc:
45113
45114         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
45115
45116         Upstream bug 2997.
45117         * lib/misc/error.c: Add space between program name and message if file
45118         name is missing.
45119
45120 2006-08-12  Karl Berry  <karl@gnu.org>
45121
45122         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
45123         remove, these originate in gnulib now.
45124
45125 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45126
45127         * doc/Makefile (standards.info standards.html standards.dvi):
45128         Also depend on make-stds.texi.
45129
45130 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
45131
45132         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
45133         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
45134
45135         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
45136         in wchar_t.  Problem reported by Eric Blake.
45137
45138         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
45139         LEN is smaller than SIZE.  Suggested by Bruno Haible.
45140         Also, help the compiler to keep LEN in a register.
45141
45142 2006-08-11  Eric Blake  <ebb9@byu.net>
45143
45144         * users.txt: Sort.  Add tar.
45145
45146 2006-08-11  Bruno Haible  <bruno@clisp.org>
45147
45148         * users.txt: New file.
45149
45150 2006-08-11  Bruno Haible  <bruno@clisp.org>
45151
45152         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
45153         before <wchar.h>. Needed for OSF/1 and BSD/OS.
45154
45155 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
45156
45157         * modules/snprintf (Depends-on): Remove minmax.
45158         (Maintainer): Add self and Bruno.
45159
45160 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
45161
45162         * lib/.cppi-disable: Add snprintf.h, socket_.h.
45163         * lib/snprintf.c: Include <errno.h> and <limits.h>.
45164         (EOVERFLOW): Define if the system does not.
45165         Do not include "minmax.h"; it wasn't used.
45166         (snprintf): Don't assume size_t promotes to an unsigned type.
45167         Fix bug when generated string was too long for the buffer: the
45168         buffer's contents are supposed to be the initial prefix of the
45169         output.  Don't assume vasnprintf returns EOVERFLOW if the size
45170         exceeds INT_MAX; do the check ourselves.
45171
45172         Import the following changes from libc:
45173
45174         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
45175
45176         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
45177         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
45178         set wc to the byte which couldn't be converted.
45179         (re_string_reconstruct): Don't clear valid_raw_len before calling
45180         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
45181         tip_context using re_string_context_at.
45182
45183         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
45184
45185         * lib/posix/regex.h: g++ still cannot handled [restrict].
45186
45187         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
45188
45189         * lib/posix/regex.h: Remove special handling for VMS.
45190
45191 2006-08-10  Jim Meyering  <jim@meyering.net>
45192
45193         * modules/same-inode: New module.
45194         * modules/dev-ino: New module.
45195         * modules/cycle-check: Depend on these modules, rather than simply
45196         including their .h files.
45197         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
45198         required via m4/cycle-check.m4.
45199         * modules/same: Depend on new same-inode module, rather than
45200         including same-inode.h.
45201         * modules/chdir-safer: New file.
45202
45203         * modules/chown (Depends-on): Add stat-macros.
45204
45205 2006-08-10  Jim Meyering  <jim@meyering.net>
45206
45207         * m4/cycle-check.m4: New file.
45208         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
45209         * m4/dev-ino.m4, m4/same-inode.m4: New files.
45210
45211 2006-08-10  Eric Blake  <ebb9@byu.net>
45212
45213         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
45214         in from original proposal.
45215
45216 2006-08-10  Eric Blake  <ebb9@byu.net>
45217         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
45218
45219         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
45220         namespace.
45221
45222 2006-08-10  Bruno Haible  <bruno@clisp.org>
45223
45224         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
45225         as well.
45226
45227 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45228
45229         Sync from coreutils.
45230
45231         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
45232
45233         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
45234         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
45235
45236 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45237
45238         * modules/restrict: Remove; no longer needed now that we assume
45239         Autoconf 2.59 or later.
45240         * MODULES.html.sh: Remove 'restrict'.
45241         * modules/argp (Depends-on): Remove 'restrict'.
45242         * modules/base64 (Depends-on): Likewise.
45243         * modules/gc (Depends-on): Likewise.
45244         * modules/getaddrinfo (Depends-on): Likewise.
45245         * modules/glob (Depends-on): Likewise.
45246         * modules/inet_ntop (Depends-on): Likewise.
45247         * modules/inet_pton (Depends-on): Likewise.
45248         * modules/memxor (Depends-on): Likewise.
45249         * modules/regex (Depends-on): Likewise.
45250         * modules/strtok_r (Depends-on): Likewise.
45251         * modules/time_r (Depends-on): Likewise.
45252
45253 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45254
45255         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
45256         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
45257         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
45258         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
45259         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
45260         * m4/memxor.m4 (gl_MEMXOR): Likewise.
45261         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
45262         gl_C_RESTRICT replaced by AC_C_RESTRICT.
45263
45264         Merge from coreutils.
45265         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
45266         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
45267         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
45268         * m4/time_r.m4 (gl_TIME_R): Likewise.
45269
45270 2006-08-09  Karl Berry  <karl@gnu.org>
45271
45272         * config/srclist.txt: no more gettext-tools, per Bruno.
45273
45274 2006-08-08  Eric Blake  <ebb9@byu.net>
45275
45276         * modules/verror: New module.
45277         * MODULES.html.sh: Document it.
45278
45279 2006-08-08  Eric Blake  <ebb9@byu.net>
45280
45281         * lib/verror.h, lib/verror.c: New files.
45282
45283 2006-08-08  Eric Blake  <ebb9@byu.net>
45284
45285         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
45286         verror_at_line output complies with GNU Coding Standards even when
45287         file is NULL.
45288
45289 2006-08-07  Bruno Haible  <bruno@clisp.org>
45290
45291         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
45292         versions of AIX.
45293         Reported by Ralf Wildenhues.
45294
45295 2006-08-07  Bruno Haible  <bruno@clisp.org>
45296
45297         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
45298         in an AC_DEFUN. Needed so that the autoconf snippets can use
45299         AC_REQUIRE.
45300
45301 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45302
45303         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
45304         Initialize pkgdata_DATA.
45305         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
45306         overriding it.
45307
45308 2006-08-06  Eric Blake  <ebb9@byu.net>
45309
45310         * lib/error.h: Fold in some upstream changes from glibc.
45311         * lib/error.c: Likewise.
45312
45313 2006-08-04  Bruno Haible  <bruno@clisp.org>
45314
45315         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
45316         Make the mostlyclean-local rule depend on mostlyclean-generic.
45317         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
45318
45319 2006-07-31  Bruno Haible  <bruno@clisp.org>
45320
45321         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
45322         <stdlib.h>, <string.h>.
45323
45324 2006-07-30  Bruno Haible  <bruno@clisp.org>
45325
45326         * modules/readlink (License): Change to LGPL.
45327
45328 2006-07-30  Bruno Haible  <bruno@clisp.org>
45329
45330         * modules/javaversion (Makefile.am): Distribute javaversion.java and
45331         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
45332         set PKGDATADIR to point to it.
45333
45334 2006-07-30  Bruno Haible  <bruno@clisp.org>
45335
45336         * modules/csharpexec (configure.ac): Comment out macro invocation.
45337         * modules/javaexec (configure.ac): Likewise.
45338         * modules/javacomp-script (configure.ac): Likewise.
45339
45340         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
45341
45342 2006-07-30  Bruno Haible  <bruno@clisp.org>
45343
45344         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
45345         linked-list.
45346
45347 2006-07-30  Bruno Haible  <bruno@clisp.org>
45348
45349         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
45350
45351 2006-07-30  Bruno Haible  <bruno@clisp.org>
45352
45353         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
45354         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
45355         get removed.
45356
45357 2006-07-29  Bruno Haible  <bruno@clisp.org>
45358
45359         Make it possible for gnulib-tool to work with locally modified or
45360         augmented gnulib repositories.
45361         * gnulib-tool (func_usage): Document --local-dir option.
45362         (local_gnulib_dir): New variable.
45363         Handle --local-dir option.
45364         (func_lookup_file): New function.
45365         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
45366         (func_get_description, func_get_filelist, func_get_description,
45367         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
45368         func_get_automake_snippet, func_get_include_directive,
45369         func_get_license, func_get_maintainer): Use func_lookup_file.
45370         (func_import, func_create_testdir): Use func_lookup_file.
45371
45372 2006-07-29  Bruno Haible  <bruno@clisp.org>
45373
45374         * modules/setenv (Depends-on): Add unistd.
45375
45376 2006-07-29  Bruno Haible  <bruno@clisp.org>
45377
45378         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
45379
45380 2006-07-29  Bruno Haible  <bruno@clisp.org>
45381
45382         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
45383
45384 2006-07-29  Bruno Haible  <bruno@clisp.org>
45385
45386         * gnulib-tool (import, update): If there is no Makefile.am, look at
45387         aclocal.m4, instead of bailing out.
45388
45389 2006-07-29  Bruno Haible  <bruno@clisp.org>
45390
45391         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
45392         Categorize the options by when they are useful.
45393
45394 2006-07-29  Bruno Haible  <bruno@clisp.org>
45395
45396         * gnulib-tool (func_usage): Document option --no-libtool.
45397         Handle option --no-libtool.
45398         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
45399         for changed semantics of $libtool variable.
45400         (func_import): Likewise. If libtool is not used, show this through
45401         an option --no-libtool.
45402         (func_create_testdir): Update.
45403
45404 2006-07-29  Bruno Haible  <bruno@clisp.org>
45405
45406         * gnulib-tool (func_import): Extend error message about missing
45407         --doc-base.
45408
45409 2006-07-29  Bruno Haible  <bruno@clisp.org>
45410
45411         * gnulib-tool (func_import): Don't create the $docbase directory if
45412         there is no file to store there.
45413
45414 2006-07-29  Bruno Haible  <bruno@clisp.org>
45415
45416         * gnulib-tool (autoconf_minversion): If a --dir option is given and
45417         relevant, look for configure.ac there, not in the current directory.
45418         Also use a simple search for AC_PREREQ, not "autoconf --trace".
45419
45420 2006-07-29  Bruno Haible  <bruno@clisp.org>
45421
45422         * gnulib-tool (SORT): New variable.
45423         (func_usage): Undocument --assume-autoconf option.
45424         Remove --assume-autoconf option handling.
45425         (autoconf_minversion): Determine from the contents of configure.ac.
45426         (func_import): Remove autoconf_minversion handling.
45427         Suggested by Eric Blake.
45428
45429 2006-07-29  Bruno Haible  <bruno@clisp.org>
45430
45431         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
45432
45433 2006-07-29  Bruno Haible  <bruno@clisp.org>
45434
45435         * config/srclist.txt (*setenv.[ch]): Remove rules.
45436
45437 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45438
45439         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
45440
45441 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45442
45443         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
45444         arpa/inet.h.
45445
45446 2006-07-28  Simon Josefsson  <jas@extundo.com>
45447
45448         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
45449         * modules/inet_pton (Depends-on): Likewise.
45450
45451 2006-07-28  Simon Josefsson  <jas@extundo.com>
45452
45453         * m4/netinet_in_h.m4: New file.
45454
45455 2006-07-28  Simon Josefsson  <jas@extundo.com>
45456
45457         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
45458         #include's.
45459
45460 2006-07-28  Simon Josefsson  <jas@extundo.com>
45461
45462         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
45463         #include's.
45464
45465 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
45466
45467         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
45468         setgid on directories only if they set these bits.
45469         * lib/modechange.h: Remove obsolete comment about masks.
45470
45471 2006-07-28  Eric Blake  <ebb9@byu.net>
45472
45473         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
45474         macro expansion.
45475
45476 2006-07-28  Bruno Haible  <bruno@clisp.org>
45477
45478         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
45479
45480 2006-07-28  Bruno Haible  <bruno@clisp.org>
45481
45482         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
45483
45484 2006-07-28  Bruno Haible  <bruno@clisp.org>
45485
45486         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
45487         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
45488         Define fallbacks.
45489         Avoids link error on FreeBSD 4.x.
45490         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
45491
45492         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
45493         encoding.
45494         * lib/mbswidth.c (iswcntrl): Likewise.
45495
45496 2006-07-27  Bruno Haible  <bruno@clisp.org>
45497
45498         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
45499         test.
45500
45501 2006-07-27  Bruno Haible  <bruno@clisp.org>
45502
45503         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
45504         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
45505         defined.
45506
45507 2006-07-26  Eric Blake  <ebb9@byu.net>
45508
45509         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
45510
45511 2006-07-26  Eric Blake  <ebb9@byu.net>
45512
45513         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
45514         like mingw that lack mkstemp.
45515         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
45516         avoid compilation warning on mingw.
45517
45518 2006-07-26  Bruno Haible  <bruno@clisp.org>
45519
45520         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
45521         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
45522         INT_FAST*_MIN, INTPTR_MIN.
45523
45524 2006-07-25  Bruno Haible  <bruno@clisp.org>
45525
45526         * modules/version-etc (Depends-on): Add stdarg.
45527
45528 2006-07-25  Bruno Haible  <bruno@clisp.org>
45529
45530         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
45531         complex commands.
45532
45533 2006-07-25  Bruno Haible  <bruno@clisp.org>
45534
45535         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
45536         defined in <stdarg.h> or config.h.
45537
45538 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45539
45540         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
45541         (gl_STDIO_SAFER): Remove.
45542
45543 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
45544
45545         * MODULES.html.sh (File stream based Input/Output):
45546         Add fopen-safer, tmpfile-safer; remove stdio-safer.
45547         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
45548         * modules/fopen-safer, modules/tmpfile-safer: New files.
45549         * modules/stdio-safer: Remove.
45550
45551 2006-07-24  Bruno Haible  <bruno@clisp.org>
45552
45553         * modules/tmpdir: New file.
45554         * MODULES.html.sh (File system functions): Add it.
45555
45556 2006-07-24  Bruno Haible  <bruno@clisp.org>
45557
45558         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
45559         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
45560
45561 2006-07-24  Bruno Haible  <bruno@clisp.org>
45562
45563         * modules/clean-temp: New file.
45564
45565 2006-07-24  Bruno Haible  <bruno@clisp.org>
45566
45567         * m4/tmpdir.m4: New file, from GNU gettext.
45568
45569 2006-07-24  Bruno Haible  <bruno@clisp.org>
45570
45571         * lib/tmpdir.h: New file, from GNU gettext.
45572         * lib/tmpdir.c: New file, from GNU gettext.
45573
45574 2006-07-24  Bruno Haible  <bruno@clisp.org>
45575
45576         * lib/clean-temp.h: New file, from GNU gettext.
45577         * lib/clean-temp.c: New file, from GNU gettext.
45578
45579 2006-07-23  Eric Blake  <ebb9@byu.net>
45580
45581         * modules/stdio-safer (Files): Add tmpfile-safer.c.
45582         (Depends-on): Add binary-io.
45583
45584 2006-07-23  Eric Blake  <ebb9@byu.net>
45585
45586         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
45587
45588 2006-07-23  Eric Blake  <ebb9@byu.net>
45589
45590         * lib/tmpfile-safer.c: New file.
45591         * lib/stdio-safer.h (fopen_safer): Add prototype.
45592         * lib/stdio--.h (tmpfile): Make safer.
45593
45594 2006-07-23  Bruno Haible  <bruno@clisp.org>
45595
45596         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
45597         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
45598         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
45599         gl_linked_remove_at): Use it.
45600
45601 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45602         and Simon Josefsson <jas@extundo.com>
45603
45604         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
45605
45606         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
45607
45608 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45609
45610         * modules/close-stream: New file.
45611         * modules/closeout (Description): Make it clear that it exits
45612         with a diagnostic on error.
45613         (Depends-on): Add close-stream.  Remove fpending, stdbool.
45614         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
45615
45616 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45617
45618         * m4/close-stream.m4: New file.
45619
45620 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
45621
45622         * lib/close-stream.c, lib/close-stream.h: New files.
45623
45624 2006-07-22  Bruno Haible  <bruno@clisp.org>
45625
45626         Merge from GNU gettext 0.15.
45627
45628         2006-05-01  Bruno Haible  <bruno@clisp.org>
45629
45630                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
45631
45632         2006-07-22  Bruno Haible  <bruno@clisp.org>
45633
45634                 * modules/javaversion: New file.
45635                 * MODULES.html.sh (Java): Add javaversion.
45636
45637         2006-03-12  Bruno Haible  <bruno@clisp.org>
45638
45639                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
45640
45641         2005-12-04  Bruno Haible  <bruno@clisp.org>
45642
45643                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
45644                 (untested).
45645
45646         2006-06-21  Bruno Haible  <bruno@clisp.org>
45647
45648                 Avoid warnings from recent versions of mcs.
45649                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
45650                 -o, -L, -r any more. Use options documented since mcs-1.0
45651                 instead. Similarly for -g.
45652
45653         2005-12-04  Bruno Haible  <bruno@clisp.org>
45654
45655                 * build-aux/csharpcomp.sh.in: Suffix for resources is
45656                 .resources, not .resource.
45657
45658         2005-07-09  Bruno Haible  <bruno@clisp.org>
45659
45660                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
45661                 add a .dll suffix.
45662                 Reported by Mark Junker <mjscod@gmx.de>.
45663
45664         2006-07-22  Bruno Haible  <bruno@clisp.org>
45665
45666                 * modules/gettext: Upgrade to gettext-0.15.
45667                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
45668                 m4/visibility.m4.
45669                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
45670
45671 2006-07-22  Bruno Haible  <bruno@clisp.org>
45672
45673         Merge from GNU gettext 0.15.
45674
45675         2006-03-25  Bruno Haible  <bruno@clisp.org>
45676
45677                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
45678
45679         2006-07-21  Bruno Haible  <bruno@clisp.org>
45680
45681                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
45682                 "1.1".
45683
45684         2006-05-09  Bruno Haible  <bruno@clisp.org>
45685
45686                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
45687                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
45688                 for the conftestver execution.
45689
45690         2006-05-01  Bruno Haible  <bruno@clisp.org>
45691
45692                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
45693                 optional target-version argument. Verify that the compiler
45694                 groks source of the specified source-version, or add -source
45695                 option as necessary. Verify that the compiler produces
45696                 bytecode in the specified target-version, or add -target and
45697                 -source options as necessary. Make the result of the test
45698                 available as variable CONF_JAVAC. Also log error output in
45699                 config.log.
45700
45701         2006-03-11  Bruno Haible  <bruno@clisp.org>
45702
45703                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
45704
45705         2006-05-09  Bruno Haible  <bruno@clisp.org>
45706
45707                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
45708                 CLASSPATH_SEPARATOR to a semicolon.
45709
45710         2006-03-12  Bruno Haible  <bruno@clisp.org>
45711
45712                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
45713                 available as variable CONF_JAVA, for subsequent autoconf
45714                 tests. Also log error output in config.log.
45715
45716         2006-07-19  Bruno Haible  <bruno@clisp.org>
45717
45718                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
45719                 that getline works on glibc2 systems. Needed to avoid trouble
45720                 in relocatable.c.
45721                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
45722
45723         2005-12-04  Bruno Haible  <bruno@clisp.org>
45724
45725                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
45726                 launcher (untested).
45727
45728         2005-12-04  Bruno Haible  <bruno@clisp.org>
45729
45730                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
45731
45732         2006-07-22  Bruno Haible  <bruno@clisp.org>
45733
45734                 * gettext.m4: Update from GNU gettext-0.15.
45735                 * nls.m4: Likewise.
45736                 * po.m4: Likewise.
45737                 * inttypes-pri.m4: Likewise.
45738                 * inttypes-h.m4: Renamed from inttypes.m4.
45739                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
45740
45741 2006-07-22  Bruno Haible  <bruno@clisp.org>
45742
45743         Merge from GNU gettext 0.15.
45744
45745         2005-07-05  Bruno Haible  <bruno@clisp.org>
45746
45747                 * printf-args.c (printf_fetchargs): Work around broken
45748                 definition of wint_t on mingw.
45749
45750         2005-02-12  Bruno Haible  <bruno@clisp.org>
45751
45752                 * xallocsa.h: Add extern "C" for C++.
45753
45754         2006-05-17  Bruno Haible  <bruno@clisp.org>
45755
45756                 Cygwin portability.
45757                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
45758
45759         2006-04-30  Bruno Haible  <bruno@clisp.org>
45760
45761                 * progreloc.c: Include <mach-o/dyld.h> if available.
45762                 (find_executable): Use _NSGetExecutablePath when possible.
45763
45764         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
45765
45766                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
45767                 function.
45768
45769         2005-12-29  Bruno Haible  <bruno@clisp.org>
45770
45771                 * progreloc.c (set_program_name_and_installdir): Fix
45772                 compilation error.
45773
45774         2005-12-04  Bruno Haible  <bruno@clisp.org>
45775
45776                 Cygwin portability.
45777                 * progreloc.c: Include <windows.h> also on Cygwin.
45778                 (find_executable): Add support for Cygwin.
45779                 (set_program_name_and_installdir): Handle also platforms with
45780                 nonempty EXEEXT.
45781
45782         2006-07-11  Bruno Haible  <bruno@clisp.org>
45783
45784                 * javacomp.c: Fix a comment.
45785                 Reported by Jim Meyering.
45786
45787         2006-04-30  Bruno Haible  <bruno@clisp.org>
45788
45789                 * javacomp.h (compile_java_class): Add source_version,
45790                 target_version arguments.
45791                 * javacomp.c: Rewritten to choose only a compiler that
45792                 respects the specified source_version and target_version.
45793
45794         2006-06-27  Bruno Haible  <bruno@clisp.org>
45795
45796                 Assume correct S_ISDIR macro.
45797                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
45798
45799         2006-07-22  Bruno Haible  <bruno@clisp.org>
45800
45801                 * javaversion.h: New file, from GNU gettext.
45802                 * javaversion.c: New file, from GNU gettext.
45803                 * javaversion.java: New file, from GNU gettext.
45804                 * javaversion.class: New file, from GNU gettext.
45805
45806         2006-05-17  Bruno Haible  <bruno@clisp.org>
45807
45808                 Cygwin portability.
45809                 * javaexec.c (execute_java_class): Test for jview program
45810                 also on Cygwin.
45811
45812         2006-04-09  Bruno Haible  <bruno@clisp.org>
45813
45814                 * fatal-signal.c: Don't include string.h.
45815                 (at_fatal_signal): Use a copying loop instead of memcpy.
45816
45817         2005-12-04  Bruno Haible  <bruno@clisp.org>
45818
45819                 * csharpexec.c: Add support for 'clix' launcher (untested).
45820                 (execute_csharp_using_sscli): New function.
45821                 (execute_csharp_program): Call it.
45822
45823         2006-06-21  Bruno Haible  <bruno@clisp.org>
45824
45825                 Avoid warnings from recent versions of mcs.
45826                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
45827                 -o, -L, -r any more. Use options documented since mcs-1.0
45828                 instead. Similarly for -g.
45829
45830         2005-07-09  Bruno Haible  <bruno@clisp.org>
45831
45832                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
45833                 add a .dll suffix.
45834                 Reported by Mark Junker <mjscod@gmx.de>.
45835
45836         2006-06-17  Bruno Haible  <bruno@clisp.org>
45837
45838                 * config.charset: Update for NetBSD 3.0.
45839
45840         2006-05-17  Bruno Haible  <bruno@clisp.org>
45841
45842                 Cygwin portability.
45843                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
45844
45845         2006-05-16  Bruno Haible  <bruno@clisp.org>
45846
45847                 * localcharset.c [CYGWIN]: Include <windows.h>.
45848                 (get_charset_aliases): For Cygwin, return the same CPxxx
45849                 aliases list as under WIN32.
45850                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
45851                 the environment variables. Fall back to GetACP().
45852
45853         2006-04-05  Bruno Haible  <bruno@clisp.org>
45854
45855                 * config.charset: Update Juan Manuel Guerrero's address.
45856
45857         2005-02-12  Bruno Haible  <bruno@clisp.org>
45858
45859                 * allocsa.h: Add extern "C" for C++.
45860
45861         2005-02-10  Bruno Haible  <bruno@clisp.org>
45862
45863                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
45864                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
45865
45866         2006-07-22  Bruno Haible  <bruno@clisp.org>
45867
45868                 * gettext.h: Update to GNU gettext-0.15.
45869
45870 2006-07-22  Bruno Haible  <bruno@clisp.org>
45871
45872         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
45873         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
45874         lib-prefix.m4, longdouble.m4, ssize_t.m4.
45875
45876 2006-07-21  Eric Blake  <ebb9@byu.net>
45877
45878         * modules/stdlib-safer: New file.
45879         * MODULES.html.sh (File stream based Input/Output): Add
45880         stdlib-safer.
45881
45882 2006-07-21  Eric Blake  <ebb9@byu.net>
45883
45884         * lib/stdlib-safer.h: New file from coreutils, required by
45885         stdlib--.h.
45886
45887 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
45888
45889         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
45890
45891 2006-07-20  Bruno Haible  <bruno@clisp.org>
45892
45893         * gnulib-tool: Recognize new option --assume-autoconf.
45894         (autoconf_minversion): New variable.
45895         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
45896
45897 2006-07-20  Bruno Haible  <bruno@clisp.org>
45898
45899         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
45900
45901 2006-07-19  Derek R. Price  <derek@ximbiot.com>
45902
45903         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
45904         Reindent and repaginate.
45905
45906 2006-07-19  Derek Price  <derek@ximbiot.com>
45907
45908         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
45909         Correct grammar.
45910
45911 2006-07-17  Bruno Haible  <bruno@clisp.org>
45912
45913         * modules/list: New file.
45914         * modules/array-list: New file.
45915         * modules/carray-list, modules/carray-list-tests: New files.
45916         * modules/linked-list, modules/linked-list-tests: New files.
45917         * modules/avltree-list, modules/avltree-list-tests: New files.
45918         * modules/rbtree-list, modules/rbtree-list-tests: New files.
45919         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
45920         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
45921         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
45922         * modules/oset: New file.
45923         * modules/array-oset: New file.
45924         * modules/avltree-oset, modules/avltree-oset-tests: New files.
45925         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
45926         * tests/test-carray_list.c: New file.
45927         * tests/test-linked_list.c: New file.
45928         * tests/test-avltree_list.c: New file.
45929         * tests/test-rbtree_list.c: New file.
45930         * tests/test-linkedhash_list.c: New file.
45931         * tests/test-avltreehash_list.c: New file.
45932         * tests/test-rbtreehash_list.c: New file.
45933         * tests/test-avltree_oset.c: New file.
45934         * tests/test-rbtree_oset.c: New file.
45935         * MODULES.html.sh (Container data structures): New section.
45936
45937 2006-07-17  Bruno Haible  <bruno@clisp.org>
45938
45939         * m4/gl_list.m4: New file.
45940
45941 2006-07-17  Bruno Haible  <bruno@clisp.org>
45942
45943         * lib/gl_list.h: New file.
45944         * lib/gl_list.c: New file.
45945         * lib/gl_array_list.h: New file.
45946         * lib/gl_array_list.c: New file.
45947         * lib/gl_carray_list.h: New file.
45948         * lib/gl_carray_list.c: New file.
45949         * lib/gl_linked_list.h: New file.
45950         * lib/gl_linked_list.c: New file.
45951         * lib/gl_anylinked_list1.h: New file.
45952         * lib/gl_anylinked_list2.h: New file.
45953         * lib/gl_avltree_list.h: New file.
45954         * lib/gl_avltree_list.c: New file.
45955         * lib/gl_anyavltree_list1.h: New file.
45956         * lib/gl_anyavltree_list2.h: New file.
45957         * lib/gl_rbtree_list.h: New file.
45958         * lib/gl_rbtree_list.c: New file.
45959         * lib/gl_anyrbtree_list1.h: New file.
45960         * lib/gl_anyrbtree_list2.h: New file.
45961         * lib/gl_anytree_list1.h: New file.
45962         * lib/gl_anytree_list2.h: New file.
45963         * lib/gl_linkedhash_list.h: New file.
45964         * lib/gl_linkedhash_list.c: New file.
45965         * lib/gl_anyhash_list1.h: New file.
45966         * lib/gl_anyhash_list2.h: New file.
45967         * lib/gl_avltreehash_list.h: New file.
45968         * lib/gl_avltreehash_list.c: New file.
45969         * lib/gl_rbtreehash_list.h: New file.
45970         * lib/gl_rbtreehash_list.c: New file.
45971         * lib/gl_anytreehash_list1.h: New file.
45972         * lib/gl_anytreehash_list2.h: New file.
45973
45974         * lib/gl_oset.h: New file.
45975         * lib/gl_oset.c: New file.
45976         * lib/gl_array_oset.h: New file.
45977         * lib/gl_array_oset.c: New file.
45978         * lib/gl_avltree_oset.h: New file.
45979         * lib/gl_avltree_oset.c: New file.
45980         * lib/gl_rbtree_oset.h: New file.
45981         * lib/gl_rbtree_oset.c: New file.
45982         * lib/gl_anytree_oset.h: New file.
45983
45984 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45985
45986         * m4/mkancesdirs.m4: New file.
45987         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
45988         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
45989         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
45990         it.
45991
45992 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
45993
45994         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
45995         * lib/mkancesdirs.h: New files.
45996         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
45997         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
45998         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
45999         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
46000         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
46001         callers changed.  Revamp internals significantly, by not
46002         attempting to create directories that are temporarily more
46003         permissive than the final results.  Do not attempt to use
46004         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
46005         This removes some race conditions, fixes some bugs, and simplifies
46006         things.  Use new dirchownmod function to do owner and mode changes.
46007         * lib/mkdir-p.h: Likewise.
46008         * lib/modechange.c (octal_to_mode): New function.
46009         (struct mode_change): New member mentioned.
46010         (make_node_op_equals): New arg mentioned.  All callers changed.
46011         (mode_compile): Keep track of which mode bits the user has explicitly
46012         mentioned.
46013         (mode_adjust): New arg DIR, so that we implement the X op correctly.
46014         New arg PMODE_BITS, to keep track of which mode bits the user
46015         mentioned; it treats S_ISUID and S_ISGID speciall.
46016         All callers changed.
46017         * lib/modechange.h: Likewise.
46018
46019 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46020
46021         * MODULES.html.sh: Add mkancestors.
46022         * modules/mkancesdirs: New module.
46023         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
46024         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
46025         The chdir-safer and afs files are now orphans; I'll remove them
46026         unless someone speaks up.
46027         Add lib/dirchownmod.c, lib/dirchownmod.h.
46028         (Depends-on): Remove alloca, chown, save-cwd, dirname.
46029         Add lchown, mkancesdirs.
46030         (Maintainer): Add self.
46031
46032 2006-07-15  Karl Berry  <karl@gnu.org>
46033
46034         * gnulib-tool: help message wording/arrangement.
46035
46036 2006-07-14  Simon Josefsson  <jas@extundo.com>
46037
46038         * doc/gnulib.texi (Libtool and Windows): New section.
46039
46040 2006-07-12  Simon Josefsson  <jas@extundo.com>
46041
46042         * modules/gendocs (License): Fix license, approved by Karl.
46043
46044 2006-07-12  Eric Blake  <ebb9@byu.net>
46045
46046         * MODULES.html.sh: Add gendocs.
46047
46048 2006-07-11  Eric Blake  <ebb9@byu.net>
46049
46050         * modules/fdl: New module, to install doc/fdl.texi.
46051         * MODULES.html.sh: Add new section for documentation modules.
46052         * gnulib-tool: Avoid space-tab.
46053         (--doc-base): New option, to manage files from doc.
46054
46055 2006-07-11  Eric Blake  <ebb9@byu.net>
46056
46057         * m4/absolute-header.m4: Fix comments to match recent change.
46058
46059 2006-07-11  Eric Blake  <ebb9@byu.net>
46060
46061         * gnulib-tool: List --doc-base before --tests-base.
46062
46063 2006-07-11  Derek R. Price  <derek@ximbiot.com>
46064
46065         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
46066
46067 2006-07-11  Bruno Haible  <bruno@clisp.org>
46068
46069         * README: Mention where to put documentation.
46070
46071 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46072
46073         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
46074
46075 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
46076
46077         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
46078         to stdint.m4.
46079
46080 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
46081
46082         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
46083         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
46084         "no/such/file/stdint.h" when there is no such file, so that
46085         the resulting C code can be parsed by dodgy compilers.
46086         Problems reported by Bob Proulx.
46087
46088 2006-07-10  Derek R. Price  <derek@ximbiot.com>
46089
46090         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
46091         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
46092         macros into the GNU _D_EXACT_NAMLEN.
46093         * lib/savedir.c:  Likewise.
46094         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
46095
46096 2006-07-10  Derek R. Price  <derek@ximbiot.com>
46097         and Paul Eggert  <eggert@cs.ucla.edu>
46098
46099         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
46100         * m4/savedir.m4:
46101         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
46102         macros into the GNU _D_EXACT_NAMLEN.
46103
46104 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46105
46106         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
46107         around the absolute name, to work around a problem with the HP-UX
46108         11.23 native C compiler, reported by Bob Proulx.
46109
46110 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46111
46112         * doc/maintain.texi, make-stds.texi: Sync from
46113         <http://savannah.gnu.org/projects/gnustandards>.
46114
46115 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46116
46117         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
46118
46119 2006-07-09  Jim Meyering  <jim@meyering.net>
46120
46121         * m4/glob.m4: Remove a doubled word in a comment.
46122
46123 2006-07-09  Jim Meyering  <jim@meyering.net>
46124
46125         * lib/argp-pv.c: Remove a doubled word in a comment.
46126         * lib/check-version.c (check_version): Likewise.
46127         * lib/javacomp.c (compile_java_class): Likewise.
46128
46129 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
46130
46131         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
46132         for the benefit of people using Autoconf 2.60.  If you want to
46133         support older Autoconf versions you can copy m4/onceonly_2_57.m4
46134         (or m4/onceonly.m4, if pre-2.57) manually.
46135
46136 2006-07-08  Jim Meyering  <jim@meyering.net>
46137
46138         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
46139         comment.
46140         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
46141         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
46142         comment.
46143
46144 2006-07-08  Jim Meyering  <jim@meyering.net>
46145
46146         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
46147
46148 2006-07-07  Simon Josefsson  <jas@extundo.com>
46149
46150         * tests/test-crc.c: Change expected crc value, the test vector
46151         were probably computed using the old broken crc.c?
46152
46153 2006-07-06  Simon Josefsson  <jas@extundo.com>
46154
46155         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
46156         now the canonical place for the M4 file).
46157
46158         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
46159         from the sys_socket dependency now.
46160
46161         * modules/inet_pton (Files): Ditto.
46162
46163         * modules/inet_ntop (Files): Ditto.
46164
46165 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
46166
46167         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
46168         not gl_PREREQ_GETUSERSHELL.
46169
46170 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46171
46172         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
46173         with only one argument, for Autoconf 2.60.
46174         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
46175         expand to nothing, so add a shell command to avoid syntax error.
46176         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
46177
46178 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46179
46180         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
46181
46182 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
46183
46184         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
46185         no longer needed.  Check for isblank decl.
46186         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
46187         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
46188         of existence.
46189
46190 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
46191
46192         * lib/getloadavg.c: Use __VMS, not VMS.
46193         * lib/getopt.c: Likewise.
46194         * lib/getpagesize.h: Likewise.
46195         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
46196         and probably does not work.
46197
46198 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
46199
46200         * lib/.cppi-disable: Add wcwidth.
46201         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
46202         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
46203         (ISGRAPH): Remove.  All uses changed to isgraph.
46204         (FOLD) [!defined _LIBC]: Remove special case.
46205         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
46206         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
46207         HAVE_ISBLANK.
46208         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
46209         case.
46210
46211 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
46212
46213         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
46214         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
46215         brackets.  Other minor changes to suppress some compiler
46216         warnings.
46217
46218 2006-07-06  Derek R. Price  <derek@ximbiot.com>
46219         and Paul Eggert  <eggert@cs.ucla.edu>
46220
46221         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
46222         of invoking obsolescent AC_HEADER_DIRENT macro.
46223         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
46224         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
46225         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
46226         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
46227         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
46228         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
46229         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
46230         * m4/readdir.m4: Remove; no longer needed.
46231
46232 2006-07-06  Derek R. Price  <derek@ximbiot.com>
46233         and Paul Eggert  <eggert@cs.ucla.edu>
46234
46235         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
46236         Don't worry about this obsolete case any more.
46237         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
46238         directories.
46239         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
46240         worry about this obsolete case any more.
46241         * lib/fts.c: Likewise.
46242         * lib/getcwd.c: Likewise.
46243         * lib/glob.h: Likewise.
46244         * lib/savedir.c: Likewise.
46245
46246 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
46247
46248         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
46249         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
46250         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
46251         needed.
46252         All uses removed.
46253         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
46254         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
46255         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
46256         needed.
46257         * m4/getdate.m4 (gl_GETDATE): Likewise.
46258         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
46259         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
46260         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
46261         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
46262         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
46263         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
46264         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
46265         needed.
46266
46267 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
46268
46269         * lib/memcasecmp.c: Include <limits.h>.
46270         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
46271         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
46272         Don't assume isdigit succeeds only on '0' through '9'.
46273
46274 2006-07-05  Eric Blake  <ebb9@byu.net>
46275
46276         * modules/getaddrinfo (Depends-on): Add snprintf.
46277
46278 2006-07-05  Eric Blake  <ebb9@byu.net>
46279
46280         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
46281         to avoid 'header present but could not be compiled' on cygwin.
46282
46283 2006-07-05  Eric Blake  <ebb9@byu.net>
46284
46285         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
46286         missing from netdb.h.
46287         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
46288
46289 2006-07-05  Derek R. Price  <derek@ximbiot.com>
46290
46291         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
46292         no longer needed.
46293         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
46294         * m4/getdate.m4 (gl_GETDATE): Likewise.
46295         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
46296         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
46297         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
46298         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
46299         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
46300
46301 2006-07-05  Derek R. Price  <derek@ximbiot.com>
46302
46303         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
46304         All uses of is_space replaced by isspace.
46305         * lib/exit.h: Don't talk about STDC_HEADERS.
46306         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
46307         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
46308         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
46309         replaced by isprint etc.
46310         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
46311         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
46312         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
46313         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
46314         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
46315         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
46316
46317 2006-07-05  Bruno Haible  <bruno@clisp.org>
46318
46319         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
46320         the function exists, before testing against AIX.
46321         Reported by Martin Lambers <marlam@marlam.de>.
46322
46323 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
46324
46325         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
46326         From Mark D. Baushke.
46327
46328 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
46329
46330         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
46331         to the absolute name, not just one, to bypass Sun C 5.8's
46332         "warning: #include of /usr/include/... may be non-portable".
46333
46334 2006-07-04  Eric Blake  <ebb9@byu.net>
46335
46336         * modules/dirname-tests: New test module.
46337         * tests/test-dirname.c: New file, replacing dirname.c
46338         TEST_DIRNAME section that was recently deleted.
46339
46340 2006-07-04  Bruno Haible  <bruno@clisp.org>
46341
46342         Assume ANSI C header files and <ctype.h> functions.
46343         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
46344         (mbsnwidth): Use isprint, iscntrl instead.
46345
46346 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
46347
46348         Merge from coreutils.
46349         * MODULES.html.sh: Add xstrtold.
46350         * modules/xstrtold: New file.
46351         * modules/cycle-check (Files): Add lib/same-inode.h.
46352         * modules/dirname (Files): Add m4/double-slash-root.m4.
46353         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
46354         * modules/mkdir-p (Files): Add lib/same-inode.h.
46355         * modules/same (Files): Add lib/same-inode.h.
46356
46357 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
46358
46359         * m4/absolute-header.m4: Renamed from full-header-path.m4.
46360         This is to keep the terminology clean; POSIX talks about
46361         "absolute pathnames", not "full pathnames", but the GNU
46362         Coding Standards say to use "path" for something else;
46363         so use "absolute" to keep both sides happy.
46364         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
46365         Set gl_absolute_header, not gl_full_header_path.
46366         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
46367         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
46368         All uses changed.
46369
46370         Merge from coreutils.
46371
46372         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
46373
46374         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
46375         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
46376         want to require the building of c-strtod.o.
46377         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
46378         needs -lm directly.
46379         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
46380
46381         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
46382
46383         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
46384         --as-needed option if available.  Problem reported by Albert Chin in
46385         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
46386         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
46387         cc merely issues a bunch of annoying warnings for --as-needed
46388         (this problem was reported by Bob Proulx).  Also, try linking with
46389         -lm to detect a bug in binutils 2.16 (this problem was reported
46390         by Ralf Wildenhues).
46391
46392         2006-06-18  Jim Meyering  <jim@meyering.net>
46393
46394         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
46395         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
46396         macro.
46397         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
46398         also check for glibc-2.4's abort-inducing bug.
46399
46400         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
46401         Low-probability clean-up should be to use rmdir to get rid of
46402         the just-created directory, not unlink.
46403
46404         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
46405         configure fail, and request a bug report to inform us about it.
46406         Add a comment that, barring reports to the contrary, in 2007 we'll
46407         assume ftruncate is universally available.
46408
46409         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
46410
46411         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
46412
46413         2006-03-12  Jim Meyering  <jim@meyering.net>
46414
46415         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
46416         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
46417         * m4/same.m4 (gl_SAME): Likewise.
46418         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
46419
46420         2006-03-11  Eric Blake  <ebb9@byu.net>
46421
46422         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
46423         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
46424         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
46425         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
46426
46427 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
46428
46429         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
46430         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
46431         reported by Mark D. Baushke, one in
46432         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
46433
46434         Merge from coreutils.
46435
46436         * lib/.cppi-disable: Add stdint_.h.
46437         * lib/.cvsignore: Add stdint.h.
46438
46439         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
46440
46441         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
46442         both double and long double versions.
46443         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
46444         * lib/xstrtold.c: New file.
46445         * lib/xstrtod.h (xstrtold): New decl.
46446
46447         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
46448
46449         * lib/filemode.c (setst): Remove.
46450         (strmode): Rewrite to avoid setst.  This makes the code shorter,
46451         (arguably) clearer, and the generated code is a bit smaller on my
46452         Debian GNU/Linux stable x86 host.
46453
46454         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
46455
46456         * lib/filemode.c: Include "filemode.h" first, to test the interface.
46457         Assume that filemode.h includes sys/types.h and sys/stat.h.
46458         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
46459         (ftypelet): Reorder to put common cases first, for efficiency.
46460         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
46461         to do 'M'.
46462         (strmode): Renamed from mode_string, and now stores 12 bytes instead
46463         of 10, for compatibility with FreeBSD.  All callers changed.
46464         (filemodestring): Now stores 12 bytes instead of 10, and sets file
46465         types that can't be deduced solely from st_mode.  First arg is now a
46466         const pointer.
46467         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
46468         (strmode): Renamed from mode_string.
46469         (filemodestring): New decl.
46470         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
46471         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
46472         needed.
46473         (S_ISPORT, S_ISWHT): New macros, if not already defined.
46474
46475         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
46476
46477         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
46478         fsusage.h now does that.  Include fsusage.h first, to test interface.
46479         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
46480         at most one method (the old code could have generated decls that
46481         didn't conform to C89, not that this was ever exercised).
46482         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
46483
46484         2006-03-19  Jim Meyering  <jim@meyering.net>
46485
46486         Work even in a chroot where d_ino values for entries in "/"
46487         don't match the stat.st_ino values for the same names.
46488         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
46489         number, iterate through all entries again, using lstat instead.
46490         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
46491         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
46492
46493         * lib/getcwd.c (__getcwd): Clarify a comment.
46494         Use memcpy in place of a call to strcpy.
46495
46496         2006-03-12  Jim Meyering  <jim@meyering.net>
46497
46498         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
46499         matches that of the current directory (which we're about to chdir ".."
46500         out of), then save the dev-ino of the parent, instead.
46501
46502         * lib/same-inode.h (SAME_INODE): New file/macro.
46503         * lib/chdir-safer.c (SAME_INODE): Remove definition.
46504         Include "same-inode.h", instead.
46505         * lib/same.c: Likewise.
46506         * lib/cycle-check.h: Include "same-inode.h".
46507         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
46508         * lib/cycle-check.c (SAME_INODE): Remove definition.
46509         * lib/root-dev-ino.h: Include "same-inode.h".
46510
46511         2006-03-11  Eric Blake  <ebb9@byu.net>
46512
46513         * lib/same.c (same_name): s/base_name/last_component/
46514         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
46515         * lib/filenamecat.c (file_name_concat): Likewise.
46516
46517         2006-03-11  Eric Blake  <ebb9@byu.net>,
46518                     Paul Eggert  <eggert@cs.ucla.edu>
46519
46520         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
46521         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
46522         drive prefix.
46523         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
46524         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
46525         (last_component): New method.
46526         * lib/dirname.c (dir_len): Determine when drive letters need a
46527         subsequent slash.  Preserve // when it is special.
46528         (dir_name): Don't append dot when drive letter is absolute.
46529         [TEST_DIRNAME]: Move into a full-blown gnulib test.
46530         * lib/basename.c (base_name): New semantics - malloc the result.
46531         Preserve // when it is special.  Preserve relative files that look
46532         like drive letters.
46533         (base_len): Preserve // when it is special.
46534         (last_component): New method, similar to old base_name semantics.
46535         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
46536         base_name.  Strip redundant slashes from ///.
46537
46538 2006-07-03  Jim Meyering  <jim@meyering.net>
46539
46540         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
46541         macro is used before the first cycle_check call.
46542
46543 2006-07-03  Eric Blake  <ebb9@byu.net>
46544
46545         * modules/dirname (Depends-on): Add xstrndup.
46546
46547 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46548
46549         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
46550         test cases, so that config.log is a bit easier to follow.
46551
46552 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
46553
46554         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
46555         both are 64 bits, since this seems to be the tradition, and this
46556         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
46557         we ever run into a host that prefers long long to long in this
46558         case, we'll need another configure-time test.  Problem reported by
46559         Jim Meyering.
46560
46561 2006-07-02  Eric Blake  <ebb9@byu.net>
46562
46563         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
46564
46565 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46566
46567         * modules/inttypes (Depends-on): No longer depends on stdint.
46568         * modules/stdint (Description): Say more about assumptions.
46569         Say that the fast types might differ.  Say macros are used.
46570         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
46571         (Makefile.am): Revise list of substituted symbols to match
46572         new stdint.m4.
46573         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
46574         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
46575         * tests/test-stdint.c (verify_same_types)
46576         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
46577         the code conforms to C99/C89.
46578         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
46579         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
46580
46581 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46582
46583         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
46584         but fix a bug, by requiring at least 64 bits.
46585         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
46586         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
46587         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
46588         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
46589
46590         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
46591         changes.  Make 2.59 a prerequisite.  Check and substitute for
46592         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
46593         inttypes.h.  Do not use special include files; just use the
46594         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
46595         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
46596         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
46597         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
46598         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
46599         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
46600         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
46601         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
46602         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
46603         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
46604         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
46605         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
46606         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
46607         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
46608         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
46609         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
46610         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
46611         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
46612         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
46613         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
46614         WINT_MAX.  Check for C99 conformance more strictly, by detecting
46615         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
46616         not check for things that C99 does not require, e.g., int8_t.  If
46617         a test isn't needed unless <stdint.h> isn't working, and is
46618         unlikely to be needed for any other reason, then don't do it
46619         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
46620         size_t, since we assume C89 freestanding at least.  Do not check
46621         for sig_atomic_t, wchar_t, or wint_t, since the code now does
46622         the right thing even if the types are not defined.  Instead use:
46623         (gl_STDINT_TYPE_PROPERTIES): New macro.
46624         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
46625         testing whether <sys/types.h> clashes, as Autoconf does this for
46626         us now.  All uses removed.
46627         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
46628         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
46629         (gl_CHECK_TYPE_SAME):
46630         Remove; no longer needed.
46631         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
46632         exists, since we'll return 0 anyway in that case.
46633         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
46634
46635 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
46636
46637         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
46638         possible collision with system files.
46639         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
46640         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
46641         WCHAR_MIN and WCHAR_MAX in this case.
46642         (<stddef.h>): Do not include; no longer needed.
46643         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
46644         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
46645         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
46646         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
46647         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
46648         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
46649         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
46650         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
46651         !defined(__c99))]: Include in this case too, since it's harmless
46652         now.
46653         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
46654         dangerous to do so.
46655         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
46656         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
46657         (_STDINT_MIN, _STDINT_MAX): New macros.
46658         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
46659         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
46660         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
46661         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
46662         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
46663         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
46664         macros, not typedefs; this simplifies things quite a bit.
46665         Use long int for all types narrower than int64_t.
46666         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
46667         Define in terms of long long int or int64_t or long int,
46668         not int64_t or int32_t.  This saves some compile-time testing.
46669         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
46670         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
46671         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
46672         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
46673         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
46674         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
46675         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
46676         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
46677         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
46678         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
46679         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46680         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46681         undef any previous version and define our own version, for
46682         simplicity and consistency with the new macros for types.
46683         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
46684         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
46685         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
46686         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
46687         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
46688         @WINT_T_SUFFIX@ to keep things simple here.
46689         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
46690         Simplify by assuming typical 8/16/32/64 host, since we're
46691         already doing that elsewhere anyway.
46692         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
46693         and assume long long int is 64 bits if available.  This
46694         speeds up 'configure'.
46695
46696 2006-07-01  Eric Blake  <ebb9@byu.net>
46697
46698         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
46699         Reported by Andreas Buening.
46700
46701 2006-07-01  Eric Blake  <ebb9@byu.net>
46702
46703         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
46704
46705 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
46706
46707         * lib/getaddrinfo.c: fixed typo
46708
46709 2006-06-29  Jim Meyering  <jim@meyering.net>
46710
46711         * modules/strftime (Maintainer): Add my name, since with the
46712         FPRINTFTIME changes strftime.c has forked from glibc.
46713
46714 2006-06-29  Eric Blake  <ebb9@byu.net>
46715
46716         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
46717
46718 2006-06-29  Eric Blake  <ebb9@byu.net>
46719
46720         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
46721
46722 2006-06-29  Eric Blake  <ebb9@byu.net>
46723
46724         * lib/stat_.h: New file.
46725
46726 2006-06-29  Eric Blake  <ebb9@byu.net>
46727
46728         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
46729         unused static function.
46730
46731 2006-06-29  Eric Blake  <ebb9@byu.net>
46732
46733         * doc/functions.texi (Function Portability): Document missing lstat
46734         on mingw.
46735
46736 2006-06-29  Eric Blake  <ebb9@byu.net>
46737
46738         * MODULES.html.sh: Add sys_stat.
46739         * modules/sys_stat: New module.
46740         * modules/mkstemp (Depends-on): Add sys_stat.
46741
46742 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46743
46744         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
46745
46746 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46747
46748         * m4/c-bs-a.m4: Removed.
46749
46750 2006-06-29  Derek R. Price  <derek@ximbiot.com>
46751
46752         * lib/strftime.c: Assume strftime() exists.
46753
46754 2006-06-29  Derek Price  <derek@ximbiot.com>
46755
46756         * modules/c-bs-a: Removed - \a is C89.
46757         * MODULES.html.sh: Remove c-bs-a.
46758
46759 2006-06-29  Bruno Haible  <bruno@clisp.org>
46760
46761         * modules/wcwidth (License): Change to LGPL.
46762
46763 2006-06-28  Simon Josefsson  <jas@extundo.com>
46764
46765         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
46766         on _WIN32.
46767
46768         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
46769         getnameinfo.
46770
46771 2006-06-28  Simon Josefsson  <jas@extundo.com>
46772
46773         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
46774
46775 2006-06-28  Simon Josefsson  <jas@extundo.com>
46776
46777         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
46778         functions there.  It will succeed on Windows XP, but on Windows
46779         2000 and (presumably) earlier, it will fail, and use the internal
46780         re-implementation.
46781         (use_win32_p): New function.
46782         (getaddrinfo): Use strtoul on servname, to support numeric ports.
46783         Support AI_NUMERICSERV to disable getservbyname.
46784         (getnameinfo): New function, only supports
46785         NI_NUMERICHOST|NI_NUMERICSERV for now.
46786
46787         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
46788         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
46789         getnameinfo.
46790
46791 2006-06-28  Eric Blake  <ebb9@byu.net>
46792
46793         * modules/wcwidth: New file.
46794         * modules/mbchar (Depends-on): Add wcwidth.
46795         * modules/mbswidth (Depends-on): Add wcwidth.
46796         * MODULES.html.sh: Add wcwidth.
46797
46798 2006-06-28  Eric Blake  <ebb9@byu.net>
46799
46800         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
46801         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
46802
46803 2006-06-28  Eric Blake  <ebb9@byu.net>
46804
46805         * lib/xvasprintf.h: Fix comments.
46806
46807 2006-06-28  Eric Blake  <ebb9@byu.net>
46808
46809         * lib/mbchar.h (wcwidth): Include wcwidth.h.
46810         * lib/mbswidth.c (wcwidth): Move from here...
46811         * lib/wcwidth.h: ...to this new file.
46812
46813 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46814
46815         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
46816
46817         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
46818         it's obsolete.
46819         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
46820
46821 2006-06-28  Derek R. Price  <derek@ximbiot.com>
46822
46823         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
46824         Autoconf 2.60 says this stuff was obsolete.
46825
46826 2006-06-28  Bruno Haible  <bruno@clisp.org>
46827
46828         * modules/wcwidth (Files): Add m4/wchar_t.m4.
46829
46830 2006-06-28  Bruno Haible  <bruno@clisp.org>
46831
46832         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
46833         gt_TYPE_WCHAR_T.
46834
46835 2006-06-28  Bruno Haible  <bruno@clisp.org>
46836
46837         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
46838         declaration for wcwidth.
46839         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
46840
46841 2006-06-28  Bruno Haible  <bruno@clisp.org>
46842
46843         * lib/mkdtemp.c [MINGW]: Include <io.h>.
46844         (mkdir): Define using _mkdir.
46845
46846 2006-06-28  Bruno Haible  <bruno@clisp.org>
46847
46848         * lib/getaddrinfo.h: Fix POSIX URL.
46849         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
46850         _WIN32.
46851         (use_win32_p): Make static.
46852         (getaddrinfo): Reject service name if it is empty or does not consist
46853         solely of decimal digits, or if its value is > 65535.
46854         (getnameinfo): Remove useless casts.
46855
46856 2006-06-27  Simon Josefsson  <jas@extundo.com>
46857
46858         * modules/sys_select: New file, suggested by Bruno Haible, Paul
46859         Eggert and Martin Lambers.
46860
46861 2006-06-27  Simon Josefsson  <jas@extundo.com>
46862
46863         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
46864         Eggert and Martin Lambers.
46865
46866 2006-06-27  Bruno Haible  <bruno@clisp.org>
46867
46868         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
46869         result to 0, not to empty.
46870         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
46871
46872 2006-06-27  Bruno Haible  <bruno@clisp.org>
46873
46874         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
46875
46876 2006-06-26  Simon Josefsson  <jas@extundo.com>
46877
46878         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
46879         present.
46880
46881 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
46882
46883         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
46884         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
46885         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
46886
46887 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
46888
46889         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
46890
46891 2006-06-26  Bruno Haible  <bruno@clisp.org>
46892
46893         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
46894
46895 2006-06-26  Bruno Haible  <bruno@clisp.org>
46896
46897         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
46898
46899 2006-06-26  Bruno Haible  <bruno@clisp.org>
46900
46901         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
46902         SGI C compiler in pre-C99 mode.
46903         Suggested by Mark D. Baushke and Larry Jones.
46904
46905 2006-06-26  Bruno Haible  <bruno@clisp.org>
46906
46907         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
46908         WCHAR_MAX.
46909         Reported by Mark D. Baushke and Larry Jones.
46910
46911 2006-06-26  Bruno Haible  <bruno@clisp.org>
46912
46913         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
46914         in pre-C99 mode.
46915         Suggested by Mark D. Baushke and Larry Jones.
46916
46917 2006-06-23  Simon Josefsson  <jas@extundo.com>
46918             Bruno Haible  <bruno@clisp.org>
46919
46920         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
46921         Emit mostlyclean-local rule.
46922         (func_emit_tests_Makefile_am): Likewise.
46923         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
46924
46925 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
46926
46927         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
46928
46929 2006-06-23  Bruno Haible  <bruno@clisp.org>
46930
46931         * tests/test-stdint.c: Update to match ISO C 99 Technical
46932         Corrigendum 1.
46933
46934 2006-06-23  Bruno Haible  <bruno@clisp.org>
46935
46936         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
46937
46938 2006-06-23  Bruno Haible  <bruno@clisp.org>
46939
46940         * lib/stdint_.h: Treat IRIX like OpenBSD.
46941
46942 2006-06-23  Bruno Haible  <bruno@clisp.org>
46943
46944         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
46945         ISO C 99 Technical Corrigendum 1.
46946
46947 2006-06-22  Simon Josefsson  <jas@extundo.com>
46948
46949         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
46950         MinGW.
46951
46952 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
46953
46954         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
46955         needed.  Some compiler complained about some of them.  Problem reported
46956         by Larry Jones in
46957         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
46958
46959 2006-06-21  Simon Josefsson  <jas@extundo.com>
46960
46961         * tests/test-getaddrinfo.c: New file.
46962
46963         * modules/getaddrinfo-tests: New file.
46964
46965         * MODULES.html.sh: Add inet_pton.
46966
46967         * modules/inet_pton: New file.
46968
46969 2006-06-21  Simon Josefsson  <jas@extundo.com>
46970
46971         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
46972         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
46973         of using the (limited) gnulib implementation on Windows XP.
46974
46975         * m4/inet_pton.m4: New file.
46976
46977 2006-06-21  Simon Josefsson  <jas@extundo.com>
46978
46979         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
46980         variable.
46981
46982         * lib/socket_.h: Don't define WINVER.
46983
46984         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
46985         slightly modified to work in gnulib.
46986
46987 2006-06-21  Simon Josefsson  <jas@extundo.com>
46988
46989         * doc/gnulib.texi (Windows sockets): Add.
46990
46991 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
46992
46993         * lib/read-file.c (fread_file): Start with buffer allocation of
46994         0 bytes rather than 1 byte; this simplifies the code.
46995         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
46996         code to free buffer and save/restore errno.
46997         (internal_read_file): Remove unused local.
46998
46999 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
47000
47001         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
47002         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
47003         Problem reported by Denis Excoffier in
47004         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
47005
47006 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
47007
47008         * modules/sys_socket, modules/socklen: Include sys/types since
47009         FreeBSD 4.x's sys/socket.h needs it.
47010
47011 2006-06-19  Simon Josefsson  <jas@extundo.com>
47012
47013         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
47014
47015 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
47016
47017         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
47018
47019 2006-06-19  Bruno Haible  <bruno@clisp.org>
47020
47021         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
47022         and FULL_PATH_INTTYPES_H in angle brackets.
47023         Reported by Mark D. Baushke <mdb@gnu.org>.
47024
47025 2006-06-17  Eric Blake  <ebb9@byu.net>
47026
47027         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
47028         errno.
47029
47030 2006-06-17  Bruno Haible  <bruno@clisp.org>
47031
47032         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
47033         <sys/inttypes.h>.
47034
47035 2006-06-17  Bruno Haible  <bruno@clisp.org>
47036
47037         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
47038         whether errno is declared. Assume <errno.h> declares errno.
47039
47040 2006-06-17  Bruno Haible  <bruno@clisp.org>
47041
47042         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
47043
47044 2006-06-17  Bruno Haible  <bruno@clisp.org>
47045
47046         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
47047         problem on Solaris 2.5.1.
47048
47049 2006-06-16  Eric Blake  <ebb9@byu.net>
47050
47051         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
47052         * lib/unicodeio.c [!defined errno]: Likewise.
47053         * lib/strtol.c [!defined errno]: Likewise.
47054         * lib/strtod.c [!defined errno]: Likewise.
47055
47056 2006-06-15  Eric Blake  <ebb9@byu.net>
47057
47058         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
47059
47060 2006-06-15  Eric Blake  <ebb9@byu.net>
47061
47062         * config/srclist.txt (ssize_t.m4): Lose sync.
47063
47064 2006-06-15  Bruno Haible  <bruno@clisp.org>
47065
47066         * modules/stdint (Files): Include m4/full-header-path.m4,
47067         m4/size_max.m4, m4/wchar_t.m4.
47068         (Makefile.am): Many more substitutions.
47069         * modules/stdint-tests: New file.
47070         * tests/test-stdint.c: New file.
47071
47072 2006-06-15  Bruno Haible  <bruno@clisp.org>
47073
47074         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
47075         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
47076         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
47077         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
47078         gl_CHECK_TYPE_SAME): New macros.
47079
47080 2006-06-15  Bruno Haible  <bruno@clisp.org>
47081
47082         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
47083
47084 2006-06-15  Bruno Haible  <bruno@clisp.org>
47085
47086         * lib/stdint_.h: Rewritten to be fully auto-configured.
47087         Fixes bug on HP-UX/IA64.
47088
47089 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
47090
47091         * lib/getdate.y (__attribute__): Don't define if already defined.
47092         Problem reported by Larry Jones.
47093         * lib/utimens.c (__attribute__): Likewise.
47094
47095 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
47096
47097         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
47098         reported by Andreas Schwab.
47099
47100 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47101             Bruno Haible  <bruno@clisp.org>
47102
47103         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
47104         check for the declaration of strnlen and a run test that exposes the
47105         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
47106         rpl_strndup.
47107
47108 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47109             Bruno Haible  <bruno@clisp.org>
47110
47111         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
47112
47113 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47114
47115         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
47116         compile test, for Tru64 4.0D.
47117
47118 2006-05-28  Karl Berry  <karl@gnu.org>
47119
47120         * config/srclist.txt (printf-args.c): lose sync.
47121
47122 2006-05-26  Martin Lambers  <marlam@marlam.de>
47123
47124         * lib/getpass.c: Updates the test for the native W32 API, and adds
47125         missing includes, thus fixing compilation warnings.
47126
47127 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
47128
47129         * lib/exclude.c (exclude_fnmatch): New function.
47130         (excluded_file_name): Call exclude_fnmatch.
47131         * lib/exclude.h (excluded_file_name): New prototype
47132
47133 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
47134
47135         * lib/tempname.c (small_open, large_open): New macros.
47136         (__open, __open64) [!_LIBC]: Remove.
47137         (__gen_tempname): Use small_open and large_open instead of __open
47138         and __open64.  This fixes a portability bug on HP-UX 11.11i
47139         reported by Simon Wing-Tang in
47140         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
47141
47142 2006-05-24  Bruno Haible  <bruno@clisp.org>
47143
47144         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
47145         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
47146         Reported by Thorsten Maerz <torte@netztorte.de> via
47147         Aaron Stone <aaron@serendipity.cx>.
47148
47149 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
47150
47151         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
47152         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
47153         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
47154         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
47155         not really conditional on the cache.
47156         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
47157
47158 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
47159
47160         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
47161         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
47162         (my_usleep): Don't mishandle maximum value.
47163
47164 2006-05-19  Jim Meyering  <jim@meyering.net>
47165
47166         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
47167
47168 2006-05-17  Bruno Haible  <bruno@clisp.org>
47169
47170         Cygwin portability.
47171         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
47172
47173 2006-05-17  Bruno Haible  <bruno@clisp.org>
47174
47175         * lib/stdint_.h: Fix recognition of Cygwin.
47176
47177 2006-05-15  Bruno Haible  <bruno@clisp.org>
47178
47179         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
47180         on libtool patch by Ralf Wildenhues.
47181
47182 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
47183
47184         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
47185         test for C99 conformance; (bool) 0.5 is an integer constant
47186         expression, but (bool) -0.5 is not.  Problem reported by Fedor
47187         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
47188
47189 2006-05-11  Simon Josefsson  <jas@extundo.com>
47190
47191         * m4/xvasprintf.m4: Fix obvious typo.
47192
47193 2006-05-11  Jim Meyering  <jim@meyering.net>
47194
47195         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
47196         James Lemley.
47197
47198 2006-05-10  Simon Josefsson  <jas@extundo.com>
47199
47200         * lib/md4.c: Typo fix, update copyright years.
47201         (K1, K2): Don't use L because it turn computations into 64-bit on
47202         64-bit platforms.
47203
47204 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
47205
47206         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
47207         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
47208         unwanted sign propagation, e.g., on hosts with 64-bit int.
47209         There still are some problems with reeelly weird theoretical hosts
47210         (e.g., 33-bit int) but it's not worth worrying about now.
47211         * lib/sha1.c (rol): Likewise.
47212         (K1, K2, K3, K4): Remove unnecessary L suffix.
47213
47214 2006-05-10  Bruno Haible  <bruno@clisp.org>
47215
47216         * lib/des.c: Cast to avoid warnings.
47217
47218 2006-05-09  Bruno Haible  <bruno@clisp.org>
47219
47220         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
47221         (Depends-on): Depend also on xsize, stdarg.
47222         (configure.ac): Add gl_XVASPRINTF.
47223
47224 2006-05-09  Bruno Haible  <bruno@clisp.org>
47225
47226         * m4/xvasprintf.m4: New file.
47227
47228 2006-05-09  Bruno Haible  <bruno@clisp.org>
47229
47230         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
47231         (EOVERFLOW): Define fallback value.
47232         (xstrcat): New function.
47233         (xvasprintf): Recognize the special case of a string concatenation.
47234
47235 2006-05-08  Eric Blake  <ebb9@byu.net>
47236
47237         * gnulib-tool (func_version): Base copyright year on CVS date.
47238         (func_emit_copyright_notice): New function.
47239         (func_emit_lib_Makefile_am): Use it.
47240         (func_emit_tests_Makefile_am): Likewise.
47241         (func_import): Likewise.
47242
47243 2006-05-08  Bruno Haible  <bruno@clisp.org>
47244
47245         * modules/stdarg: New file.
47246         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
47247
47248 2006-05-08  Bruno Haible  <bruno@clisp.org>
47249
47250         * m4/stdarg.m4: New file, from GNU gettext.
47251
47252 2006-05-08  Bruno Haible  <bruno@clisp.org>
47253
47254         * config/srclist.txt (build-aux/config.rpath): different from latest
47255         release.
47256
47257 2006-05-08  Bruno Haible  <bruno@clisp.org>
47258
47259         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
47260
47261 2006-05-05  Jim Meyering  <jim@meyering.net>
47262
47263         * m4/warning.m4: New file, derived from bison's file by the same name.
47264
47265 2006-05-03  Bruno Haible  <bruno@clisp.org>
47266
47267         * lib/stdint_.h: Shorter URL.
47268         * lib/inttypes.h: Likewise.
47269
47270 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
47271
47272         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
47273
47274 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
47275
47276         * lib/verify.h: Document the internals better.  Most of this change
47277         was written by Bruno Haible.
47278
47279 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
47280
47281         * doc/verify.texi: New file, partly based on a proposal by
47282         Bruno Haible.
47283
47284 2006-05-02  Bruno Haible  <bruno@clisp.org>
47285
47286         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
47287         test from here...
47288         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
47289
47290 2006-04-29  Bruno Haible  <bruno@clisp.org>
47291
47292         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
47293         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
47294
47295 2006-04-29  Bruno Haible  <bruno@clisp.org>
47296
47297         * gnulib-tool: Make --update option actually work.
47298
47299 2006-04-29  Bruno Haible  <bruno@clisp.org>
47300
47301         * doc/gcd.texi: New file.
47302         * doc/gnulib.texi: Include it.
47303
47304 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
47305
47306         * lib/getdate.y (get_date): When adding relative date, start with the
47307         initial time, not with the result of the first mktime call.
47308
47309 2006-04-25  Bruno Haible  <bruno@clisp.org>
47310
47311         * gnulib-tool (func_import): Output the include directives in three
47312         blocks, sorted separately.
47313         Reported by Ben Pfaff <blp@cs.stanford.edu>.
47314
47315 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
47316
47317         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
47318         to define main with arguments, for C++.  Reported by Eric Blake.
47319         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
47320         Prefer 'int main ()' to 'int main (void)', for C++.
47321         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
47322         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
47323         for 'main', for C99 and C++.
47324
47325 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
47326
47327         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
47328         Don't assume that exit status -1 is valid.
47329         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
47330         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
47331         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
47332         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
47333         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
47334         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
47335         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
47336         functions can be used without declaring them, or that you can
47337         exit with status -1.
47338         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
47339
47340 2006-04-24  Karl Berry  <karl@gnu.org>
47341
47342         * config/srclist.txt (longdouble.m4): sync lost.
47343
47344 2006-04-24  Eric Blake  <ebb9@byu.net>
47345
47346         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
47347
47348 2006-04-24  Bruno Haible  <bruno@clisp.org>
47349
47350         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
47351         poll() implementation in AIX.
47352         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47353
47354 2006-04-24  Bruno Haible  <bruno@clisp.org>
47355
47356         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
47357         assigned exactly once.
47358
47359 2006-04-23  Claudio Fontana  <claudio@gnu.org>
47360             Bruno Haible  <bruno@clisp.org>
47361
47362         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
47363         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
47364         for AM_CPPFLAGS.
47365
47366 2006-04-23  Bruno Haible  <bruno@clisp.org>
47367
47368         * modules/copy-file: Depend on unistd.
47369         * modules/execute: Likewise.
47370         * modules/fatal-signal: Likewise.
47371         * modules/findprog: Likewise.
47372         * modules/mkdtemp : Likewise.
47373         * modules/pipe: Likewise.
47374         * modules/wait-process: Likewise.
47375
47376 2006-04-23  Bruno Haible  <bruno@clisp.org>
47377
47378         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
47379         condition was already detected.
47380         Reported by Ben Pfaff <blp@cs.stanford.edu>.
47381
47382 2006-04-23  Bruno Haible  <bruno@clisp.org>
47383
47384         * lib/copy-file.c: Include <unistd.h> unconditionally.
47385         * lib/execute.c: Likewise.
47386         * lib/fatal-signal.c: Likewise.
47387         * lib/findprog.c: Likewise.
47388         * lib/mkdtemp.c: Likewise.
47389         * lib/pipe.h: Likewise.
47390         * lib/pipe.c: Likewise.
47391         * lib/wait-process.h: Likewise.
47392
47393 2006-04-23  Bruno Haible  <bruno@clisp.org>
47394
47395         * gnulib-tool (func_usage): Fix --import description. Document
47396         --update.
47397         (func_import): Create temporary file in a temporary directory, if
47398         --dry-run is specified. Silence errors from 'grep' when there are no
47399         m4 files in $m4dir.
47400         (func_create_testdir): Silence errors from 'grep' when there are no
47401         m4 files in $m4dir.
47402         Reported by Karl Berry <karl@freefriends.org>.
47403
47404 2006-04-20  Bruno Haible  <bruno@clisp.org>
47405
47406         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
47407         one argument, so that the code will be portable to Autoconf 2.60.
47408         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
47409         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
47410         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
47411
47412 2006-04-19  Derek Price  <derek@ximbiot.com>
47413             Eric Blake  <ebb9@byu.net>
47414
47415         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
47416         rather than "/full/path.h".  Update comment to match.  Shorten &
47417         generalize m4_translit call via AS_TR_CPP.
47418
47419 2006-04-19  Derek Price  <derek@ximbiot.com>
47420             Eric Blake  <ebb9@byu.net>
47421
47422         * lib/inttypes.h: Correct grammar in comment.
47423
47424 2006-04-18  Derek Price  <derek@ximbiot.com>
47425             Paul Eggert  <eggert@cs.ucla.edu>
47426
47427         * modules/inttypes: New file.
47428         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
47429
47430 2006-04-18  Derek Price  <derek@ximbiot.com>
47431             Paul Eggert  <eggert@cs.ucla.edu>
47432
47433         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
47434         New files.
47435
47436 2006-04-18  Derek Price  <derek@ximbiot.com>
47437             Paul Eggert  <eggert@cs.ucla.edu>
47438
47439         * lib/inttypes.h: New file.
47440         * lib/strtoimax.c: Assume <inttypes.h>.
47441
47442 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
47443
47444         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
47445         isn't mounted.  Problem reported by Kir Kolyshkin.
47446
47447 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
47448
47449         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
47450         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
47451         Derek R. Price.
47452         * lib/regex.h (RE_DUP_MAX): Update comment to match current
47453         implementation.
47454
47455 2006-04-12  Eric Blake  <ebb9@byu.net>
47456
47457         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
47458         is now done automatically by the corresponding Autoconf macro.
47459
47460 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
47461
47462         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
47463         time_r.h.
47464
47465 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47466
47467         Merge regex changes from libc, removing some of our
47468         POSIX-conformance changes that were rejected and redoing them in a
47469         less-intrusive way.
47470
47471         * lib/regcomp.c (re_compile_internal, init_dfa):
47472         Length arg is now size_t, not Idx.  All uses changed.
47473         (peek_token): Forward decl now says internal_function.
47474         (__re_error_msgid, __re_error_msgid_idx):
47475         Now static rather than extern with attribute_hidden.
47476         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
47477         For some reason libc prefers K&R style defns for external functions.
47478         (regerror) [!defined _LIBC]: Likewise.
47479         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
47480         (seek_collating_symbol_entry, lookup_collation_sequence_value):
47481         (build_range_exp, build_collating_symbol):
47482         Use K&R-style defn.
47483         (re_compile_fastmap): Use '\0' to memset, not 0.
47484         (utf8_sb_map): Make the calculations more obvious.
47485         (init_dfa, parse_bracket_exp, build_charclass_op):
47486         Call calloc and cast result, as glibc does.
47487         (init_word_char, fetch_token, peek_token, peek_token_bracket):
47488         (build_range_exp, build_collating_symbol):
47489         Now internal functions.
47490
47491         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
47492
47493         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
47494         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
47495         Don't depend on VMS; depend on __VMS instead, for POSIX
47496         namespace cleanness.
47497         (regoff_t): Define to ssize_t, not long int.
47498
47499         Remove the REG_ macros named below.  Instead, make the old names
47500         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
47501         __USE_GNU_REGEX.
47502         (REG_BACKSLASH_ESCAPE_IN_LISTS):
47503         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
47504         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
47505         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
47506         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
47507         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
47508         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
47509         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
47510         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
47511         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
47512         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
47513         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
47514         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
47515         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
47516         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
47517         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
47518         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
47519         (REG_NREGS):
47520         Remove.  All uses replaced by the old RE_* names.
47521         (RE_BACKSLASH_ESCAPE_IN_LISTS):
47522         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
47523         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
47524         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
47525         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
47526         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
47527         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
47528         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
47529         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
47530         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
47531         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
47532         Don't bother having these macros be independent of each others'
47533         values, since they no longer exist in the POSIX name space.
47534
47535         Rename the following member names back to their old names,
47536         unless !__USE_GNU_REGEX.  All uses changed back.
47537         (buffer): Renamed from re_buffer.
47538         (allocated): Renamed from re_allocated.
47539         (used): Renamed from re_used.
47540         (syntax): Renamed from re_syntax.
47541         (fastmap): Renamed from re_fastmap.
47542         (translate): Renamed from re_translate.
47543         (can_be_null): Renamed from re_can_be_null.
47544         (regs_allocated): Renamed from re_regs_allocated.
47545         (fastmap_accurate): Renamed from re_fastmap_accurate.
47546         (no_sub): Renamed from re_no_sub.
47547         (not_bol): Renamed from re_not_bol.
47548         (not_eol): Renamed from re_not_eol.
47549         (newline_anchor): Renamed from re_newline_anchor.
47550         (num_regs): Renamed from rm_num_regs.
47551         (start): Renamed from rm_start.
47552         (end): Renamed from rm_end.
47553
47554         (free_state): Move up a bit.
47555
47556         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
47557         #define to be empty.
47558         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
47559         when that is what is intended.
47560         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
47561         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
47562         (MAX): New macro.
47563         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
47564         All uses changed back to re_malloc, etc.  It's now the caller's
47565         responsibility to check for overflow; all callers changed.
47566         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
47567         (re_x2nrealloc): Remove.
47568         (free_state): Remove decl.
47569
47570         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
47571         (re_set_registers, re_exec):
47572         Use K&R-style defn.
47573
47574         2006-01-31  Roland McGrath  <roland@redhat.com>
47575
47576         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
47577         Reported by Mike Frysinger <vapier@gentoo.org>.
47578
47579         2006-01-15  Andreas Jaeger  <aj@suse.de>
47580
47581         [BZ #1950]
47582         * lib/regex_internal.c (re_string_reconstruct): Adjust for
47583         build_wcs_upper_buffer change.
47584         (build_wcs_upper_buffer): Change return type.
47585
47586         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
47587
47588         * lib/regex_internal.h: Include <stdint.h> if available.
47589
47590         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
47591
47592         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
47593
47594         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
47595
47596         * lib/regcomp.c: Adjust for changed secondary hash function.
47597
47598         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
47599
47600         * lib/regex.h: Pretty printing.
47601         Clean up namespace a bit.
47602
47603         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
47604
47605         * lib/regexec.c (update_cur_sifted_state, check_arrival,
47606         check_arrival_add_next_nodes): Avoid using uninitialized variable.
47607
47608         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
47609                     Ulrich Drepper  <drepper@redhat.com>
47610
47611         [BZ #1302]
47612         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
47613         changed.
47614         (bitset_word_t): Renamed from bitset_word.  All uses changed.
47615
47616         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
47617
47618         [BZ #281]
47619         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
47620         * lib/regcomp.c: Remove unnecessary uses of
47621         unsigned RE_TRANSLATE_TYPE.
47622         * lib/regex_internal.h: Likewise.
47623         * lib/regex_internal.c: Likewise.
47624         * lib/regexec.c: Likewise.
47625         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
47626
47627         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
47628
47629         * lib/regexec.c (find_recover_state): Remove unnecessary
47630         initialization.
47631         (transit_state_bkref): Make DFA a const pointer.
47632         (get_subexp): Likewise.
47633         (check_arrival): Likewise.
47634         (update_cur_sifted_state): Likewise.
47635         (re_search_internal): Likewise.
47636         (prune_impossible_nodes): Likewise.
47637         (acquire_init_state_context): Likewise.
47638         (proceed_next_node): Likewise.
47639         (set_regs): Likewise.
47640         (free_fail_stack_return): Likewise.
47641         (check_arrival_expand_ecl): Mark DFA parameter as const.
47642         (check_arrival_expand_ecl_sub): Likewise.
47643         (check_subexp_limits): Likewise.
47644         (sub_epsilon_src_nodes):  Likewise.
47645         (add_epsilon_src_nodes):  Likewise.
47646         (merge_state_array): Likewise.
47647         (update_regs): Likewise.
47648         (build_trtable): Likewise.
47649         (sift_states_backward): Mark MCTX parameter as const.
47650         (build_sifted_states): Likewise.
47651         (update_cur_sifted_state): Likewise.
47652         (sift_states_mkref): Likewise.
47653         (check_arrival_expand_ecl): Mark eclosure as const.
47654         (check_dst_limits_calc_pos_1): Likewise.
47655         * lib/regex_internal.h (re_match_context_t): Make dfa a const
47656         pointer.
47657
47658         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
47659
47660         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
47661         (transit_state_sb): Likewise.
47662         (transit_state_mb): Likewise.
47663         (sift_states_iter_mb): Likewise.
47664         (check_arrival_add_next_nodes): Likewise.
47665         (check_node_accept_bytes): Change first parameter to pointer-to-const.
47666         [_LIBC] (re_search_2_stub): Use mempcpy.
47667
47668         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
47669         mbrtowc for very simple UTF-8 case.
47670
47671         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
47672         a pointer-to-const.
47673         (re_acquire_state_context): Likewise.
47674         * lib/regex_internal.h: Adjust prototypes.
47675
47676         * lib/regex.c: Prevent using C++ compilers.
47677
47678         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
47679         (re_acquire_state_context): Likewise.
47680
47681 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47682
47683         * modules/regex (Depends-on): Add ssize_t.
47684
47685 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47686
47687         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
47688         translation table.
47689
47690 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
47691
47692         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
47693
47694 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
47695             Bruno Haible  <bruno@clisp.org>
47696
47697         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
47698         <sys/types.h> and <inttypes.h>.
47699
47700 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47701
47702         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
47703         `__error_t_defined', so argp.h will not typedef the former.
47704
47705 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
47706
47707         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
47708         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
47709         glibc names.  Even if glibc is changed to conform to POSIX, the
47710         traditional names will be available anyway, since regex depends on
47711         the extensions module.  Also, fix a longstanding typo in the
47712         implementation of Spencer ERE test #75 from grep 2.3.  Problems
47713         reported by Emanuele Giaquinta.  Also, change sense of cached
47714         variable, so that the message makes sense.
47715
47716 2006-03-24  Simon Josefsson  <jas@extundo.com>
47717
47718         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
47719         including some doc fixes.
47720         (base64_encode_alloc): Fix +1 bug on allocation failures.
47721
47722 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47723
47724         * lib/base64.c (base64_encode): Do not read past end of array with
47725         unsanitized input on systems with CHAR_BIT > 8.
47726
47727 2006-03-24  Eric Blake  <ebb9@byu.net>
47728
47729         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
47730
47731 2006-03-22  Karl Berry  <karl@gnu.org>
47732
47733         * config/srclist.txt (*setenv.[ch]): get from coreutils.
47734         * config/srclistvars.sh (COREUTILS): new var.
47735
47736 2006-03-17  Jim Meyering  <jim@meyering.net>
47737
47738         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
47739         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
47740
47741 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47742
47743         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
47744         no longer needs it.  Instead, check that regoff_t is as least
47745         as wide as ptrdiff_t.
47746
47747         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
47748         so that our regex.h stays compatible with the installed regex.
47749         This is helpful for installers who configure --without-included-regex.
47750         Problem reported by Emanuele Giaquinta.
47751
47752 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
47753
47754         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
47755         Typedef to long int, not to off_, as POSIX will likely change
47756         in that direction.
47757
47758 2006-03-15  Eric Blake  <ebb9@byu.net>
47759
47760         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
47761
47762 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
47763
47764         * lib/argp-help.c (validate_uparams): Fix typo
47765         * lib/argp-parse.c (argp_default_options): Consistently begin help
47766         messages with a lowercase letter.
47767
47768 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
47769
47770         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
47771         overrun buffers and shouldn't be used (much as gets shouldn't be
47772         used).
47773         * lib/time_r.c (asctime_r, ctime_r): Likewise.
47774
47775 2006-03-08  Simon Josefsson  <jas@extundo.com>
47776
47777         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
47778         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47779
47780 2006-03-08  Simon Josefsson  <jas@extundo.com>
47781
47782         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
47783         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47784
47785 2006-03-08  Simon Josefsson  <jas@extundo.com>
47786
47787         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
47788         signal that configure disabled the device.
47789
47790 2006-03-08  Simon Josefsson  <jas@extundo.com>
47791
47792         * build-aux/maint.mk: Fix refresh-po, to handle no translated
47793         languages.
47794
47795 2006-03-07  Simon Josefsson  <jas@extundo.com>
47796
47797         * modules/getopt (Depends-on): Add unistd.
47798
47799         * modules/unistd: New file.
47800
47801 2006-03-07  Simon Josefsson  <jas@extundo.com>
47802
47803         * modules/gc-random: New file.
47804
47805 2006-03-07  Simon Josefsson  <jas@extundo.com>
47806
47807         * m4/unistd_h.m4: New file.
47808
47809 2006-03-07  Simon Josefsson  <jas@extundo.com>
47810
47811         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
47812         test to be side-effect free by storing the result in the cache
47813         variable gl_cv_lib_readline, and moving the assignment of
47814         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
47815         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
47816
47817 2006-03-07  Simon Josefsson  <jas@extundo.com>
47818
47819         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
47820         error on missing devices (the functions will return an error).
47821
47822         * m4/gc.m4: Move random stuff to gc-random.m4
47823
47824 2006-03-07  Simon Josefsson  <jas@extundo.com>
47825
47826         * lib/unistd_.h: New file.
47827
47828 2006-03-07  Simon Josefsson  <jas@extundo.com>
47829
47830         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
47831
47832 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47833
47834         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
47835         Problem reported by Juan Manuel Guerrero.
47836
47837 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47838
47839         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
47840         the unistd module.
47841         * lib/getlogin_r.c: Likewise.
47842         * lib/getlogin_r.h: Likewise.
47843         * lib/glob.c: Likewise.
47844         * lib/pagealign_alloc.c: Likewise.
47845         * lib/unistd_.h: Remove; no longer needed.
47846
47847 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
47848
47849         * MODULES.html.sh (Support for systems lacking POSIX:2001):
47850         Add unistd.
47851         * modules/c-stack (Depends-on): Add unistd.
47852         * modules/getlogin_r: Likewise.
47853         * modules/glob: Likewise.
47854         * modules/pagealign_alloc: Likewise.
47855         * modules/unistd (Files): Remove lib/unistd_.h.
47856         (EXTRA_DIST): Remove.
47857         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
47858         need unistd_.h.
47859         (MOSTLYCLEANFILES): Remove unistd.h-t.
47860
47861 2006-03-03  Simon Josefsson  <jas@extundo.com>
47862
47863         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
47864
47865 2006-03-03  Simon Josefsson  <jas@extundo.com>
47866
47867         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
47868         libidn and bison.
47869
47870 2006-03-03  Simon Josefsson  <jas@extundo.com>
47871
47872         * build-aux/maint.mk: Add indent target.
47873
47874 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
47875
47876         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
47877         our replacement poll.h in any case, to avoid a differing
47878         declaration from a system header.  Seen on AIX.
47879
47880 2006-03-01  Simon Josefsson  <jas@extundo.com>
47881
47882         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
47883         <kasal@ucw.cz>.
47884
47885 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
47886
47887         * modules/gettime (Depends-on): Add extensions module.
47888         * modules/nanosleep (Depends-on): Likewise.
47889         * modules/settime (Depends-on): Likewise.
47890
47891 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
47892
47893         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
47894         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
47895         pedantically.
47896         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
47897         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
47898
47899         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
47900         not "==".  Reported by Ralf Wildenhues.
47901
47902 2006-03-01  Karl Berry  <karl@gnu.org>
47903
47904         * doc/Copyright/request-*: new files, synced from gnuorg.
47905
47906 2006-03-01  Karl Berry  <karl@gnu.org>
47907
47908         * config/srclist.txt (Copyright/*): new entries.
47909
47910 2006-02-28  Simon Josefsson  <jas@extundo.com>
47911
47912         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
47913
47914 2006-02-27  Simon Josefsson  <jas@extundo.com>
47915
47916         * lib/base64.h: Indent #define's.  From Jim Meyering
47917         <jim@meyering.net>.
47918
47919 2006-02-27  Jim Meyering  <jim@meyering.net>
47920
47921         Revert the change of 2006-02-24, so these files can continue
47922         to be sync'd from gettext.
47923         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
47924         of `config.h'.
47925
47926 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
47927
47928         * modules/intprops: New file.
47929         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
47930         Add intprops.
47931         * modules/getloadavg (Files): Remove lib/intprops.h.
47932         (Depends-on): Add intprops.
47933         * modules/human: Likewise.
47934         * modules/inttostr: Likewise.
47935         * modules/openat: Likewise.
47936         * modules/sig2str: Likewise.
47937         * modules/userspec: Likewise.
47938         * modules/utimecmp: Likewise.
47939         * modules/xnanosleep: Likewise.
47940         * modules/xstrtol: Likewise.
47941
47942 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
47943
47944         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
47945         * modules/lock-tests (TESTS): Use $(EXEEXT).
47946         * modules/tls-tests: Likewise.
47947         * modules/argp-tests: Likewise.
47948         (check_PROGRAMS): New var, replacing...
47949         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
47950
47951 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47952
47953         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
47954         `config.h'.
47955
47956 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
47957
47958         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
47959
47960 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47961
47962         Sync from coreutils.
47963         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
47964         gl_CHDIR_SAFER.
47965
47966 2006-02-22  Jim Meyering  <jim@meyering.net>
47967
47968         Sync from coreutils.
47969         * m4/chdir-safer.m4: New file.
47970
47971 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
47972
47973         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
47974         AT_FDCWD exceeds INT_MAX.
47975         * lib/openat.h (AT_FDCWD): Likewise.
47976
47977 2006-02-17  Eric Blake  <address@hidden>
47978
47979         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
47980
47981 2006-02-16  Simon Josefsson  <jas@extundo.com>
47982
47983         * modules/getaddrinfo (Depends-on): Add sys_socket.
47984
47985 2006-02-15  Simon Josefsson  <jas@extundo.com>
47986
47987         * build-aux/maint.mk: Add dsyntax-check rule.
47988
47989 2006-02-15  Eric Blake  <ebb9@byu.net>
47990
47991         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
47992         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
47993         'present but cannot compile' warnings on cygwin.
47994         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
47995         use ws2tcpip.h if sys/socket.h works.
47996         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
47997         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
47998
47999 2006-02-14  Simon Josefsson  <jas@extundo.com>
48000
48001         * modules/maintainer-makefile (Files): Rename.
48002
48003         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
48004         and (the local) Makefile.cfg to maint-cfg.mk.
48005
48006         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
48007         to the latter.
48008
48009         * modules/maintainer-makefile: New module.
48010
48011         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
48012         severaly stripped to make it possible to build it up from scratch
48013         with reliable tests.
48014
48015         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
48016         fixes to permit overriding the default actions when configure and
48017         makefile are not available.
48018
48019 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
48020
48021         Sync from coreutils.
48022         * modules/lstat (Depends-on): Don't depend on xalloc.
48023         (License): Change from GPL to LGPL, since this is now simply a
48024         replacement for a libc function.
48025
48026 2006-02-14  Jim Meyering  <jim@meyering.net>
48027
48028         Sync from coreutils.
48029
48030         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
48031         failure on deficient systems, and simplify gnulib lgpl dependencies.
48032         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
48033         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
48034
48035         * lib/xalloc-die.c: Remove unused definition of N_.
48036
48037 2006-02-14  Jim Meyering  <jim@meyering.net>
48038
48039         Sync from coreutils.
48040         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
48041         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
48042         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
48043         double-quote uses of that variable, to accommodate the rare case in
48044         which getmntent is available in none of the libraries checked.  This
48045         happens at least on FreeBSD 5.0.
48046
48047 2006-02-13  Simon Josefsson  <jas@extundo.com>
48048
48049         * gnulib-tool (Usage): Fix --import, from
48050         karl@freefriends.org (Karl Berry).
48051
48052 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
48053
48054         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
48055
48056 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
48057
48058         * lib/argp-namefrob.h: Restore changes accidentally lost during the
48059         "autoupdate" on 2005-12-12.
48060
48061 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
48062
48063         * modules/closeout (Depends-on): Remove atexit.
48064
48065 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
48066
48067         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
48068         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
48069
48070 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
48071
48072         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
48073         __EXTENSIONS__ if this causes compilation to fail.  Problem
48074         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
48075         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
48076
48077 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
48078
48079         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
48080         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
48081         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
48082         All uses changed.
48083
48084 2006-01-26  Simon Josefsson  <jas@extundo.com>
48085
48086         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
48087         prototype is visible on mingw32.
48088
48089         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
48090         for mingw32.
48091
48092         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
48093         mingw32).
48094
48095 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
48096
48097         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
48098         attempt to open for write; this always fails, at least on POSIX
48099         hosts.  This reinstates the 2006-01-09 change, which was
48100         inadvertently removed.
48101
48102 2006-01-26  Bruno Haible  <bruno@clisp.org>
48103
48104         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
48105         Reported by Paul Eggert.
48106
48107 2006-01-26  Bruno Haible  <bruno@clisp.org>
48108             Paul Eggert  <eggert@cs.ucla.edu>
48109
48110         * lib/stdbool_.h (_Bool)
48111         [(! (defined __cplusplus || defined __BEOS__)
48112           && !defined __GNUC__
48113           && !(defined __HP_cc || defined __xlc__
48114                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
48115                || defined __sgi))]:
48116         #define to signed char in these cases too; this simplifies
48117         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
48118         etc., separately) and makes it more conservative.
48119
48120 2006-01-25  Simon Josefsson  <jas@extundo.com>
48121
48122         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
48123         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
48124         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
48125
48126 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
48127
48128         * lib/argp-namefrob.h: Bugfix. Remove stray #
48129
48130 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
48131
48132         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
48133         so that we test the test.
48134         Check for yet another HP-UX cc bug involving *bool |= bool.
48135
48136 2006-01-25  Karl Berry  <karl@gnu.org>
48137
48138         * config/srclist.txt (vasnprintf.c): sync lost.
48139
48140 2006-01-25  Jim Meyering  <jim@meyering.net>
48141
48142         Sync from the stable (b5) branch of coreutils:
48143
48144         * lib/fts.c (fts_children): Don't let close() clobber errno from
48145         failed fchdir().
48146
48147         * lib/fts.c (fts_stat): When following a symlink-to-directory,
48148         don't necessarily interpret stat-fails+lstat-succeeds as indicating
48149         a dangling symlink.  That can also happen at least for ELOOP.
48150         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
48151         FYI, this bug predates the inclusion of fts.c in coreutils.
48152
48153         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
48154         in their own block, so pre-c99 compilers don't object.
48155
48156         Avoid the double-free (first in fts_read, second in fts_close) that
48157         would occur when an `active' directory is made inaccessible (e.g.,
48158         via chmod a-x) during a traversal.
48159         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
48160         before returning.  Reproduce this failure by
48161         mkdir -p a/b; cd a; chmod a-x . b
48162         Reported by Stavros Passas.
48163
48164 2006-01-25  Jim Meyering  <jim@meyering.net>
48165
48166         * lib/fileblocks.c: Remove more useless parentheses.
48167         * lib/readutmp.h: Likewise.
48168
48169 2006-01-25  Bruno Haible  <bruno@clisp.org>
48170
48171         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
48172         warnings.
48173         Reported by Paul Eggert.
48174
48175 2006-01-25  Bruno Haible  <bruno@clisp.org>
48176
48177         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
48178         rid of a trap command. For Solaris sh.
48179         Reported by Mark D. Baushke <mdb@gnu.org>.
48180
48181 2006-01-24  Simon Josefsson  <jas@extundo.com>
48182
48183         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
48184         Bruno.
48185
48186 2006-01-24  Karl Berry  <karl@gnu.org>
48187
48188         * config/srclist.txt (argp-namefrob.h): sync lost.
48189
48190 2006-01-24  Jim Meyering  <jim@meyering.net>
48191
48192         * modules/openat (Files): Add lib/intprops.h.
48193         From Mark D. Baushke.
48194
48195 2006-01-24  Jim Meyering  <jim@meyering.net>
48196
48197         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
48198         Reported by Mark D. Baushke.
48199
48200 2006-01-24  Jim Meyering  <jim@meyering.net>
48201
48202         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
48203
48204 2006-01-24  Bruno Haible  <bruno@clisp.org>
48205
48206         * modules/strnlen (Maintainer): Change from glibc to all.
48207
48208 2006-01-24  Bruno Haible  <bruno@clisp.org>
48209
48210         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
48211         Patch by Paul Eggert.
48212
48213 2006-01-24  Bruno Haible  <bruno@clisp.org>
48214
48215         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
48216         already has it.
48217         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
48218         2005-11-26.
48219
48220         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
48221         'signed char' to avoid problems with the built-in _Bool type.
48222         Reported by Paul Eggert on 2005-11-26.
48223
48224 2006-01-24  Bruno Haible  <bruno@clisp.org>
48225
48226         * gnulib-tool (func_import): Avoid constructing complicated sed
48227         expressions inside backquote.
48228         Report and solution by Mark D. Baushke <mdb@gnu.org>.
48229
48230 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
48231
48232         These changes imported from libc.
48233         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
48234         test and two separate function calls.
48235         * lib/strndup.c (__strndup): Add libc_hidden_def.
48236
48237 2006-01-23  Simon Josefsson  <jas@extundo.com>
48238
48239         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
48240         Remove the test_*_SOURCES variable: automake infers it by default.
48241         * modules/tls-tests: Likewise.
48242
48243 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
48244
48245         Work around porting bugs reported by Dieter in
48246         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
48247         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
48248         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
48249         Include "getopt.h" first, to check interface.
48250         (getenv): Declare only if defined HAVE_DECL_GETENV &&
48251         !HAVE_DECL_GETENV.
48252         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
48253         (__strndup): Revert to K&R-style function dfns, the glibc style.
48254         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
48255         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
48256         Include strnlen.h first, to get prototype properly.
48257         (strnlen): Renamed from __strnlen.
48258         Remove weak alias.
48259
48260 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
48261
48262         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
48263
48264 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
48265
48266         * config/srclist.txt: Adjust to reflect glibc reorganization.
48267         This affects only comments.
48268
48269 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
48270
48271          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
48272          Reported by Bruce Korb <bkorb@gnu.org>.
48273
48274 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
48275
48276         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
48277         to pacify gcc -Wswitch-default.
48278
48279 2006-01-22  Bruno Haible  <bruno@clisp.org>
48280
48281         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
48282         temporary buffer for sprintf, take into account the precision also
48283         for 'd', 'i', 'u', 'o', 'x', 'X'.
48284
48285 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
48286
48287         * modules/argp-tests: New module
48288         * tests/test-argp.c: New file
48289         * tests/test-argp-2.sh: New file
48290
48291 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
48292
48293         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
48294         (__argp_base_name): Removed
48295         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
48296         typo.
48297         (__argp_base_name): Provide macro definition or extern declaration
48298         depending on the configuration
48299
48300 2006-01-20  Simon Josefsson  <jas@extundo.com>
48301
48302         * modules/inet_ntop (Depends-on): Depend on sys_socket.
48303
48304 2006-01-20  Simon Josefsson  <jas@extundo.com>
48305
48306         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
48307
48308 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
48309
48310         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
48311         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
48312         Suggested by Bruno Haible.
48313
48314 2006-01-20  Karl Berry  <karl@gnu.org>
48315
48316         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
48317         until changes propagate, I guess.
48318
48319 2006-01-19  Simon Josefsson  <jas@extundo.com>
48320
48321         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
48322
48323 2006-01-19  Simon Josefsson  <jas@extundo.com>
48324
48325         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
48326
48327 2006-01-19  Simon Josefsson  <jas@extundo.com>
48328
48329         * gnulib-tool: Set check_PROGRAMS.
48330
48331         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
48332         modules/des-tests, modules/gc-arcfour-tests,
48333         modules/gc-arctwo-tests, modules/gc-des-tests,
48334         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
48335         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
48336         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
48337         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
48338         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
48339         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
48340         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
48341         test_*_SOURCES.
48342
48343 2006-01-18  Simon Josefsson  <jas@extundo.com>
48344
48345         * modules/socklen (Depends-on): Depend on sys_socket.
48346
48347 2006-01-18  Simon Josefsson  <jas@extundo.com>
48348
48349         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
48350         modules/des-tests, modules/gc-arcfour-tests,
48351         modules/gc-arctwo-tests, modules/gc-des-tests,
48352         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
48353         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
48354         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
48355         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
48356         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
48357         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
48358         $(EXEEXT) to automake TESTS variable, for mingw32.
48359
48360 2006-01-17  Simon Josefsson  <jas@extundo.com>
48361
48362         * modules/socklen (Include): Need sys/socket.h.
48363
48364 2006-01-17  Bruno Haible  <bruno@clisp.org>
48365
48366         * modules/ssize_t (Include): Add <sys/types.h>.
48367
48368 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
48369
48370         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
48371         it's not portable and it doesn't work with cross-compiles.
48372         Problem reported by Bruno Haible.  Fix missing-$ typo in
48373         'test "gl_cv_ignore_unused_libraries" ...' that prevented
48374         -zignore from being used with Sun's C compiler.
48375
48376 2006-01-12  Simon Josefsson  <jas@extundo.com>
48377
48378         * lib/base64.c: Fix warning, reported by Bruno Haible
48379         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
48380
48381 2006-01-12  Bruno Haible  <bruno@clisp.org>
48382
48383         * modules/ldd: New file.
48384         * build-aux/ldd.sh.in: New file.
48385         * MODULES.html.sh (Support for building libraries and executables): Add
48386         ldd.
48387
48388 2006-01-12  Bruno Haible  <bruno@clisp.org>
48389
48390         * m4/ldd.m4: New file.
48391
48392 2006-01-12  Bruno Haible  <bruno@clisp.org>
48393
48394         * gnulib-tool (func_import, func_create_testdir): Don't go into an
48395         endless loop while replacing $auxdir with build-aux.
48396
48397 2006-01-11  Simon Josefsson  <jas@extundo.com>
48398
48399         * lib/stdint_.h (SIZE_MAX): Add missing (.
48400
48401 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
48402
48403         Sync from coreutils.
48404         * lib/md5.c: Fix commentary typos.
48405         (alignof, UNALIGNED_P): No need for a GCC-specific version.
48406         * lib/md5.h (__attribute__): Remove; unused.
48407         * lib/sha1.c: Fix commentary to match md5 better.
48408         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
48409         so that we don't need to worry about alignment.  All uses changed.
48410         This merges the 2005-10-28 md5 change into sha1.
48411
48412 2006-01-11  Jim Meyering  <jim@meyering.net>
48413
48414         Sync from coreutils.
48415         * lib/md5.c (OP): Fix spacing.
48416
48417 2006-01-11  Bruno Haible  <bruno@clisp.org>
48418
48419         Ensure automatic ordering between gl_LOCK and gl_ARGP.
48420         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
48421         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
48422
48423 2006-01-11  Bruno Haible  <bruno@clisp.org>
48424
48425         Ensure automatic ordering between gl_LOCK and gl_ARGP.
48426         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
48427         the "early" section as well.
48428
48429 2006-01-11  Bruno Haible  <bruno@clisp.org>
48430
48431         Avoid "ar: no archive members specified" error on MacOS X.
48432         * gnulib-tool (func_modules_add_dummy): New function.
48433         (func_import, func_create_testdir): Invoke it.
48434
48435 2006-01-11  Bruno Haible  <bruno@clisp.org>
48436
48437         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
48438         with $auxdir in AC_CONFIG_FILES statements.
48439
48440 2006-01-11  Bruno Haible  <bruno@clisp.org>
48441
48442         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
48443         Initialize also noinst_HEADERS to empty.
48444
48445 2006-01-11  Bruno Haible  <bruno@clisp.org>
48446
48447         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
48448         variables.
48449         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
48450         autoreconf.
48451
48452 2006-01-11  Bruno Haible  <bruno@clisp.org>
48453
48454         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
48455         overridable by the user.
48456         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48457
48458 2006-01-10  Simon Josefsson  <jas@extundo.com>
48459
48460         * modules/sys_socket: New file.
48461
48462 2006-01-10  Simon Josefsson  <jas@extundo.com>
48463
48464         * m4/sys_socket_h.m4: New file.
48465
48466 2006-01-10  Simon Josefsson  <jas@extundo.com>
48467
48468         * lib/socket_.h: New file.
48469
48470 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
48471
48472         * modules/readutmp (Maintainer): Add myself.
48473
48474 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
48475
48476         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
48477         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
48478         People who are still concerned with buggy memcmp implementations
48479         can invoke gl_FUNC_MEMCMP themselves.
48480
48481 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
48482
48483         * lib/regex_internal.h (BITSET_WORD_BITS):
48484         Work around a bug in 64-bit PGC (before version 6.1-2), where the
48485         preprocessor mishandles large unsigned values as if they were signed.
48486         Problem reported by Claudio Fontana in
48487         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
48488
48489 2006-01-10  Jim Meyering  <jim@meyering.net>
48490
48491         Avoid the double-free (first in fts_read, second in fts_close) that
48492         would occur when an `active' directory is made inaccessible (e.g.,
48493         via chmod a-x) during a traversal.
48494         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
48495         before returning.  Reproduce this failure by
48496         mkdir -p a/b; cd a; chmod a-x . b
48497         Reported by Stavros Passas.
48498
48499         Sync from coreutils.
48500         * lib/sha1.c: Tweak grammar in a comment.
48501
48502 2006-01-10  Jim Meyering  <jim@meyering.net>
48503
48504         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
48505         Patch by Joerg Sonnenberger.
48506
48507 2006-01-10  Bruno Haible  <bruno@clisp.org>
48508
48509         * modules/readutmp: Depend on module free.
48510         * modules/strtok_r: Depend on module restrict.
48511
48512 2006-01-10  Bruno Haible  <bruno@clisp.org>
48513
48514         * modules/gettext (configure.ac): Add an invocation of
48515         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
48516
48517 2006-01-10  Bruno Haible  <bruno@clisp.org>
48518
48519         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
48520         Reported by Werner Lemberg <wl@gnu.org>.
48521
48522 2006-01-10  Bruno Haible  <bruno@clisp.org>
48523
48524         * lib/localcharset.c: Update from GNU gettext.
48525
48526 2006-01-10  Bruno Haible  <bruno@clisp.org>
48527
48528         * lib/argp.h (__const): Remove macro. Use const instead.
48529         * lib/argp-fmtstream.h (__const): Likewise.
48530         * lib/glob_.h (__const): Remove macro.
48531         * lib/glob-libc.h: Use const instead of __const.
48532
48533 2006-01-10  Bruno Haible  <bruno@clisp.org>
48534
48535         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
48536         variable.
48537         Needed to avoid an automake error regarding the 'gettext' module.
48538
48539 2006-01-09  Simon Josefsson  <jas@extundo.com>
48540
48541         * modules/inet_ntop (Depends-on): Add restrict.
48542
48543 2006-01-09  Simon Josefsson  <jas@extundo.com>
48544
48545         * modules/gc-rijndael-tests (License): Put under LGPL.
48546
48547         * modules/gc-des-tests (License): Likewise.
48548
48549         * modules/gc-arcfour-tests (License): Likewise.
48550
48551         * modules/gc-arctwo-tests (License): Likewise.
48552
48553         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
48554
48555         * modules/gc-hmac-sha1-tests (Files): Likewise.
48556
48557         * modules/gc-hmac-md5-tests (License): Likewise.
48558
48559         * modules/gc-sha1-tests (License): Likewise.
48560
48561         * modules/gc-md5-tests (License): Likewise.
48562
48563         * modules/gc-md4-tests (License): Likewise.
48564
48565         * modules/gc-md2-tests (License): Likewise.
48566
48567         * modules/gc-tests (License): Likewise.
48568
48569         * modules/des-tests (License): Likewise.
48570
48571         * modules/md4-tests (License): Likewise.
48572
48573         * modules/md2-tests (License): Likewise.
48574
48575 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48576
48577         Sync from coreutils:
48578
48579         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
48580         * modules/lib-ignore: New file.
48581         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
48582         chdir-safer.m4, lchmod.m4.
48583         * modules/openat: Add mkdirat.c, openat-priv.h.
48584
48585 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48586
48587         Sync from coreutils.
48588         * m4/lib-ignore.m4: New file.
48589         * m4/lchmod.m4: New file.
48590
48591 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48592
48593         Sync from coreutils.
48594         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
48595         for write access: POSIX says that must fail.
48596         * lib/fts.c (diropen): Likewise.
48597         * lib/save-cwd.c (save_cwd): Likewise.
48598         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
48599         well, for minor improvements on hosts that lack O_DIRECTORY.
48600         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
48601         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
48602         Fall back on chown if open failed with EACCES.
48603
48604         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
48605         Report an error at compile-time if only a 1-second nominal clock
48606         resolution is found.
48607
48608         * lib/lchmod.h: New file.
48609         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
48610         (make_dir_parents): Use lchown rather than chown, and
48611         lchmod rather than chmod.
48612
48613         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
48614         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
48615         "proc" reported by n0dalus.
48616
48617         * lib/mountlist.c: Include <limits.h>.
48618         (dev_from_mount_options)
48619         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
48620         New function.  It no longer assumes "dev=" has the System V meaning
48621         on Linux (since it doesn't).  It also parses "dev=" more carefully.
48622         (read_file_system_list)
48623         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
48624         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
48625         dev= in that case.
48626
48627         * lib/posixtm.h (PDS_PRE_2000): New macro.
48628         * lib/posixtm.c (year): Arg is now syntax_bits rather than
48629         allow_century.  All usages changed.  Reject dates outside the range
48630         1969-1999 if PDS_PRE_2000 is used.
48631
48632 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
48633
48634         Sync from coreutils.
48635         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
48636         (Time of day items): Mention the possibility of leap seconds.
48637         Problem reported by Dr. David Alan Gilbert.
48638
48639 2006-01-09  Jim Meyering  <jim@meyering.net>
48640
48641         Sync from coreutils.
48642
48643         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
48644
48645         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
48646
48647         * lib/modechange.c (mode_compile): Reject an invalid mode string
48648         that starts with an octal digit.  From Andreas Gruenbacher.
48649
48650         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
48651         and dup to open_safer and dup_safer, respectively.
48652         (openat_permissive): Fix typo in comment.
48653
48654         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
48655         "gettext.h"; either no longer needed or are guaranteed by openat.h.
48656         (_): Remove; no longer needed.
48657         (openat): Renamed from rpl_openat; no need for rpl_openat
48658         since openat.h renames openat for us.
48659         Replace most of the body with a call to openat_permissive,
48660         to avoid duplicate code.
48661         Port to (probably hypothetical) environments were mode_t is
48662         wider than int.
48663         (openat_permissive): Require mode arg, so that we can check
48664         types better.  Put it just after flags.  Change cwd failure
48665         indicator from pointer-to-bool to pointer-to-errno-value.
48666         All callers changed.
48667         Invoke openat_save_fail and/or openat_restore_fail if
48668         cwd_errno is null, so that openat can call us.
48669         (openat_permissive, fdopendir, fstatat, unlinkat):
48670         Simplify errno handling to avoid some duplicate code,
48671         as it's OK to set errno on success.
48672         * lib/openat.h: Revamp code so that function macros depend on
48673         __OPENAT_PREFIX only, not also on AT_FDCWD.
48674         (openat_ro): Remove.  Caller changed to use openat_permissive.
48675         (openat_permissive): Now a macro, if not a function.
48676         (openat_restore_fail, openat_save_fail): Now always functions,
48677         since mkdirat needs them even if __OPENAT_PREFIX is defined.
48678
48679         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
48680         and openat.c.
48681         * lib/mkdirat.c: Include openat-priv.h.
48682         Remove definitions of macros defined therein.
48683         * lib/openat.c: Likewise.
48684
48685         * lib/mkdirat.c (mkdirat): New file and function.
48686         * lib/openat.h (mkdirat): Declare.
48687
48688         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
48689
48690         * lib/openat.h (openat_permissive): Declare.
48691         (openat_ro): Define.
48692
48693         * lib/openat.c (EXPECTED_ERRNO): New macro.
48694         (openat_permissive): New function -- used in remove.c rewrite.
48695         (all functions): Set errno just before returning, only if there
48696         was an actual failure.
48697         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
48698
48699         Emulate openat-family functions using Linux's procfs, if possible.
48700         Idea and some code based on Ulrich Drepper's glibc changes.
48701
48702         * lib/openat.c: (BUILD_PROC_NAME): New macro.
48703         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
48704         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
48705         before falling back on save_cwd and restore_cwd.
48706         (fdopendir, fstatat, unlinkat): Likewise.
48707
48708         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
48709         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
48710
48711         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
48712         as second argument to va_arg.  Otherwise, some versions of gcc
48713         warn that `if this code is reached, the program will abort'.
48714
48715 2006-01-09  Jim Meyering  <jim@meyering.net>
48716
48717         Sync from coreutils.
48718         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
48719         Require openat-priv.h.
48720
48721 2006-01-09  Bruno Haible  <bruno@clisp.org>
48722
48723         * modules/strnlen (Include): Use strnlen.h.
48724
48725 2006-01-09  Bruno Haible  <bruno@clisp.org>
48726
48727         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
48728
48729 2006-01-09  Bruno Haible  <bruno@clisp.org>
48730
48731         * lib/sysexit_.h (EX_OK): New macro.
48732         Suggested by Martin Lambers <marlam@marlam.de>.
48733
48734 2006-01-09  Bruno Haible  <bruno@clisp.org>
48735
48736         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
48737         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
48738
48739 2006-01-09  Bruno Haible  <bruno@clisp.org>
48740
48741         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
48742         numbers.
48743
48744 2006-01-09  Bruno Haible  <bruno@clisp.org>
48745
48746         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
48747         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
48748         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
48749         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
48750
48751 2006-01-09  Bruno Haible  <bruno@clisp.org>
48752
48753         * build-aux/javacomp.sh.in: New file, moved from lib/.
48754         * modules/javacomp-script (Files): Update.
48755         (configure.ac): Add AC_CONFIG_FILES invocation.
48756         (EXTRA_DIST): Remove variable.
48757
48758         * build-aux/javaexec.sh.in: New file, moved from lib/.
48759         * modules/javaexec (Files): Update.
48760         (configure.ac): Add AC_CONFIG_FILES invocation.
48761         (EXTRA_DIST): Remove javaexec.sh.in.
48762
48763         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
48764         * modules/csharpcomp-script (Files): Update.
48765         (configure.ac): Add AC_CONFIG_FILES invocation.
48766         (EXTRA_DIST): Remove variable.
48767
48768         * build-aux/csharpexec.sh.in: New file, moved from lib/.
48769         * modules/csharpexec (Files): Update.
48770         (configure.ac): Add AC_CONFIG_FILES invocation.
48771         (EXTRA_DIST): Remove csharpexec.sh.in.
48772
48773 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48774
48775         Sync from coreutils.
48776
48777         Add POSIX ACL support
48778         * lib/acl.h (copy_acl, set_acl): Add declarations.
48779         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
48780         systems other than Linux.
48781         (chmod_or_fchmod): New function: use fchmod when possible,
48782         and chmod otherwise.
48783         (file_has_acl): Add a POSIX ACL implementation, with a
48784         Linux-specific subcase.
48785         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
48786         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
48787         acls are unsupported.
48788         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
48789         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
48790         are unsupported.
48791
48792 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
48793
48794         Sync from coreutils.
48795         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
48796
48797 2006-01-07  Bruno Haible  <bruno@clisp.org>
48798
48799         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
48800         gl_EARLY.
48801
48802 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48803
48804         * lib/strftime.c (tzname): Don't declare if it is already #defined.
48805         Problem reported for Mingw by Mark Junker.
48806
48807 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
48808
48809         * README: Gnulib normally doesn't generate a tarball.
48810
48811 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
48812
48813         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
48814         long int, not int, for nanosecond counts, so that people who are
48815         used to POSIX struct timespec won't be surprised.  Reported by Jim
48816         Meyering.
48817
48818 2005-12-28  Bruno Haible  <bruno@clisp.org>
48819
48820         * build-aux/config.rpath: Update from GNU gettext.
48821
48822 2005-12-16  Jim Meyering  <jim@meyering.net>
48823
48824         * modules/fprintftime: New module.
48825         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
48826
48827 2005-12-16  Jim Meyering  <jim@meyering.net>
48828
48829         * m4/fprintftime.m4: New file.
48830
48831 2005-12-16  Jim Meyering  <jim@meyering.net>
48832
48833         * lib/fprintftime.c, lib/fprintftime.h: New files.
48834
48835 2005-12-15  Simon Josefsson  <jas@extundo.com>
48836
48837         * modules/socklen (configure.ac): Fix M4 macro name, to align with
48838         new m4/socklen.m4.
48839
48840 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
48841
48842         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
48843         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
48844
48845 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
48846
48847         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
48848         * lib/argp-help.c (fill_in_uparams): Check if the constructed
48849         struct uparams is valid. Fall back to the default values if it is
48850         not.
48851
48852 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48853
48854         * modules/argp (Files): Add argp-pin.c
48855         (Depends-on): dirname
48856         (lib_SOURCES): Add argp-pin.c
48857
48858 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48859
48860         * m4/argp.m4:  Check if program_invocation_name and
48861         program_invocation_short_name are declared and define appropriate
48862         macros if they are not.
48863
48864 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
48865
48866         * lib/argp-help.c (__argp_base_name): New function
48867         (__argp_short_program_name): Rewrite using __argp_base_name
48868         * lib/argp-namefrob.h: Define program_invocation_name and
48869         program_invocation_short_name if requested
48870         (__argp_base_name): Add prototype
48871         * lib/argp-parse.c (argp_def): Use gettext wrappers
48872         (argp_default_parser): Use __argp_base_name
48873         * lib/argp-pin.c: New file. Defines program_invocation_name and
48874         program_invocation_short_name on systems that lack them.
48875
48876 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
48877
48878         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
48879         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
48880         porting problem reported by Georg Schwarz in
48881         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
48882
48883 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
48884
48885         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
48886         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
48887         porting problem reported by Georg Schwarz in
48888         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
48889
48890 2005-12-05  Bruno Haible  <bruno@clisp.org>
48891
48892         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
48893         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
48894         Reported by Mark Junker <mjscod@gmx.de>.
48895
48896 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
48897
48898         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
48899         Use implementation from Albert Chin, with some
48900         comments/corrections by Stepan Kasal and myself.
48901
48902 2005-12-02  Bruno Haible  <bruno@clisp.org>
48903
48904         * gnulib-tool (func_import): Accept GPLed build tool modules when
48905         --lgpl is given.
48906         * modules/csharpcomp-script: New file.
48907         * modules/csharpcomp: Depend on it.
48908         * modules/javacomp-script: New file.
48909         * modules/javacomp: Depend on it.
48910         Suggested by Simon Josefsson.
48911
48912 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
48913
48914         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
48915         statement, to work around an HP-UX 10.20 compiler bug reported by
48916         Peter O'Gorman.
48917
48918 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
48919
48920         * modules/savedir (Depends-on): Add openat.
48921
48922 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
48923
48924         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
48925         (uintmax_t) [defined uintmax_t]: Do not declare.
48926         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
48927         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
48928         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
48929         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
48930         sake of portability to weird hosts that C allows (though we don't
48931         know of any practical examples).
48932
48933         * lib/savedir.h (fdsavedir): New decl.
48934         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
48935         contains most of the former guts of savedir.
48936         (savedir): Use savedirstream.
48937         Include "openat.h".
48938
48939 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
48940
48941         * modules/obstack (Files): Add m4/ulonglong.m4.
48942         Problem reported by Davide Angelocola.
48943
48944 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
48945
48946         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
48947         coreutils no longer futzes with rounding modes.
48948
48949 2005-11-14  Jim Meyering  <jim@meyering.net>
48950
48951         * lib/mkstemp-safer.c: Include <config.h>, required for possible
48952         replacement of mkstemp.
48953
48954 2005-11-10  Simon Josefsson  <jas@extundo.com>
48955
48956         * lib/readline.c: Remove EOL.
48957
48958 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48959
48960         * modules/gethrxtime (Depends-on): Add gettime.
48961
48962 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48963
48964         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
48965         or gettimeofday; no longer needed.
48966
48967 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
48968
48969         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
48970         time business.
48971         (gethrxtime) [! (HAVE_NANOUPTIME
48972         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
48973         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
48974         our own approximation.
48975
48976 2005-11-08  Eric Blake  <ebb9@byu.net>
48977
48978         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
48979
48980 2005-11-08  Eric Blake  <ebb9@byu.net>
48981
48982         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
48983
48984 2005-11-04  Bruno Haible  <bruno@clisp.org>
48985
48986         * gnulib-tool: Implement --update mode.
48987
48988 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48989
48990         Fix porting problem reported by Theodoros V. Kalamatianos.
48991         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
48992         Don't assume that futimes failing means we must fail.
48993
48994 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48995
48996         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
48997         variables to suggest the intended function of the PATH_MAX check.
48998
48999 2005-10-30  Kean Johnston  <jkj@sco.com>
49000
49001         Trivial changes to support SCO systems.
49002         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
49003         as PATH_MAX.
49004         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
49005         where __ptr is null when no I/O is pending.
49006
49007 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
49008
49009         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
49010         leave errno alone.  Problem reported by Dmitry V. Levin.
49011
49012 2005-10-28  Simon Josefsson  <jas@extundo.com>
49013
49014         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
49015         Test more.
49016
49017         * tests/test-gc-md2.c, tests/test-md2.c: New files.
49018
49019         * modules/md2, modules/md2-tests: New files.
49020
49021 2005-10-28  Simon Josefsson  <jas@extundo.com>
49022
49023         * m4/inet_ntop.m4: More tests.
49024
49025         * m4/gc-md2.m4, md2.m4: New file.
49026
49027 2005-10-28  Simon Josefsson  <jas@extundo.com>
49028
49029         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
49030         "restrict" keywords, as per POSIX.  Protect the function
49031         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
49032         Don't use K&R prototypes.  Check the sprintf return values.
49033         Re-define EAFNOSUPPORT if not present.  Indent.
49034
49035         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
49036         suggested by Bruno Haible <bruno@clisp.org>.
49037
49038         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
49039
49040         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
49041
49042         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
49043         libgcrypt).
49044
49045         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
49046
49047         * lib/md2.h, lib/md2.c: New files.
49048
49049 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
49050
49051         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
49052         errno alone.  Problem reported by Frederic Jolliton.
49053
49054 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
49055
49056         * modules/verify (License): Change from GPL to LGPL.  This is a
49057         tiny module and there are apparently near-equivalents that are
49058         under the BSD license.
49059
49060 2005-10-24  Simon Josefsson  <jas@extundo.com>
49061
49062         * modules/sha1: Relicense to LGPL.
49063
49064 2005-10-24  Simon Josefsson  <jas@extundo.com>
49065
49066         * lib/md4.h: Shrink buffer size, now that we changed the type.
49067
49068 2005-10-23  Simon Josefsson  <jas@extundo.com>
49069
49070         * gnulib-tool (func_import): Fix --tests-base.
49071
49072 2005-10-22  Simon Josefsson  <jas@extundo.com>
49073
49074         * modules/arcfour (Depends-on): Need stdint.
49075
49076 2005-10-22  Simon Josefsson  <jas@extundo.com>
49077
49078         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
49079         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
49080
49081 2005-10-22  Simon Josefsson  <jas@extundo.com>
49082
49083         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
49084         suggested by Bruno Haible <bruno@clisp.org>.
49085
49086 2005-10-22  Simon Josefsson  <jas@extundo.com>
49087
49088         * lib/crc.h: Include stddef.h, for size_t.
49089
49090 2005-10-22  Simon Josefsson  <jas@extundo.com>
49091
49092         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
49093         arcfour_context struct (simplify test vector testing in GNU
49094         Shishi).
49095
49096 2005-10-21  Simon Josefsson  <jas@extundo.com>
49097
49098         * modules/des, modules/des-tests: New files.
49099
49100         * modules/gc-des, modules/gc-des-tests: New files.
49101
49102         * tests/test-des.c, tests/test-gc-des.c: New file.
49103
49104 2005-10-21  Simon Josefsson  <jas@extundo.com>
49105
49106         * modules/arctwo, modules/arctwo-tests: New files.
49107
49108         * tests/test-arctwo.c: New file.
49109
49110         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
49111
49112         * tests/test-gc-arctwo.c: New file.
49113
49114 2005-10-21  Simon Josefsson  <jas@extundo.com>
49115
49116         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
49117         Bruno Haible <bruno@clisp.org>.
49118
49119         * m4/gc-des.m4: New file.
49120
49121 2005-10-21  Simon Josefsson  <jas@extundo.com>
49122
49123         * m4/arctwo.m4: New file.
49124
49125         * m4/gc-arctwo.m4: New file.
49126
49127 2005-10-21  Simon Josefsson  <jas@extundo.com>
49128
49129         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
49130         block.
49131
49132 2005-10-21  Simon Josefsson  <jas@extundo.com>
49133
49134         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
49135         <bruno@clisp.org>.
49136
49137         * lib/hmac-sha1.c (hmac_sha1): Likewise.
49138
49139         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
49140         Bruno Haible <bruno@clisp.org>.
49141
49142         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
49143         <bruno@clisp.org>.
49144
49145 2005-10-21  Simon Josefsson  <jas@extundo.com>
49146
49147         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
49148
49149 2005-10-21  Simon Josefsson  <jas@extundo.com>
49150
49151         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
49152
49153 2005-10-21  Simon Josefsson  <jas@extundo.com>
49154
49155         * lib/des.h, lib/des.c: New files.
49156
49157         * lib/gc-gnulib.c: Support DES.c
49158
49159 2005-10-21  Simon Josefsson  <jas@extundo.com>
49160
49161         * lib/arctwo.h, lib/arctwo.c: New files.
49162
49163         * lib/gc-gnulib.c: Support ARCTWO.
49164
49165 2005-10-21  Simon Josefsson  <jas@extundo.com>
49166
49167         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
49168         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
49169
49170 2005-10-21  Simon Josefsson  <jas@extundo.com>
49171
49172         * gnulib-tool (func_import, func_create_testdir): Define automake
49173         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
49174         Makefile.am snippet),
49175         suggested by Bruno Haible <bruno@clisp.org>.
49176
49177         * modules/gc (Makefile.am): Use it.
49178
49179 2005-10-21  Bruno Haible  <bruno@clisp.org>
49180
49181         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
49182         patch.
49183
49184 2005-10-19  Simon Josefsson  <jas@extundo.com>
49185
49186         * tests/test-gc-rijndael.c: New file.
49187
49188         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
49189
49190 2005-10-19  Simon Josefsson  <jas@extundo.com>
49191
49192         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
49193         interface too.
49194
49195 2005-10-19  Simon Josefsson  <jas@extundo.com>
49196
49197         * tests/test-gc-arcfour.c: New file.
49198
49199         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
49200
49201 2005-10-19  Simon Josefsson  <jas@extundo.com>
49202
49203         * modules/gc-md4, modules/gc-md4-tests: New file.
49204
49205         * tests/test-gc-md4.c: New file.
49206
49207 2005-10-19  Simon Josefsson  <jas@extundo.com>
49208
49209         * m4/gc-md4.m4: New file.
49210
49211 2005-10-19  Simon Josefsson  <jas@extundo.com>
49212
49213         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
49214         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
49215         <kasal@ucw.cz>.
49216
49217 2005-10-19  Simon Josefsson  <jas@extundo.com>
49218
49219         * m4/gc-arcfour.m4: New file.
49220
49221         * m4/gc-rijndael.m4: New file.
49222
49223 2005-10-19  Simon Josefsson  <jas@extundo.com>
49224
49225         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
49226
49227 2005-10-19  Simon Josefsson  <jas@extundo.com>
49228
49229         * lib/gc-gnulib.c: Support ARCFOUR.
49230
49231 2005-10-19  Simon Josefsson  <jas@extundo.com>
49232
49233         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
49234         support.
49235
49236         * lib/gc.h: Add ECB enum type.
49237
49238         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
49239
49240 2005-10-18  Simon Josefsson  <jas@extundo.com>
49241
49242         * tests/test-md5.c: New file.
49243
49244         * modules/md5-tests: New file.
49245
49246 2005-10-18  Simon Josefsson  <jas@extundo.com>
49247
49248         * tests/test-md4.c: New file.
49249
49250         * modules/md4, modules/md4-tests: New files.
49251
49252 2005-10-18  Simon Josefsson  <jas@extundo.com>
49253
49254         * m4/md4.m4: New file.
49255
49256 2005-10-18  Simon Josefsson  <jas@extundo.com>
49257
49258         * lib/md4.h, lib/md4.c: New files, based on md5.?.
49259
49260 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
49261
49262         * gnulib-tool (func_create_testdir): Omit the second check whether
49263         BUILT_SOURCES in nonempty.
49264
49265 2005-10-17  Simon Josefsson  <jas@extundo.com>
49266
49267         * tests/test-rijndael.c: New file.
49268
49269 2005-10-17  Simon Josefsson  <jas@extundo.com>
49270
49271         * modules/sha1: Depend on stdint instead of md5.
49272
49273         * modules/md5: Depend on stdint, remove uint32_t.
49274
49275 2005-10-17  Simon Josefsson  <jas@extundo.com>
49276
49277         * modules/gc-sha1-tests: New file.
49278
49279         * tests/test-gc-sha1.c: New file.
49280
49281 2005-10-17  Simon Josefsson  <jas@extundo.com>
49282
49283         * m4/md5.m4: Remove call to uint32_t.m4.
49284
49285 2005-10-17  Simon Josefsson  <jas@extundo.com>
49286
49287         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
49288
49289         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
49290         md5.h.
49291
49292         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
49293
49294         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
49295
49296 2005-10-17  Simon Josefsson  <jas@extundo.com>
49297
49298         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
49299
49300 2005-10-17  Simon Josefsson  <jas@extundo.com>
49301
49302         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
49303
49304 2005-10-17  Simon Josefsson  <jas@extundo.com>
49305
49306         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
49307
49308         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
49309
49310 2005-10-17  Bruno Haible  <bruno@clisp.org>
49311
49312         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
49313         that it can also be used in a test.
49314
49315 2005-10-16  Bruno Haible  <bruno@clisp.org>
49316
49317         * gnulib-tool (func_emit_tests_Makefile_am): Also define
49318         TESTS_ENVIRONMENT, so that individual tests can augment it.
49319
49320         * gnulib-tool (func_create_testdir): Use an intermediate target for
49321         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
49322         macros, like $(ALLOCA_H), which cannot be passed through the command
49323         line.
49324
49325 2005-10-15  Simon Josefsson  <jas@extundo.com>
49326
49327         * modules/rijndael-tests: New file.
49328
49329         * modules/rijndael: New file.
49330
49331 2005-10-15  Simon Josefsson  <jas@extundo.com>
49332
49333         * m4/rijndael.m4: New file.
49334
49335 2005-10-15  Simon Josefsson  <jas@extundo.com>
49336
49337         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
49338
49339         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
49340
49341 2005-10-14  Simon Josefsson  <jas@extundo.com>
49342
49343         * tests/test-arcfour.c: New file.
49344
49345         * modules/arcfour, modules/arcfour-tests: New files.
49346
49347 2005-10-14  Simon Josefsson  <jas@extundo.com>
49348
49349         * m4/arcfour.m4: New file.
49350
49351 2005-10-14  Simon Josefsson  <jas@extundo.com>
49352
49353         * lib/arcfour.h, lib/arcfour.c: New files.
49354
49355 2005-10-14  Roland McGrath  <roland@redhat.com>
49356
49357         Import from libc.  [BZ #1331]
49358         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
49359         macro argument.
49360         Reported by Matej Vela <vela@debian.org>.
49361
49362 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
49363
49364         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
49365         include <wchar.h>; no longer needed.
49366
49367 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
49368
49369         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
49370
49371 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
49372         and  Ulrich Drepper  <drepper@redhat.com>
49373
49374         Import from libc.
49375         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
49376         instead of inline stream orientation test and two separate
49377         function calls.  Pay no attention to USE_IN_LIBIO.
49378
49379 2005-10-13  Simon Josefsson  <jas@extundo.com>
49380
49381         * modules/gc-hmac-md5-tests: New file.
49382
49383         * tests/test-gc-hmac-sha1.c: New file.
49384
49385         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
49386
49387         * modules/gc-hmac-md5-tests: New file.
49388
49389         * tests/test-gc-md5.c: New file.
49390
49391         * modules/gc-md5-tests: New file.
49392
49393 2005-10-13  Simon Josefsson  <jas@extundo.com>
49394
49395         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
49396         Move memory allocation outside of loop.
49397
49398 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
49399
49400         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
49401         intermediate directory is in a read-only file system.  Problem
49402         reported by Eric Blake.
49403
49404 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
49405
49406         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
49407
49408 2005-10-12  Simon Josefsson  <jas@extundo.com>
49409
49410         * tests/test-hmac-sha1.c: New file.
49411
49412         * modules/hmac-sha1-tests: New file.
49413
49414         * modules/hmac-sha1: New file.
49415
49416 2005-10-12  Simon Josefsson  <jas@extundo.com>
49417
49418         * modules/gc-sha1: New file.
49419
49420 2005-10-12  Simon Josefsson  <jas@extundo.com>
49421
49422         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
49423
49424         * tests/test-gc-pbkdf2-sha1.c: New file.
49425
49426 2005-10-12  Simon Josefsson  <jas@extundo.com>
49427
49428         * modules/gc-md5, modules/gc-hmac-md5: New files.
49429
49430         * modules/gc (Files): Remove md5, memxor and hmac files.
49431
49432 2005-10-12  Simon Josefsson  <jas@extundo.com>
49433
49434         * m4/gc-pbkdf2-sha1.m4: New file.
49435
49436         * m4/gc-hmac-sha1.m4: New file.
49437
49438         * m4/gc-sha1: New file.
49439
49440         * m4/hmac-sha1.m4: New file.
49441
49442 2005-10-12  Simon Josefsson  <jas@extundo.com>
49443
49444         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
49445
49446         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
49447
49448 2005-10-12  Simon Josefsson  <jas@extundo.com>
49449
49450         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
49451         suggested by Bruno Haible <bruno@clisp.org>.
49452
49453 2005-10-12  Simon Josefsson  <jas@extundo.com>
49454
49455         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
49456
49457 2005-10-12  Simon Josefsson  <jas@extundo.com>
49458
49459         * lib/gc-pbkdf2-sha1.c: New file.
49460
49461         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
49462
49463 2005-10-12  Simon Josefsson  <jas@extundo.com>
49464
49465         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
49466
49467         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
49468
49469 2005-10-12  Simon Josefsson  <jas@extundo.com>
49470
49471         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
49472         GC_USE_HMAC_MD5, respectively.
49473
49474         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
49475         (gc_md5): Fix typo.
49476
49477         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
49478
49479         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
49480
49481         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
49482
49483 2005-10-12  Bruno Haible  <bruno@clisp.org>
49484
49485         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
49486         Reported by Stepan Kasal <kasal@ucw.cz>.
49487
49488 2005-10-11  Simon Josefsson  <jas@extundo.com>
49489
49490         * tests/test-crc.c: New file.
49491
49492         * modules/crc, modules/crc-tests: New files.
49493
49494 2005-10-11  Simon Josefsson  <jas@extundo.com>
49495
49496         * m4/crc.m4: New file.
49497
49498 2005-10-11  Simon Josefsson  <jas@extundo.com>
49499
49500         * lib/gc.h: Add gc_hash and gc_hash_buffer.
49501
49502         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
49503
49504         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
49505
49506 2005-10-11  Simon Josefsson  <jas@extundo.com>
49507
49508         * lib/crc.h, lib/crc.c: New files.
49509
49510         * lib/gc.h (gc_hash_buffer): Add doc.
49511
49512 2005-10-11  Bruno Haible  <bruno@clisp.org>
49513
49514         * modules/c-strcasestr: New file.
49515         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
49516
49517 2005-10-11  Bruno Haible  <bruno@clisp.org>
49518
49519         * modules/c-strcase: New file.
49520         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
49521
49522 2005-10-11  Bruno Haible  <bruno@clisp.org>
49523
49524         * lib/strcasecmp.c: Include limits.h.
49525         (strcasecmp): Avoid integer overflow on exotic platforms.
49526         * lib/strncasecmp.c: Include limits.h.
49527         (strncasecmp): Avoid integer overflow on exotic platforms.
49528         Reported by Paul Eggert.
49529
49530 2005-10-11  Bruno Haible  <bruno@clisp.org>
49531
49532         * lib/c-strcasestr.h: New file, from GNU gettext.
49533         * lib/c-strcasestr.c: New file, from GNU gettext.
49534
49535 2005-10-11  Bruno Haible  <bruno@clisp.org>
49536
49537         * lib/c-strcase.h: New file, from GNU gettext.
49538         * lib/c-strcasecmp.c: New file, from GNU gettext.
49539         * lib/c-strncasecmp.c: New file, from GNU gettext.
49540
49541 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
49542
49543         * modules/mempcpy (License): GPL -> LGPL.
49544         * modules/strchrnul (License): Likewise.
49545         * modules/sysexits (License): Likewise.
49546
49547 2005-10-08  Simon Josefsson  <jas@extundo.com>
49548
49549         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
49550
49551 2005-10-07  Simon Josefsson  <jas@extundo.com>
49552
49553         * m4/memxor.m4: Remove gl_C_RESTRICT call.
49554
49555 2005-10-06  Simon Josefsson  <jas@extundo.com>
49556
49557         * tests/test-hmac-md5.c: New file.
49558
49559         * modules/hmac-md5-tests: New file.
49560
49561         * modules/hmac-md5: New file.
49562
49563 2005-10-06  Simon Josefsson  <jas@extundo.com>
49564
49565         * m4/hmac-md5.m4: New file.
49566
49567         * m4/memxor.m4: Require gl_C_RESTRICT.
49568
49569 2005-10-06  Simon Josefsson  <jas@extundo.com>
49570
49571         * lib/memxor.c (memxor): Avoid casts and warnings.
49572
49573 2005-10-06  Simon Josefsson  <jas@extundo.com>
49574
49575         * lib/hmac-md5.c: New file.
49576
49577         * lib/hmac.h: New file.
49578
49579 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
49580
49581         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
49582         promotes to int, not unsigned int, to catch the AIX 5.3
49583         compiler bug.
49584
49585 2005-10-05  Simon Josefsson  <jas@extundo.com>
49586
49587         * modules/memxor: New file.
49588
49589         * modules/iconv (Files): Move config.rpath to havelib, it is used
49590         there.
49591
49592         * modules/havelib (Files): Add config.rpath.
49593
49594 2005-10-05  Simon Josefsson  <jas@extundo.com>
49595
49596         * m4/memxor.m4: New file.
49597
49598 2005-10-05  Simon Josefsson  <jas@extundo.com>
49599
49600         * lib/memxor.c (memxor): Fix compiler error.
49601
49602         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
49603         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
49604
49605         * lib/memxor.h, lib/memxor.c: New files.
49606
49607         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
49608         we assume all systems have it, suggested by Jim Meyering
49609         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
49610         any systems lack sys/socket.h; mingw32 is known to lack it, but we
49611         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
49612         same reasons.
49613
49614 2005-10-05  Simon Josefsson  <jas@extundo.com>
49615
49616         * config/srclist.txt: Add glibc bug 1423 for md5.h.
49617
49618 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
49619
49620         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
49621         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
49622         needed, since the source code now assumes these .h files.
49623
49624 2005-10-05  Derek Price  <derek@ximbiot.com>
49625
49626         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
49627
49628 2005-10-05  Bruno Haible  <bruno@clisp.org>
49629
49630         * modules/stdint (License): Change to LGPL.
49631
49632 2005-10-04  Simon Josefsson  <jas@extundo.com>
49633
49634         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
49635         D. Baushke" <mdb@gnu.org>.
49636
49637 2005-10-04  Bruno Haible  <bruno@clisp.org>
49638
49639         * lib/verify.h (verify_true): Provide alternative definition for C++.
49640
49641 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
49642
49643         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
49644         (SSIZE_MAX): New macro, if not already defined.
49645         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
49646         than 2 GiB.
49647
49648 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49649
49650         Sync from coreutils.
49651         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
49652         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
49653         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
49654         ULLONG_MAX doesn't work with 2.7.2.1.
49655
49656 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49657
49658         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
49659         From Ben Pfaff.
49660
49661         * modules/exclude (Depends-on): Depend on verify.
49662         * modules/strtoimax (Depends-on): Likewise.
49663         * modules/utimecmp (Depends-on): Likewise.
49664
49665 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
49666
49667         * lib/exclude.c: Include verify.h.
49668         (verify): Remove.  All callers changed to use verify.h's version.
49669         * lib/strtoimax.c: Likewise.
49670         * lib/utimecmp.c: Likewis.e
49671
49672         Sync from coreutils.
49673         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
49674         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
49675         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
49676         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
49677         bother returning ENOSYS if settimeofday or stime fails; just let
49678         them return whatever errno they want to return.
49679         * lib/utimens.c: Include unistd.h, for dup2.
49680         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
49681         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
49682
49683 2005-10-02  Jim Meyering  <jim@meyering.net>
49684
49685         Sync from coreutils.
49686         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
49687         from glibc-2.2.5 that fails for read-only files.
49688
49689 2005-10-02  Jim Meyering  <jim@meyering.net>
49690
49691         Sync from coreutils.
49692         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
49693         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
49694         `#if HAVE_CONFIG_H'.
49695         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
49696         Remove AT_FDCWD test.
49697         Do not consume the fd unless successful.
49698         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
49699         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
49700         block, so that we don't even try to compile it if settimeofday is
49701         available.  This works around a compilation failure on OSF1 V5.1,
49702         due to stime requiring a `long int*' while tv_sec is `int'.
49703
49704 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
49705
49706         Sync from coreutils.
49707         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
49708         against `yes', rather than just testing for nonempty.
49709
49710 2005-10-01  Simon Josefsson  <jas@extundo.com>
49711
49712         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
49713         and Darwin.
49714
49715         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
49716         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
49717         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
49718         freeaddrinfo and gai_strerror are declared by the POSIX headers.
49719         Check if struct addrinfo is declared.
49720
49721 2005-10-01  Simon Josefsson  <jas@extundo.com>
49722
49723         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
49724         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
49725         AI_* and EAI_* definitions.  Protect function declarations.
49726
49727 2005-10-01  Jim Meyering  <jim@meyering.net>
49728
49729         Sync from coreutils.
49730
49731         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
49732         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
49733         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
49734         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49735         in the inet and nsl libraries.  Required on Solaris 5.7.
49736
49737 2005-10-01  Jim Meyering  <jim@meyering.net>
49738
49739         Sync from coreutils.
49740         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
49741         in the inet and nsl libraries.  Required on Solaris 5.7.
49742
49743 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
49744
49745         * lib/getdelim.c (getdelim): Remove unused variables.
49746
49747 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
49748
49749         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
49750         so that the code works even with ancient cpp.  Portability problem
49751         with GCC 2.7.2.1 reported by Thomas M.Ott.
49752
49753 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
49754
49755         * modules/regex (Depends-on): Add strcase.
49756
49757         * modules/gethostname (Licence): Change from GPL to LGPL, since
49758         gethostname.c is a trivial implementation of a standard library
49759         function.
49760         * modules/poll (License): Change from GPL to LGPL, since it's
49761         derived from LGPL code.
49762
49763 2005-09-27  Jim Meyering  <jim@meyering.net>
49764
49765         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
49766         HAVE_CONFIG_H.
49767
49768         * lib/intprops.h (signed_type_or_expr__): Define.
49769         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
49770         for unsigned types.
49771
49772 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
49773
49774         * lib/verify.h (verify_expr): Remove, replacing with:
49775         (verify_true): New macro that returns true instead of void.
49776         (verify_type__): Remove.
49777         (verify): Use verify_true rather than verify_type__.
49778
49779 2005-09-26  Bruno Haible  <bruno@clisp.org>
49780
49781         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
49782         is necessary.
49783         (lib_SOURCES): Remove mbchar.c.
49784         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
49785         (Files): Add m4/mbrtowc.m4.
49786         * modules/mbiter: Likewise.
49787         * modules/mbuiter: Likewise.
49788
49789 2005-09-26  Bruno Haible  <bruno@clisp.org>
49790
49791         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
49792         compile mbchar.c if they are not both present.
49793         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
49794         * m4/mbiter.m4 (gl_MBITER): Likewise.
49795         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
49796         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
49797         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
49798
49799 2005-09-25  Jim Meyering  <jim@meyering.net>
49800
49801         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
49802         also uses socklen_t.
49803
49804 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
49805
49806         * lib/utimens.c (ENOSYS): Define if not already defined.
49807         (futimens): Support having a null PATH if the file descriptor
49808         is nonnegative.
49809
49810         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
49811         Remove.
49812         (__attribute): Define to empty unless GCC 3.1 or later.
49813         This works around a core dump on OpenBSD 3.4, which has GCC
49814         2.95.3, which dumps core when given __attribute__(()).  It also
49815         simplifies other tests, since we really don't want to bother with
49816         worrying about which ancient version of GCC supported what.
49817         Original problem reported by Yoann Vandoorselaere, with part of
49818         the fix suggested by Derek Price.
49819
49820 2005-09-24  Jim Meyering  <jim@meyering.net>
49821
49822         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
49823         so we can once again use a positive bitfield width of 1 -- now we
49824         don't have to explain why we were using a bitfield width of 2.
49825
49826 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
49827
49828         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
49829         and similarly for the other external symbols.  Problem reported
49830         by James Gallager.
49831
49832         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
49833         bug reported by Jim Meyering.
49834
49835         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
49836         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
49837         not needed, since socklen is a prerequisite module.
49838
49839 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
49840
49841         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
49842         Problem reported by Eric Blake.
49843         (getaddrinfo): Initialize se so that it's not garbage.
49844         Redo internal storage allocation so that it doesn't make unportable
49845         assumptions about alignment.
49846         Fix a memory leak.
49847
49848         * lib/utimens.c (futimens): Use futimesat if available.
49849         Prefer it to futimes since it doesn't have the futimes bug.
49850
49851         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
49852         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
49853         Instead, declare a function that returns a pointer to an array,
49854         and use verify_type__ to declare the size of the array.
49855         Problem and germ of a solution reported by Bruno Haible.
49856         (verify_type__): Use 2, not 1, for bitfield size, to avoid
49857         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
49858
49859 2005-09-23  Jim Meyering  <jim@meyering.net>
49860
49861         Sync from coreutils.
49862         Correct build failure (socklen_t not defined) on at least
49863         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
49864         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
49865
49866 2005-09-23  Jim Meyering  <jim@meyering.net>
49867
49868         * modules/getaddrinfo (Depends-on): Add socklen.
49869
49870 2005-09-23  Bruno Haible  <bruno@clisp.org>
49871
49872         * tests/test-verify.c: New file.
49873
49874 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49875
49876         Sync from coreutils.
49877
49878         * modules/argmatch (Depends-on): Add verify.
49879         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
49880         unistd-safer.
49881         * modules/save-cwd (Depends-on): Likewise.
49882
49883         * modules/openat (Files): Add lib/openat-die.c.
49884         (Depends-on): Remove error, exitfail.
49885         Add dirname.
49886
49887         * modules/verify: New file.
49888         * MODULES.html.sh (Diagnostics <assert.h>): New section,
49889         with "verify" module.
49890
49891 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49892
49893         Sync from coreutils.
49894
49895         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
49896         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
49897         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
49898         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
49899         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
49900         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
49901         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
49902         Don't bother checking for string.h, stdlib.h, unistd.h.
49903         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
49904         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
49905         module's job.
49906         * m4/jm-macros.m4 (gl_MACROS): Likewise.
49907         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
49908
49909         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
49910         (gl_GETDATE): Use it.
49911
49912         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
49913
49914 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49915
49916         Sync from coreutils.
49917
49918         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
49919         stat-time.h.
49920         * lib/argmatch.h: Include verify.h
49921         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
49922         (ARGMATCH_ASSERT): Remove; unused.
49923         * lib/canonicalize.c: Assume STDC_HEADERS.
49924         * lib/exclude.c: Include "strcase.h".
49925         * lib/regex_internal.h [!defined _LIBC]: Likewise.
49926         * lib/getusershell.c: Include stdio--.h rather than stdio.h
49927         and stdio-safer.h.
49928         (getusershell): Call fopen, not fopen_safer.
49929         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
49930         Do not include unistd-safer.h.
49931         (save_cwd): Don't call fd_safer; no longer needed
49932         now that we include fcntl--.h.
49933
49934         * lib/getdate.y (relative_time): New type.
49935         (RELATIVE_TIME_0): New constant.
49936         (parser_control): Use relative_time instead of doing it ourselves.
49937         (%union): Add new relative_time rel member.
49938         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
49939         Now typeless.
49940         (relunit, relunit_snumber): Now of type rel.
49941         (zone, rel, relunit, get_date): Adjust to above changes.
49942
49943         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
49944         Do not include unistd-safer.h.
49945         (getloadavg): Don't call fd_safer; no longer needed
49946         now that we include fcntl--.h.
49947
49948         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
49949         (make_dir_parents): Treat ENOSYS like EEXIST.
49950
49951         Improve quality of diagnostics on restore_cwd failure.
49952         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
49953         (make_dir_parents): Last arg is now int * (for errno), not bool *.
49954         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
49955         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
49956         each time through the loop.  Do not diagnose restore_cwd failure;
49957         that is the caller's job (and perhaps the caller does not care).
49958
49959         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
49960         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
49961         If the file already exists but is not a directory, don't bother
49962         to try to make its parents.
49963         Close potential file descriptor leak if we can't chdir("/") (!).
49964         Don't always return true if chdir($PWD) fails; return true only
49965         if the requested action was done successfully (except for the
49966         chdir($PWD)).
49967         Don't log final directory unless we actually made it.
49968         Refactor to avoid duplicate code to fix up permissions.
49969         Don't attempt to fix up parent permissions if chdir($PWD) fails.
49970
49971         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
49972         to make it a bit faster and (I hope) clearer.
49973         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
49974         Fix bug in formats like %2N.
49975
49976         * lib/verify.h: New file.
49977
49978 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
49979
49980         Sync from coreutils.
49981         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
49982
49983 2005-09-22  Jim Meyering  <jim@meyering.net>
49984
49985         Sync from coreutils.
49986
49987         * m4/lstat.m4 (gl_FUNC_LSTAT):
49988         Use AC_LIBSOURCES to require lstat.c and lstat.h.
49989         Remove obsolete comment.
49990         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
49991         * m4/xstrtod.m4: Likewise.
49992
49993         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
49994
49995 2005-09-22  Jim Meyering  <jim@meyering.net>
49996
49997         Sync from coreutils.
49998
49999         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
50000
50001         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
50002         the .tm_year member, since otherwise gcc-4.0 would now warn about
50003         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
50004
50005         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
50006         order to avoid an unsuppressible warning from gcc on 64-bit systems.
50007
50008         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
50009         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
50010         when run in a time zone for which daylight savings time is in effect
50011         for the starting date.
50012
50013         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
50014         stop us from restricting permissions of just-created absolute-named
50015         directories.
50016         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
50017         to restore initial working directory.
50018         * lib/mkdir-p.c (make_dir_parents): New parameter:
50019         different_working_dir, to tell caller if/when we change the working
50020         directory and are unable to return to the initial one.
50021         * lib/mkdir-p.h (make_dir_parents): Update prototype.
50022         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
50023         `return false'.  This fixes a bug introduced on 2004-07-30.
50024
50025         * lib/openat.c (fdopendir): Be sure to close the supplied
50026         file descriptor before returning.  This makes our replacement
50027         implementation a little closer to Solaris's, where fdopendir
50028         ties the file descriptor to the returned DIR* pointer.
50029         * lib/openat.c (unlinkat): New function.
50030         * lib/openat.h (unlinkat): Add prototype.
50031         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
50032         (openat_restore_fail): Rename from openat_restore_die.
50033         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
50034
50035         Provide an alternative to exiting immediately upon save_cwd or
50036         restore_cwd failure.  Now, an application can arrange e.g.,
50037         to perform a longjump in that case.
50038         * lib/openat.c: Include dirname.h.
50039         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
50040         (rpl_openat, fdopendir, fstatat): Call openat_save_die
50041         and openat_restore_die rather than calling error directly.
50042         Don't include "error.h" or "exitfail.h"; they're no longer needed.
50043
50044         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
50045         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
50046         define.
50047
50048         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
50049         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
50050                             int utc, int nanoseconds);
50051         Background:
50052         date should not have to allocate a megabyte of virtual memory to
50053         handle a format argument like +%1048575T.  When implemented with
50054         strftime, it must allocate such a buffer, use strftime to fill it
50055         in, print it, then free it.
50056         With fprintftime, it simply prints everything and exits.
50057         With no need for memory allocation, that's one fewer way to fail.
50058         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
50059         optional field width, not before, so we accept %9:z, not %:9z.
50060         (my_strftime): Be sure to use L_('x') for literals.
50061
50062         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
50063         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
50064         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
50065         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
50066         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
50067         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
50068         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
50069         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
50070         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
50071         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
50072         * lib/xgethostname.c, lib/xreadlink.c:
50073         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
50074
50075         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
50076         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
50077         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
50078         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
50079         and don't include <sys/file.h>).
50080
50081 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
50082
50083         Sync from coreutils.
50084
50085         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
50086         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
50087         [!LDAV_DONE]: Avoid unused variable warning.
50088
50089 2005-09-21  Bruno Haible  <bruno@clisp.org>
50090
50091         * lib/unicodeio.h (unicode_to_mb): New declaration.
50092
50093 2005-09-20  Derek Price  <derek@ximbiot.com>
50094
50095         * lib/getaddrinfo.c: Don't include <netdb.h> included from
50096         getaddrinfo.h.
50097
50098 2005-09-20  Bruno Haible  <bruno@clisp.org>
50099
50100         * gnulib-tool: Remove trailing slashes from the values specified for
50101         --source-base, --m4-base, --tests-base, --aux-dir.
50102         Suggested by Simon Josefsson <jas@extundo.com>.
50103
50104 2005-09-20  Bruno Haible  <bruno@clisp.org>
50105
50106         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
50107         func_modules_to_filelist, func_import, func_create_testdir): Make all
50108         sorting results locale-independent, so that gnulib-cache.m4 doesn't
50109         change when gnulib-tool is invoked in a different locale.
50110
50111 2005-09-19  Simon Josefsson  <jas@extundo.com>
50112
50113         * m4/socklen.m4: Fix typo.
50114
50115 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
50116
50117         Use a consistent style for including <config.h>.
50118         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
50119         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
50120         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
50121         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
50122         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
50123         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
50124         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
50125         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
50126         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
50127         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
50128         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
50129         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
50130         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
50131         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
50132         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
50133         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
50134         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
50135         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
50136         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
50137         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
50138         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
50139         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
50140         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
50141         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
50142         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
50143         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
50144         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
50145         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
50146         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
50147         lib/xstrtoumax.c, lib/yesno.c:
50148         Standardize inclusion of config.h.
50149         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
50150         lib/inttostr.h:  Removed inclusion of config.h from header files.
50151         * lib/inttostr.c:  Adjusted in-tree users.
50152         * lib/timespec.h: Remove superfluous warning to include config.h.
50153         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
50154         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
50155         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
50156         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
50157         config.h with HAVE_CONFIG_H.
50158
50159 2005-09-19  Jim Meyering  <jim@meyering.net>
50160
50161         * modules/pathmax (License): Change to LGPL.
50162
50163 2005-09-19  Derek Price  <derek@ximbiot.com>
50164
50165         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
50166
50167 2005-09-19  Bruno Haible  <bruno@clisp.org>
50168
50169         * gnulib-tool (import): Provide default for --tests-base.
50170
50171 2005-09-19  Bruno Haible  <bruno@clisp.org>
50172
50173         * doc/quote.texi: New file, extracted from gnulib.texi.
50174         * doc/ctime.texi: New file, extracted from gnulib.texi.
50175         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
50176         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
50177         * doc/gnulib.texi: Include them.
50178
50179 2005-09-18  Bruno Haible  <bruno@clisp.org>
50180
50181         Portability fix.
50182         * gnulib-tool (func_readlink): New function.
50183         (func_ln_if_changed): Use it.
50184
50185 2005-09-18  Bruno Haible  <bruno@clisp.org>
50186
50187         * gnulib-tool: Support --with-tests also with --import.
50188         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
50189         (func_import): Use variables $testsbase and $inctests. Emit a
50190         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
50191         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
50192         SUBDIRS += $testsdir.
50193         (func_create_testdir): Update.
50194
50195 2005-09-18  Bruno Haible  <bruno@clisp.org>
50196
50197         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
50198         instead of $dry_run.
50199         (func_cp_if_changed, func_mv_if_changed): Remove functions.
50200         (func_ln_if_changed): Don't handle dry-run here.
50201         (func_import): In dry-run mode, detect more precisely which actions
50202         would be performed, and don't use "...ing" verbs.
50203
50204 2005-09-18  Bruno Haible  <bruno@clisp.org>
50205
50206         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
50207         (func_import): Use join on two temporary files instead of three nested
50208         loops, in order to determine which files are new or old.
50209
50210 2005-09-18  Bruno Haible  <bruno@clisp.org>
50211
50212         * gnulib-tool (func_import): Comment out code that spits out the
50213         new files with --dry-run.
50214
50215 2005-09-18  Bruno Haible  <bruno@clisp.org>
50216
50217         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
50218
50219 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
50220
50221         * lib/stat-time.h: New file.
50222         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
50223         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
50224         in a different way.
50225         (timespec_cmp): New function.
50226         * lib/utimecmp.c: Include stat-time.h.
50227         (SYSCALL_RESOLUTION): Depend on whether various struct stat
50228         members exist, not on the obsolescent ST_MTIM_NSEC.
50229         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
50230
50231 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
50232
50233         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
50234
50235 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
50236
50237         * MODULES.html.sh (File system functions): Add stat-time.
50238         * modules/stat-time: New file.
50239         * modules/timespec (Files): Remove m4/st_mtim.m4; this
50240         is now done in a different way, by the stat-time module.
50241         * modules/utimecmp (Depends-on): Add stat-time.
50242
50243 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
50244
50245         * m4/st_mtim.m4: Remove.  Superseded by...
50246         * m4/stat-time.m4: New file.
50247         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
50248         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
50249
50250 2005-09-15  Derek Price  <derek@ximbiot.com>
50251
50252         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
50253
50254 2005-09-15  Derek Price  <derek@ximbiot.com>
50255
50256         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
50257         * lib/regex_internal.c: Ditto, using this...
50258         (__GNUC_PREREQ): ...new macro.
50259         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
50260         using...
50261         (__GNUC_PREREQ): ...this new macro.
50262
50263         * lib/strstr.h: Include string.h. Define strstr as a macro here.
50264
50265 2005-09-15  Derek Price  <derek@ximbiot.com>
50266             Paul Eggert  <eggert@cs.ucla.edu>
50267
50268         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
50269         changes, consolidating in...
50270         * lib/regex_internal.h: ...this file.
50271
50272 2005-09-13  Jim Meyering  <jim@meyering.net>
50273
50274         * lib/canon-host.c: Filter through gnu indent and reword comments
50275         slightly.
50276         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
50277
50278 2005-09-13  Derek Price  <derek@ximbiot.com>
50279
50280         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
50281         failure.
50282         Reported by Jim Meyering  <jim@meyering.net>.
50283
50284 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
50285
50286         * lib/base64.c: Typo.
50287         (base64_encode): Put b64str in initialized data section.
50288
50289 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
50290
50291         Merge glibc and coreutils changes into gnulib, plus a few
50292         extra fixes.
50293         * lib/md5.c: Use #error rather than a string.
50294         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
50295         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
50296         (__attribute__): Define to empty for non recent-GCC.
50297         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
50298         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
50299         Renamed from their non-__ counterparts, with new macros replacing
50300         them if not _LIBC.  Add __THROW attribute.
50301         (rol): Remove.
50302         (struct md5_ctx): Align buffer if using GCC.
50303         * lib/sha1.h (struct sha1_ctx): Likewise.
50304         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
50305         The old name was backwards.
50306         (NOTSWAP): Remove; not used.
50307         (rol): New macro, moved here from md5.h.
50308         (sha1_process_block): Remove a FIXME that doesn't make sense.
50309
50310 2005-09-12  Derek Price  <derek@ximbiot.com>
50311
50312         Return usable errors from canon-host.
50313         * lib/canon-host.h: New file.
50314         * lib/canon-host.c (canon_host): Wrap...
50315         (canon_host_r): ...this new function, which now relies exclusively on
50316         getaddrinfo.
50317         (ch_strerror): New function.
50318         (last_cherror): New global.
50319         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
50320         interface.
50321         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
50322         void *.
50323         (freeaddrinfo): Free ai->ai_canonname when set.
50324
50325 2005-09-12  Derek Price  <derek@ximbiot.com>
50326
50327         Make canon-host require getaddrinfo.
50328         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
50329         AC_LIBSOURCE canon-host.h.  Call...
50330         (gl_PREREQ_CANON_HOST): ...this new function, which requires
50331         gl_GETADDRINFO.
50332         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
50333
50334 2005-09-12  Derek Price  <derek@ximbiot.com>
50335
50336         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
50337         LGPL.
50338         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
50339
50340 2005-09-12  Derek Price  <derek@ximbiot.com>
50341
50342         * lib/gai_strerror.c: Include config.h when available.  Include
50343         getaddrinfo.h before other headers to test interface.
50344         Reported by Larry Jones <lawrence.jones@ugs.com>.
50345
50346 2005-09-12  Derek Price  <derek@ximbiot.com>
50347             Paul Eggert  <eggert@cs.ucla.edu>
50348
50349         * modules/glob (Files): Add glob-libc.h.
50350
50351 2005-09-12  Derek Price  <derek@ximbiot.com>
50352             Paul Eggert  <eggert@cs.ucla.edu>
50353
50354         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
50355         glob_.h, glob-libc.h.
50356         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
50357
50358 2005-09-12  Derek Price  <derek@ximbiot.com>
50359             Paul Eggert  <eggert@cs.ucla.edu>
50360
50361         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
50362         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
50363         protecting things that should be done only in gnulib contexts.
50364         * lib/glob_.h: New file, containing only the glob things needed for
50365         gnulib.
50366         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
50367         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
50368         (glob, globfree, glob_pattern_p): Now defined simply in terms of
50369         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
50370         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
50371         and to respect the namespace rules better.
50372
50373 2005-09-08  Simon Josefsson  <jas@extundo.com>
50374
50375         * modules/socklen: New file.
50376
50377 2005-09-08  Simon Josefsson  <jas@extundo.com>
50378
50379         * m4/socklen.m4: New file.
50380
50381 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
50382
50383         * modules/utimens (Files): Add m4/utimbuf.m4, since
50384         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
50385         Reported by Sergey Poznyakoff.
50386
50387 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
50388
50389         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
50390         definitions, since that's the preferred style in glibc.
50391         Fix a minor spacing issue, and update copyright notice to match
50392         glibc's.
50393
50394 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
50395
50396         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
50397
50398 2005-09-06  Simon Josefsson  <jas@extundo.com>
50399
50400         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
50401         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
50402
50403 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
50404
50405         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
50406         warning.
50407
50408 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
50409
50410         * config/srclist.txt: Add glibc bug 1302.
50411
50412 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
50413
50414         Change bitset word type from unsigned int to unsigned long int,
50415         as this has better performance on typical 64-bit hosts.
50416         Port bitset code to hosts with unusual word sizes.
50417         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
50418         (build_collating_symbol):
50419         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
50420         argument is a bitset.  This is merely a style issue, but it makes
50421         it clearer that an entire array is expected.
50422         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
50423         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
50424         Port to the case where bitset_word is not the same as unsigned int.
50425         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
50426         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
50427         Likewise.
50428         * lib/regexec.c (check_dst_limits_calc_pos_1,
50429         check_subexp_matching_top):
50430         (build_trtable, group_nodes_into_DFAstates):
50431         Likewise.
50432         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
50433         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
50434         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
50435         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
50436         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
50437         * lib/regcomp.c (optimize_subexps, lower_subexp):
50438         Work even if bitset_word has holes in its bitwise representation.
50439         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
50440         * lib/regexec.c (check_dst_limits_calc_pos_1,
50441         check_subexp_matching_top):
50442         Likewise.
50443         * lib/regex_internal.c (re_string_reconstruct):
50444         Don't assume UCHAR_MAX == 255.
50445         * lib/regex_internal.h (bitset_set_all): Likewise.
50446         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
50447         All uses changed.
50448         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
50449         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
50450         All uses changed.
50451         (BITSET_WORD_MAX): New macro.
50452         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
50453         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
50454         (bitset_empty, bitset_copy):
50455         Prefer sizeof (bitset) to multiplying it out ourselves.
50456         (bitset_not_merge): Remove; unused.
50457         (bitset_contain): Return bool, not unsigned int with one bit on.
50458         All callers changed.
50459         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
50460         alignment than re_node_set; do this by defining a new internal
50461         type struct dests_alloc and using it to allocate memory.
50462
50463 2005-09-05  Bruno Haible  <bruno@clisp.org>
50464
50465         * gnulib-tool (func_import): Fix comparison in handling of symbolic
50466         links.
50467
50468 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
50469
50470         * modules/size_max (Makefile.am): Add size_max.h
50471
50472 2005-09-04  Derek Price  <derek@ximbiot.com>
50473
50474         * gnulib-tool (func_import): Fix reversed $symbolic logic.
50475
50476 2005-09-03  Simon Josefsson  <jas@extundo.com>
50477
50478         * gnulib-tool: Fix typo.
50479
50480 2005-09-03  Simon Josefsson  <jas@extundo.com>
50481
50482         * config/srclist.txt: Add glibc bug 1293.
50483
50484 2005-09-03  Derek Price  <derek@ximbiot.com>
50485
50486         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
50487         From Larry Jones <lawrence.jones@ugs.com>.
50488
50489 2005-09-02  Simon Josefsson  <jas@extundo.com>
50490
50491         * modules/socklen: New file.
50492
50493 2005-09-02  Simon Josefsson  <jas@extundo.com>
50494
50495         * modules/havelib: New module.
50496
50497         * modules/gettext, modules/iconv, modules/lock, modules/readline:
50498         Use havelib.
50499
50500 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
50501
50502         Check for arithmetic overflow when calculating sizes, to prevent
50503         some buffer-overflow issues.  These patches are conservative, in the
50504         sense that when I couldn't determine whether an overflow was possible,
50505         I inserted a run-time check.
50506         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
50507         macros.
50508         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
50509         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
50510         (re_xnrealloc, re_x2nrealloc): New inline functions.
50511         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
50512         parse_bracket_exp):
50513         (build_equiv_class, build_charclass): Check for arithmetic overflow
50514         in size expression calculations.
50515         * lib/regex_internal.c (re_string_realloc_buffers):
50516         (build_wcs_upper_buffer, re_node_set_add_intersect):
50517         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
50518         (re_dfa_add_node, register_state): Likewise.
50519         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
50520         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
50521         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
50522         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
50523
50524 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
50525
50526         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
50527         m4/ulonglong.m4.  Problem reported by Martin Lambers.
50528
50529 2005-09-02  Bruno Haible  <bruno@clisp.org>
50530
50531         Support for lib vs. lib64 distinction on biarch platforms.
50532         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
50533         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
50534         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
50535
50536 2005-09-02  Bruno Haible  <bruno@clisp.org>
50537
50538         * gnulib-tool (import): In the other first-use case, provide defaults
50539         as well.
50540
50541 2005-09-02  Bruno Haible  <bruno@clisp.org>
50542
50543         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
50544         patches not yet found in the latest gettext release.
50545
50546 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50547
50548         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
50549         to avoid a collision with bits/local_lim.h in glibc.
50550         All uses changed.  Problem reported by Dmitry V. Levin in
50551         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
50552
50553         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
50554         bugs in int versus size_t comparisons.
50555         (re_string_context_at): Fix bug where the code assumed that
50556         Idx is signed.
50557
50558         Use bool where appropriate.
50559         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
50560         All callers changed.
50561         (calc_eclosure_iter): Likewise, for ROOT arg.
50562         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
50563         (build_charclass_op): Likewise, for NON_MATCH arg.
50564         * lib/regex_internal.c (re_string_allocate, re_string_construct):
50565         (re_string_construct_common): Likewise, for ICASE arg.
50566         * lib/regexec.c (re_search_2_stub, re_search_stub):
50567         Likewise, for RET_LEN arg.
50568         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
50569         (set_regs): Likewise, for FL_BACKTRACK arg.
50570         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
50571         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
50572         (calc_eclosure_iter, parse_bracket_exp):
50573         Use bool for internal variables that are booleans.
50574         * lib/regexec.c (re_search_internal, check_matching,
50575         proceed_next_node):
50576         (set_regs, build_sifted_states, sift_states_bkref):
50577         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
50578         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
50579         (find_collation_sequence_value):
50580         Likewise.
50581         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
50582         (re_node_set_compare):
50583         Return bool, not int. All callers changed.
50584         * lib/regexec.c (check_halt_node_context, check_dst_limits):
50585         (build_trtable, check_node_accept): Likewise.
50586         * lib/regex_internal.h: Include stdbool.h.
50587
50588         Fix bugs uncovered when converting to bool.
50589         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
50590         failure instead of charging ahead blindly.
50591         * lib/regex_internal.c (register_state): Likewise.
50592         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
50593         for freeing internal storage.
50594         (group_nodes_into_DFA_states): Use unsigned int, not int, for
50595         bitset pieces used as boolean, to avoid undefined behavior
50596         on hosts that do int overflow checking.
50597
50598 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
50599
50600         * config/srclist.txt: Add glibc bugs 1285-1287.
50601
50602 2005-09-01  Jim Meyering  <jim@meyering.net>
50603
50604         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
50605         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
50606         Require gl_STAT_MACROS, too.
50607
50608 2005-09-01  Bruno Haible  <bruno@clisp.org>
50609
50610         * gnulib-tool (import): In the first-use case, provide defaults.
50611
50612 2005-09-01  Bruno Haible  <bruno@clisp.org>
50613
50614         * gnulib-tool (func_import): Remove the .tmp files.
50615
50616 2005-09-01  Bruno Haible  <bruno@clisp.org>
50617
50618         * gnulib-tool (func_import): Fix handling of symbolic links.
50619
50620 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50621
50622         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
50623         old glibc regex code mishandles strings longer than 2**31 bytes.
50624         This patch fixes this when the regex code is used in gnulib
50625         (i.e., outside glibc).
50626
50627         This patch should not affect the use of the regex code inside
50628         glibc.  No doubt this problem also needs to be handled for glibc
50629         as well, but the result will be an incompatible change to the
50630         glibc ABI, and the old ABI will have to be supported too.  That
50631         can be the the subject for another patch.
50632
50633         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
50634         governing whether the rest of this patch is active.  By default,
50635         the macro is disabled and the patch has no effect.
50636         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
50637         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
50638         (struct re_pattern_buffer, re_search, re_search_2, re_match):
50639         (re_match_2, re_set_registers): Use the new types.
50640         * lib/regex_internal.h (Idx, re_hashval_t): New types.
50641         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
50642         New macros.
50643         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
50644         (re_string_context_at, bin_tree_t, re_dfastate_t):
50645         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
50646         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
50647         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
50648         (re_string_char_size_at, re_string_wchar_at):
50649         (re_string_elem_size_at):
50650         Use the new types and macros to port to 64-bit hosts.
50651         Use unsigned types for internal values, so that the code
50652         mostly works even for arrays larger than SSIZE_MAX.
50653         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
50654         (search_duplicated_node, calc_eclosure_iter, fetch_number):
50655         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
50656         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
50657         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
50658         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
50659         (calc_inveclosure, parse_dup_op, build_range_exp):
50660         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
50661         (fetch_number, create_token_tree, mark_opt_subexp):
50662         Likewise.
50663         * lib/regex_internal.c (re_string_construct_common,
50664         create_ci_newstate):
50665         (create_cd_newstate, re_string_allocate, re_string_construct):
50666         (re_string_realloc_buffers, build_wcs_upper_buffer):
50667         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
50668         (re_string_reconstruct, re_string_peek_byte_case):
50669         (re_string_fetch_byte_case, re_string_context_at):
50670         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
50671         (re_node_set_init_copy, re_node_set_add_intersect):
50672         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50673         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50674         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
50675         (re_acquire_state, re_acquire_state_context, register_state):
50676         Likewise.
50677         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
50678         search_cur_bkref_entry):
50679         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
50680         (re_search_internal, re_search_2_stub, re_search_stub)
50681         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
50682         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
50683         (update_cur_sifted_state, check_dst_limits):
50684         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50685         (check_subexp_limits, sift_states_bkref, merge_state_array):
50686         (check_subexp_matching_top, get_subexp, get_subexp_sub):
50687         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
50688         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
50689         (expand_bkref_cache, check_node_accept_bytes):
50690         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
50691         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
50692         (acquire_init_state_context, check_halt_node_context):
50693         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
50694         (sift_states_backward, clean_state_log_if_needed):
50695         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
50696         (find_recover_state, transit_state_sb, transit_state_mb):
50697         (transit_state_bkref, build_trtable, match_ctx_clean):
50698         Likewise.
50699         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
50700         to work around an assumption that REG_MISSING is negative.
50701
50702         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
50703         (seek_collating_symbol_entry) [defined _LIBC]:
50704         (lookup_collation_sequence_value) [defined _LIBC]:
50705         (build_range_exp, build_collating_symbol) [defined _LIBC]:
50706         Use prototypes rather than old-style function definitions.
50707         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
50708         (transit_state_sb) [0]:
50709         (find_collation_sequence_value) [defined _LIBC]: Likewise.
50710
50711         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
50712         rm_eo.
50713
50714         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
50715         (optimize_subexps, lower_subexp):
50716         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
50717         since the signed shift might overflow.  Use 1u<<31 instead.
50718         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
50719         Likewise.
50720         * lib/regexec.c (check_dst_limits_calc_pos_1,
50721         check_subexp_matching_top): Likewise.
50722
50723         * lib/regcomp.c (optimize_subexps, lower_subexp):
50724         Use CHAR_BIT rather than 8, for clarity.
50725         * lib/regexec.c (check_dst_limits_calc_pos_1):
50726         (check_subexp_matching_top): Likewise.
50727         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
50728         have to worry about portability issues when shifting it left.
50729         Remove no-longer-needed test for table_size > 0.
50730         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
50731         in a word, as the resulting behavior is undefined.
50732         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
50733         in one case, a <= should have been an <, and in another case the
50734         whole test was missing.
50735         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
50736         the standard name CHAR_BIT.
50737         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
50738         this is not true on one's complement and signed-magnitude hosts.
50739
50740         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
50741         next_last_offset.
50742         (struct re_dfa_t): Remove unused member states_alloc.
50743         * lib/regcomp.c (init_dfa): Don't initialize unused members.
50744
50745 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50746
50747         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
50748         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
50749         and large-file glibc and in 32-bit large-file Solaris.
50750
50751 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50752
50753         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
50754         lengths fit in regoff_t; this isn't true if regoff_t is the same
50755         width as size_t.
50756         * lib/regex.c (re_search_internal): 5th arg is LAST_START
50757         (= START + RANGE) instead of RANGE.  This avoids overflow
50758         problems when regoff_t is the same width as size_t.
50759         All callers changed.
50760         (re_search_2_stub): Check for overflow when adding the
50761         sizes of the two strings.
50762         (re_search_stub): Check for overflow when adding START
50763         to RANGE; if it occurs, substitute the extreme value.
50764
50765 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
50766
50767         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
50768
50769 2005-08-31  Jim Meyering  <jim@meyering.net>
50770
50771         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
50772         a pointer-to-const.
50773         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
50774         (register_state): Likewise.
50775         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
50776         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
50777         (group_nodes_into_DFAstates): Likewise.
50778
50779 2005-08-31  Jim Meyering  <jim@meyering.net>
50780
50781         * check-module: Add a FIXME comment.
50782
50783 2005-08-31  Eric Blake  <ebb9@byu.net>
50784
50785         * modules/unistd-safer (Files): Add unistd--.h.
50786         * modules/stdio-safer (Files): Add stdio--.h.
50787
50788 2005-08-31  Derek Price  <derek@ximbiot.com>
50789
50790         * lib/getdelim.c (getdelim): Return EOF on EOF.
50791         Reported by Larry Jones <lawrence.jones@ugs.com>.
50792
50793 2005-08-31  Bruno Haible  <bruno@clisp.org>
50794
50795         Avoid unnecessary diffs in the generated lib/Makefile.am.
50796         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
50797         the generated files.
50798         (func_import): Don't set cmd.
50799
50800 2005-08-31  Bruno Haible  <bruno@clisp.org>
50801
50802         * lib/strstr.c: Include <stddef.h>, for NULL.
50803         * lib/strcasestr.c: Likewise.
50804         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
50805
50806 2005-08-31  Bruno Haible  <bruno@clisp.org>
50807
50808         * gnulib-tool: New option --macro-prefix.
50809         (func_import): Use macro_prefix.
50810         (import): Handle option --macro-prefix.
50811
50812 2005-08-31  Bruno Haible  <bruno@clisp.org>
50813
50814         * gnulib-tool (import): Rename most ac_* variables to cached_*.
50815         Also use new variables cached_lgpl, cached_libtool.
50816
50817 2005-08-31  Bruno Haible  <bruno@clisp.org>
50818
50819         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
50820         always instantiating them.
50821
50822 2005-08-31  Bruno Haible  <bruno@clisp.org>
50823
50824         * gnulib-tool (func_import): Read the previous cached settings
50825         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
50826         earlier added by gnulib but are now dropped. Warn when a gnulib file
50827         overwrites a non-gnulib file.
50828
50829 2005-08-31  Bruno Haible  <bruno@clisp.org>
50830
50831         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
50832         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
50833         projects that don't keep autogenerated files in CVS. Put into
50834         actioncmd only the specified modules, not the transitive closure.
50835
50836 2005-08-31  Bruno Haible  <bruno@clisp.org>
50837
50838         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
50839         Create directories that shall be filled.
50840         (import): Don't look for gl_* macros in configure.ac. Recurse across
50841         all directories containing a gnulib-cache.m4 files, if meaningful.
50842
50843 2005-08-31  Bruno Haible  <bruno@clisp.org>
50844
50845         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
50846         (import): Set seen_libtool when we see gl_LIBTOOL.
50847
50848 2005-08-31  Bruno Haible  <bruno@clisp.org>
50849
50850         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
50851         declaration macro definitions from generated gnulib.m4.
50852
50853 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
50854
50855         * lib/iconvme.h: Add prototype for iconv_alloc.
50856
50857 2005-08-29  Simon Josefsson  <jas@extundo.com>
50858
50859         * lib/iconvme.c: Fix errno.
50860
50861 2005-08-29  Bruno Haible  <bruno@clisp.org>
50862
50863         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
50864         that it works when the directory contains spaces.
50865
50866 2005-08-29  Bruno Haible  <bruno@clisp.org>
50867
50868         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
50869
50870 2005-08-29  Bruno Haible  <bruno@clisp.org>
50871
50872         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
50873         Emit more advice.
50874
50875 2005-08-29  Bruno Haible  <bruno@clisp.org>
50876         and Stepan Kasal  <kasal@ucw.cz>
50877
50878         * check-module: If more parameters are given, check each of them
50879         separately; add more exceptions, as noted by Jim Meyering.
50880         (check_module): New procedure.
50881         (%exempt_header): Now contains all exceptions.
50882
50883 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
50884
50885         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
50886
50887 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
50888
50889         * lib/iconvme.c: Split iconv_string into iconv_alloc.
50890
50891 2005-08-28  Bruno Haible  <bruno@clisp.org>
50892
50893         * m4/gnulib-tool.m4: New file.
50894
50895 2005-08-27  Jim Meyering  <jim@meyering.net>
50896
50897         * modules/unistd-safer (Files): Add pipe-safer.c.
50898         * modules/fcntl-safer (Files): Add creat-safer.c.
50899
50900 2005-08-27  Jim Meyering  <jim@meyering.net>
50901
50902         * m4/stdlib-safer.m4: New file.  From coreutils.
50903         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
50904         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
50905         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
50906         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
50907         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
50908
50909 2005-08-27  Jim Meyering  <jim@meyering.net>
50910
50911         * lib/fopen-safer.c: Merge minor changes from coreutils.
50912         * lib/dup-safer.c: Likewise.
50913         * lib/fd-safer.c: Likewise.
50914
50915         Merge from coreutils.
50916         * lib/stdio--.h: New file.
50917         * lib/stdlib--.h: New file.
50918         * lib/mkstemp-safer.c: New file.
50919
50920         GNU tar needs these.
50921         * lib/pipe-safer.c: New file.
50922         * lib/creat-safer.c: New file.
50923         * lib/fcntl--.h (creat): Define to creat_safer.
50924         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
50925         * lib/unistd--.h (pipe): Define to pipe_safer.
50926         * lib/unistd-safer.h: Declare pipe_safer.
50927
50928 2005-08-26  Simon Josefsson  <jas@extundo.com>
50929
50930         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
50931         Haible <bruno@clisp.org>.
50932
50933 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
50934
50935         * lib/regex_internal.h: Remove all references to
50936         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
50937         or better.
50938         (bitset_not, bitset_merge, bitset_not_merge):
50939         (bitset_mask, re_string_allocate, re_string_construct):
50940         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
50941         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
50942         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
50943         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
50944         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
50945         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
50946         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
50947         (re_acquire_state_context):
50948         Remove unnecessary forward decls.
50949         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
50950         Put __attribute at function definition,
50951         now that the function decl has been removed.
50952         * lib/regex_internal.c (re_string_peek_byte_case):
50953         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
50954         Likewise.
50955
50956 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
50957
50958         * m4/regex.m4: Add AC_PREREQ(2.50).
50959         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
50960
50961 2005-08-25  Simon Josefsson  <jas@extundo.com>
50962
50963         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
50964         __fsetlocking.
50965
50966 2005-08-25  Simon Josefsson  <jas@extundo.com>
50967
50968         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
50969         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
50970         GLIBC specific code.
50971
50972 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50973
50974         Make regex safe for g++.  This fixes one real bug (an "err"
50975         that should have been "*err").  g++ problem reported by
50976         Sam Steingold.
50977         * lib/regex_internal.h (re_calloc): New macro, consistent with
50978         re_malloc etc.  All callers of calloc changed to use re_calloc.
50979         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
50980         not int.  All callers changed.
50981         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
50982         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
50983         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
50984         (find_recover_state): Change "err" to "*err"; this fixes what
50985         appears to be a real bug.
50986         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
50987         versus int.
50988
50989 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50990
50991         * modules/regex (Depends-on): Add malloc, since the code
50992         assumes that !malloc(0) means failure.
50993
50994 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
50995
50996         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
50997
50998         alloca modernization/simplification for regex.
50999         * lib/regex.c: Remove portability cruft for alloca.  This no longer
51000         needs to be at the start of the file, and can be moved into
51001         regex_internal.h and simplified.
51002         * lib/regex_internal.h: Include <alloca.h>.
51003         (__libc_use_alloca) [!defined _LIBC]: New macro.
51004         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
51005         now works outside glibc.
51006
51007 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51008
51009         * config/srclist.txt: Add glibc bugs 1241, 1245.
51010
51011 2005-08-25  Jim Meyering  <jim@meyering.net>
51012
51013         * lib/open-safer.c: Include <config.h>.
51014         Otherwise, we'd lose LARGEFILE support in any file using
51015         e.g. "fcntl--.h"
51016
51017 2005-08-25  Bruno Haible  <bruno@clisp.org>
51018
51019         * m4/minmax.m4: Require autoconf 2.52.
51020         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
51021         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
51022         alternatives of translit over the alphabet.
51023         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
51024
51025 2005-08-24  Simon Josefsson  <jas@extundo.com>
51026
51027         * tests/test-getpass.c: New file.
51028
51029 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
51030
51031         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
51032         for GNU regex features.
51033
51034 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
51035
51036         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
51037         * lib/regex.h (regerror): Likewise.
51038
51039         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
51040         requires this.  (The code never needed it.)
51041
51042         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
51043         All uses of recently-renamed identifiers changed to use the new,
51044         POSIX-compliant names.  The code will build and run just fine
51045         without these changes, but it's better to eat our own dog food
51046         and use the standard-conforming names.
51047
51048         * lib/regex.h: Fix a multitude of POSIX name space violations.
51049         These changes have an effect only for programs that define
51050         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
51051         do not change anything for programs compiled in the normal way.
51052         Also, there is no effect on the ABI.
51053
51054         (_REGEX_SOURCE): New macro.
51055         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
51056         defined and _GNU_SOURCE is not; this fixes a name space violation.
51057
51058         Rename the following macros to obey POSIX requirements.
51059         The old names are still visible as macros if _REGEX_SOURCE is defined.
51060         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
51061         RE_BACKSLASH_ESCAPE_IN_LISTS.
51062         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
51063         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
51064         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
51065         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
51066         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
51067         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
51068         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
51069         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
51070         (REG_INTERVALS): renamed from RE_INTERVALS.
51071         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
51072         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
51073         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
51074         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
51075         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
51076         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
51077         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
51078         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
51079         RE_UNMATCHED_RIGHT_PAREN_ORD.
51080         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
51081         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
51082         (REG_DEBUG): renamed from RE_DEBUG.
51083         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
51084         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
51085         unusual, since we can't clash with the POSIX REG_ICASE.
51086         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
51087         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
51088         (REG_NO_SUB): renamed from RE_NO_SUB.
51089         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
51090         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
51091         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
51092         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
51093         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
51094         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
51095         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
51096         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
51097         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
51098         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
51099         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
51100         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
51101         RE_SYNTAX_POSIX_MINIMAL_BASIC.
51102         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
51103         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
51104         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
51105         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
51106         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
51107         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
51108         (REG_FIXED): Renamed from REGS_FIXED.
51109         (REG_NREGS): Renamed from RE_NREGS.
51110
51111         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
51112         of other REG_* macros, since POSIX says the user is allowed to
51113         #undef these macros selectively.
51114
51115         (reg_errcode_t): Update comment stating what other tables need
51116         to be consistent.
51117
51118         Rename the following enum values to obey POSIX requirements.
51119         The old names are still visible as macros.
51120         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
51121         is not defined, since GNU is supposed to be a superset of POSIX as
51122         much as possible, and since we want reg_errcode_t to be a signed
51123         type for implementation consistency.
51124         (_REG_NOERROR): Renamed from REG_NOERROR.
51125         (_REG_NOMATCH): Renamed from REG_NOMATCH.
51126         (_REG_BADPAT): Renamed from REG_BADPAT.
51127         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
51128         (_REG_ECTYPE): Renamed from REG_ECTYPE.
51129         (_REG_EESCAPE): Renamed from REG_EESCAPE.
51130         (_REG_ESUBREG): Renamed from REG_ESUBREG.
51131         (_REG_EBRACK): Renamed from REG_EBRACK.
51132         (_REG_EPAREN): Renamed from REG_EPAREN.
51133         (_REG_EBRACE): Renamed from REG_EBRACE.
51134         (_REG_BADBR): Renamed from REG_BADBR.
51135         (_REG_ERANGE): Renamed from REG_ERANGE.
51136         (_REG_ESPACE): Renamed from REG_ESPACE.
51137         (_REG_BADRPT): Renamed from REG_BADRPT.
51138         (_REG_EEND): Renamed from REG_EEND.
51139         (_REG_ESIZE): Renamed from REG_ESIZE.
51140         (_REG_ERPAREN): Renamed from REG_ERPAREN.
51141         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
51142         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
51143         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
51144         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
51145
51146         (_REG_RE_NAME, _REG_RM_NAME): New macros.
51147         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
51148         changed.  But support the old name if the new one is not defined
51149         and if _REGEX_SOURCE.
51150
51151         Change the following member names in struct re_pattern_buffer.
51152         The old names are still supported if !_REGEX_SOURCE.
51153         The new names are always supported, regardless of _REGEX_SOURCE.
51154         (re_buffer): Renamed from buffer.
51155         (re_allocated): Renamed from allocated.
51156         (re_used): Renamed from used.
51157         (re_syntax): Renamed from syntax.
51158         (re_fastmap): Renamed from fastmap.
51159         (re_translate): Renamed from translate.
51160         (re_can_be_null): Renamed from can_be_null.
51161         (re_regs_allocated): Renamed from regs_allocated.
51162         (re_fastmap_accurate): Renamed from fastmap_accurate.
51163         (re_no_sub): Renamed from no_sub.
51164         (re_not_bol): Renamed from not_bol.
51165         (re_not_eol): Renamed from not_eol.
51166         (re_newline_anchor): Renamed from newline_anchor.
51167
51168         Change the following member names in struct re_registers.
51169         The old names are still supported if !_REGEX_SOURCE.
51170         The new names are always supported, regardless of _REGEX_SOURCE.
51171         (rm_num_regs): Renamed from num_regs.
51172         (rm_start): Renamed from start.
51173         (rm_end): Renamed from end.
51174
51175         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
51176         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
51177         Prepend __ to parameter names.
51178
51179         Undo yesterday's changes.
51180
51181 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
51182
51183         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
51184         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
51185         lib/regex.c.
51186
51187 2005-08-24  Jim Meyering  <jim@meyering.net>
51188
51189         Sync from coreutils.
51190         * m4/fcntl-safer.m4: New file.
51191
51192         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
51193         and object files for this module.
51194
51195 2005-08-24  Jim Meyering  <jim@meyering.net>
51196
51197         Sync from coreutils.
51198         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
51199
51200 2005-08-24  Jim Meyering  <jim@meyering.net>
51201
51202         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
51203         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
51204
51205 2005-08-24  Jim Meyering  <jim@meyering.net>
51206
51207         * modules/fcntl-safer: New module.
51208         * modules/fts (Depends-on): Add fcntl-safer.
51209         * MODULES.html.sh (File descriptor based Input/Output):
51210         Add fcntl-safer.
51211
51212 2005-08-24  Bruno Haible  <bruno@clisp.org>
51213
51214         Support for unit test modules.
51215         * modules/README: Mention tests modules.
51216         * modules/TEMPLATE-TESTS: New file.
51217         * gnulib-tool: New options --extract-tests-module, --with-tests and
51218         --tests-base (unused for the moment).
51219         (testsbase, inctests): New variables.
51220         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
51221         (func_verify_module): Exclude TEMPLATE-TESTS.
51222         (func_verify_nontests_module, func_verify_tests_module): New functions.
51223         (func_get_dependencies): Add implicit dependency for tests modules.
51224         (func_get_tests_module): New function.
51225         (func_modules_transitive_closure): When --with-tests was specified,
51226         include the unit tests as well, unless explicitly avoided.
51227         (func_emit_lib_Makefile_am): Ignore the tests modules here.
51228         (func_emit_tests_Makefile_am): New function.
51229         (func_create_testdir): When --with-tests was specified, emit a
51230         tests/ directory.
51231         * MODULES.html.sh (Future developments): Update.
51232
51233 2005-08-24  Bruno Haible  <bruno@clisp.org>
51234
51235         * modules/tls-tests: New file.
51236         * tests/test-tls.c: New file, from GNU gettext.
51237
51238 2005-08-24  Bruno Haible  <bruno@clisp.org>
51239
51240         * modules/lock-tests: New file.
51241         * tests/test-lock.c: New file, from GNU gettext.
51242
51243 2005-08-24  Bruno Haible  <bruno@clisp.org>
51244
51245         * lib/lock.h: Add multiple inclusion guard.
51246         * lib/tls.h: Add multiple inclusion guard.
51247
51248 2005-08-24  Bruno Haible  <bruno@clisp.org>
51249
51250         * gnulib-tool: Add support for the --aux-dir option to
51251         --create-testdir, --create-megatestdir, --test, --megatest.
51252         (func_create_testdir, func_create_megatestdir): Optionally emit a
51253         AC_CONFIG_AUX_DIR directive.
51254         (create-testdir, create-megatestdir, test, megatest): Provide a
51255         default value for $auxdir.
51256
51257 2005-08-24  Bruno Haible  <bruno@clisp.org>
51258
51259         * gnulib-tool (import): Use compound statement instead of subshell
51260         where possible.
51261
51262 2005-08-24  Bruno Haible  <bruno@clisp.org>
51263
51264         * gnulib-tool (import): Change --aux-dir default to "build-aux".
51265
51266 2005-08-24  Bruno Haible  <bruno@clisp.org>
51267
51268         * gnulib-tool (func_version): Update.
51269
51270 2005-08-24  Bruno Haible  <bruno@clisp.org>
51271
51272         * gnulib-tool (func_import, func_create_testdir,
51273         func_create_megatestdir): Quote all autoconf macro arguments.
51274
51275 2005-08-24  Bruno Haible  <bruno@clisp.org>
51276
51277         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
51278         option --force, because --force causes the aclocal.m4 of each
51279         subdirectory to be newer than the corresponding config.h.in.
51280
51281 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
51282
51283         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
51284         All contents moved to gl_REGEX.
51285         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
51286         assume that it does.
51287
51288 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
51289
51290         * lib/regex.h (REG_NOSYS)
51291         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
51292         Define, since POSIX requires it as of 2001.
51293         (_REG_ENOSYS)
51294         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
51295         New private symbol, used to keep the enum signed in all cases.
51296         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
51297         Youngman in
51298         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
51299
51300         * lib/regex_internal.c (re_string_skip_chars, register_state):
51301         (calc_state_hash):
51302         Remove forward decls; no longer needed now that we use prototypes.
51303         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
51304         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
51305         (clean_state_log_if_needed): Likewise.
51306
51307 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
51308
51309         * config/srclist.txt: Add glibc bugs 1231-1233.
51310
51311 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
51312
51313         Fix problems reported by Sam Steingold in
51314         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
51315         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
51316         assumed that reg_errcode_t is a signed type, which is not
51317         necessarily true if _XOPEN_SOURCE is not defined.
51318         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
51319         since some compilers warn about it otherwise.
51320
51321 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
51322
51323         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
51324         (init_word_char, create_initial_state, duplicate_node_closure):
51325         (fetch_token, peek_token_bracket, build_range_exp):
51326         (build_collating_symbol): Remove forward decls; no longer needed
51327         now that we use prototypes.
51328
51329         * lib/regcomp.c:
51330         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
51331         (re_compile_fastmap_iter, regcomp, regerror, regfree):
51332         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
51333         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
51334         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
51335         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
51336         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
51337         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
51338         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
51339         (build_range_exp, build_collating_symbol, parse_bracket_exp):
51340         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
51341         (build_charclass, build_charclass_op, fetch_number, create_tree):
51342         (create_token_tree, mark_opt_subexp, duplicate_tree):
51343         Use prototypes rather than old-style definitions.
51344
51345         * lib/regex_internal.c:
51346         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
51347         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
51348         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
51349         (re_string_reconstruct, re_string_peek_byte_case):
51350         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
51351         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
51352         (re_node_set_init_copy, re_node_set_add_intersect):
51353         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
51354         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
51355         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
51356         (re_acquire_state, re_acquire_state_context, register_state):
51357         (create_ci_newstate, create_cd_newstate, free_state):
51358         Likewise.
51359         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
51360         re_search_2):
51361         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
51362         (re_search_internal, prune_impossible_nodes):
51363         (acquire_init_state_context, check_matching, static):
51364         (check_halt_node_context, check_halt_state_context, proceed_next_node):
51365         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
51366         (update_regs, sift_states_backward, build_sifted_states):
51367         (clean_state_log_if_needed, merge_state_array):
51368         (update_cur_sifted_state, add_epsilon_src_nodes):
51369         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
51370         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
51371         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
51372         (find_recover_state, check_subexp_matching_top, transit_state_mb):
51373         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
51374         (check_arrival, check_arrival_add_next_nodes):
51375         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
51376         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
51377         (check_node_accept_bytes, check_node_accept, extend_buffers):
51378         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
51379         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
51380         (sift_ctx_init):
51381         Likewise.
51382
51383         * lib/regex_internal.h:
51384         (re_string_allocate, re_string_construct, re_string_reconstruct):
51385         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
51386         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
51387         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
51388         (re_string_context_at, re_string_peek_byte_case):
51389         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
51390         is defined, since we now use prototypes always.
51391
51392         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
51393         C89 or better.  All uses removed.
51394
51395 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
51396
51397         * config/srclist.txt: Add glibc bugs 1220-1227.
51398
51399 2005-08-20  Jim Meyering  <jim@meyering.net>
51400
51401         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
51402         of unused local, dfa.
51403
51404 2005-08-20  Bruno Haible  <bruno@clisp.org>
51405
51406         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
51407
51408 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
51409
51410         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
51411         (re_node_set_insert_last, re_dfa_add_node):
51412         Rename local variables to avoid GCC shadowing warnings.
51413
51414 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
51415
51416         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
51417         [defined lint]: Suppress bogus uninitialized-variable warnings.
51418
51419         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
51420         and let the caller return REG_ESPACE if out of space.  This
51421         removes an uninitialied-variable warning with GCC 4.0.1, and also
51422         avoids taking the address of a local variable.  All callers
51423         changed.
51424
51425 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
51426
51427         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
51428         $LIBCSRC/posix/regexec.c.
51429         Add glibc bug 1217 for regcomp.c.
51430
51431 2005-08-19  Jim Meyering  <jim@meyering.net>
51432
51433         * lib/regexec.c (proceed_next_node): Redo local variables to
51434         avoid GCC shadowing warnings.
51435
51436 2005-08-18  Bruno Haible  <bruno@clisp.org>
51437
51438         * lib/strstr.c (strstr): Fix return value in multibyte case.
51439         * lib/strcasestr.c (strcasestr): Likewise.
51440
51441 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
51442
51443         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
51444
51445 2005-08-17  Jim Meyering  <jim@meyering.net>
51446
51447         Make the %s format (seconds since the epoch) work for a negative
51448         number and when used with a zero-padded field width, e.g. %015s.
51449
51450         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
51451         label so that it precedes the code to set `digits'.  Otherwise,
51452         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
51453         print `00-22'.  Now, it prints `-0022', as it should.
51454
51455 2005-08-17  Bruno Haible  <bruno@clisp.org>
51456
51457         * modules/strstr (Files): Add m4/mbrtowc.m4.
51458         (Depends-on): Add mbuiter.
51459
51460 2005-08-17  Bruno Haible  <bruno@clisp.org>
51461
51462         * modules/strcasestr: New file.
51463         * MODULES.html.sh (String handling, based on ANSI C 89): Add
51464         strcasestr.
51465
51466 2005-08-17  Bruno Haible  <bruno@clisp.org>
51467
51468         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
51469
51470 2005-08-17  Bruno Haible  <bruno@clisp.org>
51471
51472         * modules/mbuiter: New file.
51473         * MODULES.html.sh (Extended multibyte and wide character utilities):
51474         Add mbuiter.
51475
51476 2005-08-17  Bruno Haible  <bruno@clisp.org>
51477
51478         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
51479         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
51480
51481 2005-08-17  Bruno Haible  <bruno@clisp.org>
51482
51483         * m4/strcasestr.m4: New file.
51484
51485 2005-08-17  Bruno Haible  <bruno@clisp.org>
51486
51487         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
51488         * lib/strstr.c: Completely rewritten, with multibyte locale support.
51489
51490 2005-08-17  Bruno Haible  <bruno@clisp.org>
51491
51492         * lib/strcasestr.h: New file.
51493         * lib/strcasestr.c: New file.
51494
51495 2005-08-17  Bruno Haible  <bruno@clisp.org>
51496
51497         * lib/strcasecmp.c: Use mbuiter.h.
51498
51499 2005-08-17  Bruno Haible  <bruno@clisp.org>
51500
51501         * lib/mbuiter.h: New file.
51502
51503 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
51504
51505         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
51506         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
51507         and gl_GETOPT are both invoked via different paths (as happens
51508         with GNU tar CVS because it uses both argp and getopt), the former
51509         wins.
51510
51511 2005-08-16  Bruno Haible  <bruno@clisp.org>
51512
51513         * modules/tls: New file.
51514         * MODULES.html.sh (Multithreading): Add tls.
51515
51516 2005-08-16  Bruno Haible  <bruno@clisp.org>
51517
51518         * modules/strnlen1: New file.
51519         * MODULES.html.sh (String handling): Add strnlen1.
51520
51521 2005-08-16  Bruno Haible  <bruno@clisp.org>
51522
51523         * modules/strcase (Files): Add m4/mbrtowc.m4.
51524         (Depends-on): Add strnlen1, mbchar.
51525
51526 2005-08-16  Bruno Haible  <bruno@clisp.org>
51527
51528         * modules/mbiter: New file.
51529         * MODULES.html.sh (Extended multibyte and wide character utilities):
51530         Add mbiter.
51531
51532 2005-08-16  Bruno Haible  <bruno@clisp.org>
51533
51534         * modules/mbfile: New file.
51535         * MODULES.html.sh (Extended multibyte and wide character utilities):
51536         Add mbfile.
51537
51538 2005-08-16  Bruno Haible  <bruno@clisp.org>
51539
51540         * modules/mbchar: New file.
51541         * MODULES.html.sh (Extended multibyte and wide character utilities):
51542         New section.
51543
51544 2005-08-16  Bruno Haible  <bruno@clisp.org>
51545
51546         * m4/tls.m4: New file, from GNU gettext.
51547
51548 2005-08-16  Bruno Haible  <bruno@clisp.org>
51549
51550         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
51551         always.
51552         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
51553
51554 2005-08-16  Bruno Haible  <bruno@clisp.org>
51555
51556         * m4/mbiter.m4: New file.
51557
51558 2005-08-16  Bruno Haible  <bruno@clisp.org>
51559
51560         * m4/mbfile.m4: New file.
51561
51562 2005-08-16  Bruno Haible  <bruno@clisp.org>
51563
51564         * m4/mbchar.m4: New file.
51565
51566 2005-08-16  Bruno Haible  <bruno@clisp.org>
51567
51568         * lib/tls.h: New file, from GNU gettext.
51569         * lib/tls.c: New file, from GNU gettext.
51570
51571 2005-08-16  Bruno Haible  <bruno@clisp.org>
51572
51573         * lib/strnlen1.h: New file.
51574         * lib/strnlen1.c: New file.
51575
51576 2005-08-16  Bruno Haible  <bruno@clisp.org>
51577
51578         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
51579         (mbi_init): Update.
51580         (mbi_avail, mbi_advance): Let the iteration end before the terminating
51581         NUL byte, not after it.
51582
51583 2005-08-16  Bruno Haible  <bruno@clisp.org>
51584
51585         * lib/strcase.h (strcasecmp): Add note in comments.
51586         * lib/strncasecmp.c: Use code from strcasecmp.c.
51587         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
51588         (strcasecmp): Work correctly in multibyte locales.
51589
51590 2005-08-16  Bruno Haible  <bruno@clisp.org>
51591
51592         * lib/mbiter.h: New file.
51593
51594 2005-08-16  Bruno Haible  <bruno@clisp.org>
51595
51596         * lib/mbfile.h: New file.
51597
51598 2005-08-16  Bruno Haible  <bruno@clisp.org>
51599
51600         * lib/mbchar.h: New file.
51601         * lib/mbchar.c: New file.
51602
51603 2005-08-16  Bruno Haible  <bruno@clisp.org>
51604
51605         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
51606         the valid ones. Makes the comparison operations transitive:
51607         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
51608         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
51609
51610 2005-08-15  Simon Josefsson  <jas@extundo.com>
51611
51612         * modules/ssize_t (License): Change to 'unlimited'.
51613
51614         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
51615
51616 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
51617
51618         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
51619         Add comments for each pending glibc patch.
51620
51621 2005-08-15  Bruno Haible  <bruno@clisp.org>
51622
51623         * lib/regex.h (__restrict_arr): Don't define to __restrict if
51624         __cplusplus is defined.
51625
51626 2005-08-14  Jim Meyering  <jim@meyering.net>
51627
51628         Sync from coreutils.
51629
51630         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
51631         Use the hash-table-based cycle-detection code not just when
51632         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
51633         Reported by James Youngman in
51634         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
51635         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
51636         FTS_TIGHT_CYCLE_CHECK.
51637         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
51638         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
51639         once again.
51640         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
51641         * lib/fts.c (fd_safer): Remove decl.
51642         Include fcntl--.h rather than unistd-safer.h
51643         (fts_safe_changedir): Don't call fd_safer; no longer needed
51644         now that we include fcntl--.h.
51645
51646 2005-08-12  Simon Josefsson  <jas@extundo.com>
51647
51648         * modules/getndelim2: Use ssize_t module.
51649         * modules/getnline: Likewise.
51650         * modules/safe-read: Likewise.
51651         * modules/xreadlink: Likewise.
51652
51653         * modules/ssize_t: New file.
51654
51655 2005-08-12  Simon Josefsson  <jas@extundo.com>
51656
51657         * m4/readline.m4: Look for termcap, curses or ncurses if required.
51658
51659 2005-08-12  Simon Josefsson  <jas@extundo.com>
51660
51661         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
51662         ssize_t.
51663
51664 2005-08-12  Simon Josefsson  <jas@extundo.com>
51665
51666         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
51667         readline, getdelim and check_version.
51668         (Support for systems lacking ISO C 99: Sizes of integer types):
51669         Add size_max.
51670
51671 2005-08-12  Bruno Haible  <bruno@clisp.org>
51672
51673         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
51674
51675 2005-08-11  Simon Josefsson  <jas@extundo.com>
51676
51677         * modules/readline: New file.
51678
51679         * modules/strnlen (Files): Add strnlen.h.
51680
51681 2005-08-11  Simon Josefsson  <jas@extundo.com>
51682
51683         * m4/readline.m4: New file.
51684
51685 2005-08-11  Simon Josefsson  <jas@extundo.com>
51686
51687         * lib/readline.h, readline.c: New file.
51688
51689 2005-08-11  Simon Josefsson  <jas@extundo.com>
51690
51691         * doc/gnulib.texi (Initial import, Finishing touches): Mention
51692         gl_AVOID.
51693
51694 2005-08-11  Bruno Haible  <bruno@clisp.org>
51695
51696         * lib/strnlen.h (strnlen): Change parameter name to match comment.
51697
51698 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
51699
51700         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
51701
51702 2005-08-10  Simon Josefsson  <jas@extundo.com>
51703
51704         * tests/test-iconvme.c: New file.
51705
51706 2005-08-10  Simon Josefsson  <jas@extundo.com>
51707
51708         * m4/strnlen.m4: New file.
51709
51710         * m4/strndup.m4: Don't check for strnlen declaration, done in
51711         strnlen.m4.
51712
51713 2005-08-10  Simon Josefsson  <jas@extundo.com>
51714
51715         * lib/strndup.c: Use strnlen.h.
51716
51717         * lib/strnlen.h: New file.
51718
51719 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
51720
51721         * README: Typos.
51722
51723 2005-08-02  Simon Josefsson  <jas@extundo.com>
51724
51725         * modules/readline: New file.
51726
51727 2005-08-02  Simon Josefsson  <jas@extundo.com>
51728
51729         * modules/getdelim: New file.
51730
51731         * modules/getline: Rewrite, don't use getndelim2.
51732
51733 2005-08-02  Simon Josefsson  <jas@extundo.com>
51734
51735         * m4/getline.m4: Separate out getdelim stuff into separate module.
51736
51737         * m4/getdelim.m4: New file.
51738
51739 2005-08-02  Simon Josefsson  <jas@extundo.com>
51740
51741         * lib/getline.h, getline.c: Rewrite.
51742
51743         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
51744
51745 2005-07-31  Bruno Haible  <bruno@clisp.org>
51746
51747         * lib/lock.h (gl_lock_initializer): New macro.
51748         (gl_lock_define_initialized): Use it.
51749         (gl_rwlock_initializer): New macro.
51750         (gl_rwlock_define_initialized): Use it.
51751         (gl_recursive_lock_initializer): New macro.
51752         (gl_recursive_lock_define_initialized): Use it.
51753
51754 2005-07-30  Karl Berry  <karl@gnu.org>
51755
51756         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
51757         Report from Ben Pfaff, regarding getopt.
51758
51759 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
51760
51761         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
51762         normal way.
51763         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
51764         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
51765         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
51766         (gl_GETOPT): Use the new macros.  Most of the implementation
51767         is moved to the new macros.  This is for programs like Emacs
51768         that don't want all the functionality of gl_GETOPT.
51769
51770 2005-07-26  Bruno Haible  <bruno@clisp.org>
51771
51772         * m4/lock.m4: Update from GNU gettext.
51773
51774 2005-07-26  Bruno Haible  <bruno@clisp.org>
51775
51776         * lib/lock.h: Update from GNU gettext.
51777         * lib/lock.c: Update from GNU gettext.
51778
51779 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
51780
51781         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
51782         obsolescent AC_TRY_RUN.  Include the default includes files, for
51783         'exit'.
51784
51785 2005-07-24  Bruno Haible  <bruno@clisp.org>
51786
51787         * modules/visibility: New file.
51788         * MODULES.html.sh (Misc): Add visibility.
51789
51790 2005-07-24  Bruno Haible  <bruno@clisp.org>
51791
51792         * m4/visibility.m4: New file.
51793
51794 2005-07-24  Bruno Haible  <bruno@clisp.org>
51795
51796         * doc/visibility.texi: New file.
51797
51798 2005-07-22  Bruno Haible  <bruno@clisp.org>
51799
51800         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
51801         $(ALLOCA_H), redundant through BUILT_SOURCES.
51802         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
51803         redundant through BUILT_SOURCES.
51804         * modules/byteswap (Makefile.am): Remove explicit dependency on
51805         $(BYTESWAP_H), redundant through BUILT_SOURCES.
51806         * modules/fnmatch (Makefile.am): Remove explicit dependency on
51807         $(FNMATCH_H), redundant through BUILT_SOURCES.
51808         * modules/getopt (Makefile.am): Remove explicit dependency on
51809         $(GETOPT_H), redundant through BUILT_SOURCES.
51810         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
51811         redundant through BUILT_SOURCES.
51812         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
51813         redundant through BUILT_SOURCES.
51814         * modules/stdbool (Makefile.am): Remove explicit dependency on
51815         $(STDBOOL_H), redundant through BUILT_SOURCES.
51816         * modules/stdint (Makefile.am): Remove explicit dependency on
51817         $(STDINT_H), redundant through BUILT_SOURCES.
51818         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
51819         Remove explicit dependency on $(SYSEXITS_H).
51820         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
51821
51822 2005-07-18  Simon Josefsson  <jas@extundo.com>
51823
51824         * lib/check-version.c (check_version): Accept identical versions too.
51825
51826 2005-07-18  Bruno Haible  <bruno@clisp.org>
51827
51828         * modules/lock: New file.
51829         * MODULES.html.sh (Multithreading): New section.
51830
51831 2005-07-18  Bruno Haible  <bruno@clisp.org>
51832
51833         * m4/lock.m4: New file, from GNU gettext.
51834
51835 2005-07-18  Bruno Haible  <bruno@clisp.org>
51836
51837         * lib/lock.h: New file, from GNU gettext.
51838         * lib/lock.c: New file, from GNU gettext.
51839
51840 2005-07-18  Bruno Haible  <bruno@clisp.org>
51841
51842         * lib/lock.h (gl_once_t): New type.
51843         (gl_once_define, gl_once): New macros.
51844         * lib/lock.c (fresh_once): New variable.
51845         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
51846         functions.
51847
51848 2005-07-16  Simon Josefsson  <jas@extundo.com>
51849
51850         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
51851         workaround, suggested by Bruno.
51852
51853 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
51854
51855         * modules/xalloc (Depends-on): Add xalloc-die.
51856         * modules/xvasprintf (Depends-on): Add xalloc-die.
51857
51858 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
51859
51860         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
51861         with a minor change.
51862
51863 2005-07-15  Bruno Haible  <bruno@clisp.org>
51864
51865         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
51866         When using lib/poll.c, define poll as rpl_poll.
51867
51868 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
51869
51870         * modules/argp (Depends-on): Remove unlocked-io.
51871
51872 2005-07-14  Derek Price  <derek@ximbiot.com>
51873
51874         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
51875         for glob symlink bug.
51876
51877 2005-07-14  Bruno Haible  <bruno@clisp.org>
51878
51879         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
51880         Instead, test for *_unlocked function declarations directly.
51881
51882 2005-07-11  Simon Josefsson  <jas@extundo.com>
51883
51884         * modules/size_max: New file.
51885
51886         * modules/xsize: Depend on size_max module for size_max.m4.
51887
51888 2005-07-11  Simon Josefsson  <jas@extundo.com>
51889
51890         * lib/size_max.h: New file.
51891
51892 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
51893
51894         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
51895         copyright symbol and the year.
51896         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
51897         (version_etc_va): Use parameterized copyright notice.
51898         Reword to conform to the current GNU coding standards.
51899
51900 2005-07-11  Karl Berry  <karl@gnu.org>
51901
51902         * doc/gnulib.texi (Quoting): new node.
51903         (Initial import): more info, from Patrice.
51904
51905 2005-07-11  Bruno Haible  <bruno@clisp.org>
51906
51907         * gnulib-tool (func_usage): Document option --avoid.
51908         (Command line options): Handle --avoid.
51909         (func_acceptable): New function.
51910         (func_modules_transitive_closure): Use it.
51911
51912 2005-07-11  Bruno Haible  <bruno@clisp.org>
51913
51914         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
51915         Reported by Jim Meyering.
51916
51917 2005-07-10  Bruno Haible  <bruno@clisp.org>
51918
51919         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
51920         Needed when size_t is smaller than 'unsigned int'.
51921         Reported by Paul Eggert.
51922
51923 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
51924
51925         * modules/argp (Depends-on): Add unlocked-io
51926
51927 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
51928
51929         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
51930         block of defines.
51931
51932 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
51933
51934         * config/srclist.txt: Comment out regcomp.c, since we have a porting
51935         fix now.
51936
51937 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
51938         and Paul Eggert  <eggert@cs.ucla.edu>
51939
51940         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
51941         in wint_t, not wchar_t.  Remove now-unnecessary cast.
51942
51943 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51944
51945         * modules/regex (Files): Add lib/regex_internal.c,
51946         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
51947         (Depends-on): Add extensions.
51948         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
51949
51950 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51951
51952         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
51953         pathconf.
51954         * m4/same.m4 (gl_SAME): Likewise.
51955         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
51956
51957         * m4/regex.m4: Adjust to new libc regex implementation.
51958         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
51959         all the .c and .h parts of (the new) regex.
51960         Quote the m4 stuff better.
51961         Check for RE_ICASE bug of old gnulib.
51962         Check for REG_STARTEND of recent libc.
51963         Rename local variables from jm_* to gl_*.
51964         Quote operand of "test -f".
51965         Say "recent enough" version of libc, not "version 2".
51966         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
51967         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
51968         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
51969         Remove check for btowc, isascii.
51970         Require AM_LANGINFO_CODESET.
51971
51972 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51973
51974         * lib/regex.c, regex.h: Sync from libc.
51975         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
51976         * lib/regexec.c:
51977         New files, synced from libc, except that regex_internal.h
51978         currently has a small porting fix.
51979
51980 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
51981
51982         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
51983         regex_internal.c, regexec.c.
51984         Add regex_internal.h too, but as a comment, since the libc version
51985         is currently broken in gnulib mode.
51986
51987 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
51988
51989         Support programs like Emacs that use gnulib but not gettext.
51990         * MODULES.html.sh (Internationalization functions): Add gettext-h.
51991         * modules/gettext-h: New file.
51992         * modules/gettext (Files): Remove lib/gettext.h.
51993         (Depends-on): Add gettext-h.
51994         (Makefile.am): Remove lib_SOURCES.
51995         * modules/argmatch, modules/c-stack, modules/closeout:
51996         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
51997         * modules/execute, modules/file-type, modules/getaddrinfo:
51998         * modules/getopt, modules/human, modules/javacomp:
51999         * modules/javaexec, modules/mkdir-p, modules/obstack:
52000         * modules/openat, modules/pagealign_alloc, modules/pipe:
52001         * modules/quotearg, modules/regex, modules/rpmatch:
52002         * modules/unicodeio, modules/userspec, modules/version-etc:
52003         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
52004         * modules/xsetenv:
52005         Depend on gettext-h, not gettext.
52006
52007 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
52008
52009         * gnulib-tool (func_import): Add support for 'public domain' license.
52010         * modules/alloca, modules/atexit, modules/memmove:
52011         Now public domain, not GPL.
52012         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
52013         * modules/realloc, modules/strerror, modules/strtod:
52014         Now LGPL, not GPL.
52015
52016 2005-07-05  Bruno Haible  <bruno@clisp.org>
52017
52018         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
52019         autoconf CVS. Needed for mingw.
52020
52021 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52022
52023         Remove the dependency of the strftime module on the tzset module.
52024         * modules/strftime (Depends-on): Remove dependency on tzset.
52025
52026 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52027
52028         Remove the dependency of the strftime module on the tzset module.
52029         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
52030         gl_FUNC_TZSET_CLOBBER.
52031
52032 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52033
52034         Remove the dependency of the strftime module on the tzset module.
52035         * lib/strftime.c (my_strftime)
52036         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
52037         Copy the input structure, to work around some of the bug with
52038         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
52039         Solaris releases, you should also use the tzset module, but we won't
52040         require it as a dependency any more since we don't want LGPLed code
52041         to depend on GPLed code.
52042
52043 2005-07-02  Jim Meyering  <jim@meyering.net>
52044
52045         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
52046         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
52047         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
52048         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
52049
52050 2005-07-02  Jim Meyering  <jim@meyering.net>
52051
52052         * lib/backupfile.c (backup_args): Change a `0' to NULL.
52053
52054 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
52055
52056         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
52057         declares only 'struct timespec;' (!).
52058
52059 2005-07-01  Jim Meyering  <jim@meyering.net>
52060
52061         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
52062         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
52063         * lib/save-cwd.c, tempname.c:
52064         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
52065         and don't include <sys/file.h>).
52066
52067 2005-06-29  Jim Meyering  <jim@meyering.net>
52068
52069         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
52070         type name.  Use the variable name instead.
52071         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
52072         Likewise.
52073
52074 2005-06-28  Simon Josefsson  <jas@extundo.com>
52075
52076         * modules/check-version (Files): Add check-version.m4.
52077
52078 2005-06-28  Simon Josefsson  <jas@extundo.com>
52079
52080         * m4/check-version.m4: New file, suggested by Jim Meyering
52081         <jim@meyering.net>.
52082
52083 2005-06-28  Simon Josefsson  <jas@extundo.com>
52084
52085         * lib/check-version.h, lib/check-version.c: New files.
52086
52087 2005-06-28  Simon Josefsson  <jas@extundo.com>
52088
52089         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
52090         collision with global variable.  Better indentation.  Don't
52091         increment buffer pointer beyond buffer end.  Based on comments
52092         from Paul Eggert <eggert@cs.ucla.edu>.
52093
52094         * lib/base64.h: Indent.
52095
52096 2005-06-28  Simon Josefsson  <jas@extundo.com>
52097
52098         * doc/gnulib.texi (Library version handling): New section.
52099
52100 2005-06-28  Jim Meyering  <jim@meyering.net>
52101
52102         * check-module (find_included_lib_files): Hard-code another
52103         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
52104         but modules/fts-lgpl (correctly) does not list those files.
52105
52106         * modules/canonicalize (Files): Add lib/pathmax.h.
52107
52108 2005-06-25  Simon Josefsson  <jas@extundo.com>
52109
52110         * modules/check-version: New file.
52111
52112 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
52113
52114         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
52115         initializer of struct addrinfo, as an indication that we don't
52116         care how many members the structure has.
52117
52118 2005-06-24  Derek Price  <derek@ximbiot.com>
52119         and Bruno Haible  <bruno@clisp.org>
52120
52121         Remove stat module & update lstat.
52122         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
52123         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
52124         * m4/stat.m4: Remove this file.
52125
52126 2005-06-24  Derek Price  <derek@ximbiot.com>
52127         and Bruno Haible  <bruno@clisp.org>
52128
52129         Remove stat module & update lstat.
52130         * lib/stat.c: Remove this file...
52131         (slash_aware_lstat): ...moving this content and its support...
52132         * lib/lstat.c (rpl_lstat): ...into here.
52133         * lib/lstat.h: New file.
52134
52135 2005-06-24  Derek Price  <derek@ximbiot.com>
52136         and Bruno Haible  <bruno@clisp.org>
52137
52138         Remove stat module & update lstat.
52139         * config/srclist.txt (libc sources): Remove stat.
52140
52141 2005-06-24  Derek Price  <derek@ximbiot.com>
52142         and Bruno Haible  <bruno@clisp.org>
52143
52144         Remove stat module & update lstat.
52145         * MODULES.html.sh (stat): Remove.
52146         * MODULES.html: Regenerated.
52147         * modules/lstat (Description): Correct function name.
52148         (Files): Add "lstat.h".
52149         (Depends-on): Remove stat, add xalloc, stat-macros.
52150         * modules/stat: Remove this file.
52151         (Include): Add "lstat.h", remove <sys/stat.h>.
52152
52153 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
52154
52155         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
52156         (ranged_convert): Don't save conversion in a temporary struct.
52157         This causes a warning with GCC 4.0.0, and anyway in the typical
52158         case it's not worth the extra 100 bytes or so of code.
52159         (ranged_convert, __mktime_internal): When calling a function via a
52160         pointer P, use P () rather than (*P) (), as we now assume C89 or
52161         better.
52162
52163 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
52164
52165         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
52166         "who -r" failed to give output.  Problem reported by Tim Waugh.
52167
52168         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
52169         (xcalloc): Use it to avoid needless tests.
52170         Problem reported by Jim Meyering.
52171
52172 2005-06-20  Derek Price  <derek@ximbiot.com>
52173
52174         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
52175         unnecessary for Autoconfs > 2.59c.
52176
52177 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52178
52179         * lib/argp.h (__option_is_short): Check upper limit of
52180         __key. Isprint() requires its argument to have the value
52181         of an unsigned char or EOF.
52182
52183 2005-06-16  Jim Meyering  <jim@meyering.net>
52184
52185         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
52186         when either N or S is zero.
52187
52188 2005-06-16  Derek Price  <derek@ximbiot.com>
52189
52190         * m4/bison.m4: Declare YACC & YFLAGS precious.
52191
52192 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
52193
52194         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
52195         multibyte string or pattern, fall back on unibyte matching.
52196         Problem reported by James Youngman.
52197
52198 2005-06-08  Bruno Haible  <bruno@clisp.org>
52199
52200         * modules/csharpcomp: New file.
52201         * MODULES.html.sh (C#): Add csharpcomp.
52202
52203 2005-06-08  Bruno Haible  <bruno@clisp.org>
52204
52205         * m4/csharpcomp.m4: New file, from GNU gettext.
52206
52207 2005-06-08  Bruno Haible  <bruno@clisp.org>
52208
52209         * lib/csharpcomp.h: New file, from GNU gettext.
52210         * lib/csharpcomp.c: New file, from GNU gettext.
52211         * lib/csharpcomp.sh.in: New file, from GNU gettext.
52212
52213 2005-06-08  Bruno Haible  <bruno@clisp.org>
52214
52215         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
52216         warning on mingw.
52217
52218 2005-06-07  Derek Price  <derek@ximbiot.com>
52219
52220         Sync from CVS.
52221         * lib/glob_.h: Indent nested #ifdef.
52222
52223 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
52224
52225         Sync from coreutils.
52226         Use "file name" when talking about file names, instead of "filename"
52227         or "path", as per the GNU coding standards.
52228         * lib/mkdir-p.c: Renamed from makepath.c.
52229         (make_dir_parents): Renamed from make_path.  All callers changed.
52230         * lib/mkdir-p.h: Likewise.  All includers changed.
52231         * lib/filenamecat.c: Renamed from path-concat.c.
52232         (file_name_concat): Renamed from path_concat.  All callers changed.
52233         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
52234         * lib/filenamecat.h: Likewise.  All includers changed.
52235         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
52236         in comments or local variable names.
52237         * lib/basename.c: Likewise.
52238         * lib/canonicalize.c, canonicalize.h: Likewise.
52239         * lib/dirname.c, dirname.h: Likewise.
52240         * lib/euidaccess.c: Likewise.
52241         * lib/exclude.c: Likewise
52242         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
52243         * lib/fsusage.c, fsuage.h: Likewise.
52244         * lib/fts.c, fts_.h: Likewise.
52245         * lib/getcwd.c: Likewise.
52246         * lib/getloadavg.c: Likewise.
52247         * lib/mkstemp.c: Likewise.
52248         * lib/mountlist.c, mountlist.h: Likewise.
52249         * lib/openat.c, openat.h: Likewise.
52250         * lib/readlink-stub.c: Likewise.
52251         * lib/readutmp.c, readutmp.h: Likewise.
52252         * lib/rename.c: Likewise.
52253         * lib/rmdir.c: Likewise.
52254         * lib/same.c: Likewise.
52255         * lib/savedir.c: Likewise.
52256         * lib/stripslash.c: Likewise.
52257         * lib/tempname.c: Likewise.
52258         * lib/xreadlink.c: Likewise.
52259         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
52260         All uses changed.
52261         * lib/exclude.h: Likewise.
52262
52263         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
52264         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
52265         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
52266         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
52267         * lib/pathmax.h: Include <limits.h> unconditionally, since other
52268         files have been getting away with it for years (MORE/BSD 4.3
52269         is extinct now).
52270         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
52271         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
52272
52273         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
52274         Define to 256, not 255, as per modern POSIX.
52275
52276 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
52277
52278         Sync from coreutils.
52279         Use "file name" when talking about file names, instead of "filename"
52280         or "path", as per the GNU coding standards.
52281         * MODULES.html.sh: mkdir-p renamed from makepath.
52282         filenamecat renamed from path-concat.
52283         * modules/filenamecat: Renamed from modules/path-concat.
52284         (Files): filenamecat.h and filenamecat.c renamed from
52285         path-concat.h and path-concat.c.
52286         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
52287         (Include): filenamecat.h, not path-concat.h.
52288         * modules/mkdir-p: Renamed from modules/makepath.
52289         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
52290         makepath.c.
52291         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
52292         (Include): mkdir-p.h, not makepath.h.
52293
52294 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
52295
52296         Sync from coreutils.
52297         * m4/mkdir-p.m4: Renamed from makepath.m4.
52298         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
52299         Rename files from makepath.c to mkdir-p.c, and from
52300         makepath.h to mkdir-p.h.
52301         * m4/filenamecat.m4: Renamed from path-concat.m4.
52302         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
52303         Rename files from path-concat.c to filenamecat.c,
52304         and from path-concat.h to filenamecat.h.
52305         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
52306         "file name" in local variables or comments.
52307         * m4/rename.m4: Likewise.
52308
52309 2005-06-01  Bruno Haible  <bruno@clisp.org>
52310
52311         * modules/csharpexec: New file.
52312         * MODULES.html.sh (C#): New section.
52313
52314 2005-06-01  Bruno Haible  <bruno@clisp.org>
52315
52316         * m4/csharp.m4: New file, from GNU gettext.
52317         * m4/csharpexec.m4: New file, from GNU gettext.
52318
52319 2005-06-01  Bruno Haible  <bruno@clisp.org>
52320
52321         * lib/csharpexec.h: New file, from GNU gettext.
52322         * lib/csharpexec.c: New file, from GNU gettext.
52323         * lib/csharpexec.sh.in: New file, from GNU gettext.
52324
52325 2005-05-31  Derek Price  <derek@ximbiot.com>
52326             Paul Eggert  <eggert@cs.ucla.edu>
52327
52328         Sync from cvs.
52329         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
52330
52331 2005-05-31  Derek Price  <derek@ximbiot.com>
52332             Paul Eggert  <eggert@cs.ucla.edu>
52333
52334         Sync from cvs.
52335         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
52336
52337 2005-05-29  Derek Price  <derek@ximbiot.com>
52338
52339         * config/srclist.txt (glob_.h, glob.c): Add these files.
52340
52341 2005-05-29  Derek Price  <derek@ximbiot.com>
52342
52343         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
52344         * modules/glob: New file.
52345         * modules/getlogin_r: Add link to POSIX spec in description.
52346
52347 2005-05-29  Derek Price  <derek@ximbiot.com>
52348             Paul Eggert  <eggert@cs.ucla.edu>
52349
52350         * m4/glob.m4: New file.
52351
52352 2005-05-29  Derek Price  <derek@ximbiot.com>
52353             Paul Eggert  <eggert@cs.ucla.edu>
52354
52355         * lib/glob_.h, lib/glob.c: New files.
52356
52357 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
52358
52359         * modules/fts (Files): Remove m4/inttypes-pri.m4.
52360         * modules/fts-lgpl (Depends-on): Remove gettext.
52361
52362 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
52363
52364         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
52365         and don't require gt_INTTYPES_PRI.
52366
52367 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
52368
52369         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
52370
52371         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
52372         the configuration hassle isn't worth it.
52373         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
52374         (LONGEST_MODIFIER, PRIuMAX): Remove.
52375
52376 2005-05-27  Bruno Haible  <bruno@clisp.org>
52377
52378         * lib/getlogin_r.h: Remove second include of <stddef.h>.
52379
52380 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
52381
52382         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
52383         _POSIX_PTHREAD_SEMANTICS for Solaris.
52384
52385 2005-05-25  Derek Price  <derek@ximbiot.com>
52386
52387         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
52388
52389 2005-05-25  Derek Price  <derek@ximbiot.com>
52390             Paul Eggert  <eggert@cs.ucla.edu>
52391
52392         * modules/getlogin_r, m4/getlogin_r.m4: New files.
52393         * lib/getlogin_r.c, getlogin_r.h: New files.
52394
52395 2005-05-25  Bruno Haible  <bruno@clisp.org>
52396             Derek Price  <derek@ximbiot.com>
52397
52398         * lib/getlogin_r.h: Simplify API documentation.
52399
52400 2005-05-23  Derek Price  <derek@ximbiot.com>
52401
52402         * modules/minmax (Files): Add m4/minmax.m4.
52403         (configure.ac): Add gl_MINMAX.
52404
52405 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
52406
52407         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
52408         so that unistd-safer.h (GPL'ed code) need not be included.
52409
52410 2005-05-22  Bruno Haible  <bruno@clisp.org>
52411
52412         * m4/minmax.m4: New file.
52413         Based on a patch by Derek Price <derek@ximbiot.com>.
52414
52415 2005-05-22  Bruno Haible  <bruno@clisp.org>
52416
52417         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
52418         (INT64_MIN): Fix definition.
52419         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
52420
52421         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
52422         NEED_SIGNED_INT_TYPES.
52423
52424         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
52425         HAVE_SYSTEM_INTTYPES.
52426
52427 2005-05-22  Bruno Haible  <bruno@clisp.org>
52428
52429         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
52430         Also include <sys/param.h> if it defines MIN, MAX.
52431         Based on a patch by Derek Price <derek@ximbiot.com>.
52432
52433 2005-05-21  Jim Meyering  <jim@meyering.net>
52434
52435         * modules/fts (Files): Add m4/inttypes-pri.m4.
52436         (Depends-on): Add lstat and remove gettext.  Alphabetize.
52437
52438 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
52439
52440         New fts module.
52441         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
52442         (setup_dir, free_dir): New functions.
52443         (enter_dir, leave_dir): Define trivial
52444         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
52445         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
52446         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
52447         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
52448         Move to fts-cycle.c.
52449         (fts_open): Use setup_dir.
52450         (fts_close): Use free_dir.
52451         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
52452         This adds a label and some gotos, but the alternatives were messier.
52453         Check for memory allocation failure when entering a dir.
52454         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
52455         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
52456         (FTS): New member fts_cycle, that is a union that contains the
52457         old active_dir_ht and cycle_state.  All uses changed to mention
52458         fts_cycle.ht and fts_cycle.state.
52459         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
52460         fts.c, with the following changes:
52461         (setup_dir, free_dir): New functions.
52462         (enter_dir): Now returns bool.  Return true if successful, false
52463         if memory exhausted.  All callers changed.
52464         Do not bother partly cleaning up on
52465         memory allocation failure; that is free_dir's job.
52466         However, free ad if hash_insert fails, to avoid memory leak.
52467         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
52468         fts->fts_options to see which union member to use.
52469
52470 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
52471
52472         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
52473         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
52474
52475 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
52476
52477         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
52478
52479 2005-05-20  Jim Meyering  <jim@meyering.net>
52480
52481         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
52482         Now a macro, to pacify GCC.
52483
52484 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
52485
52486         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
52487         of -1.
52488
52489 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
52490
52491         * lib/chown.c (rpl_chown): Return -1 on failure.
52492
52493 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
52494
52495         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
52496         Don't check for stddef.h.
52497         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
52498         don't use its results.
52499         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
52500         since we include them unconditionally.  Don't require
52501         AM_STDBOOL_H, since stdbool is a prerequisite.
52502         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
52503         since we assume C89 or better.
52504         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
52505         as we don't use their results.
52506         Don't check for fchdir, memmove, memset, strrchr, as we use
52507         them unconditionally.
52508         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
52509         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
52510
52511 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
52512
52513         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
52514         Include <stddef.h> unconditionally, since we assume C89 now.
52515         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
52516         * lib/fts.c: Include fts_.h first, to check interface.
52517         Do not include intprops.h; no longer needed.
52518         Include cycle-check.h and hash.h, since fts_.h no longer does.
52519         Remove unnecessary casts of closedir to void.
52520         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
52521         decide whether to decrement nlinks.
52522         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
52523         (FTS): Use struct hash_table * instead of Hash_table, so that
52524         we no longer need to include hash.h here.
52525
52526 2005-05-18  Jim Meyering  <jim@meyering.net>
52527
52528         * modules/dirfd (License): Change to LGPL.  Most of the code
52529         is already in the public domain.
52530
52531 2005-05-18  Jim Meyering  <jim@meyering.net>
52532
52533         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
52534         Reported by Yoann Vandoorselaere.
52535
52536 2005-05-17  Jim Meyering  <jim@meyering.net>
52537
52538         * m4/fts.m4: New file, from coreutils.
52539
52540 2005-05-17  Jim Meyering  <jim@meyering.net>
52541
52542         * lib/fts.c, lib/fts_.h: New files, from coreutils.
52543
52544 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52545
52546         Sync from coreutils.
52547         * m4/unlinkdir.m4: New file.
52548
52549 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52550
52551         Sync from coreutils.
52552         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
52553         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
52554         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
52555         White space changes only.
52556         * lib/makepath.c (make_path): Port to hosts where leading "//" is
52557         special.
52558         * lib/yesno.c: Include getline.h, not ctype.h.
52559         (yesno): Don't remove leading white space; POSIX doesn't allow it.
52560         Use getline to remove arbitrary restriction on response length.
52561
52562 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52563
52564         * config/srclist-update: Spell out "Street" in FSF postal
52565         mail address; this is the style the FSF seems to prefer.
52566
52567         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
52568         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
52569         this updates FSF postal mail address.
52570
52571         Sync from coreutils.
52572         * modules/unlinkdir: New file.
52573         * modules/yesno (Depends-on): Add getline.
52574         * MODULES.html.sh (File system functions): Add unlinkdir.
52575
52576 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52577
52578         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
52579         lib/strsep.h:
52580         Change the initial comment to refer to GPL, not LGPL.
52581         gnulib-tool will change it to LGPL as needed.
52582
52583         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
52584         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
52585         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
52586         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
52587         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
52588         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
52589         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
52590         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
52591         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
52592         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
52593         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
52594         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
52595         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
52596         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
52597         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
52598         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
52599         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
52600         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
52601         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
52602         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
52603         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
52604         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
52605         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
52606         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
52607         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
52608         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
52609         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
52610         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
52611         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
52612         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
52613         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
52614         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
52615         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
52616         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
52617         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
52618         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
52619         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
52620         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
52621         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
52622         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
52623         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
52624         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
52625         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
52626         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
52627         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
52628         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
52629         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
52630         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
52631         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
52632         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
52633         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
52634         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
52635         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
52636         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
52637         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
52638         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
52639         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
52640         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
52641         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
52642         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
52643         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
52644         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
52645         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
52646         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
52647         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
52648         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
52649         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
52650         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
52651         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
52652         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
52653         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
52654         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
52655         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
52656         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
52657         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
52658         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
52659         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
52660         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
52661         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
52662         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
52663         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
52664         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
52665         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
52666         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
52667         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
52668         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
52669         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
52670         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
52671         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
52672         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
52673         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
52674         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
52675         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
52676         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
52677         lib/yesno.c, lib/yesno.h:
52678         Update FSF postal mail address.
52679
52680 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
52681
52682         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
52683         tests/test-memmem.c, tests/test-stpncpy.c:
52684         Update FSF postal mail address.
52685
52686 2005-05-13  Bruno Haible  <bruno@clisp.org>
52687
52688         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
52689         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
52690         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
52691         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
52692         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
52693         Add support for 64-bit integers in the MSVC compiler.
52694
52695 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52696
52697         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
52698
52699 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
52700
52701         * gnulib-tool (func_import): Sort and uniquify recommended includes.
52702
52703 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
52704
52705         * doc/getdate.texi (General date syntax): Don't say that date
52706         date --iso-8601=ns generates acceptable dates; it doesn't yet.
52707         Problem reported by Nic Ferrier.
52708
52709 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52710
52711         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
52712         specified in ai_socktype. Fix invalid ai_protocol
52713         check. ai_protocol is usually set to 0 or depending on
52714         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
52715         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
52716         ai_socktype / ai_protocol in the returned addrinfo structure.
52717
52718 2005-05-10  Simon Josefsson  <jas@extundo.com>
52719
52720         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
52721         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
52722
52723 2005-05-10  Karl Berry  <karl@gnu.org>
52724
52725         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
52726         (from http://www.gnu.org/licenses).
52727         * doc/COPYING.LIB: also rename to COPYING.LESSER.
52728         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
52729         fdl.texi suffices.
52730
52731 2005-05-10  Karl Berry  <karl@gnu.org>
52732
52733         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
52734         (COPYING.DOC): remove.
52735
52736         * config/srclist-update: new FSF address.
52737
52738 2005-05-10  Derek Price  <derek@ximbiot.com>
52739
52740         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
52741         possible.
52742
52743 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52744             Bruno Haible  <bruno@clisp.org>
52745
52746         * modules/inet_ntop: New file.
52747         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
52748         inet_ntop.
52749
52750 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52751             Bruno Haible  <bruno@clisp.org>
52752
52753         * m4/inet_ntop.m4: New file.
52754
52755 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52756             Bruno Haible  <bruno@clisp.org>
52757
52758         * lib/inet_ntop.h: New file.
52759         * lib/inet_ntop.c: New file, from glibc with modifications.
52760
52761 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
52762
52763         * modules/time_r (License): Change to LGPL.
52764         * modules/extensions (License): Change to LGPL.  Actually,
52765         the license is more permissive than that, but currently gnulib-tool
52766         doesn't know how to handle more-permissive licenses.
52767
52768         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
52769         Problem reported by Dave Love.
52770
52771 2005-05-08  Jim Meyering  <jim@meyering.net>
52772
52773         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
52774         blank.
52775
52776 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
52777
52778         * modules/argmatch (Depends-on): Add stdbool.
52779         * modules/backupfile (Depends-on): Likewise.
52780         * modules/chdir-long (Depends-on): Likewise.
52781         * modules/closeout (Depends-on): Likewise.
52782         * modules/cycle-check (Depends-on): Likewise.
52783         * modules/dirname (Depends-on): Likewise.
52784         * modules/fnmatch (Depends-on): Likewise.
52785         * modules/fsusage (Depends-on): Likewise.
52786         * modules/fwriteerror (Depends-on): Likewise.
52787         * modules/getcwd (Depends-on): Likewise.
52788         * modules/getloadavg (Depends-on): Likewise.
52789         * modules/hard-locale (Depends-on): Likewise.
52790         * modules/makepath (Depends-on): Likewise.
52791         * modules/mountlist (Depends-on): Likewise.
52792         * modules/nanosleep (Depends-on): Likewise.
52793         * modules/posixtm (Depends-on): Likewise.
52794         * modules/quotearg (Depends-on): Likewise.
52795         * modules/readtokens (Depends-on): Likewise.
52796         * modules/readtokens0 (Depends-on): Likewise.
52797         * modules/readutmp (Depends-on): Likewise.
52798         * modules/save-cwd (Depends-on): Likewise.
52799         * modules/strftime (Depends-on): Likewise.
52800         * modules/userspec (Depends-on): Likewise.
52801         * modules/utimecmp (Depends-on): Likewise.
52802         * modules/xgetcwd (Depends-on): Likewise.
52803         * modules/xnanosleep (Depends-on): Likewise.
52804         * modules/xstrtod (Depends-on): Likewise.
52805         * modules/yesno (Depends-on): Likewise.
52806
52807 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
52808
52809         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
52810         needless checks.
52811
52812 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52813
52814         Merge from coreutils.  Among other things,
52815         add bulletproofing for cases where stdin, stdout, or stderr are closed.
52816         * lib/fd-safer.c: New file.
52817         * lib/fcntl-safer.h, open-safer.c: Remove.
52818         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
52819         * lib/dup-safer.c: Include unistd-safer.h first.
52820         Don't include errno.h.
52821         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
52822         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
52823         * lib/file-type.c: Rely on file-type.h change.
52824         * lib/getloadavg.c: Include unistd-safer.h.
52825         (getloadavg): Use safer open.
52826         * lib/getusershell.c: Include "stdio-safer.h".
52827         (getusershell): Use safer fopen.
52828         * lib/long-options.c (long_options): Use NULL rather than 0.
52829         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
52830         'free'.
52831         * lib/modechange.c: Likewise.
52832         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
52833         (MODE_DONE): New constant.
52834         (struct mode_change): Remove 'next' member.
52835         (make_node_op_equals): New function; like the old one of the
52836         same name, except it allocates an array.
52837         (mode_compile, mode_create_from_ref): Use it.
52838         (mode_compile): Allocate result as an array, not a linked list.
52839         Parse octal string ourself, so that we catch mistakes like "+0".
52840         (mode_adjust): Arg is an array, not a linked list.
52841         * lib/modechange.c: Include stat-macros.h, xalloc.h.
52842         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
52843         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
52844         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
52845         Remove.  This is now stat-macros.h's job.
52846         (talloc): Remove.  All callers replaced by xalloc, so that
52847         our invokers don't have to worry about reporting memory failures.
52848         (make_node_op_equals): Remove.
52849         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
52850         New constants.
52851         (struct mode_change): Moved here from modechange.h.
52852         (mode_append_entry): Remove.
52853         (mode_compile): Remove MASKED_OPS arg, since it encouraged
52854         apps to have incorrect behavior.  Use simpler algorithm for head
52855         and tail.  Don't futz with umask; that's now the job of mode_adjust.
52856         Detect more invalid usages rather than having somewhat-random behavior.
52857         Don't insert an "a=" action, as that leads to incorrect behavior.
52858         (mode_compile, mode_create_from_ref): Return NULL on error instead
52859         of an enum, since now there's only one way to have an error.  All
52860         callers changed.
52861         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
52862         at the correct time.  Simplify calculation of "+u" and its ilk.
52863         Don't mishandle "+X".
52864         (mode_free): Remove "register" and localize decls.
52865         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
52866         (struct mode_change): Move to modechange.c; callers don't
52867         need to see this stuff.
52868         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
52869         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
52870         (mode_change, mode_adjust): Reflect the new signatures noted above.
52871         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
52872         that might redefine system include files.
52873         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
52874         (my_usleep): Use NULL rather than (void *) 0.
52875         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
52876         Use siginterrupt to specify that system calls should be interrupted.
52877         (rpl_nanosleep): Move initialization of suspended closer to call of
52878         my_usleep.
52879         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
52880         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
52881         (desirable_utmp_entry): New function.
52882         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
52883         using x2nrealloc, to simplify logic.
52884         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
52885         size calculation.  Do not assume utmp file is a regular file.
52886         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
52887         (READ_UTMP_CHECK_PIDS): New constant.
52888         * lib/save-cwd.c: Include unistd-safer.h.
52889         (save_cwd): Use fd_safer.
52890         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
52891         [!_LIBC] Include "stat-macros.h" instead.
52892         * lib/unistd-safer.h (fd_safer): New decl.
52893
52894 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52895
52896         * modules/getloadavg (Depends-on): Add unistd-safer.
52897         * modules/getusershell (Depends-on): Add stdio-safer.
52898         * modules/lstat (Depends-on): Remove xalloc.
52899         * modules/mkstemp (Depends-on): Add stat-macros.
52900         * modules/modechange (Depends-on): Remove xstrtol.
52901         Add stat-macros, xalloc.
52902         * modules/save-cwd (Depends-on): Add unistd-safer.
52903         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
52904         * modules/unistd-safer (Files): Add lib/fd-safer.c
52905         (Makefile.am): Remove lib_SOURCES.
52906
52907         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
52908         Remove fcntl-safer; unistd-safer supersedes it.
52909
52910 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52911
52912         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
52913         AC_HEADER_STAT.
52914         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
52915         (gl_PREREQ_CHOWN): Remove.
52916         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
52917         it.  Don't require AC_HEADER_STAT.
52918         (gl_PREREQ_LSTAT): Remove.
52919         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
52920         Don't require AC_HEADER_STAT.
52921         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
52922         (gl_PREREQ_RMDIR): Remove.
52923         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
52924         mention stat-macros.h or AC_HEADER_STAT, since we'll make
52925         the stat-macros module a prerequisite.
52926         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
52927         * m4/filemode.m4 (gl_FILEMODE): Likewise.
52928         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
52929         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
52930         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
52931         variable names.
52932         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
52933         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
52934         variable prefixes.
52935         * m4/fcntl-safer.m4: Remove.
52936         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
52937         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
52938         Invoke gl_PREREQ_FD_SAFER.
52939         (gl_PREREQ_FD_SAFER): New macro.
52940         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
52941         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
52942         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
52943         Remove duplicate call to AC_LIBOBJ(readutmp).
52944         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
52945
52946         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
52947         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
52948
52949 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
52950
52951         * MODULES.html.sh (Misc): Add byteswap.
52952
52953 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52954
52955         * modules/getcwd (Depends-on): Add extensions.
52956         * modules/openat (Depends-on): Likewise.
52957
52958 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52959
52960         * modules/byteswap: New file.
52961
52962 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52963
52964         * m4/byteswap.m4: New file.
52965
52966 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
52967
52968         * lib/byteswap_.h: New file.
52969
52970 2005-04-25  Karl Berry  <karl@gnu.org>
52971
52972         * m4/gettext.m4: Update from GNU gettext 0.14.4.
52973
52974 2005-04-25  Albert Chin  <china@thewrittenword.com>
52975
52976         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
52977         Toolkit C bug.
52978
52979 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
52980
52981         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
52982         (func_ln_if_changed) Remove forcibly for no error message
52983         in case file does not exist.
52984
52985 2005-04-19  Simon Josefsson  <jas@extundo.com>
52986
52987         * gnulib-tool (Options): Make --symlink mean --symbolic.
52988
52989 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
52990
52991         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
52992
52993 2005-04-16  Simon Josefsson  <jas@extundo.com>
52994
52995         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
52996
52997 2005-04-15  Simon Josefsson  <jas@extundo.com>
52998
52999         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
53000
53001 2005-04-15  Simon Josefsson  <jas@extundo.com>
53002
53003         * gnulib-tool: Rename --symlink to --symbolic.
53004
53005 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
53006
53007         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
53008         symbolic links to files instead of copying/moving.  Add --aux-dir,
53009         specifying directory relative --dir where auxiliary build tools
53010         are placed.
53011
53012 2005-04-14  Bruno Haible  <bruno@clisp.org>
53013
53014         * modules/allocsa (License): Change to LGPL.
53015         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
53016
53017 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
53018
53019         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
53020         that "UTC +1 second" continues to work.  Problem reported
53021         by Dmitry V. Levin.
53022         (relunit_snumber): New rule.
53023         (relunit): Use it.
53024
53025 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
53026
53027         * lib/getdate.y (universal_time_zone_table): New constant.
53028         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
53029         universal_time_zone_table.
53030         (lookup_zone): Prefer universal_time_zone_table to
53031         local_time_zone_table, so that "GMT" time stamps are allowed in
53032         London during the summer.  Problem reported by Ian Abbott.
53033
53034 2005-04-12  Jim Meyering  <jim@meyering.net>
53035
53036         * lib/human.c (humblock): Set *options even when returning due to
53037         xstrtoumax conversion failure.  Thanks to a used-uninitialized
53038         warning from gcc-4.
53039
53040 2005-04-09  Jim Meyering  <jim@meyering.net>
53041
53042         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
53043         -Wuninitialized: initialize tm0.tm_year.
53044
53045 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
53046
53047         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
53048         count, since there's no maximum.  All uses changed.
53049         Add member dsts_seen.
53050         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
53051         not being INT_MAX.
53052         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
53053         Use pc_rels_seen to decide whther a date is absolute.
53054
53055         * lib/getdate.y (number): Don't overwrite year.
53056         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
53057         check.
53058
53059 2005-04-02  Simon Josefsson  <jas@extundo.com>
53060
53061         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
53062         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
53063
53064 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
53065
53066         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
53067         where no absolute path name can be longer than PATH_MAX.
53068
53069 2005-03-27  Jim Meyering  <jim@meyering.net>
53070
53071         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
53072
53073 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
53074
53075         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
53076         "one's complement" -> "ones' complement" in comment, as per Knuth.
53077         "value of type" -> "type or expression" in comment.
53078         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
53079
53080 2005-03-26  Jim Meyering  <jim@meyering.net>
53081
53082         Comment nits.
53083         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
53084         Correct typos: s/or/of/.
53085
53086 2005-03-26  Jim Meyering  <jim@meyering.net>
53087
53088         * modules/check-include-files: Move to ../ and rename to...
53089         * check-module: ...this.
53090
53091 2005-03-25  Jim Meyering  <jim@meyering.net>
53092
53093         * modules/xvasprintf (Files): Add xalloc.h.
53094
53095 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
53096
53097         * modules/gettext (Files): config/config.rpath ->
53098         build-aux/config.rpath
53099         * modules/iconv (Files): Likewise.
53100         Problem reported by Oskar Liljeblad.
53101
53102 2005-03-23  Jim Meyering  <jim@meyering.net>
53103
53104         * modules/check-include-files: New script to check for
53105         missing dependencies, multiple includes, etc.
53106
53107         * modules/c-strtold (Depends-on): Add xalloc.
53108         * modules/c-strtod (Depends-on): Add xalloc.
53109         * modules/hash (Depends-on): Add xalloc.
53110         (Files): Remove lib/xalloc.h.
53111
53112         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
53113         * modules/userspec (Files): Add lib/inttostr.h.
53114
53115 2005-03-23  Jim Meyering  <jim@meyering.net>
53116
53117         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
53118
53119 2005-03-22  Jim Meyering  <jim@meyering.net>
53120
53121         * modules/stat-macros: New module.
53122         * modules/canonicalize, modules/euidaccess, modules/file-type,
53123         * modules/filemode, modules/lchown, modules/makepath,
53124         * modules/rmdir, modules/stat: Depend on new stat-macros module
53125         rather than listing lib/stat-macros.h manually.
53126         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
53127
53128 2005-03-22  Jim Meyering  <jim@meyering.net>
53129
53130         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
53131
53132 2005-03-22  Bruno Haible  <bruno@clisp.org>
53133
53134         * config/srclist.txt: Replace target directory 'config' with
53135         'build-aux'.
53136         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
53137         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
53138         ../build-aux/.
53139
53140 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
53141
53142         * modules/chdir-long (Depends-on): Add mempcpy.
53143
53144         * modules/acl, modules/backupfile, modules/c-strtod,
53145         modules/c-strtold, modules/canon-host, modules/canonicalize,
53146         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
53147         modules/exclude, modules/exitfail, modules/file-type,
53148         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
53149         modules/getdate, modules/getline, modules/getpagesize,
53150         modules/getpass, modules/getugroups, modules/group-member,
53151         modules/hard-locale, modules/hash, modules/human, modules/idcache,
53152         modules/inttostr, modules/long-options, modules/makepath,
53153         modules/md5, modules/memcasecmp, modules/memcoll,
53154         modules/modechange, modules/mountlist, modules/path-concat,
53155         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
53156         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
53157         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
53158         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
53159         modules/strftime, modules/strndup, modules/strverscmp,
53160         modules/timespec, modules/unlocked-io, modules/userspec,
53161         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
53162         modules/yesno:
53163         Remove lib_SOURCES line from Makefile.am section, as this is now
53164         done automatically by the corresponding Autoconf macro.
53165
53166 2005-03-21  Jim Meyering  <jim@meyering.net>
53167
53168         Changes imported from coreutils.
53169
53170         * lib/cycle-check.c: Don't include xalloc.h.
53171
53172         * lib/path-concat.c: Don't include assert.h.
53173         (path_concat): Remove assertion that would have triggered
53174         for ABASE starting with more than one slash.
53175         Reported by Andreas Schwab.
53176
53177         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
53178         properly when ABASE is an absolute file name.
53179         Correct the description of this function.
53180         Include <assert.h>.
53181         Add an assertion and a test driver.
53182         This fixes a bug introduced on 2004-07-02.
53183         Andreas Schwab reported the resulting failure of cp --parents:
53184         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
53185
53186 2005-03-21  Jim Meyering  <jim@meyering.net>
53187
53188         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
53189         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
53190
53191 2005-03-21  Jim Meyering  <jim@meyering.net>
53192         and  Paul Eggert  <eggert@cs.ucla.edu>
53193
53194         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
53195         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
53196         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
53197         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
53198         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
53199         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
53200         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
53201         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
53202         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
53203         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
53204         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
53205         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
53206         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
53207         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
53208         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
53209         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
53210         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
53211         for these modules.
53212
53213 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
53214
53215         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
53216         (which shouldn't happen), generate nothing instead of returning 0
53217         immediately, so that nstrftime (NULL, ...) doesn't return 0.
53218
53219 2005-03-16  Bruno Haible  <bruno@clisp.org>
53220
53221         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
53222         HAVE_LONGLONG_64BIT.
53223
53224 2005-03-16  Bruno Haible  <bruno@clisp.org>
53225
53226         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
53227         HAVE_LONGLONG_64BIT.
53228
53229 2005-03-16  Bruno Haible  <bruno@clisp.org>
53230
53231         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
53232         HAVE_LONGLONG_64BIT.
53233
53234 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
53235
53236         * lib/strftime.c (my_strftime): Prepend space to format so that we can
53237         reliably distinguish strftime failure from empty output on POSIX
53238         hosts.
53239
53240 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
53241
53242         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
53243         (iconv_string): Don't guess a size-zero buffer, as that might cause
53244         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
53245         result would be 'too large', where 'too large' is (heuristically)
53246         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
53247         overflow concerns.  This will prevent some unwanted malloc failures
53248         when the inputs are very large.
53249
53250 2005-03-15  Karl Berry  <karl@gnu.org>
53251
53252         * config/srclist.txt (config.rpath): from gettext.
53253         * config/config.rpath: update.
53254
53255 2005-03-15  Bruno Haible  <bruno@clisp.org>
53256
53257         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
53258         to 'negate'.
53259
53260         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
53261         variable.
53262
53263         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
53264         results.
53265
53266 2005-03-14  Simon Josefsson  <jas@extundo.com>
53267
53268         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
53269         <fx@gnu.org>.
53270
53271 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
53272
53273         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
53274         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
53275         intprops.h.
53276         * lib/strtol.c: Likewise.
53277
53278 2005-03-14  Jim Meyering  <jim@meyering.net>
53279
53280         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
53281         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
53282         to be nonzero so that we (and caller) can detect the difference
53283         between a valid zero-length expansion and an error return, even
53284         when the underlying strftime fails before writing anything into
53285         that location.
53286
53287 2005-03-14  Bruno Haible  <bruno@clisp.org>
53288
53289         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
53290         Update from GNU gettext 0.14.3.
53291
53292 2005-03-10  Jim Meyering  <jim@meyering.net>
53293
53294         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
53295
53296 2005-03-10  Jim Meyering  <jim@meyering.net>
53297
53298         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
53299         so that this module works on systems without fchdir.
53300
53301 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
53302
53303         Factor int-properties macros into a single file, except for
53304         glibc-related files.
53305         * lib/intprops.h: New file.
53306         * lib/getloadavg.c: Include it instead of limits.h.
53307         (INT_STRLEN_BOUND): Remove.
53308         * lib/human.c: Include intprops.h.
53309         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
53310         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
53311         302/1000.
53312         * lib/inttostr.h: Include intprops.h instead of limits.h.
53313         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
53314         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
53315         for consistency with intprops.h.
53316         (time_t_is_integer, twos_complement_arithmetic): Use them.
53317         * lib/sig2str.h: Include <signal.h>, intprops.h.
53318         (INT_STRLEN_BOUND): Remove.
53319         * lib/strftime.c (TYPE_SIGNED): Remove.
53320         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
53321         * lib/strtol.c: Adjust comments to match intprops.h.
53322         * lib/userspec.c: Include intprops.h.
53323         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
53324         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
53325         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
53326         instead of rolling our own expressions.
53327         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
53328
53329         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
53330         instead of int.
53331         (my_strftime): Do not mishandle years close to INT_MAX, by doing
53332         the right thing even if adding 1900 would overflow.  Similarly
53333         for tm_mon + 1 and tm_yday + 1.
53334         Make %Y always equivalent to %C%y, and similarly for %G and %g.
53335         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
53336         (DO_SIGNED_NUMBER): New macro.
53337         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
53338
53339 2005-03-07  Bruno Haible  <bruno@clisp.org>
53340
53341         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
53342
53343 2005-03-07  Bruno Haible  <bruno@clisp.org>
53344
53345         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
53346
53347 2005-03-04  Derek R. Price  <derek@ximbiot.com>
53348
53349         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
53350         (func_import): Only replace files via --import when they have actually
53351         changed.
53352
53353 2005-03-03  Derek R. Price  <derek@ximbiot.com>
53354
53355         * m4/mmap-anon.m4: New file.
53356         * m4/pagealign_alloc.m4: New file.
53357
53358 2005-03-03  Derek R. Price  <derek@ximbiot.com>
53359             Bruno Haible  <bruno@clisp.org>
53360
53361         * modules/pagealign_alloc: New file.
53362         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
53363
53364 2005-03-03  Derek R. Price  <derek@ximbiot.com>
53365             Bruno Haible  <bruno@clisp.org>
53366
53367         * lib/pagealign_alloc.h: New file.
53368         * lib/pagealign_alloc.c: New file.
53369
53370 2005-03-03  Bruno Haible  <bruno@clisp.org>
53371
53372         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
53373         Use an all-permissive copyright notice, recommended by RMS.
53374
53375 2005-03-02  Bruno Haible  <bruno@clisp.org>
53376
53377         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
53378         of AIX, the replacement has to be done only after <string.h> is
53379         included, therefore not in config.h. stpncpy.h does the replacement,
53380         and stpncpy.c uses it.
53381
53382 2005-03-02  Bruno Haible  <bruno@clisp.org>
53383
53384         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
53385         stpncpy.c uses it.
53386
53387 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
53388
53389         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
53390         The workaround isn't strictly needed for POSIX conformance, and
53391         it's too much of a pain to configure and maintain.  We'll ask
53392         people to fix their kernels instead.
53393         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
53394         (NANOSLEEP_BUG_WORKAROUND): Remove.
53395         (xnanosleep): Remove the workaround.
53396
53397 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
53398
53399         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
53400         Reported by Derek Price.
53401         (Include): Add "timespec.h".
53402
53403         * modules/xnanosleep (Depends-on): Remove gethrxtime.
53404
53405 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
53406
53407         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
53408         to detect nanosleep bug.
53409
53410 2005-03-01  Bruno Haible  <bruno@clisp.org>
53411
53412         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
53413
53414 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
53415
53416         * modules/gethrxtime: New file.
53417         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
53418         (Depends-on): Add gethrxtime.
53419         (configure.ac): Add gl_XNANOSLEEP.
53420         (Makefile.am): Remove lib_SOURCES line.
53421
53422 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
53423
53424         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
53425         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
53426
53427 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
53428
53429         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
53430         * lib/timespec.h (gettime): Return void, since it always
53431         succeeds now.  All uses changed.
53432         * lib/gettime.c (gettime) Likewise.
53433         [HAVE_NANOTIME]: Prefer nanotime.
53434         Assume gettimeofday succeeds, as POSIX requires.
53435         Assime time () succeeds, since other code already does.
53436         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
53437         (timespec_subtract): Remove.
53438         (NANOSLEEP_BUG_WORKAROUND): New constant.
53439         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
53440         things considerably.  Use it only on GNU/Linux hosts, since the
53441         workaround shouldn't be needed elsewhere.
53442
53443 2005-02-24  Bruno Haible  <bruno@clisp.org>
53444
53445         * modules/gettext (Files): Add m4/glibc2.m4.
53446
53447 2005-02-24  Bruno Haible  <bruno@clisp.org>
53448
53449         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
53450         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
53451         * m4/progtest.m4:
53452         Update from GNU gettext 0.14.2.
53453         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
53454
53455 2005-02-24  Bruno Haible  <bruno@clisp.org>
53456
53457         * lib/localcharset.c: Update from GNU gettext 0.14.2.
53458         * lib/config.charset: Update from GNU gettext 0.14.2.
53459
53460 2005-02-24  Bruno Haible  <bruno@clisp.org>
53461
53462         * lib/gettext.h: Update from GNU gettext 0.14.2.
53463
53464 2005-02-23  Simon Josefsson  <jas@extundo.com>
53465
53466         * m4/iconvme.m4: New file.
53467
53468 2005-02-23  Jim Meyering  <jim@meyering.net>
53469
53470         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
53471         change.
53472         Thanks to Bruno Haible for catching it.
53473
53474 2005-02-22  Simon Josefsson  <jas@extundo.com>
53475
53476         * modules/iconvme: New file.
53477
53478         * MODULES.html.sh: Add iconvme.
53479
53480 2005-02-22  Simon Josefsson  <jas@extundo.com>
53481
53482         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
53483
53484 2005-02-22  Simon Josefsson  <jas@extundo.com>
53485
53486         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
53487
53488 2005-02-22  Jim Meyering  <jim@meyering.net>
53489
53490         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
53491         s/ifndef/ifdef/.
53492
53493 2005-02-20  Neil Conway  <neilc@samurai.com>
53494
53495         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
53496         returned by OSX/Darwin if the specified buffer is not large
53497         enough for the hostname.
53498
53499 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53500
53501         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
53502         pass it to _help, otherwise the latter coredumps trying to
53503         dereference state.root_argp.
53504
53505 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53506
53507         * modules/chdir-long (Depends-on): Add memrchr.
53508         * modules/memrchr (Files): Add lib/memrchr.h.
53509         (Include): "memrchr.h".
53510
53511 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53512
53513         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
53514
53515 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
53516
53517         * lib/memrchr.h: New file.
53518         * lib/chdir-long.c: Include it.
53519         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
53520         Don't bother including stddef.h.
53521
53522 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
53523
53524         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
53525         inclusion.
53526         Include <sys/types.h>, for dev_t.
53527         (ME_DUMMY, ME_REMOTE): Move from here....
53528         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
53529         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
53530         Dmitry V. Levin.
53531         Include mountlist.h first, to test the interface.
53532
53533 2005-01-29  Bruno Haible  <bruno@clisp.org>
53534
53535         * lib/progname.c (program_name): Initialize.
53536         Needed when linking statically on MacOS X.
53537
53538 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53539
53540         Sync from coreutils.
53541         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
53542         (Depends-on): Add c-strtod.
53543         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
53544
53545 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
53546
53547         Sync from coreutils.
53548         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
53549
53550         Remove files that are specific to coreutils.
53551         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
53552
53553 2005-01-28  Bruno Haible  <bruno@clisp.org>
53554
53555         * modules/javacomp: New file.
53556         * MODULES.html.sh (Java): Add javacomp.
53557
53558 2005-01-28  Bruno Haible  <bruno@clisp.org>
53559
53560         * m4/javacomp.m4: New file, from GNU gettext.
53561
53562 2005-01-28  Bruno Haible  <bruno@clisp.org>
53563
53564         * lib/javacomp.sh.in: New file, from GNU gettext.
53565         * lib/javacomp.h: New file, from GNU gettext.
53566         * lib/javacomp.c: New file, from GNU gettext.
53567
53568 2005-01-26  Simon Josefsson  <jas@extundo.com>
53569
53570         * lib/gai_strerror.c: Use GPL in header.
53571
53572 2005-01-26  Bruno Haible  <bruno@clisp.org>
53573
53574         * modules/javaexec: New file.
53575         * MODULES.html.sh (Java): Add javaexec.
53576
53577 2005-01-26  Bruno Haible  <bruno@clisp.org>
53578
53579         * m4/javaexec.m4: New file, from GNU gettext.
53580
53581 2005-01-26  Bruno Haible  <bruno@clisp.org>
53582
53583         * lib/javaexec.sh.in: New file, from GNU gettext.
53584         * lib/javaexec.h: New file, from GNU gettext.
53585         * lib/javaexec.c: New file, from GNU gettext.
53586
53587 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53588
53589         * modules/lchown (Depends-on): Remove lchown.h
53590
53591 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53592
53593         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
53594         must be defined if the header file was not found, in order
53595         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
53596
53597 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53598
53599         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
53600         initializers for struct pentry_state.
53601         (__argp_error): Check return value of __asprintf
53602         (__argp_failure): Translate error message
53603
53604         * lib/argp-parse.c: Removed braces around the expansion of N_()
53605
53606 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
53607
53608         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
53609         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
53610         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
53611         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
53612         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
53613         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
53614         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
53615         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
53616         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
53617         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
53618         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
53619         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
53620         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
53621         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
53622         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
53623         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
53624         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
53625         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
53626         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
53627         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
53628         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
53629         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
53630         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
53631         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
53632         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
53633         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
53634         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
53635         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
53636         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
53637         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
53638         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
53639         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
53640         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
53641         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
53642         xstrtol.m4, xstrtoumax.m4, yesno.m4:
53643         Use an all-permissive copyright notice, recommended by RMS.
53644
53645 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
53646
53647         * modules/chdir-long (Depends-on): Remove mempcpy.
53648
53649 2005-01-21  Jim Meyering  <jim@meyering.net>
53650
53651         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
53652         same value as for Solaris 9.
53653
53654         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
53655         component length.  This included changing the parameter to be
53656         of type `char *' rather than `char const *'.
53657         * lib/chdir-long.h (chdir_long): Update prototype.
53658
53659         * lib/openat.c (fdopendir, fstatat): New functions.
53660         * lib/openat.h: Include headers required for use of DIR and struct
53661         stat.
53662         [AT_SYMLINK_NOFOLLOW]: Define.
53663         (fdopendir, fstatat): Add prototypes.
53664
53665 2005-01-21  Bruno Haible  <bruno@clisp.org>
53666
53667         * modules/classpath: New file.
53668         * MODULES.html.sh (Java): Add classpath.
53669
53670 2005-01-21  Bruno Haible  <bruno@clisp.org>
53671
53672         * lib/classpath.h: New file, from GNU gettext.
53673         * lib/classpath.c: New file, from GNU gettext.
53674
53675 2005-01-20  Simon Josefsson  <jas@extundo.com>
53676
53677         * modules/version-etc-fsf: New file.
53678
53679 2005-01-20  Simon Josefsson  <jas@extundo.com>
53680
53681         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
53682         * lib/version-etc.c: Remove version_etc_copyright.
53683         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
53684         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
53685
53686 2005-01-20  Simon Josefsson  <jas@extundo.com>
53687
53688         * lib/base64.h (isbase64): Add.
53689
53690         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
53691         using a unsigned prototype, don't inline.
53692         (base64_decode): Use it.
53693
53694 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53695
53696         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
53697         it.
53698
53699 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53700
53701         * lib/save-cwd.c (save_cwd): Remove code to support the case
53702         where fchdir is missing or flaky.
53703
53704 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53705
53706         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
53707
53708 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
53709
53710         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
53711         AC_LIBSOURCES now does this.
53712         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
53713         with new ullong_max module.
53714
53715 2005-01-19  Bruno Haible  <bruno@clisp.org>
53716
53717         * modules/sh-quote: New file.
53718         * MODULES.html.sh (Executing programs): Add sh-quote.
53719
53720 2005-01-19  Bruno Haible  <bruno@clisp.org>
53721
53722         * lib/sh-quote.h: New file, from GNU gettext.
53723         * lib/sh-quote.c: New file, from GNU gettext.
53724
53725 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53726
53727         Merge from coreutils.
53728         * m4/ullong_max.m4: New file.
53729         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
53730         (gl_MACROS): Assume localeconv exists.
53731
53732 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53733
53734         Merge changes from coreutils, as described below in several
53735         changelogs dated today.
53736
53737         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
53738         (O_DIRECTORY): Remove; not needed here, since "." must be
53739         a directory.  All uses removed.
53740         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
53741         universal on Suns, and we also need to test for IRIX.
53742         Revamp code to use 'if' rather than '#if'.
53743         Avoid unnecessary comparison of cwd->desc to 0.
53744
53745         * lib/utimens.c (futimens): Robustify the previous patch, by checking
53746         for known valid error numbers rather than observed invalid ones.
53747
53748 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
53749
53750         * modules/ullong_max: New file.
53751
53752         * modules/chdir-long, modules/openat: New files.
53753         * modules/save-cwd (Depends-on): Depend on chdir-long.
53754         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
53755
53756 2005-01-18  Jim Meyering  <jim@meyering.net>
53757
53758         Merge from coreutils.
53759         * m4/chdir-long.m4, m4/openat.m4: New files.
53760         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
53761         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
53762         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
53763         is sane and DOES follow symlinks.  Besides, testing 20 different
53764         systems found no broken chown implementations.
53765         Prompted by a change in rsync's copy of this macro.
53766         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
53767
53768         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
53769
53770         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
53771         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
53772         NULL-means-set-to-current-time semantics.
53773         Remove temporary file immediately, rather than waiting
53774         for configure's at-exit trap code to do it.
53775
53776 2005-01-18  Jim Meyering  <jim@meyering.net>
53777
53778         * lib/version-etc.c (version_etc_copyright): Update copyright date.
53779
53780         * lib/utimens.c (futimens): Account for the fact that futimes
53781         can also fail with errno == ENOSYS or errno == ENOENT.
53782         Patch from Dmitry V. Levin.
53783
53784         Change the name of the robust chdir function from chdir to chdir_long.
53785         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
53786         (restore_cwd): Use chdir_long, not chdir.
53787         * lib/chdir-long.c: Renamed from chdir.c.
53788         * lib/chdir-long.h: Renamed from chdir.h.
53789         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
53790         Hurd.
53791
53792 2005-01-18  Bruno Haible  <bruno@clisp.org>
53793
53794         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
53795         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
53796         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
53797         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
53798         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
53799         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
53800         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
53801         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
53802         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
53803         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
53804         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
53805         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
53806         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
53807         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
53808         Use an all-permissive copyright notice, recommended by RMS.
53809
53810 2005-01-18  Bob Proulx  <bob@proulx.com>
53811
53812         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
53813         simplify offsetof() macro construct to avoid compile failure with
53814         native HP-UX 11.0 ANSI C compiler.
53815
53816 2005-01-17  Bruno Haible  <bruno@clisp.org>
53817
53818         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
53819         redundant because stpncpy.m4 takes care of it.
53820
53821 2005-01-17  Bruno Haible  <bruno@clisp.org>
53822
53823         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
53824
53825 2005-01-17  Bruno Haible  <bruno@clisp.org>
53826
53827         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
53828         used.
53829
53830 2005-01-17  Bruno Haible  <bruno@clisp.org>
53831
53832         * lib/fwriteerror.h (fwriteerror): Change specification to include
53833         fclose.
53834         * lib/fwriteerror.c: Include <stdbool.h>.
53835         (fwriteerror): At the end, close the file stream. Record whether
53836         stdout was already closed.
53837
53838 2005-01-17  Bruno Haible  <bruno@clisp.org>
53839
53840         * lib/execute.c (environ): Declare if needed.
53841         * lib/pipe.c (environ): Likewise.
53842         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
53843
53844 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53845
53846         * modules/argp: Depend on vsnprintf
53847
53848 2005-01-10  Jim Meyering  <jim@meyering.net>
53849
53850         * modules/closeout (Depends-on): Add atexit.
53851
53852 2005-01-06  Bruno Haible  <bruno@clisp.org>
53853
53854         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
53855
53856 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
53857
53858         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
53859         definitions to be after all include files, to avoid collisions.
53860         Problem reported by Bob Proulx.
53861
53862 2005-01-04  Jim Meyering  <jim@meyering.net>
53863
53864         Changes imported from coreutils.
53865         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
53866         as the mkstemp template, use a temporary directory and an
53867         8.3-friendly template to avoid trouble on systems like DJGPP.
53868         Reported by Juan M. Guerrero via Stepan Kasal.
53869         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
53870         close. Remove the temporary directory right away, rather than waiting
53871         for configure's at-exit trap code to do it.
53872         Suggestion from Stepan Kasal.
53873
53874 2005-01-01  Simon Josefsson  <jas@extundo.com>
53875
53876         * gnulib-tool: Print #include directives when --import'ing.
53877
53878 2004-12-28  Simon Josefsson  <jas@extundo.com>
53879
53880         * tests/test-base64.c: Include required header files.  Remove
53881         unused variables.
53882
53883 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
53884
53885         * modules/error (Depends-on): Remove gettext.
53886
53887 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
53888
53889         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
53890         not needed.  This removes a dependency on the gettext module.
53891         [defined _LIBC]: Do not include <libintl.h>; not needed.
53892
53893 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
53894
53895         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
53896         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
53897
53898 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
53899
53900         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
53901         HAVE_DECL_STRTOLD.
53902
53903 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53904
53905         * modules/getdate (Depends-on): Remove alloca-opt.
53906
53907 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53908
53909         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
53910
53911 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
53912
53913         * lib/argp-parse.c: Include <stddef.h>.
53914         (alignof, alignto): New macros.
53915         (parser_init): Don't assume that void * is aligned sufficiently
53916         for struct option.
53917
53918         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
53919         need to extend the stack.
53920         (YYINITDEPTH): New macro, so that the initial stack isn't overly
53921         large.
53922
53923 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53924
53925         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
53926
53927 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
53928
53929         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
53930         (2004-10-24) change.  Apparently this was a false alarm.
53931
53932         * modules/getdate: Depend on alloca-opt, not alloca.
53933
53934 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
53935
53936         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
53937         Remove now-obsolete comment about AIX.
53938         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
53939         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
53940         (YYMAXDEPTH): New macro.
53941
53942 2004-12-18  Simon Josefsson  <jas@extundo.com>
53943
53944         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
53945
53946 2004-12-18  Bruno Haible  <bruno@clisp.org>
53947
53948         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
53949
53950 2004-12-18  Bruno Haible  <bruno@clisp.org>
53951
53952         * lib/fatal-signal.c (fatal_signals): Make non-const.
53953         (init_fatal_signals): New function.
53954         (uninstall_handlers, install_handlers): Ignore signals that were set to
53955         SIG_IGN.
53956         (at_fatal_signal): Call init_fatal_signals.
53957         (init_fatal_signal_set): Likewise. Ignore signals that were set to
53958         SIG_IGN.
53959         Reported by Paul Eggert.
53960
53961 2004-12-18  Bruno Haible  <bruno@clisp.org>
53962
53963         * doc/alloca.texi: New file.
53964         * doc/alloca-opt.texi: New file.
53965
53966 2004-12-17  Jim Meyering  <jim@meyering.net>
53967
53968         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
53969         Otherwise, install-sh could exit with improper exit status when
53970         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
53971
53972 2004-12-16  Simon Josefsson  <jas@extundo.com>
53973
53974         * tests/test-base64.c: Add license.
53975
53976 2004-12-15  Stepan Kasal  <address@hidden>
53977
53978         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
53979
53980 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
53981
53982         * modules/getcwd (Files): Add m4/d-ino.m4.
53983         Suggested by Mark D. Baushke.
53984
53985 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
53986
53987         * lib/getdate.y (textint): New member "negative".
53988         (time_zone_hhmm): New function.
53989         Expect 14 shift-reduce conflicts, not 13.
53990         (o_colon_minutes): New rule.
53991         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
53992         (yylex): Set the "negative" member of signed numbers.
53993
53994 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
53995
53996         * doc/getdate.texi (Time of day items, Time zone items):
53997         Describe new formats +00:00, UTC+00:00.
53998
53999 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
54000
54001         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
54002         spurious "-l"s.  Problem reported by Stepan Kasal.
54003
54004 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
54005
54006         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
54007         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
54008
54009 2004-12-04  Simon Josefsson  <jas@extundo.com>
54010
54011         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
54012         Vandoorselaere <yoann@prelude-ids.org>.
54013
54014 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54015
54016         Changes imported from coreutils.
54017         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
54018         exist.
54019         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
54020
54021 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54022
54023         Changes imported from coreutils.
54024         * lib/hard-locale.c: Assume <locale.h> exists.
54025         Include "strdup.h".
54026         (GLIBC_VERSION): New macro.
54027         (hard_locale): Assume setlocale exists.
54028         Rewrite to avoid #ifdef.
54029         Use strdup rather than malloc + strcpy.
54030         * lib/human.c: Assume <locale.h> exists.
54031         (human_readable): Assume localeconv exists.
54032
54033 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54034
54035         * modules/hard-locale (Depends-on): Add strdup.
54036
54037 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
54038
54039         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
54040         convert T2, not T.  (Imported from libc.)
54041
54042 2004-11-30  Simon Josefsson  <jas@extundo.com>
54043
54044         * modules/restrict (License): Change to LGPL.
54045
54046 2004-11-30  Simon Josefsson  <jas@extundo.com>
54047
54048         * m4/restrict.m4: Add copyright and copying conditions.
54049
54050 2004-11-30  Simon Josefsson  <jas@extundo.com>
54051
54052         * m4/base64.m4: New file.
54053
54054 2004-11-30  Simon Josefsson  <jas@extundo.com>
54055
54056         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
54057         base64.
54058
54059         * tests/test-base64.c: New file.
54060
54061         * modules/base64: New file.
54062
54063 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
54064
54065         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
54066         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
54067
54068         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
54069
54070 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
54071
54072         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
54073         (__getcwd.c): Don't restore errno; glibc doesn't.
54074         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
54075         first, falling back to our code only if its results look suspicious.
54076         Ensure that the resulting buffer is only as large as necessary.
54077
54078         * lib/readutmp.c: Include readutmp.h first.
54079         Include <errno.h>, since readutmp.h no longer does that.
54080         * lib/readutmp.h: Don't include <errno.h>,
54081         <sys/param.h>, <time.h>; not needed to establish interface.
54082         (errno): Remove decl.
54083         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
54084         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
54085         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
54086
54087 2004-11-28  Simon Josefsson  <jas@extundo.com>
54088
54089         * lib/base64.h, base64.c: New file.
54090
54091 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
54092
54093         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
54094
54095 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
54096
54097         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
54098         (Depends-on): Remove pathmax, same.  Add mempcpy.
54099         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
54100         (Makefile.am): Append getcwd.h to lib_SOURCES.
54101         (Include): Add getcwd.h.
54102         (Maintainer): Change from Jim Meyering to "all, glibc",
54103         since getdate now uses intended-for-glibc code.
54104         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
54105         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
54106
54107 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
54108
54109         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
54110         HP's ANSI C compiler.
54111         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
54112         Declaring int functions causes warnings on some modern systems and
54113         shouldn't be needed to compile on ancient ones.
54114         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
54115         defined.
54116
54117         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
54118         with the following changes.
54119         (__set_errno): Parenthesize properly.
54120         Include <stdbool.h>.
54121         (MIN, MAX, MATCHING_INO): New macros.
54122         (__getcwd): Define with prototype, not K&R form.
54123         Use heuristics to allocate default buffer on stack if possible.
54124         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
54125         behavior, and to avoid the PATH_MAX limit when computing
54126         ../../../../...
54127         Use MATCHING_INO to compare inode number to file.
54128         Check for arithmetic overflow in size calculations.
54129         Fix bug in reallocation of dot array that caused getcwd to fail
54130         on directories nested deeper than 75.
54131         Be more careful about saving errno on error.
54132         Do not use realloc; use only free+malloc, as this is a bit
54133         more flexible and avoids a needless copy operation.
54134         Do not inspect st_dev and st_ino for symbolic links; POSIX
54135         doesn't specify the latter.
54136         Check for closedir errors.
54137         Avoid needless casts.
54138         Use "#ifdef weak_alias" around weak_alias, to be like other
54139         glibc code.
54140         The following changes to getcwd.c have effect only when used in
54141         gnulib; they have no effect inside glibc proper.
54142         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
54143         as alloca isn't used.
54144         (alloca, __alloca): Likewise.
54145         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
54146         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
54147         unconditionally, as gnulib assumes C89 or better.
54148         Do not include <sys/param.h>.
54149         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
54150         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
54151         better.
54152         (NULL) [!defined NULL]: Remove; we assume C89 or better.
54153         Include <dirent.h> in a way that is compatible with modern Autoconf.
54154         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
54155         New macros, if not already defined.
54156         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
54157         Use "_LIBC", not "defined _LIBC", for consistency.
54158         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
54159         a mempcpy module.
54160         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
54161         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
54162         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
54163         credit only to Jim Meyering and adjust the copyright dates.
54164         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
54165         <stdlib.h>, <unistd.h>, "pathmax.h".
54166         Instead, include "xgetcwd.h" (first) and "getcwd.h".
54167         (INITIAL_BUFFER_SIZE): Remove.
54168         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
54169
54170 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
54171
54172         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
54173         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
54174         Use the _ONCE methods, for efficiency.
54175         Check for fcntl.h.  In test program, include <errno.h>
54176         and <fcntl.h> if available.  Remove old K&R cruft from
54177         test program.  Check for common errors in GNU/Linux,
54178         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
54179         don't do AC_LIBOBJ, as that's getcwd.m4's job.
54180         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
54181         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
54182         name accordingly.
54183         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
54184         accommodate new getcwd.c.
54185         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
54186         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
54187         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
54188         that's all we need now.
54189
54190 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54191
54192         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
54193         argp-parse.c depends on getopt internals, that means we should
54194         always use our getopt, to be on the safe side.
54195         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
54196         order not to spoil the result of an eventual previous invocation
54197         of gl_GETOPT_SUBSTITUTE.
54198
54199 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54200
54201         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
54202         redefinition warnings. To avoid them, include the defines
54203         in `#if !defined __need_getopt ... #endif'. The only place
54204         where __getopt_argv_const is used is in definitions
54205         of getopt_long and getopt_long_only below, which are as well
54206         protected by `#ifndef __need_getopt'.
54207         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
54208         __need_getopt after including <stdio.h> and <unistd.h> These
54209         headers might have defined it.
54210
54211 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
54212
54213         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
54214
54215 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
54216
54217         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
54218         (futimens): New function, which uses futimes if available.
54219         (futimens, utimens): Support timespec==NULL, with same semantics
54220         as utime and utimens.
54221         * lib/utimens.h (futimens): New decl.
54222
54223 2004-11-23  Jim Meyering  <jim@meyering.net>
54224
54225         * lib/getopt_.h: Remove trailing blanks.
54226
54227 2004-11-23  Jim Meyering  <jim@meyering.net>
54228
54229         * lib/__fpending.c: Add comment.
54230
54231 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
54232
54233         * modules/canonicalize (Depends-on): Add xreadlink.
54234         Problem reported by James Youngman.
54235
54236 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
54237
54238         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
54239         New macros.
54240         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
54241         optopt): Use them instead of invoking ## directly; otherwise, the
54242         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
54243
54244 2004-11-19  Bruno Haible  <bruno@clisp.org>
54245
54246         * lib/strtok_r.c: Move comments from here...
54247         * lib/strtok_r.h: ... to here.
54248
54249 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
54250
54251         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
54252         implementations that mishandle size_t overflow.
54253
54254 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
54255
54256         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
54257         might fail.  Problem reported by Yoann Vandoorselaere.
54258         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
54259         implementations that mishandle size_t overflow.
54260
54261 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
54262
54263         * modules/canon-host (Depends-on): Add strdup.
54264
54265 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
54266
54267         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
54268
54269 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
54270
54271         * lib/canon-host.c: Include "strdup.h".
54272         (canon_host): Use getaddrinfo if available, so that IPv6 works.
54273         Use strdup instead of malloc/strcpy to duplicate strings.
54274
54275         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
54276         (human_space_before_unit): New constant.
54277         * lib/human.c (human_readable): Support it.
54278
54279         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
54280         (xgetcwd): Set errno correctly when failing.
54281         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
54282         the failure is actually due to a PATH_MAX problem.
54283
54284         Further getopt changes to make it more likely that glibc will
54285         buy the changes back.
54286         * lib/getopt.c (POSIXLY_CORRECT): New constant.
54287         (getopt): Use it, so to preserve glibc semantic
54288         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
54289         when compiling for libc.
54290         * lib/getopt_.h (__getopt_argv_const): Bring it back.
54291         (getopt_long, getopt_long_only): Use it.
54292
54293         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
54294         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
54295         (getopt): Argv is now char * const *, as per standard.
54296         (_getopt_internal_r, _getopt_internal): Argv is now char **,
54297         not char *__getopt_argv_const *.
54298         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
54299         _getopt_long_only_r): Likewise.
54300         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
54301         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
54302         _getopt_long_r, _getopt_long_only_r): Likewise.
54303         * lib/getopt_.h (__getopt_argv_const): Remove.
54304         (getopt): Argv is now char * const *, as per standard.
54305
54306         * lib/getdate.y (tORDINAL): New token.
54307         (day, relunit): Allow it for relative times.
54308         (relative_time_table): Use tORDINAL for ordinals.
54309
54310 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
54311
54312         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
54313         Document that "second" isn't allowed as an ordinal number.
54314
54315 2004-11-16  Jim Meyering  <jim@meyering.net>
54316
54317         * modules/closeout (Depends-on): Add fpending.
54318
54319 2004-11-15  Jim Meyering  <jim@meyering.net>
54320
54321         * lib/closeout.c: Include "__fpending.h" once again.
54322         Include <stdbool.h>.
54323         (close_stdout): Don't fail just because stdout was closed initially,
54324         since some programs don't write to stdout in the normal course of
54325         operation (other than --version and --help), and we don't want this
54326         function to make e.g. `touch file >&-' fail.
54327         But do fail if it was closed and someone has tried to write to it.
54328         E.g., `printf foo >&-' must fail.
54329
54330 2004-11-13  Jim Meyering  <jim@meyering.net>
54331
54332         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
54333
54334 2004-11-12  Simon Josefsson  <jas@extundo.com>
54335
54336         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
54337         small doc fix is still pending.
54338
54339 2004-11-11  Simon Josefsson  <jas@extundo.com>
54340
54341         * modules/strtok_r: New file.
54342
54343         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
54344         strtok_r.
54345
54346 2004-11-11  Simon Josefsson  <jas@extundo.com>
54347
54348         * m4/strtok_r.m4: New file.
54349
54350         * m4/getopt.m4: Replace opterr.
54351
54352 2004-11-11  Simon Josefsson  <jas@extundo.com>
54353
54354         * lib/strtok_r.h, strtok_r.c: New file.
54355
54356 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
54357
54358         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
54359         of replacing opterr, getopt, etc.  This should handle the
54360         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
54361
54362 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
54363
54364         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
54365         we can stop lying to compilers about the constness of argv when we
54366         are compiled outside glibc.
54367         (getopt, getopt_long, getopt_long_only): Use it.
54368         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
54369         _getopt_internal, getopt): Likewise.
54370         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
54371         _getopt_long_only_r): Likewise.
54372         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
54373         _getopt_long_r, _getopt_long_only_r): Likewise.
54374
54375         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
54376         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
54377         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
54378         the other external symbols.
54379         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
54380         declaration, since the above renaming now works around collisions.
54381
54382 2004-11-11  Jim Meyering  <jim@meyering.net>
54383
54384         * lib/linebreak.c: Remove trailing blanks.
54385         * lib/alloca_.h: Likewise.
54386         * lib/acosl.c: Likewise.
54387         * lib/euidaccess.c: Likewise.
54388         * lib/allocsa.h: Likewise.
54389
54390 2004-11-10  Simon Josefsson  <jas@extundo.com>
54391
54392         * m4/getaddrinfo.m4: New file.
54393
54394 2004-11-10  Simon Josefsson  <jas@extundo.com>
54395
54396         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
54397
54398 2004-11-10  Simon Josefsson  <jas@extundo.com>
54399
54400         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
54401         getaddrinfo.
54402
54403         * modules/getaddrinfo: New file.
54404
54405 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
54406
54407         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
54408
54409 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
54410
54411         * lib/mktime.c (SHR): New macro, which is a portable
54412         substitute for >> that should work even on Crays.
54413         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
54414         Problem reported by Mark D. Baushke in
54415         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
54416         * lib/getdate.y (SHR): Likewise.
54417         (tm_diff): Use it.
54418         * lib/strftime.c (SHR): Likewise.
54419         (tm_diff): Use it.
54420         * lib/quotearg.c (struct quoting_options): Use unsigned int for
54421         quote_these_too, so that right shifts are well defined.  All uses
54422         changed.
54423
54424 2004-11-10  Jim Meyering  <jim@meyering.net>
54425
54426         Ensure that no close failure goes unreported.
54427         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
54428         return early when it seems there's nothing to flush.
54429         Don't include __fpending.h.
54430
54431 2004-11-10  Jim Meyering  <jim@meyering.net>
54432
54433         * modules/closeout (Depends-on): Remove fpending.
54434
54435 2004-11-10  Jim Meyering  <jim@meyering.net>
54436
54437         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
54438
54439 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
54440
54441         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
54442         gl_FUNC_STRFTIME.
54443         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
54444         and AC_REQUIRE when possible, to avoid duplicate checks.
54445         Check for <wchar.h>.
54446
54447 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
54448
54449         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
54450
54451 2004-11-09  Bruno Haible  <bruno@clisp.org>
54452
54453         * m4/sockpfaf.m4: New file.
54454
54455 2004-11-05  Bruno Haible  <bruno@clisp.org>
54456
54457         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
54458         Reported by Mark D. Baushke <mdb@cvshome.org>.
54459
54460 2004-11-04  Bruno Haible  <bruno@clisp.org>
54461
54462         2004-09-11  Bruno Haible  <bruno@clisp.org>
54463                 * allocsa.valgrind: New file.
54464         2004-02-06  Bruno Haible  <bruno@clisp.org>
54465                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
54466                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
54467                 Reported by Christopher Seip <chris.seip@hp.com>.
54468
54469 2004-11-04  Bruno Haible  <bruno@clisp.org>
54470
54471         * modules/allocsa (Files): Add lib/allocsa.valgrind.
54472         (Makefile.am): Distribute it.
54473
54474 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
54475
54476         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
54477         with errno == ERANGE if the buffer is too small.
54478         Problem reported by Mark D. Baushke.
54479
54480 2004-11-03  Albert Chin  <china@thewrittenword.com>
54481             Paul Eggert  <eggert@cs.ucla.edu>
54482
54483         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
54484         equivalent, substitute $ac_type for equivalent type rather than
54485         blindly using uint32_t *always* which won't work if uint32_t is not
54486         available.  Define _UINT32_T to work around typedef of uint32_t if
54487         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
54488         2.5.1.
54489
54490 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54491
54492         * m4/jm-macros.m4: Sync from coreutils.
54493         (gl_MACROS): Check for mbrlen, for pathchk.
54494         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
54495
54496 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54497
54498         * lib/xreadlink.c (MAXSIZE): New macro.
54499         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
54500         size does not exceed MAXSIZE.  Avoid cast.
54501         As suggested by Mark D. Baushke in
54502         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
54503         if readlink fails with buffer size just under MAXSIZE, try again
54504         with MAXSIZE.
54505
54506 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
54507
54508         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
54509
54510 2004-11-02  Derek R. Price  <derek@ximbiot.com>
54511         and  Paul Eggert  <eggert@cs.ucla.edu>
54512
54513         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
54514         (get_date): Overparenthesize to avoid GCC warning.
54515
54516 2004-11-02  Bruno Haible  <bruno@clisp.org>
54517
54518         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
54519         returns void.
54520
54521 2004-11-02  Bruno Haible  <bruno@clisp.org>
54522
54523         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
54524         function returns void.
54525
54526 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
54527
54528         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
54529         fflush_unlocked, flockfile, funlockfile, funlockfile,
54530         fputs_unlocked, putc_unlocked.
54531
54532 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
54533
54534         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54535         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
54536         already declared.
54537
54538 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54539
54540         * modules/getdate (Files): Add doc/getdate.texi.
54541         (Depends-on): Add setenv, xalloc.
54542
54543 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54544
54545         * lib/getdate.y: Add support for TZ="foo" within a date string.
54546         Fix some bugs near time_t boundaries.  Reject dates with
54547         out-of-range components, e.g., "Sept 31".
54548         Include <stdlib.h>, "setenv.h", "xalloc.h".
54549         (ISDIGIT_LOCALE): Remove; unused.
54550         Note that the TZ and time functions used here are not reentrant.
54551         (mktime_ok, get_tz): New functions.
54552         (TZBUFSIZE): New constant.
54553         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
54554         This requires that we sometimes generate our own TZ="XXX..." setting.
54555
54556 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54557
54558         * doc/getdate.texi: New file, from coreutils with modifications for
54559         the new TZ parsing.
54560
54561 2004-10-27  Derek R. Price  <derek@ximbiot.com>
54562
54563         * lib/mktime.c (not_equal_tm): Remove redundant check.
54564
54565 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54566
54567         * modules/regex (lib_SOURCES): Add regex.c.
54568         Reported by James Youngman in
54569         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
54570
54571 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
54572
54573         * lib/getdate.y: Use Bison 1.875 features, and some minor
54574         code cleanups.  This change does not affect semantics.
54575         Don't include <stdlib.h>; no longer needed.
54576         Don't include unlocked-io.h; only the "#if TEST" code uses
54577         stdio, and performance isn't crucial there.
54578         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
54579         Bison 1.875 features as described below.
54580         All uses of "PC." replaced by "pc->".
54581         (YYSTYPE): Add a forward declaration.
54582         (yylex, yyerror): Use full prototypes in forward decls.
54583         Use "%pure-parser" rather than obsolescent "%pure_parser".
54584         Use %parse-param and %lex-param instead of obsolescent
54585         YYPARSE_PARAM and YYLEX_PARAM.
54586         (meridian_table, month_and_day_table, time_units_table,
54587         relative_time_table, time_zone_table, military_table,
54588         lookup_zone, lookup_word, get_date):
54589         Use NULL instead of 0 where appropriate.
54590         (to_hour): Avoid abort (), to avoid a dependency on
54591         stdlib.h.
54592         (yyerror, yylex): Now accepts parser_control * arg.
54593         (main) [TEST]: Use '\0' rather than 0 for char.
54594
54595 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54596
54597         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
54598
54599 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
54600
54601         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
54602         It's now the caller's responsibility to handle the case where
54603         !HAVE_GETPAGESIZE && !defined getpagesize.
54604
54605         * lib/mktime.c (leapyear): Arg is long int, not int.
54606
54607 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
54608
54609         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
54610
54611 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
54612
54613         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
54614         missing.  Problem reported by James Youngman.
54615
54616 2004-10-16  Simon Josefsson  <jas@extundo.com>
54617
54618         * gnulib-tool: Fix comments.  Fix parse problem.
54619         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
54620
54621 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
54622
54623         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
54624         implementation of getopt_long.  Problem reported by Alexander Taler in:
54625         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
54626
54627 2004-10-15  Bruno Haible  <bruno@clisp.org>
54628
54629         * gnulib-tool: Untabify. Initialize supplied_libname.
54630         (func_usage): More homogenous output.
54631         (func_modules_transitive_closure, func_modules_to_filelist,
54632         func_emit_lib_Makefile_am): New functions.
54633         (func_import): New function, extracted from big case statement. Use
54634         func_get_license, func_modules_transitive_closure,
54635         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
54636         opt_lgpl. Don't use test -a, as it's not portable.
54637         (func_create_testdir): Use func_modules_transitive_closure,
54638         func_modules_to_filelist, func_emit_lib_Makefile_am.
54639
54640 2004-10-15  Bruno Haible  <bruno@clisp.org>
54641
54642         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
54643
54644 2004-10-15  Bruno Haible  <bruno@clisp.org>
54645
54646         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
54647         the portions belonging to each module.
54648         Suggested by Derek Robert Price <derek@ximbiot.com>.
54649
54650 2004-10-12  Simon Josefsson  <jas@extundo.com>
54651
54652         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
54653         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
54654         to real functions.
54655
54656 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54657
54658         * modules/vsnprintf: New file.
54659
54660 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54661
54662         * m4/vsnprintf.m4: New file.
54663
54664 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54665
54666         * lib/vsnprintf.h: New file.
54667         * lib/vsnprintf.c: New file.
54668
54669 2004-10-11  Bruno Haible  <bruno@clisp.org>
54670
54671         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
54672         vsnprintf.
54673
54674 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
54675
54676         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
54677
54678 2004-10-07  Bruno Haible  <bruno@clisp.org>
54679
54680         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
54681         fits into the provided buffer.
54682
54683 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
54684
54685         * lib/diacrit.c, diacrit.h: Add GPL notice.
54686
54687         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
54688         notice.
54689         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
54690         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
54691         This avoids a potential constant-folding bug.
54692
54693 2004-10-05  Bruno Haible  <bruno@clisp.org>
54694
54695         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
54696         for the declaration of strsep.
54697
54698 2004-10-05  Bruno Haible  <bruno@clisp.org>
54699
54700         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
54701
54702 2004-10-04  Simon Josefsson  <jas@extundo.com>
54703
54704         * modules/memmem: New file.
54705         * tests/test-memmem.c: New file.
54706         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
54707
54708 2004-10-04  Simon Josefsson  <jas@extundo.com>
54709
54710         * m4/memmem.m4: New file.
54711
54712 2004-10-04  Simon Josefsson  <jas@extundo.com>
54713
54714         * lib/memmem.h: New file.
54715         * lib/memmem.c: New file, taken from glibc.
54716
54717 2004-10-04  Simon Josefsson  <jas@extundo.com>
54718
54719         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
54720         '#ifdef USE_UNLOCKED_IO'.
54721
54722 2004-10-04  Simon Josefsson  <jas@extundo.com>
54723
54724         * config/srclist.txt: Add memmem from glibc.
54725
54726 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54727
54728         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
54729
54730         * modules/argmatch, modules/argp, modules/closeout, modules/error,
54731         modules/exclude, modules/getdate, modules/getline,
54732         modules/getndelim2, modules/getpass, modules/getpass-gnu,
54733         modules/getusershell, modules/linebuffer, modules/md5,
54734         modules/mountlist, modules/posixtm, modules/readtokens,
54735         modules/readutmp, modules/regex, modules/sha1,
54736         modules/version-etc, modules/yesno:
54737         Remove dependency on unlocked-io.
54738
54739 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54740
54741         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
54742
54743         * m4/unlocked-io.m4: Add copyright notice.
54744         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
54745
54746 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54747
54748         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
54749         * lib/xmalloc.c (xmemdup): Likewise.
54750         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
54751         XFREE): Remove these long-obsolescent macros.
54752         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
54753         * lib/xstrdup.c: Remove.
54754
54755         * lib/regex.c (re_comp): Cast gettext return value to char *,
54756         Problem reported by Martin Neitzel via Mark D. Baushke.
54757
54758 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
54759
54760         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
54761         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
54762         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
54763         regex.c, sha1.c, version-etc.c, yesno.c:
54764         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
54765         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
54766         the includer's responsibility.
54767
54768         Sync from coreutils.
54769
54770         * lib/modechange.c (mode_compile): Don't decrement a pointer that
54771         points to the start of a string, as the C Standard says the
54772         resulting behavior is undefined.
54773
54774         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
54775         simple -> simple_backups, numbered_existing ->
54776         numbered_existing_backups, numbered -> numbered_backups
54777         to avoid shadowing problems.  All uses changed.
54778         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
54779         * lib/backupfile.c (check_extension, numbered_backup):
54780         Rename locals to avoid shadowing 'basename'.
54781         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
54782         once.
54783
54784         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
54785         * lib/.cvsignore: Add getopt.h.
54786
54787 2004-10-04  Bruno Haible  <bruno@clisp.org>
54788
54789         * modules/README: New file.
54790         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
54791         not a module.
54792
54793 2004-10-02  Jim Meyering  <jim@meyering.net>
54794
54795         * lib/dirfd.h, getpagesize.h: Add copyright notice.
54796
54797 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54798
54799         * modules/strsep: New file.
54800
54801 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54802
54803         * m4/strsep.m4: New file.
54804
54805 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
54806
54807         * lib/strsep.h: New file.
54808         * lib/strsep.c: New file.
54809
54810 2004-10-01  Simon Josefsson  <jas@extundo.com>
54811
54812         * lib/snprintf.c (snprintf): Handle size==0.
54813
54814 2004-10-01  Simon Josefsson  <jas@extundo.com>
54815             Bruno Haible  <bruno@clisp.org>
54816
54817         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
54818         (snprintf): Declare 'args'.
54819
54820 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
54821
54822         * lib/snprintf.c: Remove comments as to why each header is needed.
54823
54824 2004-10-01  Bruno Haible  <bruno@clisp.org>
54825
54826         * MODULES.html.sh: Add strsep.
54827
54828 2004-09-30  Simon Josefsson  <jas@extundo.com>
54829
54830         * modules/snprintf: New file.
54831
54832 2004-09-30  Simon Josefsson  <jas@extundo.com>
54833
54834         * m4/snprintf.m4: New file.
54835
54836 2004-09-30  Simon Josefsson  <jas@extundo.com>
54837
54838         * lib/snprintf.h, lib/snprintf.c: New files.
54839
54840 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54841
54842         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
54843         (hol_entry_help): Never translate an empty string.
54844         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
54845         * lib/argp.h (OPTION_NO_TRANS): New option.
54846
54847 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54848
54849         * modules/argp (Maintainer): Replace Simon Josefsson
54850         by Sergey Poznyakoff.
54851
54852 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54853
54854         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
54855         changes merged back into glibc.
54856
54857 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
54858
54859         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
54860
54861 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
54862
54863         * lib/xvasprintf.c: Include xalloc.h.
54864         (xvasprintf): Use xalloc_die, not xmalloc_die.
54865
54866 2004-09-29  Bruno Haible  <bruno@clisp.org>
54867
54868         * modules/alloca-opt: New file, derived from modules/alloca.
54869         * modules/allocsa: Depend on alloca-opt instead of alloca.
54870         * modules/setenv: Likewise.
54871         * modules/vasnprintf: Likewise.
54872         * MODULES.html.sh: Add alloca-opt.
54873
54874 2004-09-28  Simon Josefsson  <jas@extundo.com>
54875
54876         * gnulib-tool: New parameter --lgpl, to asseert that modules are
54877         LGPL, and to replace license template from GPL to LGPL.
54878
54879 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
54880
54881         * modules/dummy: Change license to LGPL.
54882
54883 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
54884
54885         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
54886
54887 2004-09-24  Simon Josefsson  <jas@extundo.com>
54888
54889         * modules/minmax (License): Change from GPL to LGPL.
54890
54891 2004-09-23  Simon Josefsson  <jas@extundo.com>
54892
54893         * gnulib-tool (--import): Typo.
54894
54895 2004-09-23  Simon Josefsson  <jas@extundo.com>
54896
54897         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
54898
54899 2004-09-22  Bruno Haible  <bruno@clisp.org>
54900
54901         * modules/*: Add 'License' field.
54902         * gnulib-tool: Accept --extract-license option.
54903         (func_get_license): New function.
54904
54905 2004-09-21  Bruno Haible  <bruno@clisp.org>
54906
54907         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
54908         Reported by Simon Josefsson.
54909
54910 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
54911
54912         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
54913         gl_AC_TYPE_LONG_LONG.
54914
54915 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
54916
54917         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
54918
54919 2004-09-18  Simon Josefsson  <jas@extundo.com>
54920         and  Paul Eggert  <eggert@cs.ucla.edu>
54921
54922         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
54923         calls with autoreconf.  Define GL_LIB.
54924
54925 2004-09-14  Karl Berry  <karl@gnu.org>
54926
54927         * config/srclist.txt: unsync setenv.c, sigh.
54928
54929 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
54930
54931         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
54932         Problem reported by Bruno Haible in:
54933         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
54934
54935 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
54936
54937         * config/srclist.txt: Comment out argp-pvh.c.
54938
54939 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
54940
54941         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
54942         in case some system header has #define'd it.  Problem reported by
54943         Soeren D. Schulze in
54944         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
54945
54946 2004-09-09  Karl Berry  <karl@gnu.org>
54947
54948         * regex.[ch]: delete from the root.  These were supposed to be
54949                 synced with emacs cvs, but this has not happened for about
54950                 a year, and anyway nothing else uses emacs regex.[ch].
54951                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
54952                 lib/regex[.ch] is untouched.
54953
54954 2004-09-09  Bruno Haible  <bruno@clisp.org>
54955
54956         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
54957
54958 2004-09-09  Bruno Haible  <bruno@clisp.org>
54959
54960         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
54961         modifications.
54962         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
54963
54964 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
54965
54966         * modules/xvasprintf: New file.
54967         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
54968
54969 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
54970
54971         * lib/xvasprintf.h: New file.
54972         * lib/xvasprintf.c: New file.
54973         * lib/xasprintf.c: New file.
54974
54975 2004-09-08  Bruno Haible  <bruno@clisp.org>
54976
54977         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
54978
54979 2004-09-08  Bruno Haible  <bruno@clisp.org>
54980
54981         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
54982         length is > INT_MAX.
54983         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
54984         more.
54985
54986 2004-09-08  Bruno Haible  <bruno@clisp.org>
54987
54988         * lib/stdint_.h: New file, taken from GNU clisp.
54989
54990 2004-09-08  Bruno Haible  <bruno@clisp.org>
54991             Oskar Liljeblad  <oskar@osk.mine.nu>
54992
54993         * modules/stdint: New file.
54994         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
54995
54996 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
54997
54998         Import from coreutils.
54999         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
55000         strings on unbounded length.  alloca's performance benefits aren't
55001         that important here.
55002         (V_STRDUP): Remove.
55003         (parse_with_separator): New function, with most of the internals
55004         of the old parse_user_spec.  Allow user to omit both user and group,
55005         for compatibility with FreeBSD.
55006         Clone only the user name, not the entire spec.
55007         Do not set *uid, *gid unless entirely successful.
55008         Avoid memory leak in some failing cases.
55009         Fix regression for USER.GROUP reported by Dmitry V. Levin in
55010         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
55011         (parse_user_spec): Rewrite to use parse_with_separator.
55012
55013 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55014
55015         * modules/userspec: Don't depend on alloca.
55016
55017 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55018
55019         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
55020
55021 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
55022
55023         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
55024         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
55025         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
55026
55027 2004-08-16  Simon Josefsson  <jas@extundo.com>
55028
55029         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
55030         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
55031         Add --dry-run for --import.
55032         Let user provided command line parameters override configure.ac
55033         settings.
55034
55035 2004-08-12  Simon Josefsson  <jas@extundo.com>
55036
55037         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
55038         as discussed with Paul Eggert in threads rooted at
55039         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
55040         and
55041         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
55042         Before, the test was empty, and relied on ELIDE_CODE in source
55043         code.)
55044         (gl_PREREQ_GETOPT): New macro.
55045         (gl_GETOPT): Use them.
55046
55047 2004-08-12  Simon Josefsson  <jas@extundo.com>
55048
55049         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
55050         * lib/getopt_.h: Renamed from getopt.h.
55051
55052 2004-08-12  Simon Josefsson  <jas@extundo.com>
55053
55054         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
55055         Change default library name from libfoo to libgnu.
55056         Now, if you have a configure.ac that says:
55057                 gl_SOURCE_BASE(gl)
55058                 gl_M4_BASE(gl/m4)
55059                 gl_MODULES(error getopt etcetera)
55060                 gl_INIT
55061         you can import all you need by running:
55062                 ../gnulib/gnulib-tool --import
55063
55064         * modules/getopt (Files): Rename getopt.h to getopt_.h.
55065         (Makefile.am): Rewrite, use logic from argz.
55066         (Include): Use <getopt.h> instead of "getopt.h".
55067
55068 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55069
55070         * modules/argp (Files): Add m4/unlocked-io.m4.
55071         (Depends-on): Add extensions.
55072
55073 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55074
55075         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
55076         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
55077         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
55078         Check for program_invocation_name, program_invocation_short_name,
55079         flockfile, funlockfile, features.h, _getopt_long_only_r.
55080
55081 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55082
55083         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
55084         its complicated substitute.
55085         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
55086         and program_invocation_name.
55087         (__argp_basename) [!_LIBC]: Remove; the only use was
55088         replaced by its body.
55089         (__argp_short_program_name): Change condition from
55090         !defined __argp_short_program_name to
55091         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
55092         to match argp-namefrob.h.
55093         (__argp_failure): Don't assume strerror_r returns char *.
55094         * lib/argp-parse.c (N_): Define unconditionally.
55095         (argp_default_options): Fill out initializers with 0 to avoid
55096         gcc warnings.
55097
55098 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55099
55100         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
55101         getopt1.c.
55102
55103 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55104
55105         Merge from coreutils.
55106
55107         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
55108
55109         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
55110         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
55111
55112 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55113
55114         Merge from coreutils.
55115
55116         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
55117         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
55118         for Reliant Unix 5.43.
55119
55120         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
55121         (union fooround): Use uintmax_t, not long int.
55122         The rest is a merge from libc:
55123         [defined _LIBC]: Include <shlib-compat.h>.
55124         (_obstack) [defined _LIBC]: Remove after 2.3.4.
55125
55126         * lib/settime.c (settime): Recode to avoid warning with
55127         Sun Forte C 6U2.
55128
55129         * lib/strverscmp.c: Convert to UTF-8.
55130
55131 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55132
55133         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
55134         m4/uintmax_t.m4.
55135
55136 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55137
55138         * modules/xalloc-die: New file.
55139         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
55140
55141         * modules/md5 (Files): Add m4/uint32_t.m4.
55142         * modules/sha1: Renamed from modules/sha.
55143         (Files):
55144         Rename lib/sha.h to lib/sha1.h.
55145         Rename lib/sha.c to lib/sha1.c.
55146         Rename m4/sha.m4 to m4/sha1.m4.
55147         (lib_SOURCES): Likewise.
55148         (configure.ac): Rename gl_SHA to gl_SHA1.
55149         (Include): sha.h -> sha1.h.
55150
55151 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55152
55153         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
55154         * m4/sha1.m4: Renamed from sha.m4.
55155         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
55156
55157 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55158
55159         * lib/obstack.h (obstack_empty_p):
55160         Don't assume that chunk->contents is suitably aligned.
55161         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
55162         Likewise. Problem reported by Benno in
55163         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
55164
55165         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
55166         readable.  This could be improved further but it'd take some work.
55167
55168 2004-08-08  Simon Josefsson  <jas@extundo.com>
55169
55170         * modules/xgethostname (Depends-on): Remove exit and error (not
55171         used).
55172
55173         * modules/getpass-gnu: Add getpass.h.
55174         (Depends-on): Add stdbool.
55175         * modules/getpass: Add getpass.h.
55176
55177 2004-08-08  Simon Josefsson  <jas@extundo.com>
55178
55179         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
55180         Check getpass declaration.
55181
55182 2004-08-08  Simon Josefsson  <jas@extundo.com>
55183
55184         * lib/xgethostname.c: Don't include error.h (not used).
55185
55186         * lib/getpass.h: Add.
55187         * lib/getpass.c: Include getpass.h first.
55188
55189 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
55190
55191         * lib/xalloc-die.c: New file.
55192         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
55193         All uses removed.
55194         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
55195         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
55196         xalloc-die.c.
55197         (_, N_, xalloc_die): Move to xalloc-die.c.
55198         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
55199         so that we needn't mess with xalloc_msg_memory_exhausted.
55200
55201         * lib/sha1.h: Renamed from sha.h.
55202         (SHA1_H): Renamed from _SHA_H.
55203         (sha1_ctx): Renamed from sha_ctx.
55204         (sha1_init_ctx): Renamed from sha_init_ctx.
55205         (sha1_process_block): Renamed from sha_process_block.
55206         (sha1_process_bytes): Renamed from sha_process_bytes.
55207         (sha1_finish_ctx): Renamed from sha_finish_ctx.
55208         (sha1_read_ctx): Renamed from sha_read_ctx.
55209         (sha1_stream): Renamed from sha_stream.
55210         (sha1_buffer): Renamed from sha_buffer.
55211         * lib/sha1.c: Likewise; renamed from sha.c.
55212         Do not include <sys/types.h>.
55213         Include <stddef.h> rather than <stdlib.h>.
55214
55215 2004-08-08  Bruno Haible  <bruno@clisp.org>
55216
55217         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
55218         FILESYSTEM_PREFIX_LEN.
55219         * lib/progreloc.c: Likewise.
55220         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
55221
55222 2004-08-06  Simon Josefsson  <jas@extundo.com>
55223
55224         * modules/progname (Depends-on): Don't depend on stdbool.
55225
55226 2004-08-06  Simon Josefsson  <jas@extundo.com>
55227
55228         * modules/getsubopt: New file.
55229         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
55230         getsubopt.
55231
55232 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
55233
55234         More merge from coreutils.
55235
55236         * m4/utimens.m4, m4/utimecmp.m4: New files.
55237         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
55238         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
55239         prereq.m4, sha.m4: Import changes from coreutils.
55240
55241 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
55242
55243         More merge from coreutils.
55244         * modules/raise, modules/readtokens0, modules/utimens:
55245         * modules/utimecmp, module/xnanosleep: New files.
55246         * modules/strftime: Add lib/strftime.h.
55247         Change include from <time.h> to "strftime.h".
55248         * modules/yesno: Add lib/yesno.h.
55249         * modules/backupfile: Remove lib/addext.c.
55250         * modules/euidaccess: Add stat-macros.h.
55251         * modules/canonicalize, modules/euidaccess,
55252         modules/filemode, modules/lchown, modules/makepath,
55253         modules/rmdir, modules/stat: Likewise.
55254
55255 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
55256
55257         Merge from tar.
55258         * lib/argp-help.c (make_hol, hol_append): Don't assume that
55259         SIZE_MAX is a valid preprocessor constant.
55260         (__argp_basename): Change from "#ifndef _LIBC"
55261         to "#ifndef __argp_short_program_name", so that
55262         we don't compile these functions for tar.
55263
55264         More merges from coreutils.
55265         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
55266         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
55267         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
55268         * lib/addext.c: Remove; no longer needed.
55269         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
55270         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
55271         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
55272         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
55273         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
55274         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
55275         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
55276         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
55277         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
55278         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
55279         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
55280         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
55281         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
55282         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
55283         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
55284         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
55285         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
55286         Import changes from coreutils.
55287
55288 2004-08-05  Simon Josefsson  <jas@extundo.com>
55289
55290         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
55291
55292 2004-08-05  Simon Josefsson  <jas@extundo.com>
55293
55294         * m4/getsubopt.m4: New file.
55295
55296 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
55297
55298         Merge from coreutils.
55299
55300         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
55301         * m4/getcwd-path-max.m4: New files.
55302
55303         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
55304         FILESYSTEM_PREFIX_LEN ->
55305         FILE_SYSTEM_PREFIX_LEN.
55306         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
55307         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
55308         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
55309         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
55310
55311         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
55312         prerequisite modules now handle the DOS stuff.
55313         Don't check for unistd.h.
55314
55315 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
55316
55317         Merge from coreutils.
55318
55319         * lib/.gdb-history: Remove; this doesn't belong here.
55320
55321         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
55322         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
55323         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
55324         * lib/getcwd.c: New files.
55325
55326         * lib/dirname.h: Include <stdbool.h>.
55327         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
55328         for consistency with POSIX terminology.  All uses changed.
55329         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
55330         (strip_trailing_slashes): Use bool for booleans.
55331         * lib/stripslash.c (strip_trailing_slashes): Likewise.
55332
55333         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
55334         sometimes returns a positive errno value even when it succeeds.
55335         (print_errno_message) [!LIBC]: Fall back on strerror if
55336         __strerror_r fails.
55337
55338         * lib/path-concat.c (mempcpy): Don't define if a system header defines
55339         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
55340         (longest_relative_suffix): New function.
55341         (path_concat): Use it.  Assume first argument is not NULL.
55342         Port to DOS.  Omit redundant separators.
55343         Report an error instead of returning NULL.
55344         Use mempcpy instead of memcpy.
55345         (xpath_concat): Remove: not declared or used.
55346
55347         * lib/same.h: Include <stdbool.h>
55348         (same_name): Return bool, not int.
55349         * lib/same.c (same_name): Likewise.
55350         (errno): Don't declare; we assume C89 or better now.
55351
55352         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
55353         if not already defined.
55354
55355         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
55356         * lib/dup-safer.c (errno): Likewise.
55357
55358 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
55359
55360         Merge from coreutils.
55361         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
55362         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
55363         * modules/path-concat: Don't depend on strdup.
55364
55365 2004-08-03  Simon Josefsson  <jas@extundo.com>
55366
55367         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
55368         * lib/progname.h: Don't include stdbool.h.
55369
55370 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
55371
55372         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
55373         * MODULES.html.sh (func_all_modules): Remove fatal.
55374
55375 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
55376
55377         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
55378
55379 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
55380
55381         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
55382         working.
55383
55384 2004-08-02  Simon Josefsson  <jas@extundo.com>
55385
55386         * lib/getsubopt.h: New file, with comments from Bruno Haible.
55387         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
55388         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
55389
55390 2004-08-01  Simon Josefsson  <jas@extundo.com>
55391
55392         * lib/xgetdomainname.c: Include stdlib.h, for free().
55393
55394 2004-07-19  Bruno Haible  <bruno@clisp.org>
55395
55396         * MODULES.html.sh (func_all_modules): Add dummy.
55397
55398 2004-07-16  Simon Josefsson  <jas@extundo.com>
55399
55400         * modules/dummy: New file.
55401
55402 2004-07-16  Simon Josefsson  <jas@extundo.com>
55403
55404         * lib/dummy.c: New file.
55405
55406 2004-07-16  Bruno Haible  <bruno@clisp.org>
55407
55408         * lib/backupfile.h: Add extern "C" for C++.
55409         * lib/closeout.h: Likewise.
55410         * lib/copy-file.h: Likewise.
55411         * lib/findprog.h: Likewise.
55412         * lib/full-write.h: Likewise.
55413         * lib/pathname.h: Likewise.
55414         * lib/progname.h: Likewise.
55415         * lib/stpcpy.h: Likewise.
55416         * lib/stpncpy.h: Likewise.
55417         * lib/strcase.h: Likewise.
55418         * lib/strstr.h: Likewise.
55419         * lib/xalloc.h: Likewise.
55420
55421         * lib/mbswidth.h: Add extern "C" for C++.
55422         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
55423
55424 2004-07-13  Robert Millan  <robertmh@gnu.org>
55425
55426         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
55427
55428 2004-07-09  Simon Josefsson  <jas@extundo.com>
55429
55430         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
55431         failed without this.)
55432
55433 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
55434
55435         * modules/chown (Files): Add lib/fchown-stub.c, since
55436         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
55437
55438 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
55439
55440         * lib/fchown-stub.c: New file.
55441
55442 2004-06-24  Jim Meyering  <jim@meyering.net>
55443
55444         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
55445
55446 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
55447
55448         * modules/argz: Omit "#include".
55449
55450         * MODULES.html.sh (func_all_modules): Add calloc, to match
55451         2004-06-01 addition of calloc module.
55452
55453 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
55454
55455         * m4/argz.m4: New file, which is autoupdated from libtool.
55456
55457 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
55458
55459         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
55460         libtool.
55461
55462 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
55463
55464         * config/srclist-update: Don't insist on "USA." before the
55465         close-comment, as libtool omits the period and puts the */ on a
55466         separate line.
55467         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
55468         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
55469
55470 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
55471
55472         * modules/argz: New file.
55473         * MODULES.html.sh (func_all_modules): Add argz.
55474
55475 2004-06-12  Jim Meyering  <jim@meyering.net>
55476         and  Paul Eggert  <eggert@cs.ucla.edu>
55477
55478         * modules/hash (Files): Add lib/xalloc.h.
55479         * modules/pipe (Depends-on): Add wait-process.
55480         * modules/stat (Depends-on): Add xalloc.
55481         * modules/userspec (Files): Add lib/userspec.h.
55482         * modules/xstrto
55483
55484         Upgrade from gettext-0.13.
55485         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
55486         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
55487         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
55488
55489 2004-06-10  Jim Meyering  <jim@meyering.net>
55490
55491         * lib/calloc.c: New file.
55492
55493 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
55494
55495         * lib/getdate.y (yylex): Allow space between sign and number.
55496         Problem reported by Dan Jacobson.
55497
55498 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
55499
55500         Merge from coreutils CVS.
55501
55502         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
55503         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
55504         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
55505         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
55506         xstrtol.m4: Fix copyright date and/or serial number.
55507
55508         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
55509         See if we need an fchown replacement.
55510         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
55511         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
55512         and use the replacement function if we detect either defect.
55513
55514         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
55515         gl_UTIMECMP.
55516
55517 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
55518         and  Jim Meyering  <jim@meyering.net>
55519
55520         Merge from coreutils CVS.
55521
55522         * lib/stat-macros.h: New file, with contents from file-type.h
55523         and coreutils' system.h.
55524         * lib/file-type.c: Include "stat-macros.h".
55525         * lib/file-type.h (file_type): Move all macro definitions to new file,
55526         stat-macros.h.
55527
55528         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
55529         Wrap old code with this conditional.
55530         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
55531         function that does not dereference symlinks.
55532         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
55533
55534         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
55535         dependency problems.
55536         (xreadlink): Accept new arg SIZE, for efficiency.
55537         All decls and uses changed.
55538         * lib/xreadlink.h: Include <stddef.h>, for size_t.
55539
55540         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
55541         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
55542
55543         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
55544         sysexits.h.
55545
55546 2004-06-01  Jim Meyering  <jim@meyering.net>
55547
55548         * m4/calloc.m4: New file.
55549
55550 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
55551
55552         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
55553         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
55554         Also, fix a typo in a diagnostic.
55555
55556 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55557
55558         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
55559         or AC_FUNC_REALLOC.
55560
55561 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
55562
55563         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
55564         macros to be defined.
55565         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
55566         the allocator returns NULL because the requested size is zero.
55567
55568 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
55569
55570         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
55571         var.  Add comment explaining why libc still defines it.  This
55572         merges the following patch from glibc:
55573         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
55574
55575 2004-05-20  Andreas Schwab  <schwab@suse.de>
55576
55577         * m4/free.m4: Replace free if it not known to work, not the other
55578         way round.
55579
55580 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
55581
55582         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
55583         present in glibc since revision 1.1 of this file.
55584         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
55585         obstack_alignment_mask, obstack_alloc, obstack_base,
55586         obstack_blank, obstack_blank_fast, obstack_chunk_size,
55587         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
55588         obstack_grow0, obstack_init, obstack_int_grow,
55589         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
55590         obstack_next_free, obstack_object_size, obstack_ptr_grow,
55591         obstack_ptr_grow_fast, obstack_room): Remove declarations of
55592         nonexistent functions.
55593
55594 2004-05-18  Karl Berry  <karl@gnu.org>
55595
55596         * config/srclist.txt: break link for vasnprintf.c.
55597
55598 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55599
55600         Port obstack to the AS/400, where pointers are 16 bytes wide and
55601         you cannot cast an integer to a valid pointer.  This patch is
55602         currently waiting to be integrated into glibc; see
55603         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
55604
55605         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
55606         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
55607         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
55608         (struct obstack): temp member is now a union of a pointer and
55609         an integer, instead of an integer.  All integer uses changed.
55610         This does not affect the physical layout of struct obstack,
55611         except on hosts (like the AS/400) where the size or alignment of
55612         void * is greater than that of ptrdiff_t.
55613         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
55614         __STDC__)]: Store temporary in pointer member of union, not
55615         integer member.
55616         * lib/obstack.c: Include <stddef.h>, for offsetof.
55617         (struct fooalign): Remove; it doesn't need a name.
55618         (union fooround): Change double to long double, and add void *.
55619         (DEFAULT_ALIGNMENT): Use offsetof to compute.
55620         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
55621         not a macro.  Hence the values are always int; so remove all
55622         casts-to-int in uses.
55623
55624 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
55625
55626         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
55627         we can get this patch merged into glibc.
55628
55629 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55630             Paul Eggert  <eggert@cs.ucla.edu>
55631
55632         * m4/argp: Depend on alloca.
55633
55634 2004-05-17  Derek R. Price  <derek@ximbiot.com>
55635             Paul Eggert  <eggert@cs.ucla.edu>
55636
55637         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
55638         freecoding.
55639
55640 2004-05-17  Bruno Haible  <bruno@clisp.org>
55641
55642         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
55643         precision that consists of a '.' followed by an empty digit string.
55644         Patch by Tor Lillqvist <tml@iki.fi>.
55645
55646 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55647
55648         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
55649         for backward compatibility with older code.  We need our own
55650         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
55651         it under some other name, and our alloca.h will define it.
55652
55653 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
55654             Derek Price  <derek@ximbiot.com>
55655
55656         * lib/alloca.c: Include <alloca.h>, to get our interface.
55657         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
55658         include <alloca.h> first.  Use C89 prototype for alloca; this
55659         requires including <stddef.h> for size_t.  Use extern "C" if C++.
55660         Use #elif for simplicity, since we can assume C89 now.
55661         Don't try to source the system alloca.h since it will not be found
55662         and to prevent recursively including its replacement.
55663         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
55664         * lib/regex.c: Likewise.
55665
55666 2004-05-16  Derek Price  <derek@ximbiot.com>
55667             Paul Eggert  <eggert@cs.ucla.edu>
55668
55669         getline cleanup.  This changes the getndelim2 API: both order of
55670         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
55671         no delimiter).
55672
55673         * lib/getline.c: Don't include stddef.h or stdio.h, since our
55674         interface does that.
55675         (getline): Always use getdelim, so that we don't have two
55676         copies of this code.
55677         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
55678         if available.
55679         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
55680         (GETNDELIM2_MAXIMUM): New macro.
55681         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
55682         instead of the old practice of delim2==0.  All callers changed.
55683         Return -1 on overflow, instead of returning junk.
55684         Do not set *linesize unless allocation succeeds.
55685         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
55686         that we include sys/types.h.
55687         * lib/getnline.h: Likewise.
55688         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
55689         (getndelim2): Reorder arguments.
55690         * lib/getnline.c (getnline, getndelim):
55691         Don't discard the NMAX argument.
55692         (getnline): Invoke getndelim, to avoid code duplication.
55693         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
55694         of (size_t) -1 by callers of the getnline family.
55695
55696 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55697
55698         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
55699         Check for gettimeofday.
55700         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
55701         Check for settimeofday, stime.
55702
55703 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
55704
55705         * lib/nanosleep.c (suspended): Change its type from int to
55706         sig_atomic_t volatile.
55707         (first_call): Make it private to rpl_nanosleep, and have it
55708         be zero initially as that's a bit faster.
55709         (my_usleep): Round up fractional times instead of truncating them,
55710         as this is the usual meaning for 'sleep'.
55711
55712         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
55713         doesn't work.
55714         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
55715         (ENOSYS): Define if not defined.
55716         (settime): Fall back on stime if it exists and settimeofday fails.
55717         But don't bother with fallbacks if a method fails with errno == EPERM.
55718
55719 2004-05-11  Jim Meyering  <jim@meyering.net>
55720
55721         Prior to this change, the save_cwd caller required read access to the
55722         current directory on most systems (ones with the fchdir function).
55723
55724         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
55725         fails, try write-only, and finally, resort to using xgetcwd.
55726
55727 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
55728
55729         * lib/obstack.c, obstack.h: Import changes from libc.
55730
55731 2004-04-28  Bruno Haible  <bruno@clisp.org>
55732
55733         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
55734         also implicitly appends .exe to executables.
55735         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
55736         accepts Windows pathnames.
55737         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55738         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55739         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
55740         Treat Cygwin like Windows, since it now accepts Windows pathnames.
55741         Reported by Derek Robert Price <derek@ximbiot.com>.
55742
55743 2004-04-21  Karl Berry  <karl@gnu.org>
55744
55745         * config/srclist.txt (localcharset.c): break sync.
55746
55747 2004-04-20  Paul Eggert  <eggert@twinsun.com>
55748
55749         * m4/host-os.m4: Add a copyright notice.
55750
55751 2004-04-20  Jim Meyering  <jim@meyering.net>
55752
55753         Change UTILS_ to gl_ in AC_DEFINE'd names.
55754         Change utils_- and jm_-prefixed variables, too.
55755         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
55756         UTILS_FUNC_MKDIR_TRAILING_SLASH.
55757         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
55758
55759         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
55760         Don't emit trailing blanks.
55761         Also rename jm_-prefixed variables to have gl_ prefix.
55762
55763         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
55764         Also rename jm_-prefixed variables to have gl_ prefix.
55765
55766         * m4/jm-macros.m4: Reflect the renamings.
55767         * m4/prereq.m4: Likewise.
55768
55769 2004-04-20  Jim Meyering  <jim@meyering.net>
55770
55771         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
55772         memory.
55773
55774 2004-04-20  Jim Meyering  <jim@meyering.net>
55775             Bruno Haible  <bruno@clisp.org>
55776
55777         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
55778         memory when realloc fails.
55779
55780 2004-04-19  Jim Meyering  <jim@meyering.net>
55781
55782         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
55783         now that readutmp.c may call `free (0)'.
55784
55785 2004-04-19  Bruno Haible  <bruno@clisp.org>
55786
55787         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
55788         * m4/inttypes_h.m4: Likewise.
55789         * m4/stdint_h.m4: Likewise.
55790         * m4/intmax_t.m4: Likewise.
55791         * m4/uintmax_t.m4: Likewise.
55792
55793 2004-04-18  Jim Meyering  <jim@meyering.net>
55794
55795         * m4/prereq.m4: Don't forbid jm_ prefix.
55796
55797         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
55798         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
55799         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
55800         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
55801         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
55802         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
55803         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
55804         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
55805         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
55806         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
55807         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
55808         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
55809         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
55810         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
55811         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
55812         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
55813         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
55814         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
55815         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
55816
55817 2004-04-18  Jim Meyering  <jim@meyering.net>
55818
55819         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
55820         failure, don't leak memory and do call END_UTMP_ENT.
55821
55822 2004-04-16  Jim Meyering  <jim@meyering.net>
55823
55824         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
55825         coreutils' stat program.
55826         (gl_PREREQ): Don't require jm_PREREQ_STAT.
55827
55828 2004-04-11  Paul Eggert  <eggert@twinsun.com>
55829
55830         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
55831         C89.
55832         (CHAR_BIT): Remove, since we assume C89.
55833         Include <stdint.h> if available, as per current Autoconf CVS advice.
55834
55835 2004-03-31  Jim Meyering  <jim@meyering.net>
55836
55837         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
55838         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
55839         * m4/xalloc.m4: Likewise.
55840
55841 2004-03-30  Paul Eggert  <eggert@twinsun.com>
55842
55843         Merge from coreutils.
55844
55845         * m4/inttostr.m4: New file.
55846         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
55847         Require AM_STDBOOL_H and gl_TIMESPEC instead.
55848         Require gl_CLOCK_TIME.
55849         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
55850
55851 2004-03-30  Paul Eggert  <eggert@twinsun.com>
55852
55853         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
55854         not bool, to be more consistent with Unix conventions.
55855         Suggested by Bruno Haible.
55856
55857         Merge from coreutils.
55858
55859         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
55860         * lib/umaxtostr.c: New files.
55861
55862         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
55863         the usual <time.h> dance.
55864         (get_date): Change signature to support fractional time stamps.
55865         All callers changed.
55866         * lib/getdate.y: Include "getdate.h" first, as we can now
55867         assume C89 and don't need to worry about 'const'.
55868         Similarly, include "unlocked-io.h" near start, not in middle.
55869         Include <limits.h>.
55870         (textint.value): Use long int rather than int.
55871         (textint.digits): Use size_t rather than int.
55872         (BILLION, LOG10_BILLION): New constants.
55873         (parser_control): New member rel_ns.  Members day_ordinal,
55874         time_zone, month, day, hour, minutes, rel_year, rel_month,
55875         rel_day, rel_hour, rel_minutes, rel_seconds
55876         are now long int, not int.  Member seconds is now struct timespec,
55877         not int.  New member timespec_seen.  Members dates_seen, days_seen,
55878         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
55879         not int.
55880         (%union.intval): Now long int, not int.
55881         New member timespec.
55882         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
55883         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
55884         (spec): Now is a timespec or an item list.
55885         (timespec, items): New nonterminals.
55886         (time, rel, relunit, number, get_date):
55887         Add support for fractional seconds.
55888         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
55889         (gmtime, localtime, mktime): Remove decls; not needed with C89.
55890         (to_hour): First arg is now long int, not int.
55891         (to_year): Returns long int, not int.
55892         Don't treat year -70 like 70.
55893         (tm_diff): Returns long int, not int.
55894         (lookup_word): Use bool instead of int when appropriate.
55895         (yylex): Use size_t for count, not int.
55896         Detect overflow when parsing large integer constants.
55897         Add support for fractions.
55898         (get_date): Make pointers 'const' if possible.
55899         Use more-portable code to detect integer overflow.
55900         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
55901         Don't use ctime; it's not reliable if the year has >4 digits.
55902
55903         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
55904         This is for compatibility with BSD.
55905
55906         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
55907         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
55908         From coreutils' system.h.
55909
55910         * lib/userspec.c: Don't include "posixver.h".
55911         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
55912         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
55913         compatible extension.  Simplify code by removing a boolean int
55914         that was always nonzero if a string was nonnull.
55915
55916 2004-03-30  Jim Meyering  <jim@meyering.net>
55917
55918         Merge from coreutils.
55919
55920         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
55921         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
55922         on some systems one must include <grp.h> before it.
55923         Reported by Christian Krackowizer.
55924
55925 2004-03-30  Jim Meyering  <jim@meyering.net>
55926
55927         Merge from coreutils.
55928
55929         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
55930
55931         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
55932         an empty input stream.
55933
55934         * lib/readtokens.c: Include <stdbool.h>.
55935         (readtoken): Use `size_t' rather than int/long.
55936         All callers adjusted.
55937         Use `bool' rather than `int' where appropriate.
55938         Use memset rather than an explicit loop.
55939         Use x2nrealloc rather than xrealloc.
55940         Allow the use of `\0' as a delimiter.
55941         (readtokens): Likewise.
55942         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
55943
55944 2004-03-30  Jim Meyering  <jim@meyering.net>
55945
55946         * m4/realloc.m4: Remove file, since now it does no more than
55947         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
55948         the `configure.ac' section of module/realloc.
55949         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
55950
55951 2004-03-30  Bruno Haible  <bruno@clisp.org>
55952
55953         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
55954         nonnull.
55955
55956 2004-03-29  Paul Eggert  <eggert@twinsun.com>
55957
55958         Merge changes to getloadavg.c from coreutils and Emacs.
55959
55960         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
55961         Define to an expression, not to the empty string.
55962         Include cloexec.h and xalloc.h.
55963         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
55964         Use set_cloexec_flag rather than rolling our own.
55965         * lib/cloexec.c, lib/cloexec.h: New files.
55966
55967 2004-03-29  Paul Eggert  <eggert@twinsun.com>
55968
55969         * m4/cloexec.m4: New file.
55970
55971 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55972
55973         * lib/getopt.h: Sync with libc CVS.
55974
55975 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55976             Bruno Haible  <bruno@clisp.org>
55977
55978         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
55979         mbswidth.
55980
55981 2004-03-18  Paul Eggert  <eggert@twinsun.com>
55982             Bruno Haible  <bruno@clisp.org>
55983
55984         * lib/mbswidth.h: Include <wchar.h> only if
55985         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
55986         <wchar.h>.
55987         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
55988
55989 2004-03-09  Paul Eggert  <eggert@twinsun.com>
55990
55991         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
55992         Sync with libc CVS.
55993         * lib/getopt_int.h: New file, also synced from libc.
55994
55995 2004-03-09  Paul Eggert  <eggert@twinsun.com>
55996
55997         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
55998         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
55999         Bring back getopt.c, getopt.h, getopt1.c.
56000
56001 2004-03-07  Paul Eggert  <eggert@twinsun.com>
56002
56003         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
56004         All uses changed.  Check for sa_sigaction member; this fixes
56005         a bug first reported by Jason Andrade in
56006         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
56007
56008 2004-03-07  Paul Eggert  <eggert@twinsun.com>
56009
56010         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
56011         '#if' expressions.  Unlike the code it replaces, it does not
56012         depend on (defined _SC_PAGESIZE).  However, it does depend on
56013         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
56014         first reported by Jason Andrade in
56015         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
56016
56017 2004-02-25  Simon Josefsson  <jas@extundo.com>
56018
56019         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
56020
56021 2004-02-25  Simon Josefsson  <jas@extundo.com>
56022
56023         * lib/strdup.h: New file.
56024         * lib/strdup.c: Include it.
56025         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
56026         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
56027
56028 2004-02-23  Karl Berry  <karl@gnu.org>
56029
56030         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
56031         (from fencepost.gnu.org:/gd/gnuorg).
56032
56033 2004-02-23  Karl Berry  <karl@gnu.org>
56034
56035         * config/srclistvars.sh (GNUORG) [karl]: redefine.
56036         * config/srclist.txt: add maintain/standards documents.
56037
56038 2004-02-18  Bruno Haible  <bruno@clisp.org>
56039
56040         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
56041         Reported by Derek Robert Price <derek@ximbiot.com>.
56042
56043 2004-02-16  Karl Berry  <karl@gnu.org>
56044
56045         * config/mkinstalldirs, install-sh: update from automake.
56046
56047 2004-02-06  Karl Berry  <karl@gnu.org>
56048
56049         * m4/po.m4: update from gettext 0.14.1.
56050
56051 2004-02-06  Karl Berry  <karl@gnu.org>
56052
56053         * lib/config.charset: update from gettext 0.14.1.
56054
56055 2004-02-05  Paul Eggert  <eggert@twinsun.com>
56056
56057         Add comments and code, prompted by suggestions from Bruno Haible
56058         for sh-quote.
56059         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
56060         describing the enum quoting_style values.
56061         * lib/quotearg.c (quotearg_alloc): New function.
56062         (quotearg_buffer_restyled): Treat lone { and } as special.
56063         Treat = as special.  Work around bug with older shells
56064         that "see" a '\' that is really the 2nd byte of a multibyte char.
56065         Quote empty string with shell_quoting_style.
56066
56067 2004-02-03  Bruno Haible  <bruno@clisp.org>
56068
56069         * m4/pipe.m4: New file, from GNU gettext.
56070
56071 2004-02-03  Bruno Haible  <bruno@clisp.org>
56072
56073         * lib/pipe.h: New file, from GNU gettext.
56074         * lib/pipe.c: New file, from GNU gettext.
56075
56076 2004-01-27  Bruno Haible  <bruno@clisp.org>
56077
56078         * m4/execute.m4: New file, from GNU gettext.
56079
56080 2004-01-27  Bruno Haible  <bruno@clisp.org>
56081
56082         * lib/execute.h: New file, from GNU gettext.
56083         * lib/execute.c: New file, from GNU gettext.
56084         * lib/w32spawn.h: New file, from GNU gettext.
56085
56086 2004-01-24  Paul Eggert  <eggert@twinsun.com>
56087
56088         Merge from diffutils.
56089
56090         * lib/file-type.c (file_type): Add typed memory objects.
56091         * lib/file-type.h (S_TYPEISTMO): New macro.
56092
56093         * lib/c-stack.h (c_stack_action): Remove argv argument.
56094         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
56095         (die): Don't calculate message unless segv_action returns.
56096         (get_stack_location, min_address_from_argv, max_address_from_argv,
56097         volatile stack_base, volatile_stack_size): Remove.
56098         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
56099         that every segmentation violation is a stack overflow.  (Ouch!)
56100         See Debian bug 136249 (still outstanding) for more info about why
56101         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
56102
56103 2004-01-24  Paul Eggert  <eggert@twinsun.com>
56104
56105         Exit-status fix from coreutils.
56106
56107         Use exit_failure consistently in place of EXIT_FAILURE,
56108         so that program exit statuses are consistent on failure.
56109
56110         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
56111         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
56112         * lib/argmatch.h: Comment fix to match the above.
56113         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
56114         Now a macro referring to exit_failure, instead of a separate
56115         variable.  Include "exitfail.h" to get it.
56116         * lib/xstrtol.h: Include "exitfail.h".
56117         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
56118
56119         * lib/long-options.c (parse_long_options): Use prototype
56120         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
56121         for clarity.
56122
56123 2004-01-21  Jim Meyering  <jim@meyering.net>
56124
56125         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
56126         so as not to conflict with a different-sized __mktime_internal
56127         function in GNU libc.
56128         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
56129         Problem building statically-linked `ls' reported by Michael Brunnbauer.
56130
56131 2004-01-20  Karl Berry  <karl@gnu.org>
56132
56133         * config/config.guess: update from config.
56134
56135         * config/srclistvars.sh: GNUWWWLICENSES for karl.
56136
56137 2004-01-20  Bruno Haible  <bruno@clisp.org>
56138
56139         Safer stack allocation.
56140         * lib/setenv.c: Include allocsa.h.
56141         (alloca): Remove fallback definition.
56142         (freea): Remove macro.
56143         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
56144         instead of freea.
56145
56146 2004-01-20  Bruno Haible  <bruno@clisp.org>
56147
56148         * m4/eealloc.m4: New file, from GNU gettext.
56149
56150 2004-01-20  Bruno Haible  <bruno@clisp.org>
56151
56152         * m4/allocsa.m4: New file, from GNU gettext.
56153
56154 2004-01-20  Bruno Haible  <bruno@clisp.org>
56155
56156         * lib/xallocsa.h: New file, from GNU gettext.
56157         * lib/xallocsa.c: New file, from GNU gettext.
56158
56159 2004-01-20  Bruno Haible  <bruno@clisp.org>
56160
56161         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
56162
56163 2004-01-20  Bruno Haible  <bruno@clisp.org>
56164
56165         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
56166         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
56167         specially.
56168
56169 2004-01-20  Bruno Haible  <bruno@clisp.org>
56170
56171         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
56172         patch.
56173
56174 2004-01-20  Bruno Haible  <bruno@clisp.org>
56175
56176         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
56177
56178 2004-01-20  Bruno Haible  <bruno@clisp.org>
56179
56180         * lib/eealloc.h: New file.
56181
56182 2004-01-20  Bruno Haible  <bruno@clisp.org>
56183
56184         * lib/binary-io.h: Avoid warnings on Cygwin.
56185
56186 2004-01-20  Bruno Haible  <bruno@clisp.org>
56187
56188         * lib/allocsa.h: New file, from GNU gettext.
56189         * lib/allocsa.c: New file, from GNU gettext.
56190
56191 2004-01-18  Karl Berry  <karl@gnu.org>
56192
56193         * doc/gpl.texi, doc/lgpl.texi: new files.
56194
56195 2004-01-18  Karl Berry  <karl@gnu.org>
56196
56197         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
56198         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
56199
56200 2004-01-15  Paul Eggert  <eggert@twinsun.com>
56201
56202         Merge from coreutils.
56203
56204         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
56205         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
56206         (gl_DEFAULT_POSIX2_VERSION): Move
56207         the documentation from 'configure' into 'config.hin',
56208         so that 'configure --help' isn't burdened by it and
56209         we don't have to worry about its formatting there.
56210         Reword the documentation so that it's more succinct
56211         and can be run together into a single paragraph.
56212         * m4/same.m4 (gl_SAME): Check for pathconf.
56213
56214 2004-01-15  Paul Eggert  <eggert@twinsun.com>
56215
56216         Merge from coreutils.
56217
56218         * lib/posixver.c: Include posixver.h.
56219
56220         * lib/same.c: Include <stdbool.h>, <limits.h>.
56221         (_POSIX_NAME_MAX): Define if not defined.
56222         (MIN): New macro.
56223         (same_name): If file names are silently truncated, report
56224         that the file names are the same if they are the same after
56225         the silent truncation.
56226
56227         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
56228         conversion function.
56229         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
56230         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
56231         longer needed.
56232
56233 2004-01-15  Jim Meyering  <jim@meyering.net>
56234
56235         Merge from coreutils.
56236
56237         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
56238         if no library is required.
56239         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
56240         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
56241         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
56242         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
56243         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
56244         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
56245         value, $ac_cv_search_crypt, if it's "none required".
56246         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
56247         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
56248         not gl_FUNC_GETLOADAVG.
56249         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
56250         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
56251
56252 2004-01-15  Jim Meyering  <jim@meyering.net>
56253
56254         Merge from coreutils.
56255
56256         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
56257         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
56258         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
56259
56260         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
56261         optional configure-time default.
56262
56263         * lib/version-etc.c (version_etc_copyright): Update copyright date.
56264
56265         * lib/xreadlink.c (xreadlink): Correct outdated comment.
56266
56267 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
56268
56269         Merge from coreutils.
56270
56271         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
56272         value, $ac_cv_search_nanosleep, if it's "none required".
56273
56274 2004-01-14  Paul Eggert  <eggert@twinsun.com>
56275
56276         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
56277         with like-named macro in fnmatch.c.
56278         (EXT): Use an internal constant instead.
56279
56280         Merge fnmatch patches from glibc.
56281         * lib/fnmatch.c (mbsinit): Remove define.
56282         Add libc_hidden_ver (__fnmatch, fnmatch).
56283         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
56284         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
56285
56286 2004-01-14  Karl Berry  <karl@gnu.org>
56287
56288         * config/install-sh: update from automake.
56289
56290 2004-01-13  Karl Berry  <karl@gnu.org>
56291
56292         * config/install-sh: update from automake.
56293
56294 2004-01-09  Karl Berry  <karl@gnu.org>
56295
56296         * config/install-sh: update from automake.
56297
56298 2004-01-05  Karl Berry  <karl@gnu.org>
56299
56300         * config/config.{sub,guess}: update from config.
56301
56302 2003-12-31  Karl Berry  <karl@gnu.org>
56303
56304         * config/depcomp: update from automake.
56305
56306 2003-12-14  Karl Berry  <karl@gnu.org>
56307
56308         * lib/config.charset: update from gettext-runtime.
56309
56310 2003-12-03  Paul Eggert  <eggert@twinsun.com>
56311
56312         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
56313         Bug reported by Alfred M. Szmidt.
56314
56315 2003-12-03  Bruno Haible  <bruno@clisp.org>
56316
56317         * m4/gettext.m4: Upgrade from gettext-0.13.
56318         * m4/po.m4: Upgrade from gettext-0.13.
56319         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
56320         * m4/intmax.m4: New file, from gettext-0.13.
56321         * m4/printf-posix.m4: New file, from gettext-0.13.
56322
56323 2003-11-29  Karl Berry  <karl@gnu.org>
56324
56325         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
56326
56327 2003-11-25  Paul Eggert  <eggert@twinsun.com>
56328             Bruno Haible  <bruno@clisp.org>
56329
56330         * lib/printf-parse.h: Don't include sys/types.h.
56331         (ARG_NONE): New macro.
56332         (char_directive): Change type of *arg_index fields to size_t.
56333         * lib/printf-parse.c: Don't include sys/types.h.
56334         (SSIZE_MAX): Remove macro.
56335         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
56336         Remove unnecessary overflow check.
56337         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
56338         fields.
56339
56340 2003-11-25  Bruno Haible  <bruno@clisp.org>
56341
56342         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
56343
56344 2003-11-25  Bruno Haible  <bruno@clisp.org>
56345
56346         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
56347         gt_TYPE_SSIZE_T.
56348
56349 2003-11-24  Paul Eggert  <eggert@twinsun.com>
56350
56351         * modules/alloca: Remove dependency on xalloc.
56352
56353 2003-11-24  Paul Eggert  <eggert@twinsun.com>
56354
56355         * lib/alloca.c: Remove dependency on xalloc module.
56356         (xalloc_die): Remove.
56357         (memory_full) [!defined emacs]: New macro.
56358         [!defined emacs]: Don't include xalloc.h.
56359         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
56360         address arithmetic overflows.  Change datatypes a bit to avoid
56361         unnecessary casts.
56362
56363 2003-11-22  Jim Meyering  <jim@meyering.net>
56364
56365         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
56366         s/size/size_t/.
56367
56368 2003-11-21  Karl Berry  <karl@gnu.org>
56369
56370         * config/config.{sub,guess}: update from config.
56371
56372 2003-11-18  Karl Berry  <karl@gnu.org>
56373
56374         * config/config.{sub,guess}: update from config.
56375
56376         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
56377
56378 2003-11-17  Paul Eggert  <eggert@twinsun.com>
56379
56380         * README: Mention that S+T cannot overflow if S is the size of
56381         an existing object and T is sufficiently small.
56382
56383 2003-11-17  Jim Meyering  <jim@meyering.net>
56384
56385         On systems without utime and without a utimes function capable of
56386         dealing with a NULL struct utimbuf* argument, this utime replacement
56387         could -- in unusual circumstances -- leak a file descriptor.
56388         * lib/utime.c: Include <unistd.h> and <errno.h>.
56389         (utime_null): Be sure to close `fd' and to preserve errno.
56390         Reported by Geoff Collyer via Arnold Robbins.
56391
56392 2003-11-17  Bruno Haible  <bruno@clisp.org>
56393
56394         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
56395         (Depends-on): Add xsize.
56396
56397 2003-11-17  Bruno Haible  <bruno@clisp.org>
56398
56399         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
56400
56401 2003-11-17  Bruno Haible  <bruno@clisp.org>
56402
56403         * lib/vasnprintf.c (alloca): Remove fallback definition.
56404         (freea): Remove definition.
56405         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
56406         Reported by Paul Eggert.
56407
56408 2003-11-16  Paul Eggert  <eggert@twinsun.com>
56409             Bruno Haible  <bruno@clisp.org>
56410
56411         Protect against address arithmetic overflow.
56412         * lib/printf-args.h: Include stddef.h.
56413         (arguments): Change type of field 'count' to size_t.
56414         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
56415         'unsigned int' where appropriate.
56416         * lib/printf-parse.h: Include sys/types.h.
56417         (char_directive): Change type of *arg_index fields to ssize_t.
56418         (char_directives): Change type of fields 'count', max_*_length to
56419         size_t.
56420         * lib/printf-parse.c: Include sys/types.h and xsize.h.
56421         (SSIZE_MAX): Define fallback value.
56422         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
56423         instead of 'int' where appropriate. Check a_allocated, d_allocated
56424         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
56425         * lib/vasnprintf.c: Include xsize.h.
56426         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
56427         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
56428         overflow. Avoid wraparound when converting a width or precision from
56429         decimal to binary.
56430
56431 2003-11-16  Bruno Haible  <bruno@clisp.org>
56432
56433         Update from GNU gettext.
56434         * lib/printf-parse.c: Generalize to it can be compiled for wide
56435         strings.
56436         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
56437         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
56438         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
56439         SNPRINTF): New macros.
56440         Don't include <alloca.h> if the file is used inside libintl.
56441         (local_wcslen): New function, for Solaris 2.5.1.
56442         (VASNPRINTF): Use it instead of wcslen.
56443
56444 2003-11-16  Bruno Haible  <bruno@clisp.org>
56445
56446         * lib/xsize.h (xmax): New function.
56447         (xsum, xsum3, xsum4): Declare as "pure" functions.
56448
56449 2003-11-12  Paul Eggert  <eggert@twinsun.com>
56450
56451         * modules/xalloc (Files): Undo latest change, since xalloc.h
56452         no longer needs SIZE_MAX or PTRDIFF_MAX.
56453
56454 2003-11-12  Paul Eggert  <eggert@twinsun.com>
56455
56456         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
56457         gl_PTRDIFF_MAX.
56458
56459 2003-11-12  Paul Eggert  <eggert@twinsun.com>
56460
56461         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
56462         "return", to pacify some unknown compiler.  Problem reported
56463         by Joerg Schilling.
56464
56465 2003-11-12  Paul Eggert  <eggert@twinsun.com>
56466
56467         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
56468         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
56469         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
56470         heuristic is just as accurate as far as we know, and it removes a
56471         dependency on size_max.m4 and ptrdiff_max.m4.
56472
56473 2003-11-11  Bruno Haible  <bruno@clisp.org>
56474
56475         * modules/xsize (Files): Add m4/size_max.m4.
56476         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
56477
56478 2003-11-11  Bruno Haible  <bruno@clisp.org>
56479
56480         * m4/size_max.m4: New file.
56481         * m4/ptrdiff_max.m4: New file.
56482         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
56483         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
56484         (gl_XALLOC): Invoke it.
56485
56486 2003-11-11  Bruno Haible  <bruno@clisp.org>
56487
56488         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
56489         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
56490         defined.
56491
56492 2003-11-10  Paul Eggert  <eggert@twinsun.com>
56493
56494         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
56495         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
56496         rejected some allocations of exactly SIZE_MAX - 2 bytes.
56497         From Bruno Haible.
56498         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
56499         not (size_t) -1, since it's defined here.
56500
56501 2003-11-09  Karl Berry  <karl@gnu.org>
56502
56503         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
56504
56505 2003-11-06  Paul Eggert  <eggert@twinsun.com>
56506
56507         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
56508         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
56509         Reject sizes of exactly SIZE_MAX bytes.
56510         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
56511         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
56512
56513 2003-11-05  Bruno Haible  <bruno@clisp.org>
56514
56515         * lib/xsize.h: Include limits.h, to avoid a possible collision with
56516         SIZE_MAX defined in <limits.h> on Solaris.
56517
56518 2003-11-04  Jim Meyering  <jim@meyering.net>
56519
56520         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
56521         variable names, rather than @VAR@.
56522         * modules/poll: Likewise.
56523
56524 2003-11-04  Bruno Haible  <bruno@clisp.org>
56525
56526         * modules/xsize: New file.
56527         * modules/linebreak: Depend on xsize.
56528         * MODULES.html.sh (func_all_modules): Add xsize.
56529
56530 2003-11-04  Bruno Haible  <bruno@clisp.org>
56531
56532         * m4/xsize.m4: New file.
56533
56534 2003-11-04  Bruno Haible  <bruno@clisp.org>
56535
56536         * lib/xsize.h: New file.
56537         * lib/linebreak.c: Include xsize.h.
56538         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
56539         argument for overflow.
56540         Suggested by Paul Eggert.
56541
56542 2003-11-03  Karl Berry  <karl@gnu.org>
56543
56544         * config/config.{guess,sub}: update from config.
56545
56546 2003-11-03  Jim Meyering  <jim@meyering.net>
56547
56548         * modules/userspec (lib_SOURCES): Add userspec.h.
56549         (Include): Add "userspec.h".
56550         Improve description.
56551
56552 2003-11-03  Jim Meyering  <jim@meyering.net>
56553
56554         * lib/userspec.c: Include "userspec.h".
56555         * lib/userspec.h: New file.
56556
56557 2003-11-03  Bruno Haible  <bruno@clisp.org>
56558
56559         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
56560
56561 2003-11-03  Bruno Haible  <bruno@clisp.org>
56562
56563         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
56564         available, to avoid (extremely rare) race condition.
56565         Suggested by Paul Eggert.
56566
56567 2003-11-02  Karl Berry  <karl@gnu.org>
56568
56569         * config/srclist.txt (vasprintf.c): sync broken, sigh.
56570
56571 2003-10-31  Paul Eggert  <eggert@twinsun.com>
56572
56573         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
56574         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
56575         (read_filesystem_list): Set and use me_type_malloced.
56576         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
56577         whatever the type happens to be), for brevity and consistency.
56578         Check for size calculation overflow on Alphas running OSF/1.
56579
56580 2003-10-31  Jim Meyering  <jim@meyering.net>
56581
56582         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
56583
56584         * lib/linebuffer.c: Include <string.h> for declaration of memset.
56585
56586 2003-10-30  Paul Eggert  <eggert@twinsun.com>
56587             Bruno Haible  <bruno@clisp.org>
56588
56589         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
56590         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
56591
56592 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
56593
56594         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
56595         netbsd*-gnu*.  Suggested by Robert Millan.
56596
56597 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56598
56599         * modules/group-member: Depend on stdbool.
56600
56601 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56602
56603         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
56604
56605 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56606
56607         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
56608         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
56609         after the 'gnu' in these cases.  This fixes some bugs in the
56610         previous change, and is based on suggestions by Robert Millan.
56611
56612 2003-10-29  Paul Eggert  <eggert@twinsun.com>
56613
56614         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
56615         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
56616         no longer needed.
56617         * lib/quotearg.c (quotearg_n_options): Use it.
56618         * lib/group-member.c: Include <stdbool.h>.
56619         (free_group_info): Arg is now const *; don't free arg.
56620         (get_group_info): Now returns bool and accepts struct group_info *,
56621         rather than returning a malloc'ed struct group_info *.
56622         All uses changed.  Check for overflow in internal size calculation.
56623
56624         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
56625         rather than xmalloc/xrealloc.
56626         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
56627         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
56628         conformance bug: the old code used a pointer after freeing the
56629         storage that it addressed.
56630         * lib/hash.c (hash_initialize): Simplify the code by using
56631         xalloc_oversized rather than doing it by hand.
56632         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
56633         the buffer preserved.  Use free and xmalloc instead.
56634         * lib/quotearg.c (quotearg_n_options): Likewise.
56635         Use a simpler test for size overflow.  Don't use xalloc_oversized
56636         because unsigned int might be wider than size_t (!); this suggests
56637         that we should switch from unsigned int to size_t for slot numbers.
56638
56639 2003-10-28  Paul Eggert  <eggert@twinsun.com>
56640
56641         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
56642         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
56643         NetBSD kernels.  Requested by Richard Stallman.
56644
56645 2003-10-27  Paul Eggert  <eggert@twinsun.com>
56646
56647         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
56648         to allocate the returned structure.  Do not allocate a subarray,
56649         as x2nrealloc will do that.
56650         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
56651         instead of xnrealloc.
56652         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
56653
56654 2003-10-27  Bruno Haible  <bruno@clisp.org>
56655
56656         * lib/stdbool_.h: Better support for BeOS.
56657
56658 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56659
56660         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
56661         now uses inline.
56662
56663 2003-10-26  Paul Eggert  <eggert@twinsun.com>
56664
56665         * lib/xalloc.h (xalloc_oversized): New static inline function, for
56666         callers that want to do their own size-overflow checking.  Include
56667         <stdbool.h>, since xalloc_oversized returns bool.
56668         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
56669         to use xalloc_oversized.
56670
56671         Add two functions x2realloc, x2nrealloc, for programs that grow
56672         arrays dynamically by doubling their sizes.
56673         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
56674         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
56675         New functions.
56676
56677         Port to C99 semantics for 'inline' of external functions.
56678         Bug reported by Bruno Haible.
56679         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
56680         with the old contents of xnmalloc.
56681         (xnmalloc, xmalloc): Use it.
56682         (xnrealloc_inline): New static inline function,
56683         with the old contents of xnrealloc.
56684         (xnrealloc, xrealloc): Use it.
56685
56686         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
56687         that.
56688
56689 2003-10-26  Karl Berry  <karl@gnu.org>
56690
56691         * config/srclist.txt (COPYING.DOC): no longer available from
56692         /gd/gnuorg; don't know where the ultimate source is.
56693
56694 2003-10-25  Paul Eggert  <eggert@twinsun.com>
56695
56696         Fix several address-calculation bugs in the hash modules,
56697         plus some minor code cleanup.
56698
56699         * lib/hash.h: Include <stdbool.h>, for bool.
56700         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
56701         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
56702         hash_get_n_entries, hash_get_max_bucket_length,
56703         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
56704         hash_rehash): Use size_t rather than unsigned.
56705         * lib/hash.c (struct hash_table, hash_get_n_buckets,
56706         hash_get_n_buckets_used, hash_get_n_entries,
56707         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
56708         hash_get_entries, hash_do_for_each, hash_string, is_prime,
56709         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
56710         Likewise.
56711         (SIZE_MAX): Define if not defined.
56712         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
56713         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
56714         hash_print):
56715         Use const * when possible.
56716         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
56717         (check_tuning): Fix bug: if tuning parameters were very close to
56718         0 or 1, rounding errors could have caused subscript violations.
56719         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
56720         (hash_initialize): Add 'fail:' label
56721         to free table and return NULL, and use it to simplify code.
56722         Use calloc rather than clearing the storage ourself.
56723         (hash_initialize, hash_rehash): Check for arithmetic overflow in
56724         buffer size calculations.
56725         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
56726         Include <stddef.h>, for size_t.
56727         * lib/hash-pjw.c (hash_pjw): Likewise.
56728         Switch to method described by Bruno Haible.
56729         Include <limits.h>, for CHAR_BIT.
56730         (SIZE_BITS): New macro.
56731
56732 2003-10-23  Paul Eggert  <eggert@twinsun.com>
56733
56734         * m4/getline.m4 (AM_FUNC_GETLINE):
56735         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
56736         hosts.  Problem reported by Derek Robert Price in
56737         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
56738         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
56739         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
56740
56741 2003-10-21  Paul Eggert  <eggert@twinsun.com>
56742
56743         * lib/getndelim2.c (getndelim2): When size calculation overflows,
56744         ceiling the allocation at NMAX bytes rather than silently
56745         discarding input bytes before NMAX is reached.  This makes
56746         a difference only if NMAX exceeds SIZE_MAX / 2.
56747
56748         * lib/obstack.c: Merge from glibc.
56749         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
56750         Add libc_hidden_def (_obstack_newchunk).
56751         (_obstack_free) [! defined _LIBC]: Remove.
56752         [defined _LIBC]: Make a strong alias from obstack_free, rather than
56753         a clone of the function body.
56754         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
56755         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
56756
56757         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
56758         glibc.
56759         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
56760         arg to memcpy.
56761
56762         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
56763         (obstack_ptr_grow_fast, obstack_int_grow_fast):
56764         Don't use lvalue casts, as GCC plans to remove support for them
56765         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
56766         was also present in the non-GCC version, indicating that this
56767         code had always been buggy and had never been widely used.
56768         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
56769         Use the fast variant of each macro, rather than copying the
56770         definiens of the fast variant; that way, we'll be more likely to
56771         catch future bugs in the fast variants.
56772
56773 2003-10-20  Bruno Haible  <bruno@clisp.org>
56774
56775         * modules/wait-process: New file.
56776         * MODULES.html.sh (func_all_modules): Add wait-process.
56777
56778 2003-10-20  Bruno Haible  <bruno@clisp.org>
56779
56780         * m4/wait-process.m4: New file.
56781
56782 2003-10-20  Bruno Haible  <bruno@clisp.org>
56783
56784         * lib/wait-process.h: New file, from GNU gettext.
56785         * lib/wait-process.c: New file, from GNU gettext.
56786
56787 2003-10-19  Jim Meyering  <jim@meyering.net>
56788
56789         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
56790         HPUX 10.20.
56791
56792 2003-10-18  Karl Berry  <karl@gnu.org>
56793
56794         * config/config.guess: update from config.
56795
56796 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56797
56798         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
56799         (getgroups): First arg is int, not size_t.
56800         Don't let 'free' mangle errno.
56801
56802 2003-10-16  Paul Eggert  <eggert@twinsun.com>
56803
56804         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
56805
56806 2003-10-16  Karl Berry  <karl@gnu.org>
56807
56808         * config/config.{guess,sub}: update from config.
56809
56810 2003-10-16  Jim Meyering  <jim@meyering.net>
56811
56812         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
56813         memcpy.
56814
56815 2003-10-15  Paul Eggert  <eggert@twinsun.com>
56816
56817         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
56818         (SIZE_MAX): Remove.
56819         (new_exclude, add_exclude_file): Initial size no longer needs to
56820         be a power of 2.
56821         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
56822         our own address arithmetic overflow checking.
56823
56824         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
56825         (fnmatch): Do not alloca more than 2000 wide characters;
56826         instead, use malloc for large buffers.
56827         Check for address arithmetic overflow, and return -1
56828         with errno set to ENOMEM in that case.
56829         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
56830         (NEW_PATTERN): Do not alloca more than 8000 bytes;
56831         instead, return -1.  Check for address arithmetic overflow.
56832
56833 2003-10-14  Paul Eggert  <eggert@twinsun.com>
56834
56835         Handle invalid suffixes and overflow independently, so that
56836         callers can treat them independently as needed.  Fix some bugs in
56837         suffix handling, e.g., "100k@" was not diagnosed as an invalid
56838         suffix for a human-readable blocksize.  The major caller-visible
56839         change is the addition of a new
56840         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
56841         that both overflow and suffix chars were found.
56842
56843         * lib/human.c (humblock): Don't check separately for invalid suffix
56844         char; that is xstrtoumax's job (now that its bug is fixed).
56845         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
56846         INTMAX_MAX]: New macros.
56847         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
56848         TYPE_MAXIMUM): New macros.
56849         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
56850         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
56851         if overflow occurs, as it's what __strtol does and it's more useful
56852         in practice.
56853         (__xstrtol): If __strtol reports some error other than ERANGE,
56854         reflect it to the caller as LONGINT_INVALID.  If it reports
56855         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
56856         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
56857         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
56858         value.
56859         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
56860         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
56861         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
56862         [defined UINTMAX_MAX]: New macros.
56863
56864 2003-10-14  Bruno Haible  <bruno@clisp.org>
56865
56866         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
56867
56868 2003-10-14  Bruno Haible  <bruno@clisp.org>
56869
56870         * m4/sig_atomic_t: New file, from GNU gettext.
56871         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
56872
56873 2003-10-14  Bruno Haible  <bruno@clisp.org>
56874
56875         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
56876         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
56877         Also use volatile where needed.
56878
56879 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56880
56881         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
56882         Change maintainer from Bruno Haible to 'all'.
56883
56884 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56885
56886         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
56887
56888 2003-10-12  Paul Eggert  <eggert@twinsun.com>
56889
56890         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
56891         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
56892         and define in terms of the other primitives.
56893         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
56894         (SIZE_MAX): Define if not already defined.
56895         (array_size_overflow): New function.
56896         (xalloc_die): Abort instead of exiting if 'error' returns.
56897         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
56898         (xmalloc, xrealloc): Use them.
56899         (xcalloc): Check for address arithmetic overflow.
56900         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
56901         a bit faster than strcpy.
56902
56903 2003-10-10  Simon Josefsson  <jas@extundo.com>
56904
56905         * modules/argp (Depends-on): Add restrict and strcase.
56906
56907 2003-10-10  Simon Josefsson  <jas@extundo.com>
56908
56909         * m4/argp.m4: Add AC_C_INLINE.
56910
56911 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56912
56913         Merge getpass from libc, plus a few fixes.
56914
56915         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
56916         Include <stdbool.h>.
56917         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
56918         __fsetlocking to empty.
56919         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
56920         do include <bits/libc-lock.h>.
56921         Do not include <fcntl.h>; not needed.
56922         [_LIBC]: Include <wchar.h>.
56923         (NOTCANCEL_MODE): New macro.
56924         (flockfile, funlockfile) [_LIBC]: New macros.
56925         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
56926         [!_LIBC]: New macros.
56927         (call_fclose): New function.
56928         (getpass): Use it.  Save tty stream separately; this simplifies the
56929         code and makes it more reliable if stdin happens to equal stdout.
56930         Invoke __fsetlocking on tty.
56931         Handle thread cancellation if needed.
56932         Namespace cleanup (use __tcgetattr, __getline).
56933         Use bool for Booleans.
56934         [USE_IN_LIBIO]: Handle wide streams.
56935         [!_LIBC]: Unconditionally do the fseek, since we don't know what
56936         stream might go where.
56937
56938         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
56939         doesn't have to include <stdio.h> before us.
56940         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
56941         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
56942         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
56943         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
56944         if not declared, so that we can use getpass.c code from libc without
56945         rewriting it.
56946         (flockfile, ftrylockfile, funlockfile): New macros.
56947
56948 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56949
56950         * modules/getpass: Depend on stdbool.
56951
56952 2003-10-08  Paul Eggert  <eggert@twinsun.com>
56953
56954         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
56955
56956 2003-10-07  Karl Berry  <karl@gnu.org>
56957
56958         * config/config.{guess,sub}: update from config.
56959
56960 2003-10-06  Jim Meyering  <jim@meyering.net>
56961             Bruno Haible  <bruno@clisp.org>
56962
56963         This lets translators provide better translations for the
56964         "Written by ..." part of --version output.
56965         * lib/version-etc.h: Include stdarg.h.
56966         (version_etc_copyright): Declare as readonly.
56967         (version_etc): Make this function variadic with a NULL-terminated list
56968         of author name strings.
56969         (version_etc_va): New declaration.
56970         * lib/version-etc.c: Include stdarg.h, stdlib.h.
56971         (version_etc_copyright): Declare as readonly.
56972         (version_etc_va): New function. Provide a different translatable string
56973         for each possible number of authors < 10. Abbreviate when there are 10
56974         authors or more.
56975         (version_etc): Make this function variadic. Call version_etc_va.
56976         Suggestion from Gary V. Vaughan.
56977
56978         * lib/long-options.h (parse_long_options): Change prototype: the
56979         authors string is moved to the end and becomes variadic.
56980         * lib/long-options.c: Include stdarg.h.
56981         (parse_long_options): Make this function variadic, too.
56982         Call version_etc_va, not version_etc.
56983
56984 2003-10-06  Bruno Haible  <bruno@clisp.org>
56985
56986         * modules/version-etc-2: Remove file.
56987         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
56988
56989 2003-10-06  Bruno Haible  <bruno@clisp.org>
56990
56991         * modules/fatal-signal: New file.
56992         * MODULES.html.sh (func_all_modules): Add fatal-signal.
56993
56994 2003-10-06  Bruno Haible  <bruno@clisp.org>
56995
56996         * m4/fatal-signal.m4: New file.
56997         * m4/signalblocking.m4: New file, from GNU gettext.
56998
56999 2003-10-06  Bruno Haible  <bruno@clisp.org>
57000
57001         * lib/version-etc-2.h: Remove file.
57002         * lib/version-etc-2.c: Remove file.
57003
57004 2003-10-06  Bruno Haible  <bruno@clisp.org>
57005
57006         * lib/fatal-signal.h: New file, from GNU gettext.
57007         * lib/fatal-signal.c: New file, from GNU gettext.
57008
57009 2003-10-05  Paul Eggert  <eggert@twinsun.com>
57010
57011         * README: Rework advice for preventing empty .o files.
57012         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
57013         not <sys/types.h>.
57014
57015 2003-10-04  Karl Berry  <karl@gnu.org>
57016
57017         * lib/argp*: update from libc.
57018
57019 2003-10-04  Karl Berry  <karl@gnu.org>
57020
57021         * config/config.{guess,sub}: update from config.
57022
57023 2003-10-02  Bruno Haible  <bruno@clisp.org>
57024
57025         * modules/lchown (Include): Add lchown.h.
57026         * modules/time_r (Include): Use "..." syntax.
57027         * modules/xgetdomainname (Include): Add xgetdomainname.h.
57028
57029 2003-10-01  Simon Josefsson  <jas@extundo.com>
57030
57031         * MODULES.html.sh (func_all_modules): Move gethostname from section
57032         'based on' to section 'lacking' POSIX:2001.
57033
57034 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
57035
57036         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
57037         to output mode on the same stream.
57038
57039 2003-09-29  Paul Eggert  <eggert@twinsun.com>
57040
57041         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
57042         Fix arg typo in previous patch.
57043
57044 2003-09-28  Jim Meyering  <jim@meyering.net>
57045
57046         * lib/error.c: Correct cpp indentation.
57047
57048 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57049
57050         * modules/free: New file.
57051
57052 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57053
57054         * m4/free.m4: New file.
57055
57056 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57057
57058         * lib/minmax.h (MIN, MAX)
57059         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
57060         Omit the special code that used __typeof__, since we worry that
57061         it could be more trouble than it's worth.  See:
57062         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
57063         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
57064
57065         * lib/free.c: New file.
57066
57067 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
57068
57069         Trivial fixes to Makefile.am parts of module listings.
57070         * modules/strstr: Append strstr.h to lib_SOURCES.
57071         * modules/strcase: Likewise, for strcase.h.
57072
57073 2003-09-27  Karl Berry  <karl@gnu.org>
57074
57075         * config/mkinstalldirs: update from automake.
57076
57077 2003-09-26  Paul Eggert  <eggert@twinsun.com>
57078
57079         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
57080         (error_tail): Do not loop, reallocating temporary buffer, since
57081         the output cannot contain more wide characters than the input
57082         contains bytes, the size must be big enough already.  This avoids
57083         one potential size overflow calculation.  Check for size overflow
57084         when calculating temporary buffer size.  Free temporary buffer
57085         when done, if it was allocated with malloc; this plugs a memory
57086         leak.  Remove casts from void * to pointers, that are no longer
57087         needed now that we're assuming C89 or better.
57088
57089         Merge error changes from glibc.
57090
57091         * lib/error.c, error.h: Update copyright notice header to match glibc.
57092         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
57093         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
57094         Disable cancellation while printing error.
57095         * lib/error.h: Prepend __ to parameter names.
57096
57097 2003-09-26  Jim Meyering  <jim@meyering.net>
57098
57099         * lib/error.c (error_tail): Move some declarations
57100         into inner scope where the local variables are used.
57101
57102 2003-09-26  Bruno Haible  <bruno@clisp.org>
57103
57104         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
57105         stpncpy().
57106         Don't define stpncpy through config.h; it's now done through stpncpy.h.
57107
57108 2003-09-26  Bruno Haible  <bruno@clisp.org>
57109
57110         * lib/stpncpy.h (gnu_stpncpy): New declaration.
57111         (stpncpy): Define as alias for gnu_stpncpy.
57112         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
57113
57114 2003-09-25  Simon Josefsson  <jas@extundo.com>
57115
57116         * lib/xgetdomainname.h: New file.
57117         * lib/xgetdomainname.c: New file.
57118
57119 2003-09-25  Simon Josefsson  <jas@extundo.com>
57120             Bruno Haible  <bruno@clisp.org>
57121
57122         * modules/getdomainname: New file.
57123         * modules/xgetdomainname: New file.
57124         * MODULES.html.sh (func_all_modules): Add getdomainname,
57125         xgetdomainname.
57126
57127 2003-09-25  Simon Josefsson  <jas@extundo.com>
57128             Bruno Haible  <bruno@clisp.org>
57129
57130         * m4/getdomainname.m4: New file.
57131
57132 2003-09-25  Simon Josefsson  <jas@extundo.com>
57133             Bruno Haible  <bruno@clisp.org>
57134
57135         * lib/getdomainname.h: New file.
57136         * lib/getdomainname.c: New file.
57137
57138 2003-09-25  Karl Berry  <karl@gnu.org>
57139
57140         * lib/argp-fmtstream.c, argp-help.c: update from libc.
57141
57142 2003-09-25  Karl Berry  <karl@gnu.org>
57143
57144         * config/install-sh: update from automake.
57145
57146 2003-09-25  Bruno Haible  <bruno@clisp.org>
57147
57148         * modules/version-etc-2: New file, from modules/version-etc with
57149         modifications.
57150         * MODULES.html.sh (func_all_modules): Add version-etc-2.
57151
57152 2003-09-25  Bruno Haible  <bruno@clisp.org>
57153
57154         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
57155         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
57156
57157 2003-09-24  Simon Josefsson  <jas@extundo.com>
57158
57159         * modules/xgethostname: Add xgethostname.h.
57160
57161 2003-09-24  Paul Eggert  <eggert@twinsun.com>
57162
57163         * lib/linebuffer.c (freebuffer): Don't free the argument, just
57164         the buffer associated with the argument.  Bug reported by
57165         Simon Josefsson.
57166
57167 2003-09-24  Paul Eggert  <eggert@twinsun.com>
57168
57169         * README: Document assumptions that 'int' is at least 32 bits
57170         wide, that integer arithmetic is 2's complement without overflow,
57171         that there are no holes in integer values, that adding sizes of
57172         two nonoverlapping objects can't overflow, and that all-bits-zero
57173         yields scalar zero.  Fix spelling and capitalization typos.
57174
57175 2003-09-19  Karl Berry  <karl@gnu.org>
57176
57177         * lib/argp.h: update from libc.
57178
57179 2003-09-17  Paul Eggert  <eggert@twinsun.com>
57180
57181         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
57182         to avoid spurious warnings like "AC_RUN_IFELSE was called before
57183         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
57184
57185 2003-09-17  Paul Eggert  <eggert@twinsun.com>
57186
57187         * gnulib-tool: Use "test -h", not "test -L", for portability
57188         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
57189         (tags_regexp): Remove, since \| doesn't conform to POSIX.
57190         (sed_extract_prog): Issue s commands one-by-one, rather than
57191         using \| in one s command.
57192
57193 2003-09-16  Paul Eggert  <eggert@twinsun.com>
57194
57195         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
57196         input error, instead of returning NULL the next time we are called
57197         (and therefore losing track of errno).
57198
57199 2003-09-16  Bruno Haible  <bruno@clisp.org>
57200
57201         * gnulib-tool (func_create_testdir): Warn about duplicated
57202         dependencies.
57203
57204 2003-09-15  Paul Eggert  <eggert@twinsun.com>
57205
57206         * modules/argmatch, modules/fatal, modules/obstack,
57207         modules/xalloc, modules/xgethostname: Sort dependencies by
57208         importance, not alphabetically.
57209
57210 2003-09-15  Paul Eggert  <eggert@twinsun.com>
57211
57212         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
57213         fails, so that the caller gets the proper errno.
57214
57215         * lib/readutmp.c (read_utmp): Likewise.
57216         Check for fstat error.  Close stream and free storage
57217         when failing.
57218
57219 2003-09-14  Karl Berry  <karl@gnu.org>
57220
57221         * config/srclist.txt (strdup.c): disable for c89 changes.
57222
57223 2003-09-14  Jim Meyering  <jim@meyering.net>
57224
57225         * lib/getloadavg.c: Correct cpp indentation.
57226         * lib/strdup.c: Likewise.
57227         * lib/vasnprintf.c: Likewise.
57228
57229 2003-09-14  Bruno Haible  <bruno@clisp.org>
57230
57231         * modules/fwriteerror: New file.
57232         * MODULES.html.sh (func_all_modules): Add fwriteerror.
57233
57234 2003-09-14  Bruno Haible  <bruno@clisp.org>
57235
57236         * lib/fwriteerror.h: New file.
57237         * lib/fwriteerror.c: New file.
57238
57239 2003-09-12  Paul Eggert  <eggert@twinsun.com>
57240
57241         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
57242         modules/xgethostname, modules/xalloc: Depend on exit.
57243
57244 2003-09-12  Paul Eggert  <eggert@twinsun.com>
57245
57246         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
57247
57248         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
57249         and AC_MINIX, too, so that their extensions are available.
57250
57251         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
57252         This macro has been superseded by gl_BACKUPFILE.
57253
57254         More patches to assume C89 or better.
57255
57256         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
57257
57258         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
57259         unconditionally.
57260         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
57261         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
57262         Include <string.h>, <stdlib.h> unconditionally.
57263         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
57264         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
57265         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
57266         headers or for string.h.
57267         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
57268         or strtoul.
57269
57270         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
57271         headers.
57272         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
57273         * m4/userspec.m4 (gl_USERSPEC): Likewise.
57274         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
57275         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
57276         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
57277         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
57278         memcpy, memset.
57279         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
57280         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
57281         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
57282         strtol.
57283         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
57284         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
57285         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
57286         strtoul.
57287
57288 2003-09-12  Paul Eggert  <eggert@twinsun.com>
57289
57290         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
57291         * lib/obstack.c [!defined _LIBC]: Likewise.
57292         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
57293         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
57294         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
57295
57296         More changes to assume C89 or better.
57297
57298         * lib/error.c (error_tail): Assume vprintf.
57299
57300         * lib/argmatch.c (getenv): Remove decl.
57301         * lib/progreloc.c (get_full_program_name): Define via prototype.
57302         * lib/setenv.c (clearenv): Likewise.
57303         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
57304         needed.
57305         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
57306         (malloc, memcpy): Remove decls.
57307         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
57308         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
57309         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
57310         (memcpy): Remove macro.
57311         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
57312         (__P): Remove.  All uses removed.
57313         (PTR): Remove.  All uses changed to void *.
57314         (CHAR_BIT, NULL): Remove.
57315         (spaces, zeros, memset_space, memset_zero)
57316         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
57317         Remove.
57318         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
57319         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
57320         Define with prototype.
57321         Remove now-unnecessary prototype decl.
57322         (extra_args_spec): Assume ANSI C.  All uses changed.
57323         (extra_args_spec_iso): Remove.
57324         (my_strftime, emacs_strftimeu): Define via prototype.
57325         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
57326         unconditionally.
57327         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
57328         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
57329         (strtoul, strtol): Remove decls.
57330         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
57331         LONG_MAX): Remove.
57332         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
57333         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
57334         (LOCALE_PARAM_PROTO): New macro.
57335         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
57336         (INTERNAL (strtol), strtol): Define with a prototype.
57337         (PARAMS): Remove.  All uses removed.
57338         * lib/tempname.c: Include <string.h> unconditionally.
57339         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
57340         * lib/xgethostname.c (main): Define with a prototype.
57341         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
57342         Include <stdlib.h> unconditionally.
57343         (calloc, malloc, realloc, free): Remove decls.
57344         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
57345         Include <stdlib.h> unconditionally.  Sort include file names.
57346         (strtod): Remove.
57347         (xstrtod): Define with a prototype.
57348         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
57349         (strtol, strtoul): Remove decls.
57350
57351 2003-09-11  Paul Eggert  <eggert@twinsun.com>
57352
57353         More patches to assume C89 or better.
57354         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
57355         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
57356         string.h, memchr, STDC_HEADERS.
57357
57358 2003-09-11  Paul Eggert  <eggert@twinsun.com>
57359
57360         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
57361         Include <stdlib.h>, <string.h> unconditionally.
57362         Remove now-unnecessary cast to char *.
57363         * lib/strnlen.c: Include <string.h> unconditionally.
57364         * lib/yesno.c (yesno): Define with a prototype.
57365
57366 2003-09-11  Bruno Haible  <bruno@clisp.org>
57367
57368         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
57369
57370 2003-09-10  Jim Meyering  <jim@meyering.net>
57371
57372         * lib/error.c: Correct indentation of cpp directives.
57373
57374 2003-09-10  Bruno Haible  <bruno@clisp.org>
57375
57376         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
57377         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
57378         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
57379         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
57380         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
57381         <stdlib.h> and <string.h> checks.
57382         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
57383         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
57384
57385 2003-09-10  Bruno Haible  <bruno@clisp.org>
57386
57387         * lib/strcspn.c: Include <string.h> unconditionally.
57388         * lib/strpbrk.c: Include <string.h> unconditionally.
57389         * lib/strstr.c: Include <string.h> unconditionally.
57390         * lib/unicodeio.c: Include <string.h> unconditionally.
57391         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
57392         * lib/unsetenv.c: Likewise.
57393         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
57394         * lib/yesno.c: Include <stdlib.h> unconditionally.
57395         (rpmatch): Add prototype.
57396
57397 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57398
57399         More patches to assume C89 or better.
57400         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
57401         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
57402         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
57403         or for string.h.
57404         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
57405         stdlib.h.
57406         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
57407         C headers.
57408         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
57409         string.h.
57410         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
57411         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
57412         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
57413         or for string.h.
57414         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
57415         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
57416         C headers.
57417         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
57418         memcpy.
57419         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
57420         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
57421         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
57422         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
57423         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
57424         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
57425         string.h, free.
57426         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
57427         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
57428         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
57429         C headers, or for string.h.
57430         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
57431         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
57432         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
57433         headers, memory.h, stdlib.h, string.h, strings.h.
57434         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
57435         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
57436         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
57437         strchr.
57438         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
57439         headers, memory.h, string.h.
57440         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
57441         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
57442         free.
57443         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
57444         headers.
57445         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
57446         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
57447         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
57448         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
57449         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
57450
57451 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57452
57453         More K&R removal.
57454
57455         * lib/acosl.c (main): Use a prototype.
57456         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
57457         tanl.c: Likewise.
57458
57459         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
57460
57461         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
57462         (getopt, etopt_long, getopt_long_only, _getopt_internal)
57463         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
57464         with a prototype.
57465         * lib/getopt.c (const): Remove macro.
57466         Include <string.h> unconditionally.
57467         (my_index): Remove; all uses changed to strchr.
57468         (strlen): Remove decl.
57469         (exchange): Remove forward decl; no longer needed.
57470         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
57471         Define with prototype.
57472         * lib/getopt1.c (const): Remove macro.
57473         (getopt_long, getopt_long_only, main): Define with prototype.
57474
57475         * lib/getugroups.c: Include <string.h> unconditionally.
57476
57477         * lib/getusershell.c: Include <stdlib.h> unconditionally.
57478         (getusershell, setusershell, endusershell, readname, main):
57479         Define with prototypes.
57480
57481         * lib/group-member.c: Include group-member.h first.
57482         Include <stdlib.h> unconditionally.
57483
57484         * lib/hard-locale.c: Include hard-locale.h first.
57485         Include <stdlib.h>, <string.h> unconditionally.
57486
57487         * lib/hash.c (free, malloc): Remove decls.
57488         Include <stdlib.h> unconditionally.
57489
57490         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
57491         (getenv): Do not declare.
57492
57493         * lib/idcache.c: Include <string.h> unconditionally.
57494
57495         * lib/long-options.c: Include long-options.h first, to test interface.
57496         Include <stdlib.h> unconditionally.
57497
57498         * lib/makepath.c: Include makepath.h first, to test interface.
57499         Include <stdlib.h> and <string.h> unconditionally.
57500
57501         * lib/linebuffer.c: Include <stdlib.h>.
57502         (free): Remove decl.
57503
57504         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
57505         stddef.h. rpl_malloc returns void *, not char *.
57506         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
57507         prototype.
57508
57509         * lib/md5.h: Include <limits.h> unconditionally.
57510         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
57511         (__P): Remove; all uses removed.
57512         * lib/md5.c: Include "md5.h" first.
57513         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
57514         md5_buffer, md5_process_bytes, md5_process_block):
57515         Define with prototypes.
57516         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
57517         * lib/sha.c: Include "sha.h" first.
57518         Include <stdlib.h>, <string.h> unconditionally.
57519
57520         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
57521         * lib/memcmp.c (__ptr_t): Likewise.
57522         * lib/memrchr.c (__ptr_t): Likewise.
57523         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
57524         Include <string.h> unconditionally.
57525         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
57526         * lib/memchr.c: Include <stdlib.h> unconditionally.
57527         * lib/memchr.c (LONG_MAX): Remove.
57528         * lib/memrchr.c (LONG_MAX): Likewise.
57529         * lib/memchr.c (__memchr): Define via a prototype.
57530         * lib/memrchr.c (__memrchr): Likewise.
57531         * lib/memcmp.c (__P): Remove, and remove all uses.
57532         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
57533         Remove forward decls; no longer needed.
57534         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
57535         Use types required by C89 in prototype.
57536
57537         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
57538         * lib/savedir.c: Likewise.
57539         * lib/mkdir.c (free): Remove decl.
57540         * lib/rmdir.c (rmdir): Define with a prototype.
57541         * lib/savedir.c: Include savedir.h first, to test interface.
57542
57543         * lib/mktime.c (STDC_HEADERS): Remove.
57544         Include <stdlib.h>, <string.h> unconditionally.
57545
57546         * lib/modechange.c: Include <stdlib.h> unconditionally.
57547         (malloc): Remove decl.
57548
57549         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
57550         (free): Remove decl.
57551
57552         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
57553         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
57554         (This type really should be intptr_t, but that's a C99ism.)
57555         (_obstack_memcpy): Remove: all uses changed to memcpy.
57556         Include <string.h> unconditionally.
57557         (struct obstack): Assume __STDC__ for types of members
57558         chunkfun, freefun, extra_arg.
57559         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
57560         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
57561         obstack_begin, obstack_specify_allocation,
57562         obstack_specify_allocation_with_arg, obstack_chunkfun,
57563         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
57564         Remove unprototyped decls and the macros that use them.
57565         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
57566         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
57567         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
57568         (defined __STDC__ && __STDC__)]:
57569         Remove nonprototyped code.
57570         Include <stdlib.h> unconditionally.
57571         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
57572         _obstack_allocated_p, _obstack_free, obstack_free,
57573         _obstack_memory_used, print_and_abort):
57574         Define using prototypes.
57575         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
57576         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
57577         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
57578         obstack_next_free, obstack_object_size, obstack_room) [0]:
57579         Remove unused, unprototyped code.
57580
57581         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
57582
57583         * lib/physmem.c (physmem_total, physmem_available, main): Define
57584         with prototypes.
57585
57586         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
57587         (main): Define with a prototype.
57588
57589         * lib/posixver.c (getenv): Remove decl.
57590
57591         * lib/putenv.c (malloc): Returns void *, not char *.
57592         Include <string.h> unconditionally.
57593         (strchr, memcpy, NULL): Do not define.
57594
57595         * lib/readtokens.c: Include readtokens.h first, to test interface.
57596         Include <stdlib.h>, <string.h> unconditionally.
57597         (init_tokenbuffer): Define with a prototype.
57598
57599         * lib/regex.c (PARAMS): Remove.  All uses removed.
57600         All uses of _RE_ARGS removed, too.
57601         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
57602         unconditionally.
57603         (bzero): Assume memset exists.
57604         (memcmp, memcpy, NULL): Remove.
57605         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
57606         char, or assignments to local vars of type signed char.
57607         (init_syntax_once, PREFIX(extract_number_and_incr),
57608         PREFIX(print_partial_compiled_pattern),
57609         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
57610         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
57611         PREFIX(regex_grow_registers), PREFIX(regex_compile),
57612         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
57613         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
57614         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
57615         wcs_compile_range, byte_compile_range, truncate_wchar,
57616         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
57617         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
57618         count_mbs_length, wcs_re_match_2_internal,
57619         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
57620         PREFIX(alt_match_null_string_p),
57621         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
57622         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
57623         regfree, PREFIX(extract_number)): Define with prototype.  Remove
57624         now-unnecessary declaration, if any.
57625         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
57626         regcomp, regexec):
57627         Remove now-unnecessary casts among pointer types.
57628         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
57629
57630         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
57631         (free): Remove decl.
57632
57633         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
57634
57635         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
57636         (free): Remove decl.
57637
57638         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
57639         * lib/xgetcwd.c: Likewise.
57640
57641         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
57642         (free): Remove decl.
57643
57644         * lib/strchrnul.c (strchrnul): Define with a prototype.
57645         Fix bug: c_in was not converted to char before searching.
57646
57647         The following changes are not K&R related:
57648
57649         * lib/group-member.h: Include <sys/types.h>, so that this file is
57650         self-contained.
57651         * lib/makepath.h: Likewise.
57652
57653         * lib/getusershell.c (readname, default_index, line_size, readname):
57654         Use size_t, not int, for sizes.
57655         (readname): If the size overflows, report an error instead of
57656         looping forever.
57657
57658 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57659
57660         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
57661         libc.
57662
57663 2003-09-09  Paul Eggert  <eggert@twinsun.com>
57664
57665         * README: New section: portability guidelines.
57666
57667 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57668
57669         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
57670         C89 spec.
57671
57672 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
57673
57674         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
57675
57676 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57677
57678         Assume C89 or better; remove K&R cruft.
57679         A few of these changes were first proposed by Derek Robert Price
57680         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
57681
57682         * lib/addext.c: Include <string.h> unconditionally.
57683         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
57684         Don't declare getenv or malloc.
57685
57686         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
57687         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
57688         (NULL): Remove.
57689         (find_stack_direction, alloca): Use prototypes.
57690
57691         * lib/atexit.c (atexit): Define using a prototype.
57692
57693         * lib/basename.c, dirname.c, stripslash.c:
57694         Include <string.h> unconditionally.
57695
57696         * lib/bcopy.c: Include <stddef.h>.
57697         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
57698
57699         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
57700
57701         * lib/error.h (error, error_at_line, error_print_progname)
57702         [! (defined (__STDC__) && __STDC__)]: Remove decls.
57703         * lib/error.c: Include error.h first, to check interface.
57704         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57705         (VA_START): Remove; all uses changeed to va_start.
57706         (exit, strerror): Remove decls.
57707         (error_print_progname): Prototype uncondionally.
57708         Don't include <errno.h>; no longer needed.
57709         (private_strerror): Remove.
57710         (error_tail): Always define.
57711         (error, error_at_line): Assume C89 or better; always use prototypes.
57712         * lib/fatal.c: Include "fatal.h" first, to test interface.
57713         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
57714         (VA_START): Remove; all uses changed to va_start.
57715         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
57716         this case.
57717         (exit): Remove decl.
57718         (fatal): Prototype unconditionally.  Assume va_start works.
57719         Abort at end, to pacify gcc.
57720
57721         * lib/euidaccess.c (main): Define with a prototype.
57722
57723         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
57724
57725         * lib/exitfail.c: Include <stdlib.h> unconditionally.
57726
57727         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
57728         prototypes.
57729         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
57730         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
57731         (getenv): Remove decl.
57732         (fnmatch): Define using a prototype.
57733         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
57734         (FCT): Define using a prototype.
57735
57736         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
57737
57738         * lib/gethostname.c: Include <stddef.h>.
57739         (gethostname): Define with prototype.  Length is size_t, not int.
57740
57741 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57742
57743         Assume C89 or better; remove K&R cruft.
57744         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
57745         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
57746         string.h, getenv, malloc.
57747         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
57748         headers.
57749         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
57750         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
57751         do not check for strerror.
57752         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
57753         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
57754         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
57755         do not check for doprnt or vprintf.
57756         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
57757         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
57758
57759 2003-09-08  Paul Eggert  <eggert@twinsun.com>
57760
57761         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
57762         getversion.c should have been removed then, but was accidentally
57763         preserved.
57764
57765         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
57766         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
57767
57768 2003-09-08  Karl Berry  <karl@gnu.org>
57769
57770         * config/config.sub, config.guess, srclistvars.sh: update from savannah
57771                 config, forget about prep.
57772
57773         * config/depcomp, missing: update from automake.
57774
57775 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57776
57777         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
57778         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57779
57780 2003-09-07  Paul Eggert  <eggert@twinsun.com>
57781
57782         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
57783         copy_tm_result.  Bug reported by Simon Josefsson in
57784         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
57785
57786 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57787
57788         * m4/time_r.m4: New file.
57789         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
57790         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
57791         is. Check for timegm declaration.
57792         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
57793         Do not check for gmtime_r.
57794         Replace mktime if __mktime_internal does not exist and if mktime
57795         hasn't been replaced already.
57796
57797 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57798
57799         * lib/time_r.c, lib/time_r.h: New files.
57800
57801         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
57802         __localtime_r.
57803         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
57804         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
57805
57806         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
57807         __gmtime_r.
57808         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
57809         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
57810         Include <time_r.h>.
57811
57812         * lib/timegm.c: Switch to glibc implementation, with the following
57813         changes:
57814         [defined HAVE_CONFIG_H]: Include <config.h>.
57815         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
57816         (__mktime_internal) [!defined _LIBC]: New decl.
57817         (__gmtime_r) [!defined _LIBC]: New macro and function.
57818         (timegm): Use a prototype, since gnulib assumes C89.
57819         Do not bother declaring tmp to be const, as it's not really usefu.
57820         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
57821         (timegm): Declare only if HAVE_DECL_TIMEGM.
57822
57823 2003-09-06  Paul Eggert  <eggert@twinsun.com>
57824
57825         * MODULES.html.sh (func_all_modules): Add time_r.
57826         * modules/time_r: New file.
57827         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
57828         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
57829
57830 2003-09-03  Paul Eggert  <eggert@twinsun.com>
57831
57832         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
57833         Bug reported by Lute Kamstra in
57834         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
57835
57836         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
57837         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
57838         course with correspondingly smaller numbers for tomorrow and
57839         yesterday.  From Tadayoshi Funaba.  Originally installed into
57840         sh-utils on 1999-08-07, but the patch got lost (I guess during the
57841         coreutils merge?).
57842
57843 2003-08-31  Simon Josefsson  <jas@extundo.com>
57844
57845         * modules/timegm: New file.
57846         * MODULES.html.sh (func_all_modules): Add timegm.
57847
57848 2003-08-31  Simon Josefsson  <jas@extundo.com>
57849
57850         * m4/timegm.m4: New file.
57851
57852 2003-08-31  Simon Josefsson  <jas@extundo.com>
57853
57854         * lib/timegm.h: New file.
57855         * lib/timegm.c: New file.  Based on
57856         wget-1.8.2/src/http.c:mktime_from_utc.
57857
57858 2003-08-31  Karl Berry  <karl@gnu.org>
57859
57860         * lib/argp.h: update from libc.
57861
57862 2003-08-28  Bruno Haible  <bruno@clisp.org>
57863
57864         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
57865         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
57866         followed by '#define fnmatch fnmatch_posix' gives an error.
57867
57868 2003-08-28  Bruno Haible  <bruno@clisp.org>
57869
57870         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
57871         warning on QNX, which defines O_BINARY to 000000.
57872
57873 2003-08-27  Jim Meyering  <jim@meyering.net>
57874
57875         * m4/mkstemp.m4: Require that the system mkstemp be able to create
57876         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
57877         would fail after 32.  Reported by Danny Levinson.  Details here:
57878         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
57879
57880 2003-08-24  Bruno Haible  <bruno@clisp.org>
57881
57882         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
57883         MSVC7 <stdio.h> is included later.
57884
57885 2003-08-22  Simon Josefsson  <jas@extundo.com>
57886
57887         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
57888
57889 2003-08-20  Karl Berry  <karl@gnu.org>
57890
57891         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
57892
57893 2003-08-20  Bruno Haible  <bruno@clisp.org>
57894
57895         * modules/progname: New file.
57896         * MODULES.html.sh (func_all_modules): Add progname.
57897
57898 2003-08-20  Bruno Haible  <bruno@clisp.org>
57899
57900         * lib/progname.h: New file, from GNU gettext.
57901         * lib/progname.c: New file, from GNU gettext.
57902         * lib/progreloc.c: New file, from GNU gettext.
57903
57904 2003-08-19  Jim Meyering  <jim@meyering.net>
57905
57906         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
57907         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
57908
57909 2003-08-19  Bruno Haible  <bruno@clisp.org>
57910
57911         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
57912         more.
57913
57914 2003-08-19  Bruno Haible  <bruno@clisp.org>
57915
57916         * lib/xstrdup.c: Assume <string.h> exists.
57917
57918 2003-08-18  Paul Eggert  <eggert@twinsun.com>
57919
57920         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
57921         in makefile rules.
57922
57923 2003-08-18  Jim Meyering  <jim@meyering.net>
57924
57925         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
57926         * m4/lib-ld.m4: Likewise.
57927
57928 2003-08-18  Jim Meyering  <jim@meyering.net>
57929
57930         * lib/setenv.h: Indent nested cpp directive.
57931         * lib/vasnprintf.c: Remove trailing blanks.
57932
57933 2003-08-17  Simon Josefsson  <jas@extundo.com>
57934
57935         * modules/xstrndup: New file.
57936         * MODULES.html.sh (func_all_modules): Add xstrndup.
57937
57938 2003-08-17  Simon Josefsson  <jas@extundo.com>
57939
57940         * modules/argp: Fix autoconf macro name. Add more dependencies.
57941
57942 2003-08-17  Simon Josefsson  <jas@extundo.com>
57943
57944         * m4/xstrndup.m4: New file.
57945
57946 2003-08-17  Simon Josefsson  <jas@extundo.com>
57947
57948         * m4/argp.m4: New file.
57949
57950 2003-08-17  Simon Josefsson  <jas@extundo.com>
57951             Bruno Haible  <bruno@clisp.org>
57952
57953         * lib/xstrndup.h: New file.
57954         * lib/xstrndup.c: New file.
57955
57956 2003-08-17  Bruno Haible  <bruno@clisp.org>
57957
57958         * modules/strndup (Files, Include): Add lib/strndup.h.
57959
57960 2003-08-17  Bruno Haible  <bruno@clisp.org>
57961
57962         * modules/euidaccess (Files): Add lib/euidaccess.h.
57963
57964 2003-08-17  Bruno Haible  <bruno@clisp.org>
57965
57966         * lib/strndup.h: New file.
57967
57968 2003-08-17  Bruno Haible  <bruno@clisp.org>
57969
57970         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
57971         like AC_GNU_SOURCE.
57972         * modules/extensions (configure.ac): Comment out the invocation of
57973         gl_USE_SYSTEM_EXTENSIONS.
57974
57975 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57976
57977         Merges from coreutils, etc.
57978         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
57979         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
57980         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
57981         fixing a typo.
57982         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
57983         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
57984
57985 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57986
57987         Document merge from coreutils.
57988         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
57989         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
57990         * modules/utime: Add m4/utimes-null.m4.
57991
57992 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57993
57994         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
57995         space, undoing this 2003-08-12 change:
57996         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
57997
57998 2003-08-16  Paul Eggert  <eggert@twinsun.com>
57999
58000         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
58001         strtoul.c from libc, undoing this 2003-08-12 change:
58002         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
58003
58004 2003-08-16  Jim Meyering  <jim@meyering.net>
58005
58006         Merges from coreutils.
58007         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
58008         prefix.  Adjust cache variables similarly.  Create 500 rather than
58009         just 300 files, to exercise bug on Darwin6.5, too.
58010         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
58011         $missing_dir.
58012         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
58013         AM_SYS_POSIX_TERMIOS.
58014         Reported by mkc@mathdogs.com.
58015         Also change use of $am_cv_sys_posix_termios
58016         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
58017         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
58018         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
58019         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
58020         in /proc/mounts until it finds one with matching device number.  This
58021         is unnecessary when the FILE argument *is* a mount point.  No stat call
58022         is necessary in that case.  So, disable the statvfs-testing code on
58023         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
58024         as RedHat bug# 84846.
58025         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
58026         to 1MB, so as not to render systems with no stack size limit (e.g.,
58027         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
58028         Include <unistd.h>.  On some systems,
58029         it is required for the definition of _SC_PAGESIZE.
58030
58031 2003-08-16  Jim Meyering  <jim@meyering.net>
58032
58033         Merge from coreutils.
58034         * lib/xstrtoimax.c: #else #if -> #elif.
58035         * lib/xstrtoumax.c: Likewise.
58036
58037 2003-08-16  Jim Meyering  <jim@meyering.net>
58038
58039         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
58040         * m4/utimes.m4: Removed.
58041         * m4/utimes-null.m4: Renamed from utimes.m4.
58042
58043         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
58044         to 1MB, so as not to render systems with no stack size limit (e.g.,
58045         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
58046         Include <unistd.h>.  On some systems,
58047         it is required for the definition of _SC_PAGESIZE.
58048
58049 2003-08-16  Jim Meyering  <jim@meyering.net>
58050         and Paul Eggert  <eggert@cs.ucla.edu>
58051
58052         Merges from coreutils, etc.
58053
58054         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
58055         using the latest version from cvs.  This avoids problems with #line
58056         directives using a vendor (Sun) compiler.
58057         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
58058         Don't set GETGROUPS_LIB here; now it's
58059         done via getgroups.m4's wrapper function.
58060         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
58061         rather than just in sh-util/configure.in, so that the
58062         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
58063         same.
58064         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
58065         AC_FUNC_GETLOADAVG where to find getloadavg.c.
58066         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
58067         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
58068         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
58069         Remove code that is now done by the newly-required macros.
58070         Append $(EXEEXT) to DF_PROG.
58071         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
58072         Do not invoke or require the following here,
58073         since prereq.m4 or some gnulib .m4 now does this for us:
58074         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
58075         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
58076         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
58077         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
58078         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
58079         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
58080         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
58081         AC_FUNC_OBSTACK.
58082         Do not replace the following functions, as this is now the job
58083         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
58084         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
58085         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
58086         atexit getpass, strdup, getpagesize.
58087         Replace 'raise'.
58088         Do not check for the following functions, as this is now the job
58089         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
58090         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
58091         setregid.
58092         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
58093         Check for sys/sysctl.h.
58094         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
58095         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
58096         of checking for ssize_t ourselves.
58097
58098         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
58099         Require every macro that gnulib/modules/* suggests for us.
58100         (jm_PREREQ_ADDEXT): New macro.
58101         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
58102         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
58103
58104         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
58105         (gl_PHYSMEM): Use it.
58106         Also check for `table' function.
58107         Check for new headers and functions.
58108         Add check for sys/sysmp.h.
58109         With suggestions from Kaveh Ghazi.
58110         Ignore headers that are present but cannot be compiled.  This
58111         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
58112         C 5.4.
58113
58114 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58115
58116         Document merge from coreutils.
58117         * modules/userspec: Depend on posixver.
58118         * modules/strftime: Depend on tzset.
58119
58120 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58121
58122         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
58123         rather than tab, after '#' in shell-script copyright notices.
58124         Suggested by Bruno Haible.
58125
58126 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58127
58128         * config/srclist-update: Use three spaces, rather than tab, after '#'
58129         in shell-script copyright notices.  Suggested by Bruno Haible.
58130         Remove unnecessary parenthesization in regular expression.
58131
58132 2003-08-15  Jim Meyering  <jim@meyering.net>
58133
58134         Merge from coreutils.
58135         * lib/xgethostname.c: Include <stdlib.h>.
58136         (xghostname): Don't exit for anything other than memory-related
58137         failure; just return NULL.
58138         * lib/userspec.c: Include "posixver.h".
58139         (parse_user_spec): Accept `.' as a separator only
58140         in pre-POSIX-200112 mode.
58141         * lib/strtoimax.c: Use #elif rather than #else #if.
58142         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
58143         Remove function, now that we can rely on a working tzset function.
58144         [!_LIBC]: Ensure that the required autoconf test has been run.
58145         [!defined _NL_CURRENT && HAVE_STRFTIME]:
58146         Use underlying_strftime for %r.
58147         * lib/sha.c: Merge in some clean-up and optimization changes from
58148         glibc.
58149         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
58150         Ensure that it is a multiple of 64.
58151         Rearrange loop exit tests so as to avoid performing an
58152         additional fread after encountering an error or EOF.
58153         * lib/realloc.c: Update copyright date.
58154
58155 2003-08-15  Jim Meyering  <jim@meyering.net>
58156         and Paul Eggert  <eggert@twinsun.com>
58157
58158         Merge from coreutils.
58159         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
58160         member but strut utmpx does not.  Needed for AIX 4.3.3.
58161         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
58162
58163 2003-08-15  Jim Meyering  <jim@meyering.net>
58164         and Paul Eggert  <eggert@cs.ucla.edu>
58165
58166         Merges from coreutils, etc.
58167         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
58168         Require gl_FUNC_TZSET_CLOBBER.
58169         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
58170         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
58171         members.
58172
58173 2003-08-14  Paul Eggert  <eggert@twinsun.com>
58174
58175         Help the merge from coreutils.
58176         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
58177         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
58178         * m4/tzset.m4: Use it too.
58179
58180 2003-08-14  Paul Eggert  <eggert@twinsun.com>
58181
58182         * modules/tzset: New file.
58183
58184 2003-08-14  Jim Meyering  <jim@meyering.net>
58185
58186         Merges from coreutils.
58187         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
58188         variable names, rather than @FNMATCH_H@.
58189         * modules/alloca: Likewise for $(ALLOCA_H).
58190
58191         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
58192         the three copies of the literal target, `fnmatch.h'.
58193         * modules/alloca (alloca.h): Likewise.
58194
58195 2003-08-14  Jim Meyering  <jim@meyering.net>
58196
58197         Merge from coreutils.
58198         * m4/tzset.m4: New file.
58199         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
58200         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
58201         otherwise, AIX 5.1 systems would end up using the latter.
58202         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
58203         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
58204         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
58205         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
58206
58207 2003-08-14  Jim Meyering  <jim@meyering.net>
58208
58209         Merge from coreutils.
58210         * lib/obstack.h: Whitespace changes.
58211         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
58212         and xcalloc return values.
58213         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
58214         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
58215         hang on OSF/1 5.1 for DIR on both local and remote file systems.
58216         Reported by (and fix confirmed by) Nelson H. F. Beebe.
58217         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
58218         error from mntctl.
58219         Use mntctl's return value to drive the entry-processing loop, since
58220         we can't rely on the value of the vmt_length member in the last
58221         entry.  On some systems doing so could result in exhausting
58222         virtual memory.  Based in part on a patch from Mike Jetzer.
58223
58224 2003-08-14  Jim Meyering  <jim@meyering.net>
58225         and Paul Eggert  <eggert@twinsun.com>
58226
58227         Merges from coreutils, plus other fixes.
58228         * lib/physmem.c: Merge in portability changes from gcc/libiberty
58229         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
58230         for credits and details.  Thanks to Kaveh Ghazi for helping
58231         to keep these files in sync.
58232         (ARRAY_SIZE): Define it.
58233         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
58234         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
58235         (memcasecmp): Don't assume size_t fits in unsigned int.
58236         Remove casts and duplicate code.
58237         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
58238         (memcpy): Remove definition.
58239         Merge in some clean-up and optimization changes from glibc.
58240         [BLOCKSIZE]: Move definition to top of file.
58241         Ensure that it is a multiple of 64.
58242         Rearrange loop exit tests so as to avoid performing an
58243         additional fread after encountering an error or EOF.
58244         * lib/md5.h (md5_uintptr): Define.
58245         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
58246         return to the initial working directory.  Preserve errno
58247         for caller.
58248         * lib/idcache.c: Include "xalloc.h".
58249         (xmalloc, xrealloc): Remove decls.
58250         (getuser): Remove casts no longer required in C89.
58251         * lib/human.c: Include stdio.h, for sprintf.
58252         * lib/group-member.c: Include "xalloc.h".
58253         (xmalloc, xrealloc): Remove decls.
58254         (get_group_info): Remove casts no longer required in C89.
58255         * lib/getusershell.c (readname): Remove casts no longer required in
58256         C89.
58257         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
58258         * lib/getline.c: Whitespace fix, from coreutils.
58259
58260 2003-08-13  Paul Eggert  <eggert@twinsun.com>
58261
58262         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
58263         Check for isascii.
58264
58265         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
58266         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
58267         Undo previous (whitespace-only) change.
58268
58269 2003-08-13  Paul Eggert  <eggert@twinsun.com>
58270
58271         * lib/exclude.c: Include <ctype.h>
58272         (IN_CTYPE_DOMAIN): New macro.
58273         (is_space): New fn.
58274         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
58275         and empty lines.
58276
58277         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
58278         Undo previous (whitespace-only) change.
58279
58280 2003-08-13  Paul Eggert  <eggert@twinsun.com>
58281
58282         * config/srclist-update: Change update back to the old behavior,
58283         leaving whitespace alone.  Use one 'sed' command rather than a
58284         pipeline.
58285         (fixlicense): Now a variable, not a function.
58286         (remove_trailing_blanks): Remove.
58287         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
58288         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
58289         Undo previous (whitespace-only) change.
58290
58291 2003-08-12  Paul Eggert  <eggert@twinsun.com>
58292
58293         Merge from coreutils.
58294         * modules/euidaccess: Add lib_SOURCES, include for new
58295         file euidaccess.h
58296
58297 2003-08-12  Paul Eggert  <eggert@twinsun.com>
58298
58299         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
58300         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
58301         Normalize leading white space and remove trailing white space.
58302
58303         Merge from coreutils
58304         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
58305
58306         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
58307         0.12.1.  These files are now being upgraded automatically by
58308         ../config/srclist-update.
58309
58310 2003-08-12  Paul Eggert  <eggert@twinsun.com>
58311
58312         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
58313         Normalize leading white space and remove trailing white space.
58314         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
58315         notice, as per ../config/srclist-update.
58316
58317         Merge from coreutils.
58318         * lib/euidaccess.h: New file.
58319         * lib/euidaccess.c: Include it.
58320         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
58321         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
58322         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
58323
58324 2003-08-12  Paul Eggert  <eggert@twinsun.com>
58325
58326         * config/srclist-update: Add copyright notice.
58327         (remove_id_lines, remove_trailing_blanks): New constants.
58328         (fixfile): Use them to normalize spacing a bit in copied files.
58329         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
58330         Normalize leading white space and remove trailing white space.
58331
58332         * config/texinfo.tex: Sync with texinfo.
58333
58334         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
58335         strtoul.c from libc, to merge coreutils whitespace changes.
58336
58337         * config/srclist.txt: Get the following m4 files from gettext:
58338         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
58339         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
58340         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
58341         wint_t.m4.
58342
58343 2003-08-12  Karl Berry  <karl@gnu.org>
58344
58345         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
58346         been made.
58347
58348 2003-08-11  Paul Eggert  <eggert@twinsun.com>
58349
58350         * modules/gnu-source, m4/gnu-source.m4:
58351         Remove; we're assuming Autoconf 2.54 or later now.
58352         Suggested by Bruno Haible.
58353         * MODULES.html.sh (func_all_modules): Remove gnu-source.
58354
58355 2003-08-11  Bruno Haible  <bruno@clisp.org>
58356
58357         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
58358
58359 2003-08-11  Bruno Haible  <bruno@clisp.org>
58360
58361         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
58362         (vasnprintf): Use it instead of wcslen.
58363
58364 2003-08-11  Bruno Haible  <bruno@clisp.org>
58365
58366         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
58367         value to ensure that _Bool promotes to int. Use #define for _Bool when
58368         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
58369
58370 2003-08-10  Karl Berry  <karl@gnu.org>
58371
58372         * lib/regex.h: update from libc (whitespace fix).
58373
58374 2003-08-09  Paul Eggert  <eggert@twinsun.com>
58375
58376         Merge some files from coreutils.  These changes were
58377         originally made by Jim Meyering.
58378         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
58379         many older Unixes require this.
58380         * lib/alloca.c (alloca): Remove cast to argument of free;
58381         no longer needed in C89.
58382         * lib/alloca_.h, regex.h: Fix white space to match
58383         what GNU indent does.
58384
58385 2003-08-09  Paul Eggert  <eggert@twinsun.com>
58386
58387         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
58388         apparently Emacs's Unicode mode got confused before my 2003-08-05
58389         checkin.
58390
58391 2003-08-08  Paul Eggert  <eggert@twinsun.com>
58392
58393         * m4/extensions.m4: New file.
58394         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
58395         Require gl_USE_SYSTEM_EXTENSIONS.
58396         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
58397         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
58398
58399 2003-08-08  Paul Eggert  <eggert@twinsun.com>
58400
58401         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
58402         * modules/extensions, modules/gnu-source: New files.
58403         * modules/timespec, modules/unlocked-io: Depend on extensions.
58404
58405 2003-08-07  Paul Eggert  <eggert@twinsun.com>
58406
58407         * modules/restrict: New file.
58408         * MODULES.html.sh (func_all_modules): Add restrict.
58409         * modules/regex: Depend on restrict.
58410
58411 2003-08-07  Paul Eggert  <eggert@twinsun.com>
58412
58413         * m4/restrict.m4: New file.
58414         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
58415
58416 2003-08-07  Bruno Haible  <bruno@clisp.org>
58417
58418         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
58419         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
58420
58421 2003-08-07  Bruno Haible  <bruno@clisp.org>
58422
58423         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
58424         makes the module 'getndelim2' compatible with the module 'getline'.
58425
58426 2003-08-05  Paul Eggert  <eggert@twinsun.com>
58427
58428         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
58429         byte with "\201" to avoid glitches when editing that source file
58430         with multi-gnome-terminal.
58431
58432 2003-08-05  Paul Eggert  <eggert@twinsun.com>
58433
58434         * lib/bumpalloc.h: Remove.
58435
58436 2003-08-05  Paul Eggert  <eggert@twinsun.com>
58437
58438         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
58439         * modules/bumpalloc: Remove.
58440
58441 2003-08-04  Paul Eggert  <eggert@twinsun.com>
58442
58443         * lib/getloadavg.c: Change copyright notice and spacing to conform to
58444         GNU coding style.
58445
58446         Merge from coreutils.
58447         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
58448         1. From glibc.
58449         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
58450         from Karl Berry, implemented by Jim Meyering.
58451         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
58452         from Dmitry V. Levin.
58453         Remove anachronistic cast of xrealloc.
58454         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
58455         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
58456         type. Otherwise, it wouldn't compile with at least /bin/cc on
58457         ymp-cray-unicos9.0.2.X.
58458         Combine two mostly-identical uses of alloca into one.
58459         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
58460
58461 2003-08-04  Dave Love  <d.love@dl.ac.uk>
58462
58463         [From Emacs.]
58464
58465         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
58466         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
58467         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
58468         obsolete NLIST_NAME_UNION.
58469         [__GNU__]: Undef BSD and FSCALE.
58470         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
58471
58472 2003-08-03  Paul Eggert  <eggert@twinsun.com>
58473
58474         * lib/stdbool_.h (_Bool): Make it signed char, instead of
58475         an enum type, so that it's guaranteed to promote to int.  See:
58476         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
58477
58478 2003-08-03  Karl Berry  <karl@gnu.org>
58479
58480         * config/depcomp: update from automake.
58481
58482 2003-07-31  Paul Eggert  <eggert@twinsun.com>
58483
58484         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
58485         (strerror): Don't assume that a printable int fits in 14 bytes.
58486
58487 2003-07-31  Bruno Haible  <bruno@clisp.org>
58488
58489         * modules/getpass-gnu: New file.
58490         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
58491
58492 2003-07-31  Bruno Haible  <bruno@clisp.org>
58493
58494         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
58495
58496 2003-07-24  Karl Berry  <karl@gnu.org>
58497
58498         * config/missing: update from automake.
58499
58500 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
58501             Bruno Haible  <bruno@clisp.org>
58502
58503         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
58504         * lib/getline.c (getline, getdelim): Likewise.
58505         Remove _GNU_SOURCE define; now it's defined in config.h through
58506         m4/getline.m4.
58507
58508 2003-07-23  Karl Berry  <karl@gnu.org>
58509
58510         * config/config.sub: update from prep.
58511
58512 2003-07-22  Paul Eggert  <eggert@twinsun.com>
58513
58514         * modules/xalloc (Depends-on): Add exitfail.
58515         * modules/xmemcoll: Likewise.
58516
58517 2003-07-22  Paul Eggert  <eggert@twinsun.com>
58518
58519         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
58520         over-parenthesization in macros.
58521
58522         Sync with coreutils.
58523
58524         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
58525         required by C99.
58526
58527         Use `exit_failure' for xalloc and xmemcoll instead of their own
58528         private exit-failure variables.
58529         * lib/xalloc.h (xalloc_exit_failure): Remove.
58530         * lib/xmalloc.c: Likewise.  Include exitfail.h.
58531         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
58532         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
58533         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
58534         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
58535
58536 2003-07-20  Jim Meyering  <jim@meyering.net>
58537
58538         * modules/closeout (Depends-on): Add exitfail.
58539         Suggestion from Bruno Haible.
58540
58541 2003-07-19  Karl Berry  <karl@gnu.org>
58542
58543         * config/config.sub: update from prep.
58544
58545 2003-07-18  Paul Eggert  <eggert@twinsun.com>
58546
58547         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
58548         Remove.
58549         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
58550         to test that it can stand by itself.  Include "exitfail.h".
58551         Clients should set exit_failure instead.
58552         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
58553
58554 2003-07-18  Bruno Haible  <bruno@clisp.org>
58555
58556         * modules/getndelim2: New file.
58557         * modules/getline: Share files with module getndelim2.
58558         * modules/getnline: Depend on getndelim2 instead of sharing files with
58559         it. Add getnline.c to lib_SOURCES.
58560         * MODULES.html.sh (func_all_modules): Add getndelim2.
58561
58562 2003-07-18  Bruno Haible  <bruno@clisp.org>
58563
58564         * m4/getndelim2.m4: New file.
58565         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
58566         invoke gl_PREREQ_GETNDELIM2.
58567         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
58568         gl_PREREQ_GETNDELIM2.
58569         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
58570         gl_GETNDELIM2.
58571
58572 2003-07-18  Bruno Haible  <bruno@clisp.org>
58573
58574         * lib/getndelim2.h: New file.
58575         * lib/getndelim2.c: Make into a module of its own. Include config.h,
58576         getndelim2.h.
58577         (getndelim2): Make non-static. Change return type to ssize_t.
58578         * lib/getline.h: Change argument names.
58579         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
58580         * lib/getnline.c: Include getndelim2.h.
58581
58582 2003-07-18  Andreas Schwab  <schwab@suse.de>
58583
58584         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
58585
58586 2003-07-17  Karl Berry  <karl@gnu.org>
58587
58588         * config/config.sub: update from prep.
58589
58590 2003-07-17  Bruno Haible  <bruno@clisp.org>
58591
58592         * modules/getnline: New file.
58593         * modules/getline: Add lib/getndelim2.c to source file list.
58594         * MODULES.html.sh (func_all_modules): Add getnline.
58595
58596 2003-07-17  Bruno Haible  <bruno@clisp.org>
58597
58598         * m4/getnline.m4: New file.
58599
58600 2003-07-17  Bruno Haible  <bruno@clisp.org>
58601
58602         * m4/Makefile.am.in: Remove file.
58603         * m4/Makefile.am: Remove file.
58604         * m4/Makefile.in: Remove file.
58605
58606 2003-07-17  Bruno Haible  <bruno@clisp.org>
58607
58608         * lib/getnline.h: New file.
58609         * lib/getnline.c: New file.
58610         * lib/getndelim2.c: New file, extracted from getline.c.
58611         (getndelim2): Renamed from getdelim2, with added nmax argument.
58612         * lib/getline.c: Include getndelim2.c.
58613         (getdelim2): Moved out to getndelim2.c.
58614         (getline, getdelim): Update.
58615
58616 2003-07-17  Bruno Haible  <bruno@clisp.org>
58617
58618         * lib/Makefile.am: Remove file.
58619         * lib/Makefile.in: Remove file.
58620
58621 2003-07-17  Bruno Haible  <bruno@clisp.org>
58622
58623         * configure.in: Remove file.
58624         * Makefile.in: Remove file.
58625
58626 2003-07-17  Bruno Haible  <bruno@clisp.org>
58627
58628         * MODULES.html.sh: Put the </BODY> right before </HTML>.
58629
58630 2003-07-16  Karl Berry  <karl@gnu.org>
58631
58632         * config/srclist-update: was running fixlicense twice, which caused
58633                 texinfo.tex to be nullified for some reason.  Simplify,
58634                 $gplsrc is no longer needed as far as I can see?
58635
58636 2003-07-16  Jim Meyering  <jim@meyering.net>
58637
58638         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
58639
58640 2003-07-15  Paul Eggert  <eggert@twinsun.com>
58641
58642         * config/srclist.txt: Get the following files from gettext-runtime/intl
58643         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
58644         ref-del.sin.  From Bruno Haible.
58645         * config/srclist-update (fixfile): Change grep pattern again, since the
58646         previous fix didn't work (there was another trailing $).  Use
58647         '[$]' to escape the $s.
58648
58649 2003-07-15  Karl Berry  <karl@gnu.org>
58650
58651         * lib/vasnprintf.c: update from gettext.
58652
58653 2003-07-15  Karl Berry  <karl@gnu.org>
58654
58655         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
58656         gets expanded when surrounded by '$'.
58657
58658 2003-07-15  Jim Meyering  <jim@meyering.net>
58659
58660         * modules/save-cwd: Don't depend on error.  From Derek Price.
58661
58662 2003-07-15  Jim Meyering  <jim@meyering.net>
58663
58664         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
58665
58666 2003-07-14  Simon Josefsson  <jas@extundo.com>
58667
58668         * modules/mempcpy: New file.
58669         * MODULES.html.sh (func_all_modules): Add mempcpy.
58670
58671 2003-07-14  Simon Josefsson  <jas@extundo.com>
58672
58673         * m4/mempcpy.m4: New file.
58674
58675 2003-07-14  Simon Josefsson  <jas@extundo.com>
58676
58677         * lib/mempcpy.h: New file.
58678         * lib/mempcpy.c: New file.
58679
58680 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58681
58682         * modules/getdate, modules/posixtm: Depend on mktime.
58683
58684 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58685
58686         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
58687         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
58688         unicodeio.c, unicodeio.h, unlocked-io.h:
58689         Switch from LGPL to GPL.
58690
58691 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58692
58693         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
58694         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
58695         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
58696         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
58697         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
58698         updated automatically by ../config/srclist-update.  This changes
58699         their license from LPGL to GPL.
58700
58701 2003-07-14  Paul Eggert  <eggert@twinsun.com>
58702
58703         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
58704         assumed to refer to the root of the most recent stable gettext version.
58705         * config/srclistvars.sh: Add defaults for eggert.
58706         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
58707         Match "This program" as well as "The program".  This is needed
58708         for gettext.
58709
58710 2003-07-14  Jim Meyering  <jim@meyering.net>
58711
58712         Don't emit diagnostics.  Let callers do that.
58713         * lib/save-cwd.c: Don't include "error.h".
58714         (save_cwd): Don't call error.  Ensure that errno is valid
58715         when returning nonzero.
58716
58717         * lib/save-cwd.h (restore_cwd): Update prototype.
58718         * lib/save-cwd.c (restore_cwd): Remove two parameters.
58719         Simplify.  Don't call error upon failure.  Let callers do that.
58720         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
58721         when auditing is enabled.  But don't bother updating the #if.
58722
58723 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
58724
58725         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
58726         it breaks C++ compilation.
58727         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
58728
58729 2003-07-10  Simon Josefsson  <jas@extundo.com>
58730
58731         * modules/strchrnul (Makefile.am): Add strchrnul.h.
58732
58733 2003-07-10  Jim Meyering  <jim@meyering.net>
58734
58735         * m4/clock_time.m4: Remove trailing blank.
58736         * m4/intmax_t.m4: Likewise.
58737
58738 2003-07-10  Jim Meyering  <jim@meyering.net>
58739
58740         * lib/vasnprintf.c: Remove trailing blanks.
58741         Make cpp indentation consistent.
58742
58743 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58744
58745         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
58746         posixver.c, strftime.c, strnlen.c, strverscmp.c:
58747         Switch from LGPL to GPL.
58748
58749 2003-07-09  Paul Eggert  <eggert@twinsun.com>
58750
58751         * config/srclist.txt: Sort sublists.  Add
58752         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
58753         that differ from gnulib for one reason or another; we'd like this list
58754         to be smaller but for now let's document what we have.
58755
58756 2003-07-08  Paul Eggert  <eggert@twinsun.com>
58757
58758         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
58759         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
58760         and sweeter "eval x=$x".
58761         * config/srclist.txt: Get lib/argp* from glibc.
58762
58763 2003-07-07  Paul Eggert  <eggert@twinsun.com>
58764
58765         * lib/mktime.c: Fix some boundary cases and remove need for floating
58766         point.
58767
58768         Issue a compile-time diagnostic if time_t is floating point, or if
58769         two's complement arithmetic is not in effect, or if arithmetic
58770         right shift does not propagate the sign.  These assumptions were
58771         all in the original code but they weren't checked.
58772
58773         (TIME_T_MIDPOINT, verify): New macros.
58774         (__isleap): Remove; it has integer overflow problems.
58775         (leapyear): New function, without those problems.
58776         (ydhms_tm_diff): Remove; splitting into two parts.
58777         (ydhms_diff): New function, containing the arithmetic part of
58778         the old ydhms_tm_diff function.  Issue a compile-time
58779         diagnostic if we are not using C99 integer division.
58780         Avoid casts when possible.
58781         (guess_time_tm): New function, containing the checking part of
58782         the old ydhms_tm_diff function.  Return the new value, rather than
58783         the difference between it and the old.  Accept a new argument T
58784         so that *T specifies the old value.  Check for overflow in the result.
58785
58786         (__mktime_internal): Use a time_t offset, not a long int offset.
58787         This undoes the 2003-06-04 change, which is no longer needed now
58788         that we have better overflow checking.
58789         (localtime_offset): Likewise.
58790
58791         (__mktime_internal): Avoid harmful overflow on hosts where time_t
58792         and long are 64-bit but int is only 32-bit.
58793         (ydhms_diff): Use long int to store year1 and yday1.
58794         Issue a compile-time diagnostic if long int is not wide enough.
58795
58796         (__mktime_internal): Use long int to store adjusted year and yday.
58797         Use plain C rather than preprocessor commands, if that doesn't
58798         affect efficiency.
58799         Check for overflow (and try to repair) after each probe
58800         rather than checking only at the very end.  This avoids some bugs
58801         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
58802         does not equal GMT offset at maximum time).
58803         Use integer to check for overflow rather than floating point; this
58804         is more portable to non-IEEE hosts, and is a tad faster.
58805         When we detect that we are oscillating between two values,
58806         don't check whether tm_isdst has the requested value, since
58807         we already know the answer.  When tm_isdst has the wrong value,
58808         use a different heuristic to find the right one, based on the
58809         extreme values actually observed in practice in tz2003a,
58810         rather than the (overly optimistic) "previous 3 calendar quarters".
58811
58812         (not_equal_tm, print_tm, check_result): Use "const T" rather than
58813         "T const" to accommodate glibc style.
58814         (check_result): Use less-confusing report format.  "long" -> "long int.
58815         (main): Likewise.
58816         Don't loop if the iteration overflows time_t.
58817         Allow a negative step in the iteration.
58818
58819 2003-07-06  Karl Berry  <karl@gnu.org>
58820
58821         * config/depcomp: update from automake.
58822         * config/config.sub: update from prep.
58823
58824 2003-07-03  Karl Berry  <karl@gnu.org>
58825
58826         * config/config.guess: update from prep.
58827
58828 2003-07-01  Paul Eggert  <eggert@twinsun.com>
58829
58830         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
58831         xreadlink.c now includes it unconditionally.
58832
58833 2003-07-01  Paul Eggert  <eggert@twinsun.com>
58834
58835         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
58836         having it depend on HAVE_SYS_TYPES_H.
58837
58838 2003-07-01  Bruno Haible  <bruno@clisp.org>
58839
58840         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
58841         <sys/types.h> should be sufficient.
58842         Reported by Paul Eggert.
58843
58844 2003-06-26  Karl Berry  <karl@gnu.org>
58845
58846         * config/depcomp: update from automake.
58847
58848 2003-06-26  Bruno Haible  <bruno@clisp.org>
58849
58850         * modules/human: Depend on module stdbool.
58851
58852 2003-06-25  Bruno Haible  <bruno@clisp.org>
58853
58854         * modules/readlink: New file.
58855         * modules/xreadlink: Depend on it.
58856         * MODULES.html.sh (func_all_modules): Add readlink.
58857
58858 2003-06-25  Bruno Haible  <bruno@clisp.org>
58859
58860         * m4/readlink.m4: New file.
58861
58862 2003-06-25  Bruno Haible  <bruno@clisp.org>
58863
58864         * lib/readlink.c: New file.
58865
58866 2003-06-22  Karl Berry  <karl@gnu.org>
58867
58868         * config/srclist.txt: update mkinstalldirs from automake.
58869         * config/mkinstalldirs: update.
58870
58871 2003-06-22  Bruno Haible  <bruno@clisp.org>
58872
58873         Portability to mingw32.
58874         * m4/ssize_t.m4: New file, from GNU gettext.
58875         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
58876         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
58877
58878 2003-06-22  Bruno Haible  <bruno@clisp.org>
58879
58880         * modules/safe-read: Add m4/ssize_t.m4.
58881         * modules/xreadlink: Add m4/ssize_t.m4.
58882
58883 2003-06-20  Bruno Haible  <bruno@clisp.org>
58884
58885         Assume C89, so PARAMS isn't needed.
58886         * lib/unicodeio.h (PARAMS): Remove.
58887         * lib/unicodeio.c: Don't use PARAMS.
58888
58889 2003-06-18  Karl Berry  <karl@gnu.org>
58890
58891         * config/config.{guess,sub}: update from prep.
58892
58893 2003-06-18  Jim Meyering  <jim@meyering.net>
58894
58895         Merge changes from coreutils.
58896         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
58897         Remove explicit declarations of xmalloc and realloc.
58898         Include xalloc.h.
58899         (read_utmp): Remove anachronistic cast of xmalloc.
58900
58901 2003-06-17  Paul Eggert  <eggert@twinsun.com>
58902
58903         Assume C89, so PARAMS isn't needed.
58904         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
58905         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
58906         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
58907         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
58908         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
58909         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
58910         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
58911         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
58912         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
58913         lib/xstrtod.h, lib/xstrtol.h: Likewise.
58914         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
58915         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
58916         no longer needed. Anyway, config.h should always be included before any
58917         other file.
58918
58919 2003-06-11  Simon Josefsson  <jas@extundo.com>
58920
58921         * modules/sysexits: New file.
58922         * MODULES.html.sh (func_all_modules): Add sysexits.
58923
58924 2003-06-11  Simon Josefsson  <jas@extundo.com>
58925
58926         * lib/sysexit_.h: New file.
58927
58928 2003-06-11  Derek Price  <derek@ximbiot.com>
58929
58930         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
58931         necessary.
58932
58933 2003-06-11  Bruno Haible  <bruno@clisp.org>
58934
58935         * m4/sysexits.m4: New file.
58936
58937 2003-06-10  Simon Josefsson  <jas@extundo.com>
58938
58939         * lib/argp.h: New file, from glibc.
58940         * lib/argp-ba.c: New file, from glibc.
58941         * lib/argp-eexst.c: New file, from glibc.
58942         * lib/argp-fmtstream.c: New file, from glibc.
58943         * lib/argp-fmtstream.h: New file, from glibc.
58944         * lib/argp-fs-xinl.c: New file, from glibc.
58945         * lib/argp-help.c: New file, from glibc.
58946         * lib/argp-namefrob.h: New file, from glibc.
58947         * lib/argp-parse.c: New file, from glibc.
58948         * lib/argp-pv.c: New file, from glibc.
58949         * lib/argp-pvh.c: New file, from glibc.
58950         * lib/argp-xinl.c: New file, from glibc.
58951
58952 2003-06-10  Simon Josefsson  <jas@extundo.com>
58953
58954         * modules/strchrnul: New file.
58955
58956 2003-06-10  Simon Josefsson  <jas@extundo.com>
58957
58958         * modules/argp: New file.
58959
58960 2003-06-10  Simon Josefsson  <jas@extundo.com>
58961
58962         * m4/strchrnul.m4: New file.
58963
58964 2003-06-10  Simon Josefsson  <jas@extundo.com>
58965
58966         * lib/strchrnul.h: New file.
58967         * lib/strchrnul.c: New file.
58968
58969 2003-06-10  Bruno Haible  <bruno@clisp.org>
58970
58971         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
58972
58973 2003-06-07  Karl Berry  <karl@gnu.org>
58974
58975         * config/config.{guess,sub}: update from prep.
58976
58977 2003-06-07  Jim Meyering  <jim@meyering.net>
58978
58979         * modules/strtod: Use $(...) notation, not @...@ for
58980         AC_REPLACE'd variables.
58981         * modules/localcharset: Likewise.
58982
58983 2003-06-07  Jim Meyering  <jim@meyering.net>
58984
58985         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
58986         in place of my name in the copyright comment.
58987         Remove definition and uses of __P.
58988
58989         From coreutils.
58990         * lib/stat.c: Don't declare xmalloc explicitly.
58991         Instead, include "xalloc.h".
58992         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
58993         xrealloc, and xcalloc return values.
58994         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
58995         Improve comment.
58996         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
58997
58998 2003-06-07  Bruno Haible  <bruno@clisp.org>
58999
59000         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
59001         avoid AC_CONFIG_LINKS.
59002         * modules/fnmatch (Makefile.am): Use explicit creation rule for
59003         fnmatch.h, to avoid AC_CONFIG_LINKS.
59004         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
59005
59006 2003-06-07  Bruno Haible  <bruno@clisp.org>
59007
59008         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
59009         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
59010         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
59011         directory.
59012         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
59013         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
59014         directory.
59015
59016 2003-06-06  Jim Meyering  <jim@meyering.net>
59017
59018         Merge from coreutils.
59019         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
59020         Consolidate declarations and initializations of *_base* locals.
59021
59022         Merge from coreutils.
59023         This avoids a core dump on systems without GNU putenv,
59024         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
59025         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
59026         (unsetenv): New static function, from GNU libc.
59027         (rpl_putenv): Use it.
59028
59029         * lib/modechange.c: Remove trailing blanks.
59030
59031         Merge from coreutils.
59032         * lib/fsusage.c: Remove declaration of statfs.
59033         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
59034
59035         * lib/posixtm.c: Include <stdbool.h> unconditionally.
59036
59037 2003-06-06  Jim Meyering  <jim@meyering.net>
59038
59039         * lib/stdbool_.h: Renamed from stdbool.h.in.
59040
59041 2003-06-06  Jim Meyering  <jim@meyering.net>
59042             Bruno Haible  <bruno@clisp.org>
59043
59044         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
59045         Adjust Makefile.am snippet not to redirect directly to target.
59046         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
59047
59048 2003-06-05  Paul Eggert  <eggert@twinsun.com>
59049
59050         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
59051         mismatch, look in future quarters as well as past.  This fixes a
59052         bug when processing fall-backwards gaps immediately after a long
59053         period of daylight-saving time.
59054
59055         * lib/mktime.c: Assume freestanding C89 or better.
59056         (HAVE_LIMITS_H): Remove.  Assume it's 1.
59057         (__P): Remove; not used.
59058         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
59059         (mktime, not_equal_tm, print_tm, check_result,
59060         main): Use prototypes.  Use const * where appropriate.
59061         (main): Fix typo in testing code that uncovered by above changes.
59062         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
59063
59064 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59065
59066         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
59067         locale.h, localeconv.  This merges changes from coreutils.
59068
59069         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
59070         It can be removed after the next Autoconf is released.
59071         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
59072         needed.
59073
59074 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59075
59076         * lib/mktime.c: Fix Debian bug 177940
59077         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
59078         (localtime_offset): Now long int, not time_t, because we want it
59079         to be guaranteed to be signed.  All uses changed.
59080         (__mktime_internal): If overflow would occur when adding offset,
59081         don't add it.
59082
59083         Merge 'human' changes from coreutils.  Rewrite to support
59084         locale-specific notations like thousands separators.
59085         * lib/human.c: Simplify authorship notice.
59086         Include human.h immediately after config.h.
59087         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
59088         <limits.h>: Do not include, since human.h does.
59089         (SIZE_MAX, UINTMAX_MAX): New macros.
59090         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
59091         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
59092         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
59093         (power_letter): Renamed from suffixes.
59094         (generate_suffix_backwards): Remove.
59095         (adjust_value): Now takes int style (because of human.h changes)
59096         and long double value (for greater precision on some platforms).
59097         (group_number): New function.
59098         (human_readable): Use it.  Use integer options, not enum.
59099         Put the options before the sizes in the arg list.
59100         Support all the new options.
59101         The old human_readable function has been removed;
59102         use inttostr.h instead.
59103         (human_readable, default_block_size, humblock):
59104         Use uintmax_t, not int, for block sizes.
59105         (human_readable_inexact, block_size_types): Remove.
59106         (block_size_opts): New constant.
59107         (human_options): Renamed from human_block_size, with new signature
59108         that allows block sizes up to UINTMAX_MAX.  All callers changed.
59109         * lib/human.h: Add copyright and authorship notice.
59110         Include <limits.h> and <stdbool.h> unconditionally.
59111         (PARAMS): Remove.  All uses removed.
59112         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
59113         (enum human_inexact_style): Remove tag; now a nameless enum.
59114         (human_floor, human_ceiling, human_round_to_even): Now have
59115         values 2, 0, 1 rather than -1, 1, 0.
59116         (human_group_digits, human_suppress_point_zero, human_autoscale,
59117         human_base_1024, human_SI, human_B): New constants.
59118         (human_readable_inexact, human_block_size): Remove.
59119         (human_readable): Size args are now uintmax_t, not int.
59120         (human_options): New decl.
59121
59122         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
59123         unnecessary now that we assume C89 or better.  This change
59124         imported from coreutils.
59125
59126         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
59127         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
59128         in the 2003-05-30 sync from glibc.
59129
59130         .h files should stand alone, but we shouldn't include <sys/types.h>
59131         if we can get away with just <stddef.h>.
59132
59133         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
59134         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
59135         rather than <sys/types.h>, as we merely need size_t.
59136         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
59137         to get size_t.
59138         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
59139         Include <stdio.h>, to get FILE.
59140         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
59141         memcasecmp.h has included <stddef.h> and all we need is size_t.
59142         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
59143         our interface, instead of including <sys/types.h>
59144
59145 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59146
59147         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
59148         now, as glibc mktime is buggy on non-glibc systems.
59149
59150 2003-06-03  Karl Berry  <karl@gnu.org>
59151
59152         * config/config.sub: update from prep.
59153
59154 2003-06-02  Paul Eggert  <eggert@twinsun.com>
59155
59156         [from coreutils]
59157         Fix some minor time-related bugs with POSIX time arguments.
59158         Some valid time stamps were being rejected (notably -1, and
59159         time stamps before 1900 on 64-bit hosts).  And some invalid
59160         time stamps were being accepted, e.g. September 31.
59161
59162         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
59163         that we can return (time_t) -1 successfully.
59164         * lib/posixtm.c: Likewise.
59165         [HAVE_STDBOOL_H]: Include <stdbool.h>.
59166         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
59167         (t): Remove static var.
59168         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
59169         of static var.  All uses changed.
59170         (year): Do not reject years before 1900; they can occur with
59171         64-bit time_t.
59172         (posix_time_parse): Do not check for out-of-range components;
59173         that is now the caller's responsibility, since our checks were
59174         only approximations.
59175         (posixtime): Use mktime to check for out-of-range components,
59176         since it knows them exactly.
59177         If mktime returns (time_t) -1, check whether an error actually occurred
59178         by invoking localtime on -1.
59179         (main) [TEST_POSIXTIME]: Check for input data errors, and report
59180         posixtime failures better.
59181         Improve the test data (in comments only).
59182
59183 2003-06-02  Karl Berry  <karl@gnu.org>
59184
59185         * config/mkinstalldirs (version): new variable.
59186         (--version): new option.
59187         (usage): improve message.
59188
59189 2003-05-30  Karl Berry  <karl@gnu.org>
59190
59191         * lib/mktime.c: update from libc.
59192
59193 2003-05-30  Bruno Haible  <bruno@clisp.org>
59194
59195         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
59196         * config/config.rpath: Upgrade to gettext-0.12.1.
59197
59198 2003-05-30  Bruno Haible  <bruno@clisp.org>
59199
59200         * m4/gettext.m4: Upgrade to gettext-0.12.1.
59201         * m4/nls.m4: New file, from gettext-0.12.1.
59202         * m4/po.m4: New file, from gettext-0.12.1.
59203         * m4/progtest.m4: Upgrade to gettext-0.12.1.
59204
59205 2003-05-30  Bruno Haible  <bruno@clisp.org>
59206
59207         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
59208         * lib/localcharset.h: Likewise.
59209         * lib/localcharset.c: Likewise.
59210
59211 2003-05-29  Karl Berry  <karl@gnu.org>
59212
59213         * config/config.rpath: update from gettext.
59214
59215 2003-05-28  Paul Eggert  <eggert@twinsun.com>
59216
59217         Assume the headers required for C89 freestanding compilers.
59218         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
59219         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
59220         * m4/human.m4 (gl_HUMAN): Likewise.
59221         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
59222         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
59223         * m4/userspec.m4 (gl_USERSPEC): Likewise.
59224         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
59225         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
59226         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
59227
59228 2003-05-28  Paul Eggert  <eggert@twinsun.com>
59229
59230         Assume the headers required for C89 freestanding compilers.
59231         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
59232         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
59233         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
59234         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
59235         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
59236         define, since <limits.h> is guaranteed to do that.
59237         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
59238         * lib/exclude.c: Include <stdbool.h> unconditionally.
59239         * lib/tempname.c: Include <stddef.h> unconditionally.
59240         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
59241         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
59242         <stddef.h> does that.
59243         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
59244         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
59245         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
59246         needed.
59247         * lib/xstrtol.c: Likewise.
59248         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
59249         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
59250
59251         * lib/addext.c (addext): Use assignment rather than cast, to avoid
59252         warnings on some platforms.
59253
59254         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
59255         arbitrarily.
59256
59257 2003-05-26  Jim Meyering  <jim@meyering.net>
59258
59259         Merge in a change from coreutils:
59260         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
59261         that is guaranteed to be `no'.  Use `no_such_member' to indicate
59262         that condition, rather than `-1' which is slightly misleading.
59263         Change the name of the cache variable to have the gl_ prefix.
59264         Prompted by a patch from Richard Dawe for DJGPP.
59265
59266 2003-05-24  Karl Berry  <karl@gnu.org>
59267
59268         * config/config.guess: update from prep.
59269
59270 2003-05-22  Karl Berry  <karl@gnu.org>
59271
59272         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
59273
59274 2003-05-20  Karl Berry  <karl@gnu.org>
59275
59276         * config/config.guess: update from prep.
59277
59278 2003-05-18  Karl Berry  <karl@gnu.org>
59279
59280         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
59281         might actually be set by the user.
59282
59283         * config/depcomp, install-sh, mdate-sh: update from automake.
59284
59285 2003-05-17  Bruno Haible  <bruno@clisp.org>
59286
59287         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
59288         invalid expansion for AC_EGREP_CPP.
59289         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
59290         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
59291         Suggested by Akim Demaille <akim@epita.fr> in
59292         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
59293
59294 2003-05-12  Jim Meyering  <jim@meyering.net>
59295
59296         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
59297         the space-padded-by-default conversion specifiers, %e, %k, %l.
59298
59299 2003-05-12  Bruno Haible  <bruno@clisp.org>
59300
59301         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
59302         the string is longer than 4 KB.
59303
59304 2003-05-11  Karl Berry  <karl@gnu.org>
59305
59306         * config/config.{guess,sub}: update from prep.
59307
59308 2003-05-09  Bruno Haible  <bruno@clisp.org>
59309
59310         * modules/error: Add m4/strerror_r.m4 to file list.
59311
59312 2003-05-03  Bruno Haible  <bruno@clisp.org>
59313
59314         Upgrade to Unicode-4.0.
59315         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
59316         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
59317         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
59318         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
59319         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
59320         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
59321         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
59322         Change width of U+E0100..U+E01EF from 1 to 0.
59323
59324 2003-04-25  Jim Meyering  <jim@meyering.net>
59325
59326         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
59327         of type size_t, not int.
59328
59329 2003-04-25  Bruno Haible  <bruno@clisp.org>
59330
59331         * lib/copy-file.c: Include <stddef.h>, for size_t.
59332
59333 2003-04-21  Paul Eggert  <eggert@twinsun.com>
59334
59335         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
59336         code which expansion is under static control.  Patch imported from
59337         Akim Demaille's patch to Bison; see
59338         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
59339
59340 2003-04-14  Bruno Haible  <bruno@clisp.org>
59341
59342         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
59343
59344 2003-04-11  Jim Meyering  <jim@meyering.net>
59345
59346         Merge changes from Coreutils.
59347
59348         2003-03-22  Jim Meyering  <jim@meyering.net>
59349
59350         * lib/strftime.c (widen): Cast alloca return value to proper type.
59351
59352         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
59353
59354         From GNU libc.
59355         * lib/strftime.c (my_strftime): Handle very large width
59356         specifications for numeric values correctly.  Improve checks for
59357         overflow.
59358
59359         2003-01-19  Jim Meyering  <jim@meyering.net>
59360
59361         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
59362         definitions.
59363         (nl_get_alt_digit) [! defined my_strftime]: Define.
59364         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
59365         _nl_get_alt_digit and _nl_get_walt_digit.
59366
59367         * lib/strftime.c (my_strftime): Merge in locale-related changes from
59368         libc. These changes have no effect outside of _LIBC.
59369
59370 2003-04-10  Bruno Haible  <bruno@clisp.org>
59371
59372         * modules/findprog: New file.
59373         * MODULES.html.sh (func_all_modules): Add it.
59374
59375 2003-04-10  Bruno Haible  <bruno@clisp.org>
59376
59377         * m4/findprog.m4: New file.
59378         * m4/eaccess.m4: New file.
59379
59380 2003-04-10  Bruno Haible  <bruno@clisp.org>
59381
59382         * lib/findprog.h: New file, from GNU gettext.
59383         * lib/findprog.c: New file, from GNU gettext.
59384
59385 2003-04-05  Jim Meyering  <jim@meyering.net>
59386
59387         Merge changes from Coreutils.
59388
59389         * lib/exclude.h (PARAMS): Remove definition and uses.
59390         * lib/exclude.c: Remove uses of `PARAMS'.
59391
59392         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
59393         Add test-cases for DOS filenames. Declare program_name.
59394         (main): Set up program_name.  Patch by Rich Dawe.
59395
59396         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
59397         error from mntctl.
59398         Use mntctl's return value to drive the entry-processing loop, since
59399         we can't rely on the value of the vmt_length member in the last
59400         entry.  On some systems doing so could result in exhausting
59401         virtual memory.  Based in part on a patch from Mike Jetzer.
59402
59403 2003-04-04  Bruno Haible  <bruno@clisp.org>
59404
59405         * modules/linebreak: New file.
59406         * MODULES.html.sh (func_all_modules): Add it.
59407
59408 2003-04-04  Bruno Haible  <bruno@clisp.org>
59409
59410         * m4/linebreak.m4: New file.
59411
59412 2003-04-04  Bruno Haible  <bruno@clisp.org>
59413
59414         * lib/linebreak.h: New file, from GNU gettext.
59415         * lib/linebreak.c: New file, from GNU gettext with slight
59416         modifications.
59417         * lib/lbrkprop.h: New file, from GNU gettext.
59418
59419 2003-04-03  Bruno Haible  <bruno@clisp.org>
59420
59421         * modules/utf8-ucs4: New file.
59422         * modules/utf16-ucs4: New file.
59423         * modules/ucs4-utf8: New file.
59424         * modules/ucs4-utf16: New file.
59425         * MODULES.html.sh (func_all_modules): Add them.
59426
59427 2003-04-03  Bruno Haible  <bruno@clisp.org>
59428
59429         * m4/utf-ucs4.m4: New file.
59430         * m4/ucs4-utf.m4: New file.
59431
59432 2003-04-03  Bruno Haible  <bruno@clisp.org>
59433
59434         * lib/utf8-ucs4.h: New file, from GNU gettext.
59435         * lib/utf16-ucs4.h: New file, from GNU gettext.
59436         * lib/ucs4-utf8.h: New file, from GNU gettext.
59437         * lib/ucs4-utf16.h: New file, from GNU gettext.
59438
59439 2003-04-02  Bruno Haible  <bruno@clisp.org>
59440
59441         * modules/binary-io: New file.
59442         * MODULES.html.sh (func_all_modules): Add it.
59443
59444 2003-04-02  Bruno Haible  <bruno@clisp.org>
59445
59446         * lib/binary-io.h: New file, from GNU gettext.
59447
59448 2003-04-01  Bruno Haible  <bruno@clisp.org>
59449
59450         * modules/pathname: New file.
59451         * MODULES.html.sh (func_all_modules): Add it.
59452
59453 2003-04-01  Bruno Haible  <bruno@clisp.org>
59454
59455         * lib/pathname.h: New file, from GNU gettext.
59456         * lib/concatpath.c: New file, from GNU gettext.
59457
59458 2003-03-30  Bruno Haible  <bruno@clisp.org>
59459
59460         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
59461
59462 2003-03-30  Bruno Haible  <bruno@clisp.org>
59463
59464         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
59465         function chown() doesn't exist.
59466
59467 2003-03-28  Bruno Haible  <bruno@clisp.org>
59468
59469         * modules/copy-file: New file.
59470         * MODULES.html.sh (func_all_modules): Add it.
59471
59472 2003-03-28  Bruno Haible  <bruno@clisp.org>
59473
59474         * m4/copy-file.m4: New file.
59475
59476 2003-03-28  Bruno Haible  <bruno@clisp.org>
59477
59478         * lib/copy-file.h: New file, from GNU gettext.
59479         * lib/copy-file.c: New file, from GNU gettext.
59480
59481 2003-03-18  Jim Meyering  <jim@meyering.net>
59482
59483         * lib/quote.c (quote_n): Fix typo in comment.
59484
59485 2003-03-18  Bruno Haible  <bruno@clisp.org>
59486
59487         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
59488         checking.
59489         * m4/onceonly_2_57.m4: Likewise.
59490
59491 2003-03-17  Bruno Haible  <bruno@clisp.org>
59492
59493         * m4/onceonly.m4: Require autoconf 2.54 or newer.
59494         (m4_quote): Remove macro.
59495         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
59496
59497 2003-03-14  Jim Meyering  <jim@meyering.net>
59498
59499         Merge changes from Coreutils.
59500         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
59501         to be const, in order to avoid warnings.
59502         (obstack_room): Likewise.
59503         (obstack_empty_p): Likewise.
59504
59505 2003-03-14  Bruno Haible  <bruno@clisp.org>
59506
59507         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
59508         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
59509
59510 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59511
59512         Merge changes from Bison.
59513         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
59514         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
59515         when compiling Bison 1.875's `bitset bset = obstack_alloc
59516         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
59517         * lib/hash.c: Include <stdbool.h> unconditionally.
59518
59519 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59520
59521         * m4/onceonly.m4 (m4_quote): New macro.
59522         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
59523         Quote AC_FOREACH variable-expansions properly.
59524
59525 2003-03-13  Paul Eggert  <eggert@twinsun.com>
59526
59527         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
59528
59529 2003-03-09  Paul Eggert  <eggert@twinsun.com>
59530
59531         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
59532         Reported by Bruce Becker; see:
59533         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
59534
59535 2003-03-03  Paul Eggert  <eggert@twinsun.com>
59536             Bruno Haible  <bruno@clisp.org>
59537
59538         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
59539         Reported by John Hughes, see
59540         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
59541
59542 2003-02-20  Bruno Haible  <bruno@clisp.org>
59543
59544         * MODULES.html.sh (func_all_modules): Add poll.
59545
59546 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59547
59548         * modules/poll: New file.
59549
59550 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59551
59552         * lib/poll_.h: New file.
59553         * lib/poll.c: New file.
59554
59555 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
59556
59557         * m4/poll.m4: New file.
59558
59559 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59560
59561         * modules/mathl: New file.
59562
59563 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59564
59565         * lib/mathl.h: New file.
59566         * lib/acosl.c: New file.
59567         * lib/asinl.c: New file.
59568         * lib/atanl.c: New file.
59569         * lib/ceill.c: New file.
59570         * lib/cosl.c: New file.
59571         * lib/expl.c: New file.
59572         * lib/floorl.c: New file.
59573         * lib/frexpl.c: New file.
59574         * lib/ldexpl.c: New file.
59575         * lib/logl.c: New file.
59576         * lib/sincosl.c: New file.
59577         * lib/sinl.c: New file.
59578         * lib/sqrtl.c: New file.
59579         * lib/tanl.c: New file.
59580         * lib/trigl.c: New file.
59581         * lib/trigl.h: New file.
59582
59583 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
59584
59585         * m4/mathl.m4: New file.
59586
59587 2003-02-18  Bruno Haible  <bruno@clisp.org>
59588
59589         * MODULES.html.sh (func_all_modules): Add mathl.
59590
59591 2003-02-17  Bruno Haible  <bruno@clisp.org>
59592
59593         * modules/mkdtemp: New module.
59594         * MODULES.html.sh (func_all_modules): Add it.
59595
59596 2003-02-17  Bruno Haible  <bruno@clisp.org>
59597
59598         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
59599
59600 2003-02-17  Bruno Haible  <bruno@clisp.org>
59601
59602         * lib/mkdtemp.h: New file, from GNU gettext.
59603         * lib/mkdtemp.c: New file, from GNU gettext.
59604
59605 2003-02-02  Jim Meyering  <jim@meyering.net>
59606
59607         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
59608         e.g. glibc-2.2.93.
59609
59610 2003-01-31  Bruno Haible  <bruno@clisp.org>
59611
59612         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
59613         'rpl_rename'.
59614         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
59615         'rpl_strnlen'.
59616         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
59617         'rpl_strtod'.
59618         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
59619         'rpl_utime'.
59620
59621 2003-01-31  Bruno Haible  <bruno@clisp.org>
59622
59623         * lib/rename.c: #undef rename before defining rpl_rename.
59624         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
59625
59626 2003-01-30  Bruno Haible  <bruno@clisp.org>
59627
59628         * modules/vasnprintf, modules/vasprintf: New modules.
59629         * MODULES.html.sh (func_all_modules): Add them.
59630
59631 2003-01-30  Bruno Haible  <bruno@clisp.org>
59632
59633         * m4/signed.m4: New file, from GNU gettext.
59634         * m4/longdouble.m4: New file, from GNU gettext.
59635         * m4/wchar_t.m4: New file, from GNU gettext.
59636         * m4/wint_t.m4: New file, from GNU gettext.
59637         * m4/vasnprintf.m4: New file.
59638         * m4/vasprintf.m4: New file.
59639
59640 2003-01-30  Bruno Haible  <bruno@clisp.org>
59641
59642         * lib/printf-args.h: New file, from GNU gettext.
59643         * lib/printf-args.c: New file, from GNU gettext.
59644         * lib/printf-parse.h: New file, from GNU gettext.
59645         * lib/printf-parse.c: New file, from GNU gettext.
59646         * lib/vasnprintf.h: New file, from GNU gettext.
59647         * lib/vasnprintf.c: New file, from GNU gettext.
59648         * lib/asnprintf.c: New file, from GNU gettext.
59649         * lib/vasprintf.h: New file, from GNU gettext with modifications.
59650         * lib/vasprintf.c: New file, from GNU gettext.
59651         * lib/asprintf.c: New file, from GNU gettext.
59652
59653 2003-01-29  Bruno Haible  <bruno@clisp.org>
59654
59655         * modules/stpncpy: New module.
59656         * MODULES.html.sh (func_all_modules): Add it.
59657
59658 2003-01-29  Bruno Haible  <bruno@clisp.org>
59659
59660         * m4/stpncpy.m4: New file.
59661
59662 2003-01-29  Bruno Haible  <bruno@clisp.org>
59663
59664         * lib/stpncpy.h: New file, from GNU gettext with modifications.
59665         * lib/stpncpy.c: New file, from GNU gettext with modifications.
59666
59667 2003-01-28  Bruno Haible  <bruno@clisp.org>
59668
59669         * modules/c-ctype: New module.
59670         * MODULES.html.sh (func_all_modules): Add it.
59671
59672 2003-01-28  Bruno Haible  <bruno@clisp.org>
59673
59674         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
59675         Paul Eggert.
59676         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
59677         Paul Eggert.
59678
59679 2003-01-27  Bruno Haible  <bruno@clisp.org>
59680
59681         * modules/xsetenv: New module.
59682         * MODULES.html.sh (func_all_modules): Add it.
59683
59684 2003-01-27  Bruno Haible  <bruno@clisp.org>
59685
59686         * lib/xsetenv.h: New file, from GNU gettext.
59687         * lib/xsetenv.c: New file, from GNU gettext.
59688
59689 2003-01-23  Jim Meyering  <jim@meyering.net>
59690
59691         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
59692         from working on systems without dirfd (at least Irix and OSF1/Tru64).
59693
59694 2003-01-23  Bruno Haible  <bruno@clisp.org>
59695
59696         * modules/minmax: New module.
59697         * MODULES.html.sh (func_all_modules): Add it.
59698
59699 2003-01-23  Bruno Haible  <bruno@clisp.org>
59700
59701         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
59702         Eggert.
59703
59704 2003-01-22  Bruno Haible  <bruno@clisp.org>
59705
59706         * modules/exit: New module.
59707         * MODULES.html.sh (func_all_modules): Add it.
59708
59709 2003-01-22  Bruno Haible  <bruno@clisp.org>
59710
59711         * lib/exit.h: New file, from GNU gettext.
59712
59713 2003-01-19  Bruno Haible  <bruno@clisp.org>
59714
59715         * gnulib-tool: Recognize option --extract-maintainer.
59716         (func_get_maintainer): New function.
59717         * modules/*: Add Maintainer entry.
59718
59719 2003-01-16  Jim Meyering  <jim@meyering.net>
59720
59721         * m4/regex.m4: The `regex' struct is both input and output.
59722         Initialize it before each use.  Patch by Tim Waugh.
59723
59724 2003-01-16  Bruno Haible  <bruno@clisp.org>
59725
59726         * MODULES.html.sh: Add a table of contents. Add the module name as
59727         leftmost column. Add hyperlinks.
59728
59729 2003-01-15  Bruno Haible  <bruno@clisp.org>
59730
59731         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
59732
59733 2003-01-15  Bruno Haible  <bruno@clisp.org>
59734
59735         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
59736         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
59737         suffix.
59738
59739 2003-01-15  Bruno Haible  <bruno@clisp.org>
59740
59741         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
59742
59743 2003-01-15  Bruno Haible  <bruno@clisp.org>
59744
59745         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
59746         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
59747
59748 2003-01-14  Jim Meyering  <jim@meyering.net>
59749
59750         * lib/same.c (same_name): Tweak a comment.
59751
59752 2003-01-14  Bruno Haible  <bruno@clisp.org>
59753
59754         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
59755         when a string comparison is sufficient.
59756
59757 2003-01-14  Bruno Haible  <bruno@clisp.org>
59758
59759         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
59760         'unsigned int'.
59761
59762 2003-01-14  Bruno Haible  <bruno@clisp.org>
59763
59764         * lib/hash-pjw.c: Add comment about low quality of this function.
59765
59766 2003-01-13  Bruno Haible  <bruno@clisp.org>
59767
59768         * modules/stpcpy: Distribute lib/stpcpy.h.
59769         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
59770
59771 2003-01-13  Bruno Haible  <bruno@clisp.org>
59772
59773         * modules/*: Add a description.
59774         * modules/strpbrk: Fix Makefile.am snippet.
59775         * modules/strtoimax: Fix dependencies.
59776         * modules/strtoumax: Likewise.
59777
59778 2003-01-13  Bruno Haible  <bruno@clisp.org>
59779
59780         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
59781         * modules/alloca (Makefile.am): All object files depend on alloca.h.
59782         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
59783
59784 2003-01-13  Bruno Haible  <bruno@clisp.org>
59785
59786         * gnulib-tool (func_create_testdir): Store config/* files in the main
59787         directory.
59788         * config.rpath: Move to ...
59789         * config/config.rpath: ... here.
59790         * modules/gettext: Contains config/config.rpath, not config.rpath.
59791         * modules/iconv: Likewise.
59792
59793 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59794
59795         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59796         to avoid collisions with libcurses and libreadline.
59797
59798         * m4/getstr.m4: Remove.
59799         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
59800
59801 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59802
59803         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59804         to avoid collisions with libcurses and libreadline.
59805
59806         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
59807         * lib/getstr.h, getstr.c: Remove.
59808         * lib/getline.c: Include "getline.h", to check interface.
59809         Move body of old getstr.c here: this defines MIN_CHUNK and
59810         declares getdelim2, which is renamed from getstr.
59811         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
59812
59813         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
59814         All uses changed.
59815         * lib/linebuffer.h: Likewise.
59816         (readline): Remove backward-compatibility macro.
59817
59818 2003-01-12  Paul Eggert  <eggert@twinsun.com>
59819
59820         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
59821         to avoid collisions with libcurses and libreadline.
59822         * getstr: Remove.
59823         * MODULES.html.sh: Remove getstr.
59824         * modules/getline: Depend on unlocked-io, not getstr.
59825
59826 2003-01-12  Jim Meyering  <jim@meyering.net>
59827
59828         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
59829
59830 2003-01-10  Bruno Haible  <bruno@clisp.org>
59831
59832         * modules/alloca: Change Makefile.am requirements. Simplify Include
59833         requirements. Add lib/alloca_.h to file list.
59834
59835 2003-01-10  Bruno Haible  <bruno@clisp.org>
59836
59837         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
59838
59839 2003-01-10  Bruno Haible  <bruno@clisp.org>
59840
59841         * lib/alloca_.h: New file.
59842         * lib/getdate.y: Unconditionally include alloca.h.
59843         * lib/makepath.c: Likewise.
59844         * lib/setenv.c: Likewise.
59845         * lib/userspec.c: Likewise.
59846
59847 2003-01-09  Karl Berry  <karl@gnu.org>
59848
59849         * MODULES.html.sh: include `dirname $0` in PATH, to find
59850         gnulib-tool.
59851
59852 2003-01-09  Bruno Haible  <bruno@clisp.org>
59853
59854         * modules/stdbool: Change configure.ac, Makefile.am requirements.
59855         Simplify Include requirements. Add lib/stdbool.h.in to file list.
59856
59857 2003-01-09  Bruno Haible  <bruno@clisp.org>
59858
59859         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
59860
59861 2003-01-09  Bruno Haible  <bruno@clisp.org>
59862
59863         * lib/stdbool.h.in: New file.
59864
59865 2003-01-09  Bruno Haible  <bruno@clisp.org>
59866
59867         * gnulib-tool (func_all_modules): Ignore files ending in ~.
59868         * MODULES.html.sh: Likewise.
59869
59870 2003-01-08  Jim Meyering  <jim@meyering.net>
59871
59872         * lib/full-write.c: Undefine and define-away `const' after inclusion
59873         of errno.h, not before.  Suggestion from Bruno Haible.
59874
59875 2003-01-08  Bruno Haible  <bruno@clisp.org>
59876
59877         * modules/full-read: Depend on full-write.
59878
59879 2003-01-08  Bruno Haible  <bruno@clisp.org>
59880
59881         * lib/safe-read.c: Include specification header first, to ensure its
59882         selfcontainedness.
59883         * lib/full-write.c: Likewise.
59884
59885 2003-01-07  Jim Meyering  <jim@meyering.net>
59886
59887         * lib/full-write.c: Rework so that it may serve to define full_read,
59888         too.
59889         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
59890
59891 2003-01-07  Bruno Haible  <bruno@clisp.org>
59892
59893         * lib/strtoimax.c: Include <stdint.h> as an alternative to
59894         <inttypes.h>.
59895         * lib/xstrtol.h: Likewise.
59896         * lib/xstrtoimax.c: Likewise.
59897         * lib/xstrtoumax.c: Likewise.
59898         * lib/human.h: Likewise.
59899
59900         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
59901         on systems that have <inttypes.h> but not <stdint.h>.
59902
59903 2003-01-07  Bruno Haible  <bruno@clisp.org>
59904
59905         * MODULES.html.sh: Add copyright notice.
59906         (missed_files): Omit CVS directory entries.
59907         (func_module): Make it work with sed-3.02.
59908         * MODULES.txt: Remove file.
59909
59910 2003-01-06  Jim Meyering  <jim@meyering.net>
59911
59912         * lib/version-etc.c: Update year in translatable copyright string.
59913
59914 2003-01-03  Karl Berry  <karl@gnu.org>
59915
59916         * config/config.{guess,sub}: update from prep.
59917
59918 2003-01-02  Karl Berry  <karl@gnu.org>
59919
59920         * doc/COPYING.DOC: belatedly updated to 1.2.
59921
59922 2003-01-01  Karl Berry  <karl@gnu.org>
59923
59924         * gnulib-tool (func_verify_module): report module name $module in
59925         error message, not $1.
59926         * gnulib-tool (create-testdir): don't complain if destdir couldn't
59927         be created, only if it doesn't exist.
59928         * gnulib-tool (last_checkin_date): don't expand the $Date here.
59929
59930 2002-12-31  Paul Eggert  <eggert@twinsun.com>
59931
59932         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
59933
59934 2002-12-31  Paul Eggert  <eggert@twinsun.com>
59935
59936         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
59937         memcmp if strcoll doesn't work.
59938
59939 2002-12-31  Bruno Haible  <bruno@clisp.org>
59940
59941         * lib/utime.c (utime_null): No need to call ftruncate if the file was
59942         nonempty.
59943
59944 2002-12-31  Bruno Haible  <bruno@clisp.org>
59945
59946         * lib/memcoll.c (STRCOLL): New macro.
59947         (memcoll): Use it.
59948
59949 2002-12-31  Bruno Haible  <bruno@clisp.org>
59950
59951         * lib/localcharset.h: New file.
59952         * lib/localcharset.c: Include it.
59953         * lib/unicodeio.c: Likewise.
59954
59955 2002-12-31  Bruno Haible  <bruno@clisp.org>
59956
59957         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
59958         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
59959
59960 2002-12-31  Bruno Haible  <bruno@clisp.org>
59961
59962         * lib/getline.h: Include <stddef.h>, for size_t.
59963
59964         * lib/unicodeio.h: Include <stddef.h>, for size_t.
59965         * lib/unicodeio.c: Don't include <stddef.h>.
59966
59967 2002-12-31  Bruno Haible  <bruno@clisp.org>
59968
59969         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
59970         HAVE_TM_ZONE.
59971
59972 2002-12-24  Karl Berry  <karl@gnu.org>
59973
59974         * config/config.guess: update from prep.
59975
59976 2002-12-24  Bruno Haible  <bruno@clisp.org>
59977
59978         General infrasructure.
59979         * m4/README: Rewritten.
59980         * m4/onceonly.m4: New file.
59981         * m4/onceonly_2_57.m4: New file.
59982
59983         Module atexit.
59984         * m4/atexit.m4: New file.
59985
59986         Module strtod.
59987         * m4/strtod.m4: New file.
59988
59989         Module strtol.
59990         * m4/strtol.m4: New file.
59991
59992         Module strtoul.
59993         * m4/strtoul.m4: New file.
59994
59995         Module memchr.
59996         * m4/memchr.m4: New file.
59997
59998         Module memcmp.
59999         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
60000         (jm_FUNC_MEMCMP): Invoke it.
60001
60002         Module memcpy.
60003         * m4/memcpy.m4: New file.
60004
60005         Module memmove.
60006         * m4/memmove.m4: New file.
60007
60008         Module memset.
60009         * m4/memset.m4: New file.
60010
60011         Module strcspn.
60012         * m4/strcspn.m4: New file.
60013
60014         Module strpbrk.
60015         * m4/strpbrk.m4: New file.
60016
60017         Module strstr.
60018         * m4/strstr.m4: New file.
60019
60020         Module strerror.
60021         * m4/strerror.m4: New file.
60022
60023         Module mktime.
60024         * m4/mktime.m4: Renamed from jm-mktime.m4.
60025         (gl_PREREQ_MKTIME): New macro.
60026         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
60027
60028         Module malloc.
60029         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
60030         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
60031         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
60032
60033         Module realloc.
60034         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
60035         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
60036         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
60037
60038         Module strftime.
60039         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
60040         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
60041         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
60042         gl_TM_GMTOFF.
60043         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
60044
60045         Module xalloc.
60046         * m4/xalloc.m4: New file.
60047
60048         Module alloca.
60049         * m4/alloca.m4: New file.
60050
60051         Module putenv.
60052         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
60053         (jm_FUNC_PUTENV): Invoke it.
60054
60055         Module setenv.
60056         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
60057         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
60058         when invoked twice.
60059         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
60060         gt_FUNC_SETENV.
60061
60062         Module memrchr.
60063         * m4/memrchr.m4: New file.
60064
60065         Module stpcpy.
60066         * m4/stpcpy.m4: New file.
60067
60068         Module strcase.
60069         * m4/strcase.m4: New file.
60070
60071         Module strdup.
60072         * m4/strdup.m4: New file.
60073
60074         Module strnlen.
60075         * m4/strnlen.m4: New file.
60076
60077         Module strndup.
60078         * m4/strndup.m4: New file.
60079
60080         Module xstrtod.
60081         * m4/xstrtod.m4: New file.
60082
60083         Module xstrtol.
60084         * m4/xstrtol.m4: New file.
60085
60086         Module getdate.
60087         * m4/getdate.m4: New file.
60088
60089         Module unlocked-io.
60090         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
60091         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
60092         * m4/jm-glibc-io.m4n: Remove file.
60093
60094         Module long-options.
60095         * m4/long-options.m4: New file.
60096
60097         Module md5.
60098         * m4/md5.m4: New file.
60099
60100         Module sha.
60101         * m4/sha.m4: New file.
60102
60103         Module getstr.
60104         * m4/getstr.m4: New file.
60105
60106         Module getline.
60107         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
60108         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
60109         <sys/types.h>, for size_t. Use the function name gnu_getline, not
60110         simply getline. Infoke gl_PREREQ_GETLINE.
60111
60112         Module obstack.
60113         * m4/obstack.m4: New file.
60114
60115         Module hash.
60116         * m4/hash.m4: New file.
60117
60118         Module readtokens.
60119         * m4/readtokens.m4: New file.
60120
60121         Module strverscmp.
60122         * m4/strverscmp.m4: New file.
60123
60124         Module stdbool.
60125         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
60126         OSF/1.
60127
60128         Module strtoll.
60129         * m4/strtoll.m4: New file.
60130
60131         Module strtoull.
60132         * m4/strtoull.m4: New file.
60133
60134         Module strtoimax.
60135         * m4/strtoimax.m4: New file.
60136
60137         Module strtoumax.
60138         * m4/strtoumax.m4: New file.
60139
60140         Module xstrtoimax.
60141         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
60142         jm_AC_PREREQ_XSTRTOIMAX.
60143         Moved the strtol prerequisites to strtol.m4.
60144         Moved the strtoll prerequisites to strtoll.m4.
60145         Moved the strtoimax prerequisites to strtoimax.m4.
60146
60147         Module xstrtoumax.
60148         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
60149         jm_AC_PREREQ_XSTRTOUMAX.
60150         Moved the strtoul prerequisites to strtoul.m4.
60151         Moved the strtoull prerequisites to strtoull.m4.
60152         Moved the strtoumax prerequisites to strtoumax.m4.
60153
60154         Module chown.
60155         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
60156         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
60157
60158         Module dup2.
60159         * m4/dup2.m4: New file.
60160
60161         Module ftruncate.
60162         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
60163         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
60164
60165         Module getgroups.
60166         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
60167         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
60168
60169         Module gettimeofday.
60170         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
60171         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
60172         gl_PREREQ_GETTIMEOFDAY.
60173
60174         Module mkdir.
60175         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
60176         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
60177
60178         Module mkstemp.
60179         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
60180         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
60181         jm_AC_TYPE_UINTMAX_T.
60182         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
60183
60184         Module stat.
60185         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
60186         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
60187
60188         Module lstat.
60189         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
60190         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
60191
60192         Module timespec.
60193         * m4/timespec.m4 (gl_TIMESPEC): New macro.
60194         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
60195         * m4/st_mtim.m4: Indentation.
60196
60197         Module nanosleep.
60198         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
60199         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
60200         gl_PREREQ_NANOSLEEP.
60201
60202         Module regex.
60203         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
60204         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
60205         (gl_REGEX): New macro.
60206
60207         Module rename.
60208         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
60209         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
60210
60211         Module rmdir.
60212         * m4/rmdir.m4: New file.
60213
60214         Module utime.
60215         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
60216         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
60217         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
60218
60219         Module dirname.
60220         * m4/dirname.m4: New file.
60221
60222         Module getopt.
60223         * m4/getopt.m4: New file.
60224
60225         Module unistd-safer.
60226         * m4/unistd-safer.m4: New file.
60227
60228         Module fnmatch.
60229         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
60230         declaration.
60231         (gl_PREREQ_FNMATCH_EXTRA): New macro.
60232         (gl_FUNC_FNMATCH_POSIX): New macro.
60233         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
60234         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
60235         simply fnmatch.
60236
60237         Module exclude.
60238         * m4/exclude.m4: New file.
60239
60240         Module human.
60241         * m4/human.m4: New file.
60242
60243         Module acl.
60244         * m4/acl.m4: Nop.
60245
60246         Module backupfile.
60247         * m4/backupfile.m4: New file.
60248         * m4/d-ino.m4: Indentation.
60249
60250         Module fsusage.
60251         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
60252         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
60253         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
60254
60255         Module dirfd.
60256         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
60257         requirements.
60258
60259         Module euidaccess.
60260         * m4/euidaccess.m4: New file.
60261
60262         Module file-type.
60263         * m4/file-type.m4: New file.
60264
60265         Module fileblocks.
60266         * m4/fileblocks.m4: New file.
60267
60268         Module filemode.
60269         * m4/filemode.m4: New file.
60270
60271         Module isdir.
60272         * m4/isdir.m4: New file.
60273
60274         Module lchown.
60275         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
60276         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
60277
60278         Module makepath.
60279         * m4/makepath.m4: New file.
60280
60281         Module modechange.
60282         * m4/modechange.m4: New file.
60283
60284         Module mountlist.
60285         * m4/mountlist.m4: New file.
60286         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
60287         Indentation.
60288
60289         Module path-concat.
60290         * m4/path-concat.m4: New file.
60291
60292         Module pathmax.
60293         * m4/pathmax.m4: New file.
60294
60295         Module same.
60296         * m4/same.m4: New file.
60297
60298         Module save-cwd.
60299         * m4/save-cwd.m4: New file.
60300
60301         Module savedir.
60302         * m4/savedir.m4: New file.
60303
60304         Module xgetcwd.
60305         * m4/xgetcwd.m4: New file.
60306         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
60307
60308         Module xreadlink.
60309         * m4/xreadlink.m4: New file.
60310
60311         Module safe-read.
60312         * m4/safe-read.m4: New file.
60313
60314         Module safe-write.
60315         * m4/safe-write.m4: New file.
60316
60317         Module closeout.
60318         * m4/closeout.m4: New file.
60319
60320         Module stdio-safer.
60321         * m4/stdio-safer.m4: New file.
60322
60323         Module getpass.
60324         * m4/getpass.m4: New file.
60325
60326         Module getugroups.
60327         * m4/getugroups.m4: New file.
60328
60329         Module group-member.
60330         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
60331         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
60332
60333         Module idcache.
60334         * m4/idcache.m4: New file.
60335
60336         Module userspec.
60337         * m4/userspec.m4: New file.
60338
60339         Module gettime.
60340         * m4/clock_time.m4: New file.
60341         * m4/gettime.m4: New file.
60342
60343         Module settime.
60344         * m4/settime.m4: New file.
60345
60346         Module posixtm.
60347         * m4/posixtm.m4: New file.
60348
60349         Module gethostname.
60350         * m4/gethostname.m4: New file.
60351
60352         Module canon-host.
60353         * m4/canon-host.m4: New file.
60354
60355         Module gettext.
60356         * m4/codeset.m4: New file, from gettext-0.11.5.
60357         * m4/gettext.m4: New file, from gettext-0.11.5.
60358         * m4/glibc21.m4: New file, from gettext-0.11.5.
60359         * m4/iconv.m4: New file, from gettext-0.11.5.
60360         * m4/intdiv0.m4: New file, from gettext-0.11.5.
60361         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
60362         * m4/inttypes.m4: New file, from gettext-0.11.5.
60363         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
60364         * m4/isc-posix.m4: New file, from gettext-0.11.5.
60365         * m4/lcmessage.m4: New file, from gettext-0.11.5.
60366         * m4/lib-ld.m4: New file, from gettext-0.11.5.
60367         * m4/lib-link.m4: New file, from gettext-0.11.5.
60368         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
60369         * m4/progtest.m4: New file, from gettext-0.11.5.
60370         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
60371         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
60372         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
60373
60374         Module localcharset.
60375         * m4/localcharset.m4: New file.
60376
60377         Module hard-locale.
60378         * m4/hard-locale.m4: New file.
60379
60380         Module mbswidth.
60381         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
60382         onceonly macros.
60383         * m4/mbrtowc.m4: Add comment.
60384
60385         Module memcasecmp.
60386         * m4/memcasecmp.m4: New file.
60387
60388         Module memcoll.
60389         * m4/memcoll.m4: New file.
60390
60391         Module unicodeio.
60392         * m4/unicodeio.m4: New file.
60393
60394         Module rpmatch.
60395         * m4/rpmatch.m4: New file.
60396
60397         Module yesno.
60398         * m4/yesno.m4: New file.
60399
60400         Module exitfail.
60401         * m4/exitfail.m4: New file.
60402
60403         Module c-stack.
60404         * m4/c-stack.m4 (gl_C_STACK): New macro.
60405         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
60406
60407         Module error.
60408         * m4/error.m4 (gl_ERROR): New macro.
60409         (jm_PREREQ_ERROR): Use onceonly macros.
60410
60411         Module fatal.
60412         * m4/fatal.m4: New file.
60413
60414         Module getloadavg.
60415         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
60416         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
60417
60418         Module getpagesize.
60419         * m4/getpagesize.m4: New file.
60420
60421         Module getusershell.
60422         * m4/getusershell.m4: New file.
60423
60424         Module physmem.
60425         * m4/physmem.m4: New file.
60426
60427         Module posixver.
60428         * m4/posixver.m4: New file.
60429
60430         Module quotearg.
60431         * m4/quotearg.m4: New file.
60432
60433         Module quote.
60434         * m4/quote.m4: New file.
60435
60436         Module readutmp.
60437         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
60438
60439         Module sig2str.
60440         * m4/sig2str.m4: New file.
60441
60442         Other.
60443         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
60444         ulonglong.m4.
60445         * m4/intmax_t.m4: New file.
60446         * m4/d-type.m4: Indentation.
60447         * m4/jm-macros.m4: Update.
60448         * m4/prereq.m4 (jm_PREREQ): Update.
60449         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
60450         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
60451         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
60452         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
60453         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
60454         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
60455         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
60456         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
60457         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
60458         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
60459         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
60460         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
60461         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
60462         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
60463         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
60464         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
60465         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
60466         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
60467         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
60468
60469 2002-12-24  Bruno Haible  <bruno@clisp.org>
60470
60471         * MODULES.txt: Update according to m4/ changes.
60472
60473         Module gettext.
60474         * config.rpath: New file, from gettext-0.11.5.
60475
60476         * modules/*: New module descriptions.
60477         * gnulib-tool: New file.
60478         * MODULES.html.sh: New file.
60479
60480 2002-12-21  Karl Berry  <karl@gnu.org>
60481
60482         * doc/fdl.texi: update to version 1.2.
60483
60484 2002-12-19  Karl Berry  <karl@gnu.org>
60485
60486         * config/config.guess: update from prep.
60487
60488 2002-12-18  Bruno Haible  <bruno@clisp.org>
60489
60490         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
60491         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
60492
60493 2002-12-17  Bruno Haible  <bruno@clisp.org>
60494
60495         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
60496         stdlib.h, string.h.
60497
60498 2002-12-17  Bruno Haible  <bruno@clisp.org>
60499
60500         * lib/canon-host.c (strdup): Remove unused declaration.
60501
60502         * lib/fsusage.c: Include full_read.h.
60503         (get_fs_usage): Use full_read instead of safe_read.
60504
60505         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
60506
60507 2002-12-12  Karl Berry  <karl@gnu.org>
60508
60509         * config/config.guess: update from prep.
60510
60511 2002-12-11  Bruno Haible  <bruno@clisp.org>
60512
60513         * m4/setenv.m4: New file, from gettext-0.11.5.
60514
60515 2002-12-11  Bruno Haible  <bruno@clisp.org>
60516
60517         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
60518         not unsetenv().
60519         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
60520         modifications:
60521
60522         2002-12-11  Bruno Haible  <bruno@clisp.org>
60523
60524                 * setenv.c (alloca): Fall back to malloc.
60525                 (freea): New macro.
60526                 (setenv): Use freea() to free memory allocated with alloca().
60527
60528         2002-11-13  Bruno Haible  <bruno@clisp.org>
60529
60530                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
60531                 function declarations.
60532                 * unsetenv.c (unsetenv): Likewise.
60533
60534         2002-03-04  Bruno Haible  <bruno@clisp.org>
60535
60536                 Portability to AIX 4.3.3.
60537                 * unsetenv.c: New file, extracted from setenv.c.
60538                 * setenv.c: Move the unsetenv() function to unsetenv.c.
60539
60540         2001-12-20  Bruno Haible  <bruno@clisp.org>
60541
60542                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
60543                 use malloc instead. For SunOS 4.
60544
60545         2001-12-11  Bruno Haible  <bruno@clisp.org>
60546
60547                 * setenv.c: Declare alloca.
60548                 (compar_fn_t): New typedef.
60549                 (KNOWN_VALUE, STORE_VALUE): Use it.
60550
60551         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
60552         setenv.h.
60553
60554 2002-12-10  Paul Eggert  <eggert@twinsun.com>
60555
60556         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
60557         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
60558         Choose values that are less likely to collide with system fnmatch
60559         options.
60560         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
60561         defined (e.g., a pure POSIX system).
60562         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
60563         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
60564
60565 2002-12-06  Paul Eggert  <eggert@twinsun.com>
60566
60567         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
60568         a pain in practice to deal with generated m4 files.  This change
60569         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
60570
60571         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
60572         and jm-glibc-io.m4, as they are no longer a special case.
60573         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
60574         kludge and the auto-generation stuff.  Check only whether the
60575         functions are declared, not whether they exist, since older hosts
60576         that don't declare the functions can't use the optimization anyway.
60577
60578 2002-12-06  Jim Meyering  <jim@meyering.net>
60579
60580         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
60581
60582         Merge in changes from libc's misc/error.c, in preparation
60583         for the merge of gnulib's changes back into libc.
60584
60585         * lib/error.c (_): Define only if not already defined.
60586         Move definition to follow all #include directives.
60587         Include unlocked-io.h only if !_LIBC.
60588         [_LIBC]: Include <libio/libioP.h>.
60589         [USE_IN_LIBIO]: Include <libio/iolibio.h>
60590         (fflush): Tweak definition to use INTUSE.
60591         (putc): Define.
60592
60593 2002-12-05  Paul Eggert  <eggert@twinsun.com>
60594
60595         * lib/alloca.c [defined emacs]: Include "lisp.h".
60596         (xalloc_die) [defined emacs]: New macro.
60597         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
60598         [! defined emacs]: Include <xalloc.h>.
60599         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
60600         (pointer): Typedef to POINTER_TYPE *.
60601         (malloc): Remove decl; we now always use xmalloc.
60602         (alloca): Use old-style definition, since Emacs needs this.
60603         Check for arithmetic overflow when computing combined size.
60604
60605 2002-12-04  Paul Eggert  <eggert@twinsun.com>
60606
60607         Do not generate unlocked-io.h automatically, since it's easier to
60608         maintain it by hand.
60609
60610         * lib/unlocked-io.h: New file, from GNU diffutils,
60611         but with proper copyright notice and attribution.
60612         * lib/gen-uio: Remove.
60613         * lib/Makefile.am: Add copyright notice.
60614         (libfetish_a_SOURCES): Add unlocked-io.h.
60615         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
60616         (DISTCLEANFILES, io_functions): Remove macros.
60617         (EXTRA_DIST): Remove gen_uio.
60618         (unlocked-io.h): Remove rule.
60619
60620 2002-12-04  Jim Meyering  <jim@meyering.net>
60621
60622         Reflect the fact that stat.c and lstat.c are no longer generated.
60623         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
60624         (DISTCLEANFILES): Likewise.
60625         (EXTRA_DIST): Likewise.
60626         (all_local): Don't depend on stat.c or lstat.c.
60627         (stat.c, lstat.c): Remove rules.
60628         (EXTRA_DIST): Remove xstat.in.
60629
60630         * lib/xstat.in: Remove file.  Contents moved into stat.c.
60631         * lib/stat.c: New file.  Contents mostly from xstat.in.
60632         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
60633         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
60634
60635         * lib/safe-read.c: Rework so that it may serve to define safe_write,
60636         too.
60637         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
60638
60639 2002-12-03  Jim Meyering  <jim@meyering.net>
60640
60641         * lib/safe-read.c, safe-write.c: Change variable names and comments,
60642         but not semantics, to minimize the differences between these two files.
60643         (safe_read): Change comment to mention SAFE_READ_ERROR.
60644
60645         * lib/safe-read.c (IS_EINTR): Define.
60646         (safe_read): Use IS_EINTR in place of in-function cpp directives.
60647
60648 2002-12-02  Jim Meyering  <jim@meyering.net>
60649
60650         * lib/safe-read.c (EINTR): Define.
60651         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
60652         (INT_MAX): Provide fallback.
60653         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
60654
60655         * lib/safe-read.h (SAFE_READ_ERROR): Define.
60656
60657 2002-12-02  Bruno Haible  <bruno@clisp.org>
60658
60659         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
60660         Define, taken from safe-read.c.
60661         (INT_MAX): Provide fallback.
60662         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
60663         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
60664
60665         * lib/safe-read.c (EINTR): Remove definition.
60666         (safe_read): Don't use EINTR if it is absent.
60667
60668 2002-12-01  Jim Meyering  <jim@meyering.net>
60669
60670         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
60671         zero.
60672         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
60673
60674 2002-11-27  Paul Eggert  <eggert@twinsun.com>
60675
60676         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
60677         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
60678         with `if (! (value < limit)) abort ();', for readability.
60679
60680 2002-11-26  Karl Berry  <karl@gnu.org>
60681
60682         * lib/strdup.c: copy from libc again, with jim's ok.
60683         * lib/.cppi-disable: re-add strdup.c
60684
60685 2002-11-25  Karl Berry  <karl@gnu.org>
60686
60687         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
60688         instead of "strtol.c".
60689
60690 2002-11-25  Karl Berry  <karl@gnu.org>
60691
60692         * config/install-sh: update from automake for variable quoting, $0 in
60693         error msgs, etc.
60694
60695         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
60696         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
60697         entry.
60698
60699 2002-11-25  Jim Meyering  <jim@meyering.net>
60700
60701         * lib/mktime.c: Sync from libc, now that it has the latest fix.
60702
60703 2002-11-24  Karl Berry  <karl@gnu.org>
60704
60705         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
60706         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
60707
60708 2002-11-24  Jim Meyering  <jim@meyering.net>
60709
60710         Update from coreutils:
60711
60712         * lib/mktime.c: Merge in changes from libc.
60713
60714         Avoid a link-time failure on some Linux systems.
60715         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
60716         (otherwise).
60717         (__mon_yday): Declare with the STATIC attribute.
60718         (__mktime_internal): Likewise.
60719         Based on a report from Greg Schafer.
60720
60721 2002-11-23  Jim Meyering  <jim@meyering.net>
60722
60723         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
60724         Use `unsigned', not `int', as type of index.
60725
60726         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
60727
60728         * lib/fsusage.c: Remove unneeded parentheses around operands of
60729         `defined'.
60730
60731 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60732
60733         * lib/quotearg.h: Allow multiple inclusion by surrounding with
60734         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
60735         so that we can be included first.
60736         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
60737         * lib/quotearg.c: Include quotearg.h immediately after config.h.
60738         No need to include stddef.h or sys/types.h any more.
60739         Surround local include files with "", not "<>".
60740         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
60741         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
60742         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
60743         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
60744         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
60745         (ISPRINT): Remove; no longer needed now that we assume C89.
60746
60747         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
60748         Preserve errno.
60749
60750         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
60751         quotearg_char): Use SIZE_MAX rather than
60752         (size_t) -1 when we are talking about "infinity".
60753
60754         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
60755
60756 2002-11-22  Paul Eggert  <eggert@twinsun.com>
60757
60758         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
60759         hint that one should use `if (! x) abort ();' rather than `assert
60760         (x);', and anyway it's one less thing to worry about configuring.
60761         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
60762         hash_rehash, hash_insert): Use abort rather than assert.
60763
60764 2002-11-22  Bruno Haible  <bruno@clisp.org>
60765
60766         * lib/safe-read.h: Assume C89. Add comments.
60767         (safe_read): Change return type to size_t.
60768         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
60769         byte counts > SSIZE_MAX correctly.
60770         * lib/safe-write.h: New file.
60771         * lib/safe-write.c: New file.
60772         * lib/full-read.h: New file.
60773         * lib/full-read.c: New file.
60774         * lib/full-write.h: Assume C89. Add comments.
60775         * lib/full-write.c: Include safe-write.h.
60776         (full_write): Rewritten to use safe_write.
60777         Suggested by Jim Meyering and Paul Eggert.
60778
60779 2002-11-21  Jim Meyering  <jim@meyering.net>
60780
60781         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
60782
60783         Merge in changes from the coreutils.
60784
60785         2002-09-25  Paul Eggert  <eggert@twinsun.com>
60786         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
60787         <stdint.h>.
60788         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
60789         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
60790         int.  Work more efficiently if X is the same width as uintmax_t.
60791         Do not compare X to -1, to avoid bogus compiler warning.
60792         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
60793         Don't assume that f_frsize and f_bsize are the same type.
60794
60795         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
60796         warning on FreeBSD.
60797
60798         * lib/makepath.c (make_path): Restore umask *before* creating the final
60799         component.
60800         (make_path): Minor reformatting.
60801
60802         * lib/xmalloc.c: Adjust to work with new autoconf macros,
60803         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
60804         HAVE_MALLOC/HAVE_REALLOC.
60805
60806         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
60807         dummy ones.  At least on GNU/Linux systems, `auto' means something
60808         else.
60809         From Michael Stone.
60810
60811 2002-11-21  Bruno Haible  <bruno@clisp.org>
60812
60813         Remove case insensitive option matching.
60814         * lib/argmatch.h (argcasematch): Remove declaration.
60815         (ARGCASEMATCH): Remove macro.
60816         (__xargmatch_internal): Remove case_sensitive argument.
60817         (XARGMATCH): Update.
60818         (XARGCASEMATCH): Remove macro.
60819         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
60820         case_sensitive argument.
60821         (argcasematch): Remove function.
60822         (__xargmatch_internal): Remove case_sensitive argument.
60823         (main): Use XARGMATCH instead of XARGCASEMATCH.
60824
60825         * lib/xmalloc.c: Change compile-time error message. Add comment about
60826         required autoconf version.
60827
60828 2002-11-20  Paul Eggert  <eggert@twinsun.com>
60829
60830         Merge argmatch cleanups from Bison.  Assume C89.
60831
60832         * lib/argmatch.c: Include config.h here, not in argmatch.h.
60833         Include stdlib.h, for EXIT_FAILURE.
60834         Always include <string.h>, since we assume C89.
60835         (EXIT_FAILURE): Remove pre-C89 bug workaround.
60836         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
60837         Include <stddef.h> instead, since it's all we need for size_t.
60838         (PARAMS): Remove.  All uses removed.
60839         (ARRAY_CARDINALITY): Do not bother to #undef.
60840         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
60841         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
60842         Remove unnecessary parentheses.
60843         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
60844         Insert necessary parentheses.
60845         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
60846         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
60847
60848 2002-11-19  Bruno Haible  <bruno@clisp.org>
60849
60850         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
60851         * lib/mbswidth.h: Include <stddef.h>, for size_t.
60852
60853         * lib/mbswidth.h (PARAMS): Remove macro.
60854         (mbswidth, mbsnwidth): Use ANSI C function declarations.
60855         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
60856
60857         * lib/gcd.h (PARAMS): Remove macro.
60858         (gcd): Use ANSI C function declarations.
60859         * lib/gcd.c (gcd): Likewise.
60860
60861 2002-11-15  Bruno Haible  <bruno@clisp.org>
60862
60863         * lib/strcspn.c: Include <stddef.h>.
60864         (strcspn): Use ANSI C function declaration. Change return type to
60865         size_t. Use NULL.
60866         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
60867         (strpbrk): Use NULL.
60868         * lib/strpbrk.h (PARAMS): Remove macro.
60869         (strpbrk): Use ANSI C function declaration.
60870         * lib/strstr.c: Don't include <sys/types.h>.
60871         * lib/strstr.h (PARAMS): Remove macro.
60872         (strstr): Use ANSI C function declarations.
60873
60874 2002-11-14  Karl Berry  <karl@gnu.org>
60875
60876         * config/mkinstalldirs: `do' on separate line, instead of
60877         `for var; do'.
60878
60879 2002-11-06  Bruno Haible  <bruno@clisp.org>
60880
60881         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
60882         * lib/gcd.c (gcd): Likewise.
60883
60884 2002-11-05  Bruno Haible  <bruno@clisp.org>
60885
60886         * lib/gcd.h: New file, from gettext-0.11.5.
60887         * lib/gcd.c: New file, from gettext-0.11.5.
60888
60889 2002-11-05  Bruno Haible  <bruno@clisp.org>
60890
60891         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60892         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60893         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60894         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
60895
60896         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
60897         <libintl.h>.
60898         * lib/makepath.c: Include gettext.h instead of <locale.h> and
60899         <libintl.h>.
60900
60901         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
60902         * lib/human.c: Include gettext.h instead of <libintl.h>.
60903         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
60904         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
60905         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
60906         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
60907         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
60908         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
60909         (textdomain): Remove definition.
60910         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
60911
60912         * lib/long-options.c: Remove include of <libintl.h> and definition of
60913         _.
60914         * lib/same.c: Remove include of <libintl.h> and definition of _.
60915
60916 2002-11-04  Owen Taylor  <otaylor@redhat.com>
60917
60918         * lib/config.charset: A few additions for Solaris.
60919
60920 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
60921
60922         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
60923         * lib/localcharset.c (locale_charset): Declare as extern "C".
60924
60925 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
60926
60927         * lib/config.charset: msdos in uk_UA uses CP1125.
60928
60929 2002-11-04  Bruno Haible  <bruno@clisp.org>
60930
60931         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
60932         * lib/strcase.h: New file, from GNU gettext-0.11.5.
60933         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
60934         * lib/strstr.h: New file, from GNU gettext-0.11.5.
60935         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
60936
60937 2002-11-04  Bruno Haible  <bruno@clisp.org>
60938
60939         * lib/localcharset.c (locale_charset): Don't return an empty string.
60940
60941 2002-11-04  Bruno Haible  <bruno@clisp.org>
60942
60943         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
60944         aliases.
60945
60946 2002-11-04  Bruno Haible  <bruno@clisp.org>
60947
60948         * lib/config.charset: Update for newest glibc. Add canonical names
60949         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
60950
60951 2002-11-04  Bruno Haible  <bruno@clisp.org>
60952
60953         * lib/config.charset: Add support for NetBSD.
60954
60955 2002-11-04  Bruno Haible  <bruno@clisp.org>
60956
60957         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
60958
60959 2002-11-01  Bruno Haible  <bruno@clisp.org>
60960
60961         * configure.in: Add AC_CONFIG_AUX_DIR call.
60962         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
60963         test/Makefile.
60964         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
60965
60966 2002-09-28  Karl Berry  <karl@gnu.org>
60967
60968         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
60969         installed automake until the next release, since changes have been
60970         made.
60971
60972 2002-09-25  Karl Berry  <karl@gnu.org>
60973
60974         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
60975         * lib/getopt*: copy from libc/posix.
60976         * lib/gettext.h: copy from gettext.
60977         * lib/.cppi-disable: add strdup.c, gettext.h.
60978
60979 2002-09-25  Karl Berry  <karl@gnu.org>
60980
60981         * config/srclist.txt: enable gettext.h check.
60982         * config/config.{guess,sub}: update from prep.
60983         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
60984                 from automake 1.6.3.
60985         See srclist*.
60986
60987 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
60988
60989         * regex.c (PATFETCH): Remove the translating fetch.
60990         (PATFETCH_RAW): Rename to PATFETCH.
60991         (set_image_of_range): New fun.
60992         (SET_RANGE_TABLE_WORK_AREA): Use it.
60993         (regex_compile): Don't translate the pattern chars so eagerly.
60994         Only do it when inserting an `exactn' bytecode or when handling
60995         a char-range.
60996         (mutually_exclusive_p): Avoid empty statement.
60997
60998 2002-07-06  Jim Meyering  <meyering@lucent.com>
60999
61000         * m4/README: Don't mention Makefile.am.in.
61001         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
61002
61003 2002-07-01  Jim Meyering  <meyering@lucent.com>
61004
61005         * lib/c-stack.c: Include sys/time.h.
61006         From Volker Borchert.
61007
61008 2002-06-26  Paul Eggert  <eggert@twinsun.com>
61009
61010         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
61011
61012 2002-06-26  Paul Eggert  <eggert@twinsun.com>
61013
61014         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
61015         New macro.  Use it uniformly instead of
61016         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
61017         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
61018         reported by Vin Shelton.
61019
61020 2002-06-22  Paul Eggert  <eggert@twinsun.com>
61021
61022         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
61023         Do not assume SA_SIGINFO behavior.
61024         Bug reported by Jim Meyering on NetBSD 1.5.2.
61025
61026 2002-06-22  Jim Meyering  <meyering@lucent.com>
61027
61028         * m4/c-stack.m4: New file, from diffutils-2.8.2.
61029         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
61030
61031         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
61032         now that configure.ac uses AC_GNU_SOURCE.
61033         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
61034         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
61035
61036         Update to latest tools.  Suggestions from Paul Eggert.
61037         * m4/stdbool.m4: New file, from diffutils-2.8.2.
61038         * m4/gnu-source.m4: Update from diffutils-2.8.2.
61039         * m4/fnmatch.m4: Likewise.
61040         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
61041         to AC_HEADER_STDBOOL
61042
61043 2002-06-22  Jim Meyering  <meyering@lucent.com>
61044
61045         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
61046         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
61047
61048 2002-06-22  Jim Meyering  <meyering@lucent.com>
61049
61050         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
61051
61052         * lib/exitfail.c, exitfail.h: Likewise.
61053         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
61054
61055         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
61056         of fnmatch.h.
61057         (EXTRA_DIST): Add fnmatch_loop.c.
61058         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
61059
61060         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
61061         * lib/fnmatch.c: Update from diffutils-2.8.2.
61062         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
61063         * lib/fnmatch.h: Remove file.
61064
61065 2002-06-21  Jim Meyering  <meyering@lucent.com>
61066
61067         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
61068         * m4/mbrtowc.m4: Likewise.
61069
61070         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
61071         * m4/mbswidth.m4: Reflect name change:
61072         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
61073         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
61074
61075         * m4/lib-link.m4: Update from gettext-0.11.2.
61076         * m4/gettext.m4: Likewise.
61077
61078         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
61079         From Alfred M. Szmidt.
61080
61081 2002-06-18  Paul Eggert  <eggert@twinsun.com>
61082
61083         * lib/file-type.h: Report an error if neither S_ISREG nor
61084         S_IFREG is defined, instead of using a test specific to glibc
61085         2.2.  This should be safe, since POSIX requires S_ISREG and
61086         Unix Version 7 had S_IFREG.  We don't need to check for
61087         <sys/types.h> since we don't use any symbols that it defines.
61088
61089 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
61090
61091         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
61092         $@-t, so that each temporary file name is unique and valid in the first
61093         8 characters, for operation under DOS.
61094
61095 2002-06-15  Paul Eggert  <eggert@twinsun.com>
61096
61097         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
61098
61099 2002-06-15  Jim Meyering  <meyering@lucent.com>
61100
61101         Work even with DJGPP 2.03, which lacks support for symlinks.
61102         From Richard Dawe.
61103         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
61104         is defined.
61105         * lib/lchown.c (S_ISLNK): Likewise.
61106
61107 2002-06-15  Jim Meyering  <meyering@lucent.com>
61108
61109         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
61110         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
61111         have been included before this file.
61112
61113 2002-06-14  Jim Meyering  <meyering@lucent.com>
61114
61115         * lib/file-type.h: Use the version from diffutils-2.8.2.
61116         * lib/file-type.c: Likewise.
61117
61118 2002-06-07  Jim Meyering  <meyering@lucent.com>
61119
61120         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
61121         They're needed at least for NetBSD 1.5.2.
61122         ($statxfs_includes): Include those same headers.
61123         ($statxfs_includes): Include sys/vfs.h if available.
61124         ($statxfs_includes): Likewise for sys/statvfs.h.
61125         Check for the following members in both structs statfs and statvfs:
61126         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
61127
61128 2002-06-01  Jim Meyering  <meyering@lucent.com>
61129
61130         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
61131         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
61132
61133 2002-05-28  Jim Meyering  <meyering@lucent.com>
61134
61135         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
61136         Reported by Volker Borchert.
61137
61138 2002-05-27  Jim Meyering  <meyering@lucent.com>
61139
61140         Fix a problem seen only on nonconforming systems whereby ls.c's
61141         use of localtime, and then of gettimeofday would cause trouble:
61142         the localtime call used to initialize rpl_gettimeofday's save
61143         mechanism would clobber ls's current local time information so
61144         that in any long listing the first file would always be listed
61145         with date 1970-01-01.  Analysis by Volker Borchert.
61146
61147         * lib/gettimeofday.c (localtime): Undefine.
61148         (rpl_localtime): New function.
61149
61150 2002-05-27  Jim Meyering  <meyering@lucent.com>
61151
61152         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
61153         localtime.
61154
61155         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
61156         use the replacement function; it wouldn't resolve at link time.
61157         Reported by Volker Borchert.
61158
61159 2002-05-22  Jim Meyering  <meyering@lucent.com>
61160
61161         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
61162         file-type.h.
61163         * lib/file-type.h: New file.
61164         * lib/file-type.c (file_type): New file/function.  Extracted from
61165         diffutils.
61166
61167 2002-04-30  Jim Meyering  <meyering@lucent.com>
61168
61169         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
61170
61171 2002-04-29  Paul Eggert  <eggert@twinsun.com>
61172
61173         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
61174
61175 2002-04-29  Paul Eggert  <eggert@twinsun.com>
61176
61177         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
61178         Do not check for alloca.h (no longer used) or stdbool.h (was never
61179         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
61180
61181 2002-04-29  Paul Eggert  <eggert@twinsun.com>
61182
61183         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
61184
61185 2002-04-29  Jim Meyering  <meyering@lucent.com>
61186
61187         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
61188         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
61189         Use AC_FUNC_STRNLEN here instead.
61190
61191         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
61192         With autoconf-2.53a, it's part of AC_PROG_CC.
61193
61194 2002-04-28  Paul Eggert  <eggert@twinsun.com>
61195
61196         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
61197         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
61198
61199 2002-04-28  Paul Eggert  <eggert@twinsun.com>
61200
61201         * lib/sig2str.h, lib/sig2str.c: New files.
61202         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
61203
61204 2002-04-28  Paul Eggert  <eggert@twinsun.com>
61205
61206         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
61207         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
61208         of 127, since 64 is the largest conceivable number for ancient
61209         nonstandard hosts.
61210         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
61211
61212 2002-04-28  Jim Meyering  <meyering@lucent.com>
61213
61214         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
61215
61216 2002-04-24  Jim Meyering  <meyering@lucent.com>
61217
61218         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
61219         (jm_PREREQ): Use it.
61220
61221         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
61222         mach/mach.h fcntl.h.
61223         Check for this function: setlocale.
61224
61225 2002-04-24  Jim Meyering  <meyering@lucent.com>
61226
61227         * lib/gettext.h: New file, from Gettext.
61228         * lib/Makefile.am (INCLUDES): Remove -I../intl.
61229         (libfetish_a_SOURCES): Add gettext.h.
61230
61231 2002-04-16  Jim Meyering  <meyering@lucent.com>
61232
61233         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
61234         ut_pid, ut_id, ut_exit.
61235
61236 2002-04-16  Jim Meyering  <meyering@lucent.com>
61237
61238         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
61239         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
61240         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
61241
61242 2002-04-12  Jim Meyering  <meyering@lucent.com>
61243
61244         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
61245         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
61246         existence of the getmntinfo function.  Needed for Darwin 5.3.
61247
61248         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
61249         This is necessary at least on Darwin 5.3.
61250
61251         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
61252         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
61253         strnlen.o in the library, and that makes some versions of ranlib
61254         object.
61255
61256 2002-04-12  Jim Meyering  <meyering@lucent.com>
61257
61258         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
61259
61260 2002-04-09  Jim Meyering  <meyering@lucent.com>
61261
61262         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
61263         to be more precise.  Rather than saying we're checking whether the
61264         function `works', say what we're testing.
61265         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
61266         Reported by Bruno Haible.
61267
61268 2002-03-10  Jim Meyering  <meyering@lucent.com>
61269
61270         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
61271         Suggestion from Santiago Vila.
61272
61273 2002-03-08  Jim Meyering  <meyering@lucent.com>
61274
61275         * lib/rename.c: Mention that this wrapper is needed also on
61276         mips-dec-ultrix4.4 systems.
61277
61278 2002-03-02  Jim Meyering  <meyering@lucent.com>
61279
61280         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
61281         not HAVE_CLOCK_SETTIME.
61282
61283 2002-02-27  Paul Eggert  <eggert@twinsun.com>
61284
61285         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
61286         Check for clock_settime.
61287
61288 2002-02-27  Paul Eggert  <eggert@twinsun.com>
61289
61290         * lib/nanosleep.h: Rename to....
61291         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
61292
61293         * lib/gettime.c: New file.
61294         * lib/settime.c: New file.
61295         * lib/stime.c: Remove.
61296
61297         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
61298         timespec.h.  Remove nanosleep.h.
61299
61300 2002-02-25  Paul Eggert  <eggert@twinsun.com>
61301
61302         * m4/acl.m4: New file.
61303         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
61304         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
61305
61306 2002-02-25  Paul Eggert  <eggert@twinsun.com>
61307
61308         * lib/acl.c, lib/acl.h: New files.
61309         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
61310
61311 2002-02-24  Jim Meyering  <meyering@lucent.com>
61312
61313         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
61314         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
61315         cause trouble.  Reported by Nelson Beebe.
61316
61317 2002-02-23  Paul Eggert  <eggert@twinsun.com>
61318
61319         * lib/path-concat.c (xpath_concat): Reorder code to pacify
61320         compilers that don't know that xalloc_die never returns.
61321
61322 2002-02-20  Jim Meyering  <meyering@lucent.com>
61323
61324         * lib/getdate.c: Regenerate using bison-1.33.
61325
61326 2002-02-17  Jim Meyering  <meyering@lucent.com>
61327
61328         * config/config.guess (main): Don't use `head -1'; it's no longer
61329         portable. Use `sed 1q' instead.
61330
61331 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
61332
61333         * m4/codeset.m4: Upgrade to gettext-0.11.
61334         * m4/gettext.m4: Upgrade to gettext-0.11.
61335         * m4/glibc21.m4: Upgrade to gettext-0.11.
61336         * m4/iconv.m4: Upgrade to gettext-0.11.
61337         * m4/isc-posix.m4: Upgrade to gettext-0.11.
61338         * m4/lcmessage.m4: Upgrade to gettext-0.11.
61339         * m4/lib-ld.m4: New file, from gettext-0.11.
61340         * m4/lib-link.m4: New file, from gettext-0.11.
61341         * m4/lib-prefix.m4: New file, from gettext-0.11.
61342         * m4/progtest.m4: Upgrade to gettext-0.11.
61343
61344 2002-02-15  Paul Eggert  <eggert@twinsun.com>
61345
61346         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
61347         (jm_PREREQ): Use it.
61348
61349 2002-02-15  Paul Eggert  <eggert@twinsun.com>
61350
61351         * lib/posixver.c, lib/posixver.h: New files.
61352         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
61353
61354 2002-02-02  Paul Eggert  <eggert@twinsun.com>
61355             Bruno Haible  <bruno@clisp.org>
61356
61357         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
61358         (fwrite_success_callback): New declaration.
61359         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
61360         print_unicode_char. Call failure callback instead of error.
61361         (fwrite_success_callback): New function.
61362         (exit_failure_callback): New function.
61363         (fallback_failure_callback): New function.
61364         (print_unicode_char): Call unicode_to_mb.
61365
61366 2002-01-26  Jim Meyering  <meyering@lucent.com>
61367
61368         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
61369         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
61370
61371 2002-01-26  Jim Meyering  <meyering@lucent.com>
61372
61373         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
61374
61375 2002-01-22  Paul Eggert  <eggert@twinsun.com>
61376
61377         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
61378
61379 2002-01-22  Jim Meyering  <meyering@lucent.com>
61380
61381         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
61382         Otherwise, some versions of automake would omit the rule that makes
61383         Makefile from Makefile.in.
61384
61385 2002-01-21  Paul Eggert  <eggert@twinsun.com>
61386
61387         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
61388         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
61389         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
61390         (memcoll): Set errno to zero if there is no error.
61391
61392         * lib/quotearg.c (quotearg_buffer_restyled):
61393         Fix bug with quoting buffers containing NUL when backslashing escapes.
61394         This bug was exposed by the other changes in this patch.
61395         (quotearg_n_options): New arg ARGSIZE.
61396         All callers changed.
61397         (quoting_options_from_style): New function.
61398         (quotearg_n_style): Use it.
61399         (quotearg_n_style_mem): New function.
61400
61401         * lib/quotearg.h (quotearg_n_style_mem): New function.
61402
61403 2002-01-19  Jim Meyering  <meyering@lucent.com>
61404
61405         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
61406         Remove useless quotes: DF_PROG="df".
61407         * m4/strnlen.m4: New file.
61408
61409 2002-01-16  Paul Eggert  <eggert@twinsun.com>
61410
61411         * lib/backupfile.c (ISDIGIT): Comment fix.
61412         * lib/getdate.y (ISDIGIT): Likewise.
61413         * lib/posixtm.c (ISDIGIT, year): Likewise.
61414         * lib/strverscmp.c (ISDIGIT): Likewise.
61415         * lib/userspec.c (ISDIGIT): Likewise.
61416
61417 2002-01-16  Jim Meyering  <meyering@lucent.com>
61418
61419         * lib/getdate.y: Add three semicolons, each just before a closing
61420         brace. Bison (as of version 1.31) no longer papers over that mistake.
61421
61422 2002-01-05  Jim Meyering  <meyering@lucent.com>
61423
61424         * lib/version-etc.c (version_etc_copyright): Update copyright year.
61425
61426 2001-12-19  Paul Eggert  <eggert@twinsun.com>
61427
61428         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
61429         not silently exit merely because the output buffer happens to
61430         have nothing pending.
61431
61432 2001-12-18  Paul Eggert  <eggert@twinsun.com>
61433
61434         See the big note in ../ChangeLog.
61435         * lib/human.c (suffixes): Prefer K to k for 1024.
61436         (generate_suffix_backwards): New function.
61437         (human_readable_inexact): Use it.
61438         * lib/xstrtol.c (__xstrtol): If there is no number but there
61439         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
61440         Accept 'K' as well as 'k'.
61441
61442 2001-12-15  Jim Meyering  <meyering@lucent.com>
61443
61444         * lib/regex.h (__restrict_arr): Update from libc.
61445
61446         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
61447         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
61448         (STREQ): Define.
61449
61450 2001-12-14  Jim Meyering  <meyering@lucent.com>
61451
61452         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
61453         Suggestion from Bruno Haible.
61454
61455 2001-12-10  Jim Meyering  <meyering@lucent.com>
61456
61457         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
61458         xrealloc, Instead, include "xalloc.h".
61459         (initbuffer): Don't cast xmalloc return value to char*.
61460         (readline): Reword comment.
61461         Don't cast xrealloc return value to char*
61462         Return NULL, not 0.
61463
61464 2001-12-09  Jim Meyering  <meyering@lucent.com>
61465
61466         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
61467         about `signed and unsigned type in conditional expression'.
61468         * lib/posixtm.c (posix_time_parse): Likewise.
61469
61470         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
61471
61472         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
61473         to avoid a pedantic warning.
61474
61475         * lib/getstr.c: Don't include assert.h.
61476         (getstr): Remove warning-evoking assertions.
61477         Return -1 if offset parameter is out of bounds.
61478         Change the type of a local from int to size_t.
61479
61480         * lib/strftime.c (my_strftime_localtime_r): Include this function
61481         definition in the `#if ! HAVE_TM_GMTOFF' block.
61482
61483         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
61484         Include xalloc.h instead.
61485
61486 2001-12-02  Jim Meyering  <meyering@lucent.com>
61487
61488         * lib/tempname.c: Don't declare getenv, thus reverting the change of
61489         2001-11-18.  It's no longer necessary, now that stdlib.h is always
61490         included.
61491
61492         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
61493         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
61494
61495 2001-11-30  Akim Demaille  <akim@epita.fr>
61496
61497         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
61498         before being defined.
61499
61500 2001-11-27  Paul Eggert  <eggert@twinsun.com>
61501
61502         * lib/quotearg.h (quotearg_n, quotearg_n_style):
61503         First arg is int, not unsigned.
61504         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
61505         (SIZE_MAX, UINT_MAX): New macros.
61506         (quotearg_n_options): Abort if N is negative.
61507         Avoid overflow check on hosts where size_t is 64 bits and int
61508         is 32 bits, as overflow is impossible there.
61509         Fix off-by-one typo that caused unnecessary reallocation.
61510
61511 2001-11-27  Jim Meyering  <meyering@lucent.com>
61512
61513         * lib/tempname.c: Merge with version from libc.
61514         * lib/regex.c: Likewise.
61515
61516         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
61517         systems for which STDC_HEADERS is 0, it was not included, resulting in
61518         a warning about an integer-to-pointer conversion problem with getenv.
61519         Reported by Volker Borchert.
61520
61521 2001-11-26  Jim Meyering  <meyering@lucent.com>
61522
61523         * lib/gtod.h: Remove file.
61524         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
61525         * lib/gettimeofday.c: Don't include gtod.h.
61526         (GTOD_init): Remove function.
61527         (rpl_gettimeofday): Do its job here instead, rather than aborting.
61528         Suggestion from Volker Borchert.
61529
61530 2001-11-23  Jim Meyering  <meyering@lucent.com>
61531
61532         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
61533         it.
61534         * lib/hash.c (struct hash_table): Define it here instead.
61535
61536 2001-11-22  Jim Meyering  <meyering@lucent.com>
61537
61538         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
61539
61540 2001-11-20  Jim Meyering  <meyering@lucent.com>
61541
61542         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
61543         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
61544
61545 2001-11-19  Jim Meyering  <meyering@lucent.com>
61546
61547         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
61548         directory.  Use "conftestXXXXXX" as the template.
61549         Suggestion from Paul Eggert.
61550
61551         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
61552         immediately, so the test doesn't mistakenly hit the max-open-files
61553         limit.
61554
61555 2001-11-18  Paul Eggert  <eggert@twinsun.com>
61556
61557         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
61558         (TEMPORARIES): New macro.
61559         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
61560         removes an artificial limitation (e.g. HP-UX 10.20, where
61561         TMP_MAX is 17576).
61562
61563 2001-11-18  Jim Meyering  <meyering@lucent.com>
61564
61565         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
61566
61567 2001-11-18  Jim Meyering  <meyering@lucent.com>
61568
61569         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
61570         on SunOS 4.
61571
61572         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
61573         files will be created before anything else.
61574
61575 2001-11-17  Paul Eggert  <eggert@twinsun.com>
61576
61577         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
61578         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
61579
61580 2001-11-17  Jim Meyering  <meyering@lucent.com>
61581
61582         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
61583         Prompted by a report from Bob Proulx.
61584
61585         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
61586         Instead, require UTILS_FUNC_MKSTEMP.
61587
61588 2001-11-17  Jim Meyering  <meyering@lucent.com>
61589
61590         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
61591         Now, that's done as part of AC_FUNC_STRTOD.
61592
61593 2001-11-17  Jim Meyering  <meyering@lucent.com>
61594
61595         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
61596         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
61597         rather than group writable.  Patch by Juan F. Codagnone.
61598
61599         * lib/readtokens.c: Remove explicit declarations of xmalloc and
61600         xrealloc, Instead, include "xalloc.h".
61601
61602         * lib/mountlist.c: Include unlocked-io.h after all system headers.
61603         Remove explicit declarations of xmalloc, xrealloc,
61604         and xstrdup.  Instead, include "xalloc.h".
61605
61606         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
61607         unlocked-io.h.
61608         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
61609         Likewise.
61610         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
61611
61612         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
61613         Reported by Padraig Brady.
61614
61615         * lib/mkstemp.c: #undef mkstemp.
61616         Include config.h.
61617         (rpl_mkstemp): Rename from mkstemp.
61618         Protoize.
61619
61620 2001-11-16  Jim Meyering  <meyering@lucent.com>
61621
61622         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
61623         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
61624         determine the amount of total physical memory, use pstat_getstatic.
61625         HPUX-11 doesn't define _SC_PHYS_PAGES.
61626         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
61627         If sysconf couldn't be used to determine the amount of available
61628         physical memory, use both pstat_getstatic and pstat_getdynamic.
61629         Based on a patch from Bob Proulx.
61630
61631 2001-11-10  Jim Meyering  <meyering@lucent.com>
61632
61633         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
61634         (jm_PREREQ): Use it.
61635
61636 2001-11-09  Jim Meyering  <meyering@lucent.com>
61637
61638         * m4/jm-macros.m4: Require autoconf-2.52f.
61639         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
61640         Use these AC_-prefixed names, not the AM_-prefixed ones.
61641
61642         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
61643
61644 2001-11-05  Jim Meyering  <meyering@lucent.com>
61645
61646         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
61647
61648 2001-11-04  Jim Meyering  <meyering@lucent.com>
61649
61650         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
61651         $DEFS.
61652
61653 2001-11-03  Jim Meyering  <meyering@lucent.com>
61654
61655         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
61656         of AC_DEFUN.
61657
61658         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
61659         know the name of the variable in the macro definition.
61660
61661 2001-11-03  Jim Meyering  <meyering@lucent.com>
61662
61663         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
61664         in argmatch_to_argument call.
61665
61666         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
61667         argument.
61668
61669         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
61670         e.g., a fault due to an attempt to free a NULL pointer.
61671
61672 2001-11-01  Jim Meyering  <meyering@lucent.com>
61673
61674         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
61675         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
61676
61677 2001-11-01  Jim Meyering  <meyering@lucent.com>
61678
61679         * lib/dirfd.c, lib/dirfd.h: New files.
61680         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
61681
61682         * lib/hash.c (hash_print) [TESTING]: Clean up.
61683
61684 2001-10-22  Paul Eggert  <eggert@twinsun.com>
61685
61686         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
61687         to avoid a warning if -Wall.
61688
61689 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
61690
61691         * README: New file
61692         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
61693         (per RMS's instructions, this is now the canonical source)
61694         * lgpl/, gpl/: New directories.
61695
61696 2001-10-21  Paul Eggert  <eggert@twinsun.com>
61697
61698         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
61699
61700 2001-10-21  Jim Meyering  <meyering@lucent.com>
61701
61702         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
61703         this code would end up calling gettext even in packages built
61704         with --disable-nls.
61705         * lib/getopt.c (_): Likewise.
61706         * lib/regex.c (_): Likewise.
61707
61708 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61709
61710         * m4/error.m4 (jm_PREREQ_ERROR):
61711         Do not invoke AC_CHECK_FUNCS with strerror_r, as
61712         AC_FUNC_STRERROR_R does that.
61713         Check for strerror declaration.
61714
61715         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
61716         are supposed to have them these days.
61717         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
61718         Merge changes from latest Autoconf CVS.
61719         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
61720         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
61721         POSIX decided to standardize on the int flavor of strerror_r.
61722
61723 2001-10-20  Paul Eggert  <eggert@twinsun.com>
61724
61725         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
61726         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
61727         Use strerror_r that is only a macro, even if it is not a function.
61728         (strerror): Check for HAVE_DECL_STRERROR before declaring.
61729         (private_strerror): Use prototypes, not old-style function definition.
61730         (print_errno_message): New function.
61731         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
61732         char*-flavored one.
61733         (error_tail, error, error_at_line): Use it.
61734
61735 2001-10-11  Jim Meyering  <meyering@lucent.com>
61736
61737         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
61738         and quote_n (1, ... to avoid clobbering a buffer.
61739
61740 2001-10-05  Jim Meyering  <meyering@lucent.com>
61741
61742         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
61743         hash-pjw.h.
61744         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
61745         * lib/hash-pjw.h: New file.
61746
61747 2001-09-30  Jim Meyering  <meyering@lucent.com>
61748
61749         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
61750         `struct fsstat' has the `f_fstypename' member.
61751         Use that to define FS_TYPE, which is now used to make
61752         the getfsstat link test tighter.
61753
61754 2001-09-30  Jim Meyering  <meyering@lucent.com>
61755
61756         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
61757         Include <sys/ucred.h>, for Apple Darwin.
61758         Include sys/mount.h and sys/fs_types.h only if available.
61759         (FS_TYPE): Define.
61760         (read_filesystem_list): Use FS_TYPE.
61761
61762 2001-09-29  Paul Eggert  <eggert@twinsun.com>
61763
61764         * lib/exclude.c (excluded_filename): 0 -> false, since it's
61765         a boolean context.
61766
61767 2001-09-29  Jim Meyering  <meyering@lucent.com>
61768
61769         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61770         [one-argument getmntent function]): Include stdio.h before mntent.h.
61771         SunOS 4.1.x needs it for the declaration of `FILE'.
61772         Patch by Volker Borchert.
61773
61774         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
61775         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
61776         sys/fs_types.h, and make the link-test for getfsstat guard #include
61777         directives with appropriate #if HAVE_*_H tests so that we can
61778         detect getfsstat on Apple Darwin1.3.7 systems.
61779         Reported by Nelson Beebe.
61780         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
61781
61782 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61783
61784         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61785         #defines strtoimax.  Also treat the other strto* functions
61786         like strtoimax.
61787
61788         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
61789         Check for strtoul and strtoumax,
61790         as those declarations are made even in the signed case.
61791         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
61792         Likewise, for strtol and strtoimax.
61793
61794 2001-09-28  Paul Eggert  <eggert@twinsun.com>
61795
61796         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
61797         #defines strtoimax.  Also treat the other strto* functions
61798         like strtoimax.
61799
61800         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
61801         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
61802         (strtoimax, strtoumax): Do not declare if already defined as a macro.
61803
61804 2001-09-26  Jim Meyering  <meyering@lucent.com>
61805
61806         Most macros in unlocked-io.h had the wrong number of arguments.
61807         * lib/gen-uio: New script.
61808         (USE_UNLOCKED_IO): Define to 1 if not already defined.
61809         * lib/unlocked-io.hin: Remove file.
61810         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
61811         rather than trying to embed it here.
61812         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
61813         Reported by Padraig Brady.
61814
61815 2001-09-25  Volker Borchert  <bt@teknon.de>
61816
61817         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
61818         `result'.
61819
61820 2001-09-24  Jim Meyering  <meyering@lucent.com>
61821
61822         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
61823
61824 2001-09-23  Jim Meyering  <meyering@lucent.com>
61825
61826         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
61827         instead of the mere test for existence of mntent.h.  The latter
61828         would get a false-positive on AIX 3.4 systems.
61829         In the outer getmntent if-block, don't die if neither of the getmntent
61830         tests succeeds.  Instead, just fall through and continue with the
61831         remaining tests.
61832
61833 2001-09-23  Jim Meyering  <meyering@lucent.com>
61834
61835         * lib/mountlist.c: Remove useless parentheses in #if directives.
61836         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
61837         the deprecated MOUNTED symbol is no longer defined in mntent.h.
61838
61839 2001-09-22  Jim Meyering  <meyering@lucent.com>
61840
61841         * m4/gettext.m4: New file.  From gettext.
61842         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
61843         * m4/progtest.m4: Likewise
61844         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
61845         * m4/glibc21.m4: Likewise.
61846
61847         * m4/libintl.m4: Remove.  No longer used.
61848
61849 2001-09-22  Jim Meyering  <meyering@lucent.com>
61850
61851         * lib/localcharset.c: Update from latest gettext.
61852         * lib/config.charset: Likewise.
61853
61854 2001-09-20  Jim Meyering  <meyering@lucent.com>
61855
61856         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
61857         strtoimax.
61858         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
61859         strtoumax.
61860
61861 2001-09-20  Jim Meyering  <meyering@lucent.com>
61862
61863         * lib/xstrtol.c (strtoimax): Guard declaration with
61864         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
61865         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
61866         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
61867         (strtoumax): Likewise, for completeness (it wasn't necessary).
61868
61869 2001-09-17  Paul Eggert  <eggert@twinsun.com>
61870
61871         * lib/strtoimax.c (HAVE_LONG_LONG):
61872         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
61873         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
61874         to work around bug in IBM C compiler.
61875
61876 2001-09-17  Jim Meyering  <meyering@lucent.com>
61877
61878         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
61879         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
61880         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
61881         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
61882         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
61883         whenever the right hand side need not be expanded by the shell.
61884
61885 2001-09-16  Paul Eggert  <eggert@twinsun.com>
61886
61887         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
61888         library.  It's not correct, as some older glibcs are buggy.
61889         fnmatch wasn't fixed until glibc 2.2.
61890
61891         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
61892         special shell magic here.
61893
61894 2001-09-16  Jim Meyering  <meyering@lucent.com>
61895
61896         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
61897         * m4/jm-macros.m4: Require it.
61898
61899 2001-09-16  Jim Meyering  <meyering@lucent.com>
61900
61901         * lib/mkdir.c: New file.
61902
61903 2001-09-15  Jim Meyering  <meyering@lucent.com>
61904
61905         * m4/jm-macros.m4: Check for help2man.
61906
61907 2001-09-11  Jim Meyering  <meyering@lucent.com>
61908
61909         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
61910         The body, by Paul Eggert, was moved here from configure.in.
61911         * m4/jm-macros.m4: Require UTILS_HOST_OS.
61912
61913 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61914
61915         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
61916         (jm_PREREQ): Use it.
61917
61918 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61919
61920         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
61921         Use ssize_t, not int, to store result of readlink.
61922         Check for ssize_t overflow as well as size_t overflow,
61923         as POSIX says the result of readlink is implementation-defined
61924         when ssize_t overflows.
61925         Remove unnecessary cast to char*.
61926         Use free+malloc instead of realloc, as the storage doesn't need
61927         to be preserved and it's clearer and can be more efficient that way.
61928         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
61929         * lib/xreadlink.h (xreadlink): Update prototype.
61930
61931 2001-09-04  Paul Eggert  <eggert@twinsun.com>
61932
61933         * lib/xgetcwd.c: Revert some of the previous change; intead,
61934         fix the HAVE_GETCWD_NULL code to behave more like the
61935         !HAVE_GETCWD_NULL code used to.
61936
61937         Include "xalloc.h".
61938         (xgetcwd): Do not return NULL when memory is exhausted; instead,
61939         invoke xalloc_die.
61940
61941 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61942
61943         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
61944         sys/param.h, as pathmax.h includes them.
61945
61946 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61947
61948         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
61949         (jm_PREREQ_XGETCWD): New macro.
61950
61951         * m4/getcwd.m4: New file.
61952
61953 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61954
61955         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
61956         like the HAVE_GETCWD_NULL code.
61957         Include pathmax.h if not HAVE_GETCWD.
61958         Do not include xalloc.h.
61959         (INITIAL_BUFFER_SIZE): New symbol.
61960         Do not use xmalloc / xrealloc, since the caller is responsible for
61961         handling errors.  Preserve errno around `free' during failure.
61962         Do not overrun buffer when using getwd.
61963
61964 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61965
61966         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
61967         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
61968         getcwd (NULL, 0).
61969
61970 2001-09-03  Paul Eggert  <eggert@twinsun.com>
61971
61972         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
61973         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
61974         spotted by Jim Meyering.
61975
61976 2001-09-03  Jim Meyering  <meyering@lucent.com>
61977
61978         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
61979         failure.
61980
61981 2001-09-02  Jim Meyering  <meyering@lucent.com>
61982
61983         * lib/error.c: Update from GNU libc.
61984
61985 2001-09-01  Jim Meyering  <meyering@lucent.com>
61986
61987         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
61988         Used by df.
61989
61990 2001-09-01  Jim Meyering  <meyering@lucent.com>
61991
61992         * lib/xreadlink.c: New file.
61993         * lib/xreadlink.h: New file.
61994         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
61995         xreadlink.h.
61996
61997         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
61998         doesn't conflict with sparc Solaris 7's definition in
61999         /usr/include/sys/int_types.h.
62000
62001         * lib/exclude.c: Use `""', not `<>' to #include non-system header
62002         files.
62003         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
62004         and strncasecmp as r-values.  Unixware didn't have declarations.
62005
62006 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62007
62008         * lib/xstrtol.h: Add copyright notice.
62009         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
62010         LONGINT_INVALID_SUFFIX_CHAR.
62011
62012 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62013
62014         * lib/xstrtol.c (strtoimax): New decl.
62015
62016 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62017
62018         * lib/xgetcwd.c: Don't include pathmax.h.
62019         Include stdlib.h and unistd.h if available.
62020         Include xalloc.h.
62021         (xmalloc, xstrdup, free): Remove decls.
62022         (xgetcwd): Don't assume sizes fit in unsigned.
62023         Check for overflow when computing sizes.
62024         Simplify reallocation code.
62025
62026 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62027
62028         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
62029         a directory's st_size can have an arbitrary value, so the old
62030         usage could waste an arbitrary amount of memory.  All uses
62031         changed.
62032         * lib/savedir.h: Update prototype.
62033
62034 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62035
62036         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
62037
62038         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
62039         old strtoimax.c.
62040
62041         Also, make the following further changes to make this file's
62042         configuration more similar to that of strtol.c:
62043         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
62044         (strtoumax, uintmax_t, strtoull, strtol): Remove.
62045         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
62046         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
62047         changed to signed values.
62048
62049         And make the following changes as well:
62050         Fix copyright notice, as 1999 was missing.
62051         (verify): New macro.
62052         (strtoimax): Check sizes at compile-time, not run-time.
62053         Prefer strtol to strtoll if both work.
62054         (main): Remove; it was not that useful and was a pain to maintain.
62055
62056         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
62057
62058 2001-08-31  Jim Meyering  <meyering@lucent.com>
62059
62060         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
62061         Use an initial, malloc'd, buffer of length 128 rather than
62062         a statically allocated one of length 1024.
62063
62064 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62065
62066         Simplify code, partly by assuming autoconf 2.52 semantics.
62067
62068         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
62069
62070         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
62071         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
62072         All uses removed.
62073         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
62074         Move AC_REQUIRE to next-to-top level, to avoid confusion.
62075         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
62076         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
62077         jm_AC_HEADER_INTTYPES_H.
62078         * m4/jm-macros.m4 (jm_MACROS): Likewise.
62079
62080         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
62081
62082         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
62083         Quote first arg of AC_DEFUN.
62084         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
62085         since they are needed to parse the include file even if we need
62086         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
62087         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
62088         but with opposite signedness.
62089
62090 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62091
62092         Merge 'exclude' changes from tar 1.13.22.
62093         This fixes one or two unlikely storage allocation overflow bugs,
62094         but doesn't change user-visible behavior otherwise.
62095
62096 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62097
62098         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
62099         (jm_PREREQ_EXCLUDE): New macro.
62100
62101 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62102
62103         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
62104         tm to be declared.
62105
62106 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62107
62108         * lib/hash.c: Remove '2001' from copyright notice.
62109
62110 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62111
62112         * lib/full-write.h: New file.
62113         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
62114         * lib/full-write.c: Correct credits, as cccp.c no longer
62115         exists and anyway it was so heavily changed from the old cccp
62116         code as to be unrecognizable.  Include full-write.h.
62117         (full_write) Return size_t, with short writes meaning failure.
62118         All callers changed.  This fixes a bug with large buffers
62119         on 64-bit hosts.
62120         * lib/utime.c: Include full-write.h.
62121
62122 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62123
62124         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
62125         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
62126         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
62127         Include if available.
62128         (<xalloc.h>): Include
62129         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
62130         (verify): New macro.  Use it to verify that EXCLUDE macros do not
62131         collide with FNM macros.
62132         (struct patopts): New struct.
62133         (struct exclude): Use it, as exclude patterns now come with options.
62134         (new_exclude): Support above changes.
62135         (new_exclude, add_exclude_file):
62136         Initial size must now be a power of two to simplify overflow checking.
62137         (free_exclude, fnmatch_no_wildcards): New function.
62138         (excluded_filename): No longer requires options arg, as the options
62139         are determined by add_exclude.  Now returns bool, not int.
62140         (excluded_filename, add_exclude):
62141         Add support for the fancy new exclusion options.
62142         (add_exclude, add_exclude_file): Now takes int options arg.
62143         Check for arithmetic overflow when computing sizes.
62144         (add_exclude_file): xrealloc might modify errno, so don't
62145         realloc until after errno might be used.
62146
62147         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
62148         New macros.
62149         (free_exclude): New decl.
62150         (add_exclude, add_exclude_file): Now takes int options arg.
62151         (excluded_filename): No longer requires options arg, as the options
62152         are determined by add_exclude.  Now returns bool, not int.
62153
62154 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62155
62156         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
62157
62158 2001-08-27  Jim Meyering  <meyering@lucent.com>
62159
62160         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
62161
62162         * lib/version-etc.c (N_): Remove definition.
62163         Revert most of last change.
62164         Instead, simply don't mark the `Copyright...' string for translation.
62165         Based on advice from Paul Eggert.
62166
62167         * lib/strtoxmax.c: Tweak comment.
62168
62169 2001-08-26  Jim Meyering  <meyering@lucent.com>
62170
62171         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
62172
62173         * m4/xstrtoimax.m4: New file.
62174         * m4/xstrtoumax.m4: Add comments explaining why we
62175         AC_REPLACE_FUNCS(strtol).
62176
62177 2001-08-26  Jim Meyering  <meyering@lucent.com>
62178
62179         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
62180         of copyright with `%s' so translators don't get an untranslated
62181         message in 2002.
62182         (COPYRIGHT_YEAR): Define.
62183         (version_etc): Use fprintf rather than fputs.
62184         Suggestion from Ulrich Drepper.
62185
62186         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
62187
62188         * lib/strtoll.c: New file, from GNU libc.
62189         * lib/xstrtoimax.c: New file.
62190
62191         * lib/xstrtol.h: Add xstrtoimax.
62192         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
62193         * lib/strtoimax.c: New file.  Likewise, but first define
62194         STRTOUXMAX_SIGNED.
62195
62196         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
62197         ...
62198         * lib/strtoxmax.c: ... then renamed to this.
62199
62200 2001-08-18  Paul Eggert  <eggert@twinsun.com>
62201
62202         * m4/inttypes.m4: Add AC_PREREQ(2.13).
62203         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
62204         (jm_AC_TYPE_INTMAX_T): New macro.
62205         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
62206
62207         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
62208
62209         * m4/longlong.m4: Renamed from ulonglong.m4.
62210         * m4/inttypes.m4: Renamed from inttypes_h.m4.
62211         * m4/uintmax_t.m4: Removed.
62212
62213 2001-08-13  Paul Eggert  <eggert@twinsun.com>
62214
62215         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
62216         Port to Solaris 8, where 'sed' requires a space after the 'r'
62217         command, and where sh dislikes "$/".  Clean up the spacing a bit.
62218         Redirect output to $tmp just once.
62219
62220 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
62221
62222         * lib/addext.c (<errno.h>): Include.
62223         (errno): Declare if not defined.
62224         (addext): Work correctly when pathconf returns -1 and leaves
62225         errno alone because there is no limit.  Also, work even if
62226         pathconf returns a value greater than SIZE_MAX.
62227
62228 2001-08-12  Jim Meyering  <meyering@lucent.com>
62229
62230         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
62231         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
62232         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
62233         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
62234         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
62235         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
62236         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
62237         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
62238         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
62239         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
62240         utime.m4, utimes.m4, xstrtoumax.m4:
62241         Quote the first argument in each use of AC_DEFUN.
62242
62243 2001-08-12  Jim Meyering  <meyering@lucent.com>
62244
62245         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
62246         Simply `return getcwd (NULL, 0);'.
62247         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
62248         Use 1300 as initial value for length, not PATH_MAX.
62249
62250         * lib/pathmax.h: Clean up cpp syntax.
62251
62252 2001-08-12  Jim Meyering  <meyering@lucent.com>
62253
62254         * lib/gettimeofday.c: New file.
62255         * lib/gtod.h: New file.
62256         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
62257
62258 2001-08-05  Jim Meyering  <meyering@lucent.com>
62259
62260         * m4/jm-macros.m4: Require autoconf-2.52.
62261
62262 2001-08-04  Jim Meyering  <meyering@lucent.com>
62263
62264         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
62265         stmt, to get in sync with glibc.
62266
62267 2001-08-03  Paul Eggert  <eggert@twinsun.com>
62268
62269         The following changes are from gettext 0.10.39 as maintained by
62270         Bruno Haible.
62271
62272         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
62273         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
62274         with inverted sense.  All uses changed.
62275
62276         * lib/mbswidth.c: Don't include <limits.h>.
62277         Include <stdlib.h> and <string.h> unconditionally.
62278         (iswcntrl, mbsinit, ISCNTRL): New macros.
62279         (mbsnwidth): Use K&R style function declarations.
62280         Don't bother checking for MB_LEN_MAX == 1, since the compiler
62281         can optimize it when MB_CUR_MAX == 1.
62282         The width of control characters is zero, not 1.
62283
62284 2001-08-03  Paul Eggert  <eggert@twinsun.com>
62285
62286         The following changes are from gettext 0.10.39 as maintained by
62287         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
62288
62289         * m4/codeset.m4: Upgrade to serial AM1.
62290         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
62291         all uses changed.  Quote first arg of AC_DEFUN.
62292         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
62293
62294         * m4/iconv.m4: Upgrade to serial AM2.
62295         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
62296         Add --with-libconv-prefix.
62297         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
62298         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
62299         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
62300         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
62301         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
62302
62303         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
62304         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
62305         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
62306         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
62307         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
62308         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
62309         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
62310         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
62311         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
62312
62313         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
62314         string.h any more.
62315
62316         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
62317         not the default value.
62318
62319         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
62320         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
62321         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
62322         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
62323         Also check for iswcntrl, used for wcwidth fallback.
62324         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
62325         to Autoconf 2.13.
62326
62327 2001-08-03  Jim Meyering  <meyering@lucent.com>
62328
62329         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
62330         as it was in the original.  Reported by Paul Eggert.
62331
62332 2001-07-16  Jim Meyering  <meyering@lucent.com>
62333
62334         * m4/gettimeofday.m4: New file.
62335         Prompted by a report from Bernhard Baehr.
62336
62337 2001-07-15  Jim Meyering  <meyering@lucent.com>
62338
62339         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
62340         stuff. Now it's in ../Makefile.cfg.
62341
62342 2001-07-15  Jim Meyering  <meyering@lucent.com>
62343
62344         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
62345         (BUILT_SOURCES): Add unlocked-io.h.
62346         (io_functions): Define.
62347         (unlocked-io.h): New rule.
62348         (DISTCLEANFILES): Add unlocked-io.h.
62349         (all-local): Depend on unlocked-io.h, to ensure it is created.
62350
62351         * lib/unlocked-io.hin: New file
62352
62353         * lib/regex.c: Update from glibc.
62354
62355 2001-07-05  Jim Meyering  <meyering@lucent.com>
62356
62357         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
62358         recommendation.
62359         (libfetish_a_SOURCES): Put all .h files here instead.
62360         Remove a thus-exposed (better checks in automake) duplicate and
62361         two unnecessary .h files.
62362
62363 2001-07-04  Jim Meyering  <meyering@lucent.com>
62364
62365         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
62366         that generates jm-glibc-io.m4 so that it doesn't trigger any make
62367         distcheck failure.
62368
62369 2001-07-02  Jim Meyering  <meyering@lucent.com>
62370
62371         The following changes were prompted by suggestions from Bruno Haible.
62372
62373         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
62374         is now generated.
62375         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
62376         definition of EXTRA_DIST.
62377         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
62378         ensure that the generated file is created/updated whenever the list
62379         of $(unlocked_functions) is changed.
62380         (jm-glibc-io.m4): New rule.
62381         (unlocked-io.h): New rule -- currently unused.
62382
62383 2001-06-24  Jim Meyering  <meyering@lucent.com>
62384
62385         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
62386         unmatched right bracket, rather than kludging it with an extra,
62387         falsely-matching quote in a comment.  Patch by Akim Demaille.
62388
62389 2001-06-11  Jim Meyering  <meyering@lucent.com>
62390
62391         * lib/regex.c: Update from GNU libc.
62392
62393 2001-05-27  Jim Meyering  <meyering@lucent.com>
62394
62395         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
62396         Check for ut_type in struct utmp.
62397
62398 2001-05-27  Jim Meyering  <meyering@lucent.com>
62399
62400         * lib/readutmp.h (UT_TYPE): Define.
62401
62402 2001-05-24  Jim Meyering  <meyering@lucent.com>
62403
62404         * lib/argmatch.c: Include "quote.h".
62405         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
62406         quote function.  Reported by Göran Uddeborg.
62407
62408 2001-05-22  Jim Meyering  <meyering@lucent.com>
62409
62410         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
62411         now that we use the package-supplied version unconditionally.
62412         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
62413
62414 2001-05-21  Jim Meyering  <meyering@lucent.com>
62415
62416         * m4/regex.m4: Change a couple backticks to single quotes to avoid
62417         shell syntax errors.
62418
62419 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
62420
62421         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
62422
62423 2001-05-20  Paul Eggert  <eggert@twinsun.com>
62424
62425         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
62426         Don't bother to check library strftime, since
62427         we'll be using our own my_strftime function anyway.
62428         Define my_strftime instead of strftime.
62429
62430 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
62431
62432         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
62433         which is not yet declared.
62434
62435 2001-05-15  Jim Meyering  <meyering@lucent.com>
62436
62437         * m4/regex.m4: Use proper quoting so brackets appear in the test
62438         program.
62439         Reported by, and with help from, Bruno Haible.
62440
62441 2001-05-13  Jim Meyering  <meyering@lucent.com>
62442
62443         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
62444         undefined.
62445
62446 2001-05-11  Paul Eggert  <eggert@twinsun.com>
62447
62448         dirname code cleanup.  base_name now behaves more compatibly
62449         with POSIX basename when given file names that have trailing
62450         slashes, and similarly for dir_name.  Add new primitives
62451         base_len and dir_len.  Put the directory-name-related decls
62452         into dirname.h.
62453
62454         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
62455         * lib/backupfile.c (base_name): Likewise.
62456         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
62457         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
62458         * lib/makepath.c (strip_trailing_slashes): Likewise.
62459         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
62460         ISSLASH): Likewise.
62461         * lib/rename.c (strip_trailing_slashes): Likewise.
62462         * lib/same.c (base_name): Likewise.
62463         * lib/stripslash.c (ISSLASH): Likewise.
62464
62465         * lib/addext.c: Include <dirname.h> after size_t is defined.
62466         * lib/backupfile.c: Likewise.
62467
62468         * lib/addext.c (addext): Use base_len to trim redundant
62469         trailing slashes instead of doing it ourselves.
62470         But do not trim the last slash if it is not redundant.
62471
62472         * lib/backupfile.c (find_backup_file_name,
62473         max_backup_version): Use base_len instead of rolling it ourselves.
62474         Handle the case of "" and (on DOS) "C:" correctly.
62475
62476         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
62477         needed. Include <string.h>, <dirname.h>.
62478         (base_name): Allow file names ending in slashes, other than names
62479         that are all slashes.  In this case, return the basename followed
62480         by the slashes.  This is more general, and can be used in places
62481         where the original base_name purposely had an assertion failure.
62482         (base_len): New function.
62483
62484         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
62485         Do not include <assert.h>; no longer needed.
62486         Include xalloc.h.
62487         (memrchr): Remove decl.
62488         (dir_name_r): Remove.
62489         (dir_len): Renamed from dirlen.  All callers changed.
62490         Rewrite in terms of base_name, for simplicity and consistency.
62491         (dir_name): Never return NULL.  All callers changed.
62492         Do not include <stdlib.h> in test program; no longer needed.
62493         return 0; is fine for test program.
62494
62495         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
62496         New macros.
62497         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
62498
62499         * lib/path-concat.c (path_concat): Use base_len to compute
62500         base length, not strlen; this means we cannot rely on memcpy
62501         to null-terminate.
62502
62503         * lib/same.c (STREQ): Remove.
62504         (same_name): Handle the case where the basename ends in trailing '/'.
62505
62506         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
62507         a slash was stripped.  Do not strip the last slash after a
62508         file system prefix.
62509
62510 2001-05-11  Paul Eggert  <eggert@twinsun.com>
62511
62512         * lib/Makefile.am (libfetish_a_SOURCES):
62513         Add strftime.c, since we now compile it on all hosts.
62514
62515         * lib/strftime.c (my_strftime):
62516         Define to nstrftime if emacs, but only if my_strftime is not defined.
62517         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
62518         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
62519         Add one more extra argument: a nanoseconds value.
62520         All uses changed.
62521         (ns): New macro.
62522         (my_strftime function): Add %N format.
62523         (emacs_strftimeu): Renamed from emacs_strftime,
62524         with extra ut argument.
62525
62526 2001-05-09  Paul Eggert  <eggert@twinsun.com>
62527
62528         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
62529
62530 2001-04-21  Jim Meyering  <meyering@lucent.com>
62531
62532         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
62533         doesn't interfere.
62534
62535 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
62536
62537         * m4/ftruncate.m4: Check for chsize.
62538         Link with ftruncate.o unconditionally if ftruncate is missing.
62539         This was required when cross-compiling to i586-mingw32msvc.
62540
62541 2001-04-08  Jim Meyering  <meyering@lucent.com>
62542
62543         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
62544         recomputed; that's necessary when the offset spans a DST transition.
62545         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
62546
62547 2001-04-02  Jim Meyering  <meyering@lucent.com>
62548
62549         * lib/regex.h, regex.c: Update from GNU libc.
62550
62551 2001-03-24  Jim Meyering  <meyering@lucent.com>
62552
62553         * m4/jm-macros.m4: Require autoconf-2.49d.
62554
62555 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
62556
62557         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
62558
62559 2001-03-19  Paul Eggert  <eggert@twinsun.com>
62560
62561         * lib/version-etc.c (version_etc_copyright): Update to 2001.
62562
62563 2001-03-17  Jim Meyering  <meyering@lucent.com>
62564
62565         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
62566         now that the version in autoconf is equivalent.
62567         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
62568
62569         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
62570         Suggestion from Akim Demaille.
62571
62572         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
62573         (jm_PREREQ_TEMPNAME): New function.
62574
62575 2001-03-16  Paul Eggert  <eggert@twinsun.com>
62576
62577         * lib/tempname.c (uint64_t): Define to uintmax_t if
62578         not defined, and if UINT64_MAX is not defined.
62579         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
62580         Reported by John David Anglin.
62581
62582 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
62583
62584         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
62585         resolve alias if codeset is empty.
62586         * lib/config.charset (BeOS): Use wildcard syntax.
62587
62588 2001-03-13  Jim Meyering  <meyering@lucent.com>
62589
62590         * lib/path-concat.c (path_concat)
62591         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
62592         concatenating e.g., `C:' and `foo'.
62593         From Bruno Haible.
62594
62595 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62596
62597         * lib/localcharset.c (locale_charset): Don't use
62598         setlocale(LC_CTYPE,NULL). Don't return NULL.
62599         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
62600
62601 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
62602
62603         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
62604         support for DOS/DJGPP.
62605
62606 2001-03-01  Paul Eggert  <eggert@twinsun.com>
62607
62608         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
62609         lacks mkstemp.  Compile our own tempname.c if we compile our own
62610         mkstemp.c, as mkstemp relies on tempname.
62611
62612 2001-03-01  Jim Meyering  <meyering@lucent.com>
62613
62614         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
62615         AH_VERBATIM really does output its argument verbatim.
62616
62617 2001-02-28  Paul Eggert  <eggert@twinsun.com>
62618
62619         * lib/Makefile.am (libfetish_a_SOURCES):
62620         Add dup-safer.c, fopen-safer.c.
62621         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
62622
62623         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
62624         * lib/unistd-safer.h: New files.
62625
62626 2001-02-25  Paul Eggert  <eggert@twinsun.com>
62627
62628         The mkstemp replacement is taken from glibc 2.2.2, with some
62629         portability fixes for use outside glibc, as follows:
62630
62631         * lib/tempname.c (struct_stat64): New macro.
62632         (direxists, __gen_tempname): Use it.
62633         This avoids a portability problem with Solaris 8.
62634
62635         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
62636         (<stddef.h>, <stdint.h>, <string.h>):
62637         Include only if STDC_HEADERS || _LIBC.
62638         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
62639         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
62640         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
62641         (__set_errno): Define this macro if <errno.h> doesn't.
62642         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
62643         Define these macros if <stdio.h> doesn't.
62644         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
62645         Define these macros if <sys/stat.h>
62646         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
62647         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
62648         __xstat64): Define if not _LIBC.
62649         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
62650         (__gen_tempname): Invoke gettimeofday only if
62651         HAVE_GETTIMEOFDAY || _LIBC;
62652         otherwise, fall back on plain "time".
62653         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
62654
62655         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
62656
62657         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
62658
62659 2001-02-18  Paul Eggert  <eggert@twinsun.com>
62660
62661         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
62662
62663 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62664
62665         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
62666         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
62667         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
62668         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
62669
62670 2001-02-17  Paul Eggert  <eggert@twinsun.com>
62671
62672         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
62673         Remove workaround macros for hosts that have mbrtowc but not
62674         mbstate_t, as we now insist on proper declarations for both
62675         before using mbrtowc.
62676
62677 2001-02-17  Jim Meyering  <meyering@lucent.com>
62678
62679         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
62680         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
62681         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
62682         UnixWare 7.1.1.
62683
62684         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
62685         rather than AC_CACHE_VAL.
62686
62687 2001-02-17  Jim Meyering  <meyering@lucent.com>
62688
62689         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
62690         around included file name.
62691
62692         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
62693
62694         * lib/strftime.c: Update from GNU libc (the only changes were to
62695         comments).
62696
62697 2001-02-17  Jim Meyering  <meyering@lucent.com>
62698
62699         * lib/regex.c: Update from libc.
62700
62701 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
62702
62703         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
62704         clash.
62705
62706 2001-02-16  Paul Eggert  <eggert@twinsun.com>
62707
62708         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
62709         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
62710         Reported by Mark Hounschell via Paul Eggert.
62711
62712 2001-02-07  Jim Meyering  <meyering@lucent.com>
62713
62714         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
62715
62716 2001-02-05  Jim Meyering  <meyering@lucent.com>
62717
62718         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
62719         it includes the patch required for `large file' support with at least
62720         HP-UX's 10.20 /bin/cc.
62721
62722 2001-02-03  Jim Meyering  <meyering@lucent.com>
62723
62724         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
62725         AS_IF, now that it works once again (mysteriously).
62726         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62727
62728 2001-01-30  Jim Meyering  <meyering@lucent.com>
62729
62730         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
62731         * m4/chown.m4: Rename conftestchown to conftest.chown.
62732         * m4/rename.m4: s/conftestdir/conftest.d1/ and
62733         s/conftestdir2/conftest.d2/.
62734         * m4/utimes.m4: s/conftestdata/conftest.data/
62735         Inspired by Pavel Roskin's change in autoconf.
62736
62737 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
62738
62739         * lib/config.charset: Update for FreeBSD 4.2.
62740
62741 2001-01-27  Jim Meyering  <meyering@lucent.com>
62742
62743         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
62744         a use of AS_IF.
62745         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
62746
62747 2001-01-26  Jim Meyering  <meyering@lucent.com>
62748
62749         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
62750         quotearg.c includes it.
62751
62752 2001-01-26  Jim Meyering  <meyering@lucent.com>
62753
62754         * lib/quotearg.c: Include stddef.h.
62755         * lib/quote.c: Include stddef.h.
62756         Reported by Axel Kittenberger.
62757
62758         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
62759         line in double quotes so that it evokes a better diagnostic.
62760         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
62761         Reported by Axel Kittenberger.
62762
62763 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
62764
62765         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
62766         as if it was a `charset'.
62767
62768 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62769
62770         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
62771         has const.
62772
62773 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
62774
62775         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
62776         to avoid a warning.  Add back 'const' to inptr.
62777
62778 2001-01-20  Jim Meyering  <meyering@lucent.com>
62779
62780         Be sure that headers are checked before used in code compiled
62781         for the type checks.
62782         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
62783         In place of that, invoke jm_CHECK_ALL_TYPES.
62784         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
62785         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
62786         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
62787         The check for ssize_t was mistakenly run before the test for unistd.h.
62788
62789         The configure-time check for stdbool.h was missing.
62790         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
62791         (jm_PREREQ_HASH): New function.
62792
62793 2001-01-17  Jim Meyering  <meyering@lucent.com>
62794
62795         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
62796         for autoconf-2.49c.
62797         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
62798
62799 2001-01-16  Jim Meyering  <meyering@lucent.com>
62800
62801         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
62802         From Bruno Haible.
62803
62804 2001-01-14  Jim Meyering  <meyering@lucent.com>
62805
62806         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
62807         foo and bar.  Create conftestdir/ in the script, not in the C code.
62808         Remove directories in the script, not in the C code.
62809         Remove conftestdir{,2} before trying to create the directory.
62810         Make the entire configure script fail if the mkdir fails.
62811
62812 2001-01-14  Jim Meyering  <meyering@lucent.com>
62813
62814         * lib/rename.c: New file.  From Volker Borchert.
62815         Include stdlib.h, string.h or strings.h, and xalloc.h.
62816         Use strip_trailing_slashes rather than open-coding it.
62817
62818 2001-01-03  Paul Eggert  <eggert@twinsun.com>
62819
62820         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
62821
62822 2001-01-03  Jim Meyering  <meyering@lucent.com>
62823
62824         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
62825         of local `inptr' to avoid warning with some system declarations of
62826         iconv.
62827
62828 2001-01-02  Volker Borchert  <bt@teknon.de>
62829
62830         * m4/rename.m4: New file.
62831         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
62832
62833 2001-01-01  Jim Meyering  <meyering@lucent.com>
62834
62835         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
62836         even on systems with utmpx.h.  It's necessary for the declaration of
62837         utmp's ut_user member.  Reported by Andreas Jaeger.
62838
62839         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
62840         available. They are required for the declarations of getgrgid and
62841         getpwuid resp.
62842         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
62843         Reported by Andreas Jaeger.
62844
62845 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
62846
62847         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
62848         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
62849         so `make install' also works in VPATH builds.
62850
62851 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
62852
62853         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
62854         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
62855         can be used in subdirectories.
62856
62857 2000-12-29  Paul Eggert  <eggert@twinsun.com>
62858
62859         * lib/modechange.c: Do not assume that mode_t uses the
62860         traditional octal encoding.  E.g. "chmod 1 FOO" should set
62861         the other-execute bit of FOO even if S_IXOTH != 1.
62862
62863         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
62864         WOTH, XOTH, ALLM): New macros.
62865         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
62866          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
62867         Use them.
62868         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
62869         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
62870         (mode_compile):
62871         No need to use uintmax_t; unsigned long is long enough.
62872         Don't bother to get suffix since we don't use it.
62873
62874 2000-12-26  Jim Meyering  <meyering@lucent.com>
62875
62876         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
62877         better with autoheader.
62878
62879 2000-12-24  Jim Meyering  <meyering@lucent.com>
62880
62881         * lib/hash.c (is_prime): Return explicit boolean values.
62882         (hash_get_first): Return NULL to appease Irix5.6's 89.
62883         Reported by Nelson Beebe.
62884
62885 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
62886
62887         * lib/localcharset.c (locale_charset): Add support for Win32.
62888
62889 2000-12-18  Paul Eggert  <eggert@twinsun.com>
62890
62891         * lib/physmem.h, lib/physmem.c: New files.
62892
62893         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
62894         (noinst_HEADERS): Add physmem.h.
62895
62896         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
62897         't' for compatibility with Solaris 8 sort.
62898
62899 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
62900
62901         * lib/config.charset: Add support for BeOS.
62902
62903 2000-12-17  Jim Meyering  <meyering@lucent.com>
62904
62905         * m4/dos.m4 (jm_AC_DOS): New file and macro.
62906         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
62907
62908 2000-12-16  Jim Meyering  <meyering@lucent.com>
62909
62910         This bug had a serious impact on chown: `chown N:M FILE' (for integer
62911         N and M) would have treated it like `chown N:N FILE'.
62912
62913         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
62914
62915 2000-12-16  Jim Meyering  <meyering@lucent.com>
62916
62917         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
62918         SHELLS_FILE to a file name that's useful on djgpp systems.
62919         Include stdlib.h.
62920         (ADDITIONAL_DEFAULT_SHELLS): Define.
62921         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
62922         Based mostly on a patch from Prashant TR.
62923
62924 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
62925
62926         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
62927         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
62928         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
62929
62930 2000-12-08  Andreas Schwab  <schwab@suse.de>
62931
62932         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
62933         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
62934
62935 2000-12-07  Jim Meyering  <meyering@lucent.com>
62936
62937         * lib/stripslash.c (ISSLASH): Define.
62938         (strip_trailing_slashes): Use ISSLASH rather than comparing against
62939         `/'.
62940         From Prashant TR.
62941
62942         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
62943         (dir_name_r): Declare this function as static.
62944         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
62945         manifest itself on a name containing a mix of slashes and
62946         backslashes.
62947         Make this function work with names starting with a DOS-style
62948         drive letter and colon prefix.
62949         (dir_name): Append `.' if necessary.
62950         Based mostly on patches from Prashant TR and Eli Zaretskii.
62951
62952         * lib/dirname.h (dir_name_r): Remove prototype.
62953
62954 2000-12-06  Paul Eggert  <eggert@twinsun.com>
62955
62956         * m4/off_t-format.m4: Remove this file.
62957         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
62958
62959 2000-12-06  Jim Meyering  <meyering@lucent.com>
62960
62961         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
62962         replacement strtoull, we may well need the replacement strtoul, too.
62963         Check for declarations of strtoul and strtoull.
62964         Check for strtol.  Mainly as a cue to cause automake to include
62965         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
62966         Check for limits.h -- strtol.c needs it.
62967
62968 2000-12-05  Jim Meyering  <meyering@lucent.com>
62969
62970         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
62971
62972 2000-12-04  Jim Meyering  <meyering@lucent.com>
62973
62974         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
62975         Also include memory.h, stdlib.h, unistd.h if appropriate.
62976         Reported by Andreas Jaeger (conflicting declaration of malloc).
62977
62978 2000-12-02  Jim Meyering  <meyering@lucent.com>
62979
62980         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
62981         * m4/jm-macros.m4 (jm_MACROS): require it.
62982
62983 2000-12-02  Jim Meyering  <meyering@lucent.com>
62984
62985         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
62986
62987 2000-12-01  Paul Eggert  <eggert@twinsun.com>
62988
62989         * lib/memrchr.c: Include <config.h> before any system include file.
62990
62991 2000-11-30  Jim Meyering  <meyering@lucent.com>
62992
62993         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
62994
62995 2000-11-30  Jim Meyering  <meyering@lucent.com>
62996
62997         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
62998
62999 2000-11-29  Paul Eggert  <eggert@twinsun.com>
63000
63001         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
63002
63003 2000-11-26  Jim Meyering  <meyering@lucent.com>
63004
63005         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
63006
63007 2000-11-22  Paul Eggert  <eggert@twinsun.com>
63008
63009         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
63010         size of (size_t) -1; it's not portable.
63011
63012 2000-11-17  Jim Meyering  <meyering@lucent.com>
63013
63014         * lib/strstr.c: Update from GNU libc.
63015
63016 2000-11-17  Akim Demaille  <akim@epita.fr>
63017
63018         * lib/obstack.h: Formatting changes.
63019         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
63020         prevent type checking.
63021         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
63022         cast the value to (void *): assigning a `foo *' to a `void *'
63023         variable is valid.
63024         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
63025
63026 2000-11-16  Jim Meyering  <meyering@lucent.com>
63027
63028         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
63029
63030 2000-11-11  Jim Meyering  <meyering@lucent.com>
63031
63032         * lib/error.c: Add a couple #includes, merging from GNU libc version.
63033
63034 2000-11-10  Jim Meyering  <meyering@lucent.com>
63035
63036         * lib/obstack.h: Update from GNU libc.
63037         * lib/obstack.c: Likewise.
63038
63039 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
63040
63041         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
63042
63043 2000-11-06  Paul Eggert  <eggert@twinsun.com>
63044
63045         * lib/getusershell.c (setusershell): Use rewind rather than
63046         fseek/fseeko, to avoid configuration hassles with fseeko.
63047         Don't bother opening SHELLS_FILE if shellstream is NULL;
63048         it's not necessary.
63049
63050 2000-11-05  Jim Meyering  <meyering@lucent.com>
63051
63052         * lib/makepath.h (make_dir): Declare.
63053         * lib/makepath.c (make_dir): Remove `static' attribute.
63054         Tweak a comment.
63055
63056 2000-11-04  Jim Meyering  <meyering@lucent.com>
63057
63058         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
63059
63060 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
63061
63062         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
63063         last one in a bucket, advance to the next bucket.
63064
63065 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
63066
63067         * lib/fnmatch.c: Do not comment out all the code if we are using
63068         the GNU C library, because in some cases we are replacing buggy
63069         code in the GNU C library itself.
63070
63071 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
63072
63073         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
63074         (regex_compile): Catch bogus \(\1\).
63075
63076 2000-10-30  Paul Eggert  <eggert@twinsun.com>
63077
63078         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
63079         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
63080         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
63081
63082 2000-10-30  Paul Eggert  <eggert@twinsun.com>
63083
63084         * lib/error.h, getline.h, modechange.h:
63085         Remove "2000" from Copyright line, as the file hasn't been
63086         changed this year other than in the copyright notice.
63087
63088         * lib/xalloc.h: Add "2000" to Copyright line, as this file
63089         was changed this year.
63090
63091 2000-10-29  Jim Meyering  <meyering@lucent.com>
63092
63093         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
63094         renaming.
63095         * m4/ls-mntd-fs.m4: Likewise
63096
63097 2000-10-29  Jim Meyering  <meyering@lucent.com>
63098
63099         * lib/xstat.in: Fix grammar in comment.
63100
63101 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
63102
63103         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
63104         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
63105         doesn't define __restrict_arr.
63106
63107 2000-10-28  Jim Meyering  <meyering@lucent.com>
63108
63109         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
63110         (jm_PREREQ_MEMCHR): New function.
63111
63112 2000-10-28  Jim Meyering  <meyering@lucent.com>
63113
63114         * lib/memchr.c: Update from libc.
63115         Adjust for portability:
63116         [HAVE_STDLIB_H]: Include stdlib.h.
63117         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
63118         Undef __memchr, too.
63119         [!weak_alias]: Define __memchr to memchr.
63120
63121         * lib/regex.c: Update from libc.
63122         * lib/regex.h: Likewise.
63123         * lib/getopt1.c: Likewise.
63124         * lib/memcmp.c: Likewise.
63125
63126         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
63127         Avoid using fseek, when possible -- it's broken by design.
63128         Patch by Ulrich Drepper.
63129
63130 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
63131
63132         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
63133         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
63134         Giving in to popular pressure to shut up the compiler with casts.
63135
63136 2000-10-26  Jim Meyering  <meyering@lucent.com>
63137
63138         * lib/strftime.c: Update from libc.
63139
63140 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
63141
63142         * regex.c: More `unsigned char' -> `re_char' changes.
63143         Also change several `int' into `re_wchar_t'.
63144         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
63145         (PUSH_FAILURE_POINTER): Don't cast any more.
63146         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
63147         We want GCC to complain, since this piece of code makes
63148         re_match non-reentrant, which *should* be fixed.
63149         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
63150         (EXTEND_BUFFER): Use RETALLOC.
63151         (SET_LIST_BIT): Don't cast.
63152         (re_wchar_t): New type.
63153         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
63154         that those two functions will always properly return.
63155         (IMMEDIATE_QUIT_CHECK): Cast to void.
63156         (analyse_first): Use recursion rather than an explicit stack.
63157         (re_compile_fastmap): Can't fail anymore.
63158         (re_search_2): Don't check re_compile_fastmap for failure.
63159         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
63160         Now also sets the new value (passed in a new argument).
63161         (re_match_2_internal): Use it.
63162         Also, use a new var `reg' of type size_t when looping through regs
63163         rather than reuse the inappropriate `mcnt'.
63164
63165 2000-10-25  Jim Meyering  <meyering@lucent.com>
63166
63167         * lib/obstack.c: Update from libc.
63168
63169 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
63170
63171         * regex.c (regex_compile): Change the way of handling a range from
63172         a char less than 256 to a char not less than 256.
63173
63174 2000-10-24  Andrew Innes  <andrewi@gnu.org>
63175
63176         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
63177         NT-Emacs only.
63178         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
63179         so that re_search functions only quit when callers expect them to.
63180
63181 2000-10-23  Jim Meyering  <meyering@lucent.com>
63182
63183         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
63184         wrong.  That set_locale call must not have any side effects.
63185         From Paul Eggert.
63186
63187 2000-10-22  Jim Meyering  <meyering@lucent.com>
63188
63189         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
63190         [CYCLIC]: Remove now-unused definition.
63191
63192         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
63193         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
63194         Suggestion from Ulrich Drepper.
63195
63196 2000-10-21  Jim Meyering  <meyering@lucent.com>
63197
63198         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
63199         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
63200         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
63201
63202 2000-10-21  Jim Meyering  <meyering@lucent.com>
63203
63204         * lib/dirname.c (memrchr): Declare if necessary.
63205         (dir_name): Remove the restriction that there be no
63206         trailing slashes.  Now, this code skips past them, effectively
63207         ignoring them.
63208         [TEST_DIRNAME] (main): New unit tests.
63209
63210         * lib/memrchr.c: New file from GNU libc.
63211         Undef __memrchr, too.
63212         [!weak_alias]: Define __memrchr to memrchr.
63213         Guard weak_alias use with `#ifdef weak_alias'.
63214
63215 2000-10-21  Jim Meyering  <meyering@lucent.com>
63216
63217         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
63218         (dir_name): Use dir_name_r.
63219         * lib/dirname.h (dir_name_r): Declare it.
63220
63221 2000-10-17  Jim Meyering  <meyering@lucent.com>
63222
63223         * lib/quote.h (PARAMS): Define and use.
63224         Reported by Akim Demaille.
63225
63226         * lib/getopt.c: Update from libc.
63227
63228 2000-10-16  Jim Meyering  <meyering@lucent.com>
63229
63230         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
63231         setlocale.
63232         From Jan Fedak.
63233
63234 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
63235
63236         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
63237
63238 2000-09-25  Jim Meyering  <meyering@lucent.com>
63239
63240         * lib/md5.h (rol): Define (from GnuPG).
63241
63242         * lib/sha.c: Give credit (GnuPG) where due.
63243         (M): Use rol rather than open-coding it.
63244         Add a FIXME comment.
63245
63246 2000-09-21  Jim Meyering  <meyering@lucent.com>
63247
63248         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
63249         Reported by Michael Stone.
63250
63251 2000-09-20  Jim Meyering  <meyering@lucent.com>
63252
63253         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
63254         (noinst_HEADERS): Add sha.h.
63255         Based on code from Scott G. Miller and from GnuPG.
63256
63257 2000-09-18  Jim Meyering  <meyering@lucent.com>
63258
63259         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
63260         LIBS. Otherwise, everyone ends up linking with -lelf for some
63261         configurations.
63262         Reported by Mike Stone.
63263
63264 2000-09-15  Jim Meyering  <meyering@lucent.com>
63265
63266         * lib/regex.c: Update from libc.
63267
63268 2000-09-10  Jim Meyering  <meyering@lucent.com>
63269
63270         * lib/getopt.c (_getopt_internal): Update from glibc.
63271
63272 2000-09-09  Jim Meyering  <meyering@lucent.com>
63273
63274         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
63275         think it should be used as a general replacement for isascii.
63276         * lib/fnmatch.c: Likewise.
63277         * lib/mbswidth.c: Likewise
63278         * lib/regex.c: Likewise.
63279
63280         Don't use atoi.
63281         * lib/userspec.c: Include sys/param.h and limits.h.
63282         Include xstrtol.h.
63283         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
63284         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
63285         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
63286         UID, GID.  Check range.
63287
63288 2000-09-06  Jim Meyering  <meyering@lucent.com>
63289
63290         * lib/getopt.c (_getopt_internal): Update from glibc.
63291
63292 2000-08-30  Jim Meyering  <meyering@lucent.com>
63293
63294         * lib/strftime.c: Merge in changes from GNU libc.
63295
63296 2000-08-26  Jim Meyering  <meyering@lucent.com>
63297
63298         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
63299         * m4/fpending.m4: New file.
63300
63301 2000-08-26  Jim Meyering  <meyering@lucent.com>
63302
63303         * lib/closeout.c: Include "__fpending.h".
63304         (close_stdout_status): Return right away if there's nothing to flush.
63305
63306         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
63307         * lib/__fpending.c: New file.
63308         * lib/__fpending.h: New file.
63309
63310 2000-08-20  Jim Meyering  <meyering@lucent.com>
63311
63312         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
63313         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
63314         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
63315
63316 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
63317
63318         Improve fileutils installation on systems where running
63319         programs (like install) can't be unlinked.
63320         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
63321         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
63322
63323 2000-08-07  Paul Eggert  <eggert@twinsun.com>
63324
63325         Standardize on "memory exhausted" instead of "Memory exhausted"
63326         or "virtual memory exhausted".
63327         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
63328         "virtual memory exhausted".
63329         * lib/same.c (same_name): Invoke xalloc_die instead of printing
63330         our own message.
63331         * lib/userspec.c (parse_user_spec): Likewise.
63332         * lib/bumpalloc.h: comment fix
63333         * lib/same.c, userspec.c: Include xalloc.h.
63334
63335         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
63336         not char *const and pointing to a constant array.
63337         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
63338         (xrealloc): Comment fix.
63339
63340         * lib/userspec.c (parse_user_spec):
63341         Don't translate a message until just before returning,
63342         to avoid unnecessary translation.
63343
63344 2000-08-07  Jim Meyering  <meyering@lucent.com>
63345
63346         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
63347         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
63348         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
63349         getgroups.c, gethostname.c, getopt.h, group-member.c,
63350         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
63351         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
63352         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
63353         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
63354         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
63355         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
63356         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
63357         yesno.c: Back out Copyright date changes for each file with no change
63358         this year.  This eases coordination with other programs using the same
63359         source code modules.  From Paul Eggert.
63360
63361 2000-08-06  Paul Eggert  <eggert@twinsun.com>
63362
63363         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
63364         not char, for compatibility with glibc 2.1.3 strftime.c.
63365
63366 2000-08-03  Greg McGary  <greg@mcgary.org>
63367
63368         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
63369         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
63370         (EXTEND_BUFFER): Use them.
63371
63372 2000-08-01  Jim Meyering  <meyering@lucent.com>
63373
63374         * lib/dirname.c (ISSLASH): Define.
63375         (BACKSLASH_IS_PATH_SEPARATOR): Define.
63376         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
63377         both `\' and `/' may be use as path separators.
63378         Based on a patch from Prashant TR.
63379
63380 2000-07-31  Paul Eggert  <eggert@twinsun.com>
63381
63382         * lib/quotearg.c (quotearg_n_options): Don't make the initial
63383         slot vector a constant, since it might get modified.
63384
63385 2000-07-31  Jim Meyering  <meyering@lucent.com>
63386
63387         * lib/xmalloc.c: Use `virtual memory exhausted', not
63388         `Memory exhausted'.
63389         * lib/obstack.c (print_and_abort): Likewise.
63390
63391 2000-07-30  Paul Eggert  <eggert@twinsun.com>
63392
63393         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
63394         buffer, so that the caller can always quote one small
63395         component of a "memory exhausted" message in slot 0.
63396         From a suggestion by Jim Meyering.
63397
63398 2000-07-30  Jim Meyering  <meyering@lucent.com>
63399
63400         * lib/makepath.c (make_path): Quote the other instance, too.
63401
63402         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
63403         (STATIC_BUF_SIZE): Define.
63404         (quotearg_n_options): Use only statically allocated storage when
63405         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
63406         than STATIC_BUF_SIZE.
63407
63408 2000-07-29  Jim Meyering  <meyering@lucent.com>
63409
63410         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
63411         * lib/dirname.c (dir_name): Likewise.
63412
63413         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
63414         `/'.
63415
63416         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
63417         (dir_name): Assert that there are no trailing slashes.
63418
63419 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
63420
63421         * lib/mbswidth.h (mbswidth): Add a flags argument.
63422         (mbswidth): New declaration.
63423         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
63424         * lib/mbswidth.c (mbswidth): Add a flags argument.
63425         (mbsnwidth): New function.
63426
63427 2000-07-24  Jim Meyering  <meyering@lucent.com>
63428
63429         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
63430
63431 2000-07-23  Paul Eggert  <eggert@twinsun.com>
63432
63433         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
63434
63435 2000-07-23  Paul Eggert  <eggert@twinsun.com>
63436
63437         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
63438         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
63439         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
63440         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
63441         invoke multibyte primitives.
63442
63443 2000-07-23  Paul Eggert  <eggert@twinsun.com>
63444
63445         * lib/quotearg.c:
63446         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
63447         so that mbstate_t is always defined.
63448
63449         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
63450         be 1 in at least one GCC installation, and this configuration
63451         error is likely to be common.  Ignoring MB_LEN_MAX hurts
63452         performance on hosts that have mbrtowc but have only unibyte
63453         locales, but I assume these hosts are rare.
63454
63455 2000-07-23  Paul Eggert  <eggert@twinsun.com>
63456
63457         * lib/mbswidth.c (_XOPEN_SOURCE):
63458         Don't define; this causes problems on Solaris 7.
63459         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
63460
63461 2000-07-23  Jim Meyering  <meyering@lucent.com>
63462
63463         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
63464         too: getgrgid, getpwuid, getuid.
63465
63466 2000-07-23  Jim Meyering  <meyering@lucent.com>
63467
63468         * lib/basename.c (base_name): Add an assertion.
63469
63470 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
63471
63472         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
63473         shadow its mbsinit function.
63474
63475 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
63476
63477         * lib/mbswidth.h: New file.
63478         * lib/mbswidth.c: New file.
63479         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
63480         (noinst_HEADERS): Add mbswidth.h.
63481
63482 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
63483
63484         * lib/config.charset: Add support for FreeBSD. Improve support for
63485         HP-UX and IRIX 6.
63486
63487 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
63488
63489         * m4/mbswidth.m4: New file.
63490         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
63491
63492 2000-07-15  Jim Meyering  <meyering@lucent.com>
63493
63494         * lib/makepath.c: Include quote.h.
63495         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
63496         corresponding argument in a `quote (...)' call.
63497         Give better diagnostics.
63498
63499         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
63500         (noinst_HEADERS): Add quote.h.
63501
63502         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
63503         from tar's src/misc.c.
63504         * lib/quote.h: New file.  Prototypes for same.
63505
63506 2000-07-14  Paul Eggert  <eggert@twinsun.com>
63507
63508         From a suggestion by Bruno Haible.
63509         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
63510         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
63511         to decide whether to define the BeOS workaround macro;
63512         this adjusts to the change to AC_MBSTATE_T.
63513
63514 2000-07-14  Jim Meyering  <meyering@lucent.com>
63515
63516         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
63517         jm_AC_TYPE_UINTMAX_T.
63518
63519 2000-07-13  Paul Eggert  <eggert@twinsun.com>
63520
63521         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
63522
63523         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
63524         quotearg_buffer_restyled): Add support for
63525         clocale_quoting_style.  Undo previous change to
63526         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
63527         and "{RIGHT QUOTATION MARK}" msgids.
63528
63529 2000-07-10  Paul Eggert  <eggert@twinsun.com>
63530
63531         From a suggestion by Bruno Haible.
63532         * m4/mbstate_t.m4 (AC_MBSTATE_T):
63533         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
63534         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
63535         and mbstate_t, to a single-part test that simply defines mbstate_t.
63536         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
63537         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
63538
63539 2000-07-10  Jim Meyering  <meyering@lucent.com>
63540
63541         * m4/strerror_r.m4: Mirror the correction made in autoconf.
63542
63543         * m4/gnu-source.m4: Output to confdefs.h directly.
63544         Suggestion from Akim Demaille.
63545
63546 2000-07-09  Paul Eggert  <eggert@twinsun.com>
63547
63548         The old behavior of quoting `like this' doesn't look good with
63549         newer, ISO-style fonts.  See:
63550         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
63551
63552         Instead, quote "like this" by default.  Let the translator
63553         tailor the locale-specific quoting behavior by providing
63554         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
63555
63556         * lib/quotearg.c (N_): New macro.
63557         (gettext_default): New function.
63558         (quotearg_buffer_restyled): Use
63559         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
63560         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
63561
63562 2000-07-09  Jim Meyering  <meyering@lucent.com>
63563
63564         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
63565         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
63566
63567         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
63568         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
63569
63570 2000-07-09  Jim Meyering  <meyering@lucent.com>
63571
63572         * lib/Most files: Update copyright dates to include 2000.
63573
63574 2000-07-08  Jim Meyering  <meyering@lucent.com>
63575
63576         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
63577         if not defined.
63578         (xgethostname): Remove now-unnecessary #ifdef.
63579         Move declaration of `err' into loop where it's used.
63580
63581 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63582         and Bruno Haible  <haible@clisp.cons.org>
63583
63584         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
63585         only if the test for an object-type mbstate_t fails.  This
63586         prevents us from mistakenly reporting that mbstate_t is a
63587         system object type after we "#define mbstate_t int" to work
63588         around its lack.
63589
63590 2000-07-05  Paul Eggert  <eggert@twinsun.com>
63591         and Bruno Haible  <haible@clisp.cons.org>
63592
63593         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
63594
63595 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63596
63597         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
63598         to strerror_r.
63599         Include <ctype.h> for use of isalpha.
63600
63601 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63602
63603         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
63604         by allocating a larger buffer. Test the gethostname return value for
63605         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
63606         returns an error and ENAMETOOLONG isn't defined.
63607
63608 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
63609
63610         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
63611         dimension.
63612
63613 2000-07-04  Jim Meyering  <meyering@lucent.com>
63614
63615         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
63616         of the deprecated AC_CHECKING.
63617
63618 2000-07-04  Jim Meyering  <meyering@lucent.com>
63619
63620         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
63621         Reported by Bruno Haible.
63622
63623 2000-07-04  Jim Meyering  <meyering@lucent.com>
63624
63625         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
63626         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
63627         lacks mbrtowc.
63628
63629 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63630
63631         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
63632         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
63633
63634 2000-07-03  Paul Eggert  <eggert@twinsun.com>
63635         and Bruno Haible  <haible@clisp.cons.org>
63636
63637         * lib/quotearg.c (mbrtowc):
63638         Assign to *pwc, and return 1 only if result is nonzero.
63639         (iswprint): Use ISPRINT when substituting our own mbrtowc.
63640
63641 2000-07-03  Jim Meyering  <meyering@lucent.com>
63642
63643         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
63644
63645 2000-07-03  Jim Meyering  <meyering@lucent.com>
63646
63647         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
63648         This is necessary to get a definition of e.g., UTMP_FILE on
63649         HP-UX 10.20.
63650         From Bob Proulx.
63651
63652 2000-07-02  Jim Meyering  <meyering@lucent.com>
63653
63654         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
63655
63656         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
63657         AC_LIBOBJ(function_name).
63658         * m4/chown.m4: Likewise.
63659         * m4/fnmatch.m4: Likewise.
63660         * m4/ftruncate.m4: Likewise.
63661         * m4/getgroups.m4: Likewise.
63662         * m4/getline.m4: Likewise.
63663         * m4/group-member.m4: Likewise.
63664         * m4/jm-macros.m4: Likewise.
63665         * m4/lstat.m4: Likewise.
63666         * m4/malloc.m4: Likewise.
63667         * m4/memcmp.m4: Likewise.
63668         * m4/nanosleep.m4: Likewise.
63669         * m4/putenv.m4: Likewise.
63670         * m4/realloc.m4: Likewise.
63671         * m4/regex.m4: Likewise.
63672         * m4/stat.m4: Likewise.
63673         * m4/strftime.m4: Likewise.
63674
63675 2000-07-02  Jim Meyering  <meyering@lucent.com>
63676
63677         * lib/quotearg.c (mbstate_t): Don't define here.
63678
63679 2000-07-02  Jim Meyering  <meyering@lucent.com>
63680
63681         * lib/nanosleep.c (SIGCONT): Define if not already defined.
63682
63683 2000-07-01  Jim Meyering  <meyering@lucent.com>
63684
63685         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
63686
63687 2000-07-01  Jim Meyering  <meyering@lucent.com>
63688
63689         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
63690         problem.
63691
63692 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63693
63694         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
63695         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
63696
63697 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
63698
63699         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
63700         per change in ../m4/ls-mntd-fs.m4.
63701         (read_filesystem_list): Ignore symbolic links.
63702
63703 2000-06-29  Jim Meyering  <meyering@lucent.com>
63704
63705         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
63706         for declaration of strcmp.
63707
63708         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
63709
63710         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
63711         Avoid warning by casting result to `char *' to remove `const'.
63712
63713 2000-06-28  Jim Meyering  <meyering@lucent.com>
63714
63715         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
63716         included by quotearg.c, for which we perform this test.  From
63717         Bruno Haible.
63718
63719 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63720
63721         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
63722         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
63723         <utmpx.h> exists, put readutmp.o into LIBOBJS.
63724
63725 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
63726
63727         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
63728
63729 2000-06-26  Paul Eggert  <eggert@twinsun.com>
63730
63731         savedir now sets errno on failure and invokes xmalloc to get memory.
63732         Fix a couple of other minor bugs while we're at it.
63733
63734         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
63735         (NAMLEN): Remove macro.
63736         (malloc, realloc): Remove decls.
63737         (stpcpy): Likewise.
63738         ("xalloc.h"): Include.
63739         (NAME_SIZE_DEFAULT): New macro.
63740         (savedir): Use xmalloc / xrealloc to allocate memory.
63741         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
63742         Skip "" directory entries.
63743         Use strlen to calculate directory entry length, since the old method
63744         is rarely used these days and isn't worth supporting.
63745         Don't use a pointer after freeing it.
63746         Check for integer overflow when calculating allocation size.
63747         Use memcpy to copy entries, instead of stpcpy.
63748         Set errno properly when returning NULL.
63749         Check for readdir error.
63750
63751 2000-06-26  Jim Meyering  <meyering@lucent.com>
63752
63753         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
63754
63755 2000-06-25  Jim Meyering  <meyering@lucent.com>
63756
63757         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
63758         Linux header bug when _XOPEN_SOURCE is defined to 500.
63759
63760 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63761
63762         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
63763         deficiency.
63764
63765 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
63766
63767         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
63768         Include xalloc.h.
63769         Don't include <stdlib.h>.  Don't declare malloc, realloc.
63770
63771 2000-06-24  Jim Meyering  <meyering@lucent.com>
63772
63773         * m4/strerror_r.m4: Revive this file -- to try out an experimental
63774         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
63775         for which strerror does return char*, but which lacks a conveniently
63776         accessible declaration of the function.  If the compile-test says
63777         strerror_r doesn't work, then resort to a `run'-test that works on
63778         BeOS and segfaults on DEC Unix.
63779
63780 2000-06-24  Jim Meyering  <meyering@lucent.com>
63781
63782         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
63783
63784 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63785
63786         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
63787         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
63788
63789 2000-06-23  Paul Eggert  <eggert@twinsun.com>
63790
63791         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
63792         (mbrtowc, mbstate_t): Define substitutes if
63793         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
63794         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
63795         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
63796
63797 2000-06-23  Jim Meyering  <meyering@lucent.com>
63798
63799         * m4/afs.m4: Add missing AC_MSG_RESULT.
63800         Reported by Bruno Haible.
63801
63802         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
63803         Suggestion from Bruno Haible.
63804
63805 2000-06-23  Jim Meyering  <meyering@lucent.com>
63806
63807         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
63808
63809 2000-06-21  Jim Meyering  <meyering@lucent.com>
63810
63811         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
63812
63813 2000-06-21  Jim Meyering  <meyering@lucent.com>
63814
63815         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
63816         (noinst_HEADERS): Add getstr.h.
63817
63818         * lib/getline.c (getstr): Move into a separate file.
63819         * lib/getstr.c (getstr): New file, extracted from getline.c, with
63820         the following changes: new parameter, delim2; both delim[12]
63821         parameters have type `int', not `char'.  The latter would lose
63822         with 8-bit delimiters.
63823         * lib/getstr.h: New file.
63824
63825 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63826
63827         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
63828         than 1024, return a memory chunk of least possible size, instead
63829         of size PATH_MAX + 2. In the loop, increment the size proportionally.
63830         Use free/xmalloc instead of xrealloc to avoid copying for very long
63831         paths.
63832
63833 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63834
63835         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
63836         the empty string.
63837
63838 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
63839
63840         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
63841         address, not strdup.  Include <stdlib.h> and don't declare free().
63842
63843 2000-06-19  Jim Meyering  <meyering@lucent.com>
63844
63845         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
63846
63847 2000-06-18  Jim Meyering  <meyering@lucent.com>
63848
63849         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
63850
63851         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
63852         `checking whether...' message to be consistent with that of the
63853         lstat test.
63854
63855 2000-06-18  Jim Meyering  <meyering@lucent.com>
63856
63857         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
63858         Besides, these days every porting target provides a mkdir function.
63859
63860         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
63861         needed. (this snippet comes from src/system.h).
63862
63863 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
63864
63865         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
63866
63867 2000-06-15  Paul Eggert  <eggert@twinsun.com>
63868
63869         * lib/human.c (adjust_value): New function.
63870         (human_readable_inexact): Apply rounding style even when
63871         printing approximate values.
63872
63873 2000-06-14  Paul Eggert  <eggert@twinsun.com>
63874
63875         * lib/human.c (human_readable_inexact): Allow an input block
63876         size that is not a multiple of the output block size, and vice versa.
63877         Reported by Piergiorgio Sartor.
63878
63879 2000-06-14  Paul Eggert  <eggert@twinsun.com>
63880
63881         * lib/getdate.y (get_date): Apply relative times after time
63882         zone indicator, not before.  Reported by Todd A. Jacobs.
63883
63884 2000-06-13  Jim Meyering  <meyering@lucent.com>
63885
63886         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
63887
63888         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
63889
63890 2000-06-12  Paul Eggert  <eggert@twinsun.com>
63891
63892         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
63893
63894 2000-06-12  Jim Meyering  <meyering@lucent.com>
63895
63896         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
63897         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
63898         optional argument.
63899         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
63900         the optional argument, `lib'.
63901
63902 2000-06-08  Jim Meyering  <meyering@lucent.com>
63903
63904         * m4/largefile.m4: Remove file (now that it's part of autoconf).
63905
63906 2000-06-04  Paul Eggert  <eggert@twinsun.com>
63907
63908         Rewrite largefile configuration so that we don't need to run
63909         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
63910         AC_CANONICAL_HOST in configure.in -- jmm]
63911
63912         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
63913         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
63914         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
63915         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
63916         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
63917         All uses changed.
63918         Instead of inspecting the output of getconf, try to compile the
63919         test program without and with the macro definition.
63920         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
63921         for getconf.  Instead, check for the needed flags by compiling
63922         test programs.
63923
63924 2000-06-04  Paul Eggert  <eggert@twinsun.com>
63925
63926         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
63927
63928 2000-06-04  Jim Meyering  <meyering@lucent.com>
63929
63930         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
63931         SunOS 4.1.4 for which gid_t is an unsigned type.
63932
63933 2000-06-03  Jim Meyering  <meyering@lucent.com>
63934
63935         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
63936         now that autoconf requires that.
63937
63938         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
63939         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
63940         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
63941
63942 2000-06-03  Jim Meyering  <meyering@lucent.com>
63943
63944         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
63945
63946 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
63947
63948         * m4/glibc21.m4: New file.
63949         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
63950
63951 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
63952
63953         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
63954         newer, don't install charset.alias.
63955         * lib/config.charset: Change the Linux/glibc rules so they become empty
63956         on glibc-2.1 or newer.
63957
63958 2000-06-02  Jim Meyering  <meyering@lucent.com>
63959
63960         * lib/mountlist.c: Back out last change.  Instead, do this...
63961         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
63962         me_dummy member using the same `ignore'-testing code.
63963         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
63964         fs_type strings.
63965         From Mark D. Roth.
63966
63967 2000-05-29  Jim Meyering  <meyering@lucent.com>
63968
63969         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
63970         mounts with the `ignore' attribute.  Based on a patch from
63971         Mark D. Roth.
63972
63973 2000-05-28  Jim Meyering  <meyering@lucent.com>
63974
63975         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
63976         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
63977         * m4/stat.m4: Likewise.
63978         * m4/lstat.m4: Likewise.
63979         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
63980
63981         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
63982         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
63983
63984 2000-05-26  Jim Meyering  <meyering@lucent.com>
63985
63986         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
63987
63988 2000-05-24  Jim Meyering  <meyering@lucent.com>
63989
63990         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
63991         autoconf requires that.
63992         * m4/lib-check.m4: Likewise.
63993         * m4/jm-macros.m4: Likewise.
63994         * m4/strftime.m4: Likewise.
63995
63996         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
63997         AC_CHECK_DECLS, now that autoconf requires that.
63998
63999 2000-05-22  Jim Meyering  <meyering@lucent.com>
64000
64001         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64002         * m4/lstat.m4: Likewise.
64003
64004 2000-05-22  Jim Meyering  <meyering@lucent.com>
64005
64006         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
64007
64008 2000-05-20  Jim Meyering  <meyering@lucent.com>
64009
64010         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
64011         (jm_PREREQ): Use it.
64012
64013 2000-05-18  Jim Meyering  <meyering@lucent.com>
64014
64015         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
64016         back, too, since it may have been modified by allocate_entry.
64017         (hash_delete): Rewrite to use neither the assignment operator
64018         nor the comma operator in an if-expression.
64019
64020 2000-05-15  Paul Eggert  <eggert@twinsun.com>
64021
64022         * lib/closeout.c:
64023         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
64024         Remove; no longer needed.
64025         "quotearg.h": Add include.
64026         (file_name): Do not bother to explicitly initialize to NULL; it's less
64027         efficient on some hosts.
64028         (close_stdout_status): Remove test as to whether stdout was already
64029         closed; it breaks for the case "echo x | sort >&-".
64030         Quote file name colons.
64031         Do not assume that _("write error") lacks format strings.
64032
64033 2000-05-15  Jim Meyering  <meyering@lucent.com>
64034
64035         * lib/version-etc.c (version_etc_copyright): Update the copyright
64036         string used in all --version output.
64037
64038 2000-05-14  Jim Meyering  <meyering@lucent.com>
64039
64040         * lib/closeout.c (close_stdout_set_file_name): New function.
64041         (close_stdout_status): Use new file-scoped global.
64042         Return right away if fstat says the stdout file descriptor is invalid.
64043         * lib/closeout.h (close_stdout_set_file_name): Declare.
64044
64045 2000-05-10  Jim Meyering  <meyering@lucent.com>
64046
64047         * lib/closeout.c [default_exit_status]: New file-scoped variable.
64048         (close_stdout_set_status): New function.
64049         * lib/closeout.h (close_stdout_set_status): Declare.
64050
64051 2000-05-09  Jim Meyering  <meyering@lucent.com>
64052
64053         * m4/gettext.m4: Rename this...
64054         * m4/libintl.m4: ...to this.
64055
64056 2000-05-08  Jim Meyering  <meyering@lucent.com>
64057
64058         * lib/long-options.c: Don't include closeout.h.
64059         (parse_long_options): Don't call close_stdout for --version.
64060
64061 2000-05-06  Paul Eggert  <eggert@twinsun.com>
64062
64063         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
64064         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
64065         2.1.3 bug.  This avoids a clash when files like regex.c define
64066         _GNU_SOURCE.
64067
64068 2000-05-06  Jim Meyering  <meyering@lucent.com>
64069
64070         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
64071         (AC_REPLACE_FUNCS): Add strnlen.
64072
64073         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
64074         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
64075
64076         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
64077         AC_SEARCH_LIBS call for nanosleep.
64078         (LIB_NANOSLEEP): Set and AC_SUBST.
64079
64080 2000-05-06  Jim Meyering  <meyering@lucent.com>
64081
64082         * lib/strnlen.c: Undefine __strnlen and strnlen.
64083         [!weak_alias]: Define __strnlen to strnlen.
64084
64085         * lib/atexit.c: New file, from libiberty.
64086
64087 2000-05-06  Jim Meyering  <meyering@lucent.com>
64088
64089         * lib/closeout.c (close_stdout_status): Also check for errors on the
64090         stderr stream.
64091
64092 2000-05-05  Jim Meyering  <meyering@lucent.com>
64093
64094         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
64095         AC_SEARCH_LIBS call for clock_gettime.
64096         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
64097
64098         * m4/search-libs.m4: Update from autoconf.
64099
64100         su doesn't work on Solaris 2.6.
64101         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
64102         <shadow.h>.  Reported by Dragos Harabor.
64103
64104 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
64105
64106         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
64107         memcpy instead of xmalloc, xrealloc, path_concat.
64108         (locale_charset): Treat empty environment variables as absent.
64109         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
64110
64111 2000-05-04  Jim Meyering  <meyering@lucent.com>
64112
64113         * lib/getopt.c: Update from glibc.
64114         * lib/obstack.c: Likewise.
64115         * lib/obstack.h: Likewise.
64116         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
64117         file
64118
64119         * lib/regex.h: Likewise.
64120         * lib/strndup.c: Likewise.
64121         * lib/strnlen.c: New file, from glibc.
64122
64123 2000-05-03  Jim Meyering  <meyering@lucent.com>
64124
64125         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
64126
64127 2000-05-02  Paul Eggert  <eggert@twinsun.com>
64128
64129         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
64130         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
64131         compile-time test, rather than inspecting host and OS, to
64132         decide whether to define _LARGEFILE_SOURCE.
64133
64134 2000-05-01  Jim Meyering  <meyering@lucent.com>
64135
64136         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
64137
64138         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
64139         Based on a patch from Bruno Haible.
64140
64141 2000-05-01  Jim Meyering  <meyering@lucent.com>
64142
64143         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
64144
64145 2000-04-29  Jim Meyering  <meyering@lucent.com>
64146
64147         * lib/path-concat.c: Declare strdup only if it's not defined.
64148         * lib/canon-host.c: Likewise.
64149
64150 2000-04-28  Jim Meyering  <meyering@lucent.com>
64151
64152         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
64153         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
64154         is included first, then limits.h is included by locale.h by libintl.h.
64155         From John David Anglin.
64156
64157 2000-04-25  Jim Meyering  <meyering@lucent.com>
64158
64159         * lib/makepath.c (S_IRWXUGO): Define.
64160         (make_path): Always perform explicit chmod if MODE specifies any
64161         of the `special' permission bits.  Prompted by a bug report against
64162         install from Mate Wierdl and Joost van Baal.
64163
64164 2000-04-18  Jim Meyering  <meyering@lucent.com>
64165
64166         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
64167         (jm_PREREQ): Use it.
64168
64169 2000-04-18  Jim Meyering  <meyering@lucent.com>
64170
64171         * lib/README: New file.
64172
64173         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
64174         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
64175
64176 2000-04-17  Jim Meyering  <meyering@lucent.com>
64177
64178         Get it right :-)
64179         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
64180         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
64181         Suggestion from Akim Demaille.
64182
64183 2000-04-17  Jim Meyering  <meyering@lucent.com>
64184
64185         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
64186         the definition of it to rpl_strftime also defined-away the system's
64187         declaration.
64188
64189 2000-04-15  Jim Meyering  <meyering@lucent.com>
64190
64191         Use `C' to denote so-called `contiguous' files, the same way
64192         that tar does.
64193         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
64194         (ftypelet): Use S_ISCTG.
64195         From Michael Deutschmann.
64196
64197 2000-04-14  Jim Meyering  <meyering@lucent.com>
64198
64199         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
64200         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
64201         clobbered.
64202
64203 2000-04-14  Jim Meyering  <meyering@lucent.com>
64204
64205         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
64206
64207 2000-04-13  Jim Meyering  <meyering@lucent.com>
64208
64209         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
64210         AH_VERBATIM to insert required #ifndef into config.h.in.
64211         Suggestion from Akim Demaille.
64212
64213 2000-04-12  Jim Meyering  <meyering@lucent.com>
64214
64215         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
64216         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
64217         Christian Krackowizer.
64218
64219         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
64220         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
64221         (AC_SYS_LARGEFILE): Require.
64222         (AM_C_PROTOTYPES): Require.
64223
64224 2000-04-08  Jim Meyering  <meyering@lucent.com>
64225
64226         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
64227         names don't conflict.  Reported by Eli Zaretskii.
64228
64229 2000-04-07  Jim Meyering  <meyering@lucent.com>
64230
64231         * lib/putenv.c: Move inclusion of errno.h so it follows that of
64232         sys/types.h, to work around system header problems on AIX 3.2.5.
64233         From Bruno Haible.
64234
64235 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
64236
64237         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
64238         bug.  Deal with the different error behavior of Irix iconv.
64239
64240 2000-04-05  Paul Eggert  <eggert@twinsun.com>
64241
64242         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
64243         IRIX if the installer said otherwise.
64244
64245 2000-04-05  Jim Meyering  <meyering@lucent.com>
64246
64247         Portability tweaks required for ultrix4.3.
64248         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
64249         (jm_CHECK_DECLS): Add getutent to the list of functions.
64250         (_jm_DECL_HEADERS): Add utmpx.h.
64251         From John David Anglin.
64252
64253         * m4/strftime.m4: Back out the 2000-04-02 change.
64254         Instead of that change, simply undefine putenv in the test program.
64255
64256 2000-04-05  Jim Meyering  <meyering@lucent.com>
64257
64258         Portability tweaks required for ultrix4.3.
64259         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
64260         getutent.
64261         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
64262         * lib/canon-host.c: Declare strdup.
64263         * lib/path-concat.c: Likewise.
64264         From John David Anglin.
64265
64266 2000-04-04  Jim Meyering  <meyering@lucent.com>
64267
64268         Be more DOS 8.3-friendly.
64269         * lib/ref-add.sin: Renamed from ref-add.sed.in.
64270         * lib/ref-del.sin: Renamed from ref-del.sed.in.
64271         * lib/Makefile.am: Reflect renaming.
64272         Reported by Eli Zaretskii.
64273
64274         Use a temporary file name that won't clash with `charset.alias'
64275         in the DOS 8.3 name space.
64276         * lib/Makefile.am (charset_tmp): Define.
64277         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
64278         (uninstall-local): Likewise.
64279         Reported by Eli Zaretskii.
64280
64281 2000-04-03  Jim Meyering  <meyering@lucent.com>
64282
64283         * m4/gettext.m4: Fix typo in comment.
64284
64285         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
64286         textutils/configure.in).  Suggestion from Paul Eggert.
64287         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
64288
64289 2000-04-02  Paul Eggert  <eggert@twinsun.com>
64290
64291         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
64292         variable in the shell rather than using putenv, which isn't
64293         portable.  This avoids the configure-time inter-test dependency
64294         on the potentially-renamed putenv function.
64295
64296 2000-03-30  Paul Eggert  <eggert@twinsun.com>
64297
64298         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
64299         before checking struct stat.st_blksize, so that
64300         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
64301
64302 2000-03-29  Paul Eggert  <eggert@twinsun.com>
64303
64304         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
64305         since strftime.c uses HAVE_STRFTIME to decide whether to use
64306         the underlying strftime.
64307
64308 2000-03-29  Paul Eggert  <eggert@twinsun.com>
64309
64310         * lib/time/strftime.c (my_strftime): Make sure we call the system
64311         strftime, not ourselves, when invoking the underlying strftime.
64312
64313 2000-03-24  Jim Meyering  <meyering@lucent.com>
64314
64315         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
64316         (charset_alias): Define.
64317         (install-exec-local): Factor out common code.
64318         (uninstall-local): Split lines longer than 80.
64319         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
64320         (SUFFIXES): Define.
64321         (.sed.in.sed): New rule.  Don't redirect directly to $@.
64322         (CLEANFILES): Add ref-add.sed and ref-del.sed.
64323
64324 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
64325
64326         * lib/config.charset: Output a line containing "Packages using this
64327         file".
64328         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
64329         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
64330         ref-del.sed): New rules.
64331
64332 2000-03-17  Jim Meyering  <meyering@lucent.com>
64333
64334         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
64335         Otherwise, include <strings.h>
64336
64337 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
64338
64339         * lib/unicodeio.c (utf8_wctomb): New function.
64340         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
64341         format instead of in UCS-4 with platform dependent endianness.
64342
64343 2000-03-10  Jim Meyering  <meyering@lucent.com>
64344
64345         * m4/lib-check.m4: Look for getspnam in -lgen, too.
64346         From Marco Franzen.
64347
64348 2000-03-07  Paul Eggert  <eggert@twinsun.com>
64349
64350         * lib/savedir.c (savedir): Work even if directory size is
64351         negative; this can happen with some screwy NFS configurations.
64352
64353 2000-03-06  Jim Meyering  <meyering@lucent.com>
64354
64355         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
64356         if it's NULL (because we ran out of memory).  From Bruno Haible.
64357
64358 2000-03-05  Jim Meyering  <meyering@lucent.com>
64359
64360         * lib/localcharset.c ("path-concat.h"): Include.
64361         (get_charset_aliases): Use path_concat instead of ANSI string
64362         concatenation.
64363
64364         * lib/unicodeio.h (PARAMS): Define.
64365         Use it to guard prototype.
64366
64367 2000-03-04  Jim Meyering  <meyering@lucent.com>
64368
64369         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
64370         for lib/localcharset.c.
64371
64372 2000-03-04  Jim Meyering  <meyering@lucent.com>
64373
64374         * lib/Makefile.am (install-exec-local): Create $(libdir) before
64375         installing into it.
64376         (uninstall-local): Uncomment this rule so `make distcheck' works
64377         once again.
64378
64379         * lib/unicodeio.c (<errno.h>): Include it.
64380         (errno): Declare if not defined.
64381
64382         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
64383
64384         * lib/config.charset: New version, incorporating remarks from a linux
64385         i18n mailing list.  From Bruno Haible.
64386
64387 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
64388
64389         * m4/codeset.m4: New file.
64390         * m4/iconv.m4: New file.
64391         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
64392
64393 2000-03-03  Jim Meyering  <meyering@lucent.com>
64394
64395         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
64396
64397 2000-03-02  Jim Meyering  <meyering@lucent.com>
64398
64399         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
64400         the messages come out on separate lines.
64401
64402         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
64403         rather than jm_CHECK_DECLARATIONS.
64404         * m4/decl.m4: Remove now-unused file.
64405
64406         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
64407         geteuid.
64408
64409 2000-03-02  Jim Meyering  <meyering@lucent.com>
64410
64411         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
64412
64413 2000-03-01  Jim Meyering  <meyering@lucent.com>
64414
64415         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
64416         * lib/unicodeio.c: Likewise.
64417
64418 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
64419
64420         * lib/config.charset: New file.
64421         * lib/localcharset.c: New file.
64422         * lib/unicodeio.h, lib/unicodeio.c: New files.
64423         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
64424         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
64425         (noinst_HEADERS): Add unicodeio.h.
64426         (all-local, install-exec-local, charset.alias): New targets.
64427
64428 2000-02-28  Paul Eggert  <eggert@twinsun.com>
64429
64430         * lib/quotearg.c (ALERT_CHAR): New macro.
64431         (quotearg_buffer_restyled): Use it.
64432
64433 2000-02-27  Jim Meyering  <meyering@lucent.com>
64434
64435         * m4/check-decl.m4: Add getenv to the list.
64436
64437 2000-02-27  Jim Meyering  <meyering@lucent.com>
64438
64439         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
64440         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
64441
64442         * lib/backupfile.c: Guard inclusion of stdlib.h with
64443         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
64444         Declare malloc if needed.
64445
64446         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
64447         `#ifndef HAVE_DECL..'
64448         now that autoconf always defines the HAVE_DECL_ symbols.
64449         * lib/human.c: Likewise.
64450         * lib/same.c: Likewise.
64451         * lib/strtoumax.c: Likewise.
64452
64453         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
64454         declaration check was not run.
64455         * lib/hash.c: Likewise.
64456         * lib/human.c: Likewise.
64457         * lib/same.c: Likewise.
64458         * lib/strtoumax.c: Likewise.
64459
64460         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
64461         `.', then first look up the entire `.'-containing string as a login
64462         name.
64463
64464 2000-02-23  Jim Meyering  <meyering@lucent.com>
64465
64466         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
64467         in place of my hack.
64468
64469 2000-02-18  Paul Eggert  <eggert@twinsun.com>
64470
64471         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
64472         (textint): New typedef.
64473         (parser_control): Member year changed from int to textint.
64474         All uses changed.
64475         (YYSTYPE): Removed; replaced by %union with int and textint members.
64476         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
64477         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
64478         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
64479         (tSNUMBER, tUNUMBER): Now of type <textintval>.
64480         (date, number, to_year): Use width of number in digits, not its value,
64481         to determine whether it's a 2-digit year, or a 2-digit time.
64482         (yylex): Store number of digits of numeric tokens.
64483         Reported by John Kendall.
64484
64485         (parser_control): Changed from struct parser_control to typedef (for
64486         consistency).  All uses changed.
64487
64488         (tID): Removed; not used.
64489         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
64490
64491 2000-02-14  Paul Eggert  <eggert@twinsun.com>
64492
64493         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
64494         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
64495
64496 2000-02-12  Jim Meyering  <meyering@lucent.com>
64497
64498         * lib/userspec.c (ISDIGIT): Define it.
64499         (isdigit): Remove definition.
64500         (is_number): Use ISDIGIT, not isdigit.
64501         <libintl.h>: Include.
64502         (_ and N_): Define.
64503         (parse_user_spec): Mark translatable strings.
64504
64505 2000-02-10  Jim Meyering  <meyering@lucent.com>
64506
64507         With these changes, nanosleep.[ch] are finally enough like the other
64508         lib/* replacement files to compile on a few more losing systems.
64509
64510         * lib/nanosleep.h: Don't include config.h.
64511         Remove prototype from declaration of nanosleep.
64512         (PARAMS): Remove now-unneeded definition.
64513         * lib/nanosleep.c: #undef nanosleep.
64514         (rpl_nanosleep): Rename from nanosleep.
64515
64516 2000-02-10  Jim Meyering  <meyering@lucent.com>
64517
64518         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
64519         gnu_nanosleep to rpl_nanosleep.
64520
64521 2000-02-09  Jim Meyering  <meyering@lucent.com>
64522
64523         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
64524         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
64525
64526 2000-02-08  Akim Demaille  <akim@epita.fr>
64527
64528         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
64529         `[' and `]' and remove uses of `changequote'.
64530         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
64531         (AC_SYS_LARGEFILE): Likewise.
64532         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
64533         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
64534         of changequote.
64535         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
64536         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
64537         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
64538         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
64539
64540 2000-02-05  Jim Meyering  <meyering@lucent.com>
64541
64542         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
64543         Remove explicit use of AC_HEADER_TIME.  It is required by
64544         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
64545         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
64546         in autoconf whereby the expansion of the latter ended up preceding
64547         the expansion of its prerequisite, AC_HEADER_TIME.
64548         Reported by Volker Borchert.
64549
64550 2000-02-03  Jim Meyering  <meyering@lucent.com>
64551
64552         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
64553
64554 2000-02-03  Jim Meyering  <meyering@lucent.com>
64555
64556         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
64557         rather than with `#if HAVE_UTMPNAME'.
64558
64559 2000-02-02  Jim Meyering  <meyering@lucent.com>
64560
64561         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
64562         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
64563         Reported by Eli Zaretskii.
64564
64565 2000-02-01  Jim Meyering  <meyering@lucent.com>
64566
64567         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
64568
64569 2000-01-31  Jim Meyering  <meyering@lucent.com>
64570
64571         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
64572         functions.  Add the time.h and sys/time.h headers along with the
64573         AC_REQUIRE'ment of AC_HEADER_TIME.
64574
64575 2000-01-31  Jim Meyering  <meyering@lucent.com>
64576
64577         * lib/nanosleep.h (nanosleep): Guard declaration with
64578         `#if ! HAVE_DECL_NANOSLEEP'.
64579         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
64580         the declaration in that vendor's sys/timers.h.
64581         Reported by Christian Krackowizer.
64582
64583         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
64584         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
64585         (ISPRINT): Likewise.
64586         Reported by Tom Tromey.
64587
64588 2000-01-30  Jim Meyering  <meyering@lucent.com>
64589
64590         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
64591
64592         * m4/prereq.m4 (utmp_includes): Define.
64593         Check for ut_user and ut_name members in both struct utmpx
64594         and struct utmp.
64595
64596 2000-01-30  Jim Meyering  <meyering@lucent.com>
64597
64598         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
64599         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
64600         header files where only utmpx.ut_user is declared.
64601
64602         * lib/readutmp.h (UT_USER): Define.
64603
64604 2000-01-29  Jim Meyering  <meyering@lucent.com>
64605
64606         * m4/lib-check.m4: New file containing library-related checks from
64607         fileutils and sh-utils (textutils had none).
64608
64609 2000-01-28  Jim Meyering  <meyering@lucent.com>
64610
64611         * m4/perl.m4: Change format of warning message to look more like that
64612         from the missing script.  Suggestion from François Pinard.
64613
64614 2000-01-25  Jim Meyering  <meyering@lucent.com>
64615
64616         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
64617         well as time.h in the compile check.
64618         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
64619         Fix typo in cross-compiling case: s/yes/no/.
64620
64621 2000-01-23  Jim Meyering  <meyering@lucent.com>
64622
64623         * m4/jm-macros.m4: Move df-related tests here from
64624         fileutils/configure.in
64625
64626         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
64627         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
64628
64629         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
64630         s/space/ac_fsusage_space/.
64631         (jm_FILE_SYSTEM_USAGE): Take two parameters.
64632
64633         * m4/ftruncate.m4: New file (derived from part of
64634         fileutils/configure.in).
64635         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
64636         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
64637
64638         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
64639         AC_SUBST these here, rather than just in sh-util/configure.in, so
64640         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
64641         all the same.
64642         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
64643         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
64644         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
64645         (AC_SUBST(POW_LIBM)): Likewise.
64646         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
64647
64648 2000-01-23  Jim Meyering  <meyering@lucent.com>
64649
64650         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
64651         obstack.c.
64652
64653 2000-01-22  Jim Meyering  <meyering@lucent.com>
64654
64655         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
64656
64657         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
64658
64659         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
64660         configure.in
64661         (AC_CHECK_HEADERS): Likewise for sh-utils.
64662         (AC_CHECK_HEADERS): Likewise for textutils.
64663         Merge the three lists of headers.
64664
64665         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
64666         from fileutils' configure.in.
64667
64668         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
64669         code. Moved tests into their own function (_jm_DECL_HEADERS) in
64670         check-decl.m4.
64671
64672         * m4/check-decl.m4: Use #if rather than #ifdef.
64673         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
64674         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
64675         (_jm_DECL_HEADERS): Define new function.
64676         (jm_CHECK_DECLARATIONS): Require it.
64677
64678 2000-01-22  Jim Meyering  <meyering@lucent.com>
64679
64680         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
64681         [! HAVE_DECL_STRTOULL]: Declare strtoull.
64682         Required for some AIX systems.  Reported by Christian Krackowizer.
64683         [TESTING] (main): New function.
64684
64685         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
64686         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
64687         letters.
64688
64689         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
64690         iswprint.
64691
64692         * lib/strverscmp.c (ISDIGIT): Define.
64693         (strverscmp): Use ISDIGIT, not isdigit.
64694
64695 2000-01-19  Jim Meyering  <meyering@lucent.com>
64696
64697         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
64698         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
64699         defines `struct timespec' in <sys/time.h>
64700
64701         * m4/c-bs-a.m4: Remove uses of changequote altogether.
64702         Thanks to Akim for explaining.
64703
64704 2000-01-17  Paul Eggert  <eggert@twinsun.com>
64705
64706         * lib/nanosleep.c (nanosleep):
64707         Don't use SA_INTERRUPT to decide whether to call sigaction, as
64708         POSIX.1 doesn't require SA_INTERRUPT and some systems
64709         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
64710         it's been part of POSIX.1 since day 1 (in 1988).
64711
64712 2000-01-17  Jim Meyering  <meyering@lucent.com>
64713
64714         * lib/interlock: Remove unused file.  Reported by François Pinard.
64715
64716 2000-01-16  Paul Eggert  <eggert@twinsun.com>
64717
64718         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
64719         alert, backslash, formfeed, and vertical tab unnecessarily in
64720         shell quoting style.
64721
64722 2000-01-16  Jim Meyering  <meyering@lucent.com>
64723
64724         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
64725         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
64726         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
64727         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
64728
64729 2000-01-16  Jim Meyering  <meyering@lucent.com>
64730
64731         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
64732         because the latter didn't work.
64733
64734 2000-01-15  Jim Meyering  <meyering@lucent.com>
64735
64736         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
64737         (AC_REPLACE_FUNCS): Add memcpy and memset.
64738         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
64739         Add strpbrk.
64740         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
64741
64742 2000-01-12  Jim Meyering  <meyering@lucent.com>
64743
64744         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
64745         (jm_PREREQ): Use it.
64746         (jm_PREREQ_READUTMP): New macro.
64747         (jm_PREREQ): Use it.
64748
64749 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64750
64751         Quote multibyte characters correctly.
64752         * m4/c-bs-a.m4: New file.
64753         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
64754         (jm_PREREQ): Use it.
64755
64756 2000-01-11  Paul Eggert  <eggert@twinsun.com>
64757
64758         * m4/uintmax_t.m4: Port to autoconf 2.13.
64759
64760 2000-01-08  Jim Meyering  <meyering@ascend.com>
64761
64762         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
64763         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
64764
64765 2000-01-04  Jim Meyering  <meyering@ascend.com>
64766
64767         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
64768         jm_STRUCT_DIRENT_D_TYPE.
64769         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
64770         jm_STRUCT_DIRENT_D_INO.
64771         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
64772         jm_STRUCT_UTIMBUF.
64773         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
64774         renamings.
64775         * m4/utime.m4: Likewise.
64776
64777         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
64778         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
64779
64780 2000-01-03  Paul Eggert  <eggert@twinsun.com>
64781
64782         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
64783         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
64784
64785 2000-01-02  Jim Meyering  <meyering@ascend.com>
64786
64787         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
64788         remember if this is necessary.
64789
64790 1999-12-26  Jim Meyering  <meyering@ascend.com>
64791
64792         * m4/jm-macros.m4: Use it here.
64793         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
64794
64795 1999-12-23  Jim Meyering  <meyering@ascend.com>
64796
64797         * m4/jm-macros.m4: Check for clock_gettime (moved from
64798         fileutils/configure.in)
64799         Check for gettimeofday.
64800
64801 1999-12-20  Jim Meyering  <meyering@ascend.com>
64802
64803         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
64804         autoconf-2.14a-1999-12-20.
64805
64806 1999-12-19  Jim Meyering  <meyering@ascend.com>
64807
64808         * m4/lstat-slash.m4: New file.
64809         * m4/jm-macros.m4: Use the new macro:
64810         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64811
64812 1999-12-07  Jim Meyering  <meyering@ascend.com>
64813
64814         * m4/perl.m4: Require that File::Compare be available, too.
64815         Too many systems seem to lack it.
64816
64817         * m4/strftime.m4: Add checks for most of the cpp macros tested in
64818         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
64819
64820 1999-11-18  Paul Eggert  <eggert@twinsun.com>
64821
64822         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
64823         problem with the QNX 4.25 shell, which doesn't propagate exit
64824         status of failed commands inside shell assignments.
64825
64826 1999-11-17  Jim Meyering  <meyering@ascend.com>
64827
64828         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
64829
64830 1999-11-07  Jim Meyering  <meyering@ascend.com>
64831
64832         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
64833
64834 1999-11-06  Jim Meyering  <meyering@ascend.com>
64835
64836         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
64837         * m4/jm-macros.m4 (jm_MACROS): Use it here.
64838
64839 1999-11-05  Jim Meyering  <meyering@ascend.com>
64840
64841         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
64842         configure.in of textutils, fileutils, and sh-utils into this one
64843         (shared between those packages) file.
64844         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
64845         AC_STRUCT_ST_BLKSIZE.
64846
64847 1999-11-03  Jim Meyering  <meyering@ascend.com>
64848
64849         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
64850         of AC_CHECK_TYPE checks includes unistd.h.
64851         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
64852         Suggestion from Akim Demaille.
64853
64854 1999-10-30  Jim Meyering  <meyering@ascend.com>
64855
64856         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
64857         m4-quoted string.
64858         * m4/ls-mntd-fs.m4: Likewise.
64859         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
64860         * m4/jm-winsz1.m4: Likewise.
64861
64862         * m4/const.m4: Remove file, since the fix made it into the experimental
64863         version of autoconf.
64864         * m4/mktime.m4: Likewise.
64865
64866         * m4/check-type.m4: Remove file, now that the latest version of
64867         AC_CHECK_TYPE takes a third arg to specify additional #includes.
64868
64869         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
64870         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
64871         AC_CHECK_TYPE.
64872
64873 1999-10-04  Jim Meyering  <meyering@ascend.com>
64874
64875         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
64876
64877 1999-09-22  Paul Eggert  <eggert@twinsun.com>
64878
64879         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
64880         2.95.1 bug with HP-UX 10.20.
64881
64882 1999-09-17  Jim Meyering  <meyering@ascend.com>
64883
64884         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
64885         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
64886         due to missing strdup (against sh-utils-2.0).
64887
64888 1999-08-29  Jim Meyering  <meyering@ascend.com>
64889
64890         * m4/jm-macros.m4: Require jm_BISON.
64891         * m4/bison.m4: New file.
64892
64893 1999-08-17  Paul Eggert  <eggert@twinsun.com>
64894
64895         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
64896         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
64897
64898 1999-08-05  Jim Meyering  <meyering@ascend.com>
64899
64900         * m4/getline.m4: Rename test file from conftestdata to conftest.data
64901         to avoid conflicts with `conftest' on 8+3 filesystems.
64902         Suggestion from Eli Zaretskii.
64903
64904 1999-08-04  Jim Meyering  <meyering@ascend.com>
64905
64906         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
64907         fileutils and sh-utils (textutils's getline test was inadequate).
64908         (AM_FUNC_GETLINE): Run this test.
64909         (AC_CHECK_FUNCS): Check for getdelim.
64910         Reported by Bob Proulx.
64911
64912 1999-08-02  Jim Meyering  <meyering@ascend.com>
64913
64914         * m4/jm-macros.m4: Add a comment.
64915
64916 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64917
64918         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
64919         <inttypes.h> defines strtoumax as a macro (and not as a
64920         function).
64921
64922 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64923
64924         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
64925         that we can shift, multiply and divide unsigned long long
64926         values; Ultrix cc can't do it.
64927
64928 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64929
64930         * m4/mktime.m4: New file, which is a preview of what should appear
64931         in the next public autoconf release.
64932
64933 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64934
64935         * m4/lfs.m4: Remove this file.
64936         * m4/largefile.m4: New file.  It contains the old contents of
64937         lfs.m4, except that all names with prefix AC_LFS have been
64938         changed to use the prefix AC_SYS_LARGEFILE instead, to be
64939         compatible with future autoconf versions.  Also, some minor m4
64940         quoting problems have been fixed.
64941
64942 1999-08-01  Paul Eggert  <eggert@twinsun.com>
64943
64944         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
64945         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
64946         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
64947         and simplify the shell code.
64948
64949 1999-08-01  Jim Meyering  <meyering@ascend.com>
64950
64951         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
64952         m4.
64953
64954 1999-07-20  Jim Meyering  <meyering@ascend.com>
64955
64956         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
64957
64958 1999-07-15  Jim Meyering  <meyering@ascend.com>
64959
64960         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
64961
64962 1999-05-22  Jim Meyering  <meyering@ascend.com>
64963
64964         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
64965
64966 1999-05-20  Jim Meyering  <meyering@ascend.com>
64967
64968         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
64969         Add a colon after each `then' in case $4 is empty.
64970
64971 1999-05-16  Jim Meyering  <meyering@ascend.com>
64972
64973         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
64974
64975 1999-05-10  Jim Meyering  <meyering@ascend.com>
64976
64977         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
64978
64979         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
64980         AC_FUNC_MKTIME.
64981
64982 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
64983
64984         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
64985
64986 1999-05-04  Paul Eggert  <eggert@twinsun.com>
64987
64988         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
64989         not CPPFLAGS, so that linking works correctly in IRIX.
64990
64991 1999-04-30  Paul Eggert  <eggert@twinsun.com>
64992
64993         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
64994
64995 1999-04-20  Paul Eggert  <eggert@twinsun.com>
64996
64997         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
64998         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
64999         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
65000         jm_AC_TYPE_UNSIGNED_LONG_LONG.
65001         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
65002
65003         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
65004
65005 1999-04-20  Jim Meyering  <meyering@ascend.com>
65006
65007         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
65008         AC_REPLACE xstroull if necessary.  From Paul Eggert.
65009         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
65010
65011 1999-04-18  Jim Meyering  <meyering@ascend.com>
65012
65013         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
65014         * m4/jm-macros.m4: Use it.
65015
65016 1999-04-06  Jim Meyering  <meyering@ascend.com>
65017
65018         * m4/strftime.m4: Remove test for %f.
65019
65020 1999-03-29  Jim Meyering  <meyering@ascend.com>
65021
65022         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
65023         superset of the AC_TYPE_* checks in the textutils, fileutils,
65024         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
65025         AC_TYPE_PID_T.
65026
65027 1999-03-28  Jim Meyering  <meyering@ascend.com>
65028
65029         * m4/jm-macros.m4: Define GNU_PACKAGE here.
65030         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
65031         replaced e.g., in the *.sh files of the sh-utils.
65032
65033 1999-03-20  Jim Meyering  <meyering@ascend.com>
65034
65035         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
65036         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
65037         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
65038
65039 1999-03-19  Jim Meyering  <meyering@ascend.com>
65040
65041         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
65042
65043 1999-03-12  Jim Meyering  <meyering@ascend.com>
65044
65045         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
65046
65047 1999-03-07  Jim Meyering  <meyering@ascend.com>
65048
65049         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
65050         declared.
65051
65052 1999-02-17  Jim Meyering  <meyering@ascend.com>
65053
65054         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
65055         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
65056
65057 1999-02-07  Jim Meyering  <meyering@ascend.com>
65058
65059         * m4/group-member.m4: New file -- extracted from sh-utils'
65060         configure.in.
65061
65062         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
65063         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
65064
65065 1999-02-06  Jim Meyering  <meyering@ascend.com>
65066
65067         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
65068         * m4/fnmatch.m4: Likewise.
65069         * m4/getgroups.m4: Likewise.
65070         * m4/lstat.m4: Likewise.
65071         * m4/malloc.m4: Likewise.
65072         * m4/putenv.m4: Likewise.
65073         * m4/realloc.m4: Likewise.
65074         * m4/regex.m4: Likewise.
65075         * m4/stat.m4: Likewise.
65076         * m4/strftime.m4: Likewise.
65077         Suggestion from Alain Magloire.
65078
65079         * m4/chown.m4: Use `.$ac_objext', not `.o'.
65080         * m4/fnmatch.m4: Likewise.
65081         * m4/getgroups.m4: Likewise.
65082         * m4/getline.m4: Likewise.
65083         * m4/lstat.m4: Likewise.
65084         * m4/malloc.m4: Likewise.
65085         * m4/memcmp.m4: Likewise.
65086         * m4/putenv.m4: Likewise.
65087         * m4/realloc.m4: Likewise.
65088         * m4/regex.m4: Likewise.
65089         * m4/stat.m4: Likewise.
65090         * m4/strftime.m4: Likewise.
65091         Suggestion from Alain Magloire.
65092
65093         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
65094         an argument.
65095
65096         * m4/regex.m4: Add a run-time Test for proper operation of
65097         re_compile_pattern.
65098
65099 1999-01-31  Jim Meyering  <meyering@ascend.com>
65100
65101         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
65102
65103 1999-01-30  Jim Meyering  <meyering@ascend.com>
65104
65105         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
65106
65107         * m4/jm-mktime.m4: Make this a wrapper around the official
65108         AM_FUNC_MKTIME rather than my private copy, now that the official one
65109         is up to date.
65110         * m4/mktime.m4: Remove file.
65111
65112         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
65113         * m4/uptime.m4: Likewise.
65114         * m4/uintmax_t.m4: Likewise.
65115
65116 1999-01-28  Jim Meyering  <meyering@ascend.com>
65117
65118         * m4/jm-macros.m4: Use jm_AFS.
65119         * m4/afs.m4: New file (from fileutils' configure.in).
65120
65121         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
65122         * m4/chown.m4: Likewise.
65123         * m4/d-ino.m4: Likewise.
65124         * m4/d-type.m4: Likewise.
65125         * m4/fnmatch.m4: Likewise.
65126         * m4/getgroups.m4: Likewise.
65127         * m4/gettext.m4: Likewise.
65128         * m4/jm-mktime.m4: Likewise.
65129         * m4/jm-winsz2.m4: Likewise.
65130         * m4/lcmessage.m4: Likewise.
65131         * m4/ls-mntd-fs.m4: Likewise.
65132         * m4/malloc.m4: Likewise.
65133         * m4/memcmp.m4: Likewise.
65134         * m4/putenv.m4: Likewise.
65135         * m4/realloc.m4: Likewise.
65136         * m4/st_mtim.m4: Likewise.
65137         * m4/strftime.m4: Likewise.
65138
65139 1999-01-16  Jim Meyering  <meyering@ascend.com>
65140
65141         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
65142         (ARGMATCH_DIE_DECL): Define.
65143
65144 1999-01-12  Jim Meyering  <meyering@ascend.com>
65145
65146         * m4/Makefile.am.in: Rewrite to avoid using fmt.
65147         Reported by Lars Hecking.
65148
65149 1999-01-10  Jim Meyering  <meyering@ascend.com>
65150
65151         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
65152         gross kludge.
65153         * m4/inttypes_h.m4: Likewise.
65154         * m4/lstat.m4: Likewise.
65155         * m4/malloc.m4: Likewise.
65156         * m4/readdir.m4: Likewise.
65157         * m4/realloc.m4: Likewise.
65158         * m4/st_dm_mode.m4: Likewise.
65159         * m4/stat.m4: Likewise.
65160         * m4/utimbuf.m4: Likewise.
65161         * m4/utimes.m4: Likewise.
65162
65163         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
65164         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
65165         comments in config.h.in are meaningful.
65166
65167         * m4/jm-macros.m4: Require autoconf-2.13 here.
65168
65169         * m4/regex.m4: By default, don't use the included regex.c on systems
65170         with glibc 2.  Suggestion from Uli Drepper.
65171
65172 1999-01-02  Jim Meyering  <meyering@ascend.com>
65173
65174         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
65175
65176 1998-12-18  Jim Meyering  <meyering@ascend.com>
65177
65178         * m4/Makefile.am.in (Makefile.am): Simplify rule.
65179         Based on a suggestion from Lars Hecking.
65180
65181 1998-11-16  Paul Eggert  <eggert@twinsun.com>
65182
65183         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
65184
65185 1998-11-16  Jim Meyering  <meyering@ascend.com>
65186
65187         * m4/lfs.m4: Double-quote the `uname...` expression.
65188
65189 1998-11-14  Jim Meyering  <meyering@ascend.com>
65190
65191         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
65192         * m4/stat.m4: Likewise.
65193
65194 1998-11-03  Jim Meyering  <meyering@ascend.com>
65195
65196         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
65197         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
65198
65199 1998-10-18  Jim Meyering  <meyering@ascend.com>
65200
65201         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
65202
65203 1998-10-17  Jim Meyering  <meyering@ascend.com>
65204
65205         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
65206         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
65207         calls for those previously hard-coded headers.  Instead, take a new
65208         parameter.
65209         (jm_CHECK_DECLARATIONS): Reflect interface change.
65210         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
65211         (jm_CHECK_DECL_LOCALTIME_R): New macro.
65212
65213         * m4/mktime.m4: Test for spring-forward gap before long-running test.
65214
65215 1998-10-14  Jim Meyering  <meyering@ascend.com>
65216
65217         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
65218         instead of "TZ=America/Vancouver".  From Paul Eggert.
65219
65220 1998-10-11  Jim Meyering  <meyering@ascend.com>
65221
65222         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
65223         This adds a test for a recently added compatibility fix for mktime.c.
65224         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
65225
65226 1998-09-27  Jim Meyering  <meyering@ascend.com>
65227
65228         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
65229
65230         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
65231         ../configure.in, including a change from Gordon Matzigkeit to allow
65232         cross-compiling for the Hurd.
65233
65234         * m4/glibc.m4: New file/macro to test for the GNU C Library
65235         versions 1 and 2.  From Gordon Matzigkeit.
65236         Indent.
65237
65238 1998-09-21  Jim Meyering  <meyering@ascend.com>
65239
65240         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
65241
65242 1998-08-18  Paul Eggert  <eggert@twinsun.com>
65243
65244         Port nanosecond-resolution times to UnixWare 2.1.2 and
65245         pedantic Solaris 2.6.
65246
65247         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
65248         AC_STRUCT_ST_MTIM.
65249         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
65250         Generate name of ns member, instead of just 1 or undef.
65251         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
65252
65253 1998-08-15  Jim Meyering  <meyering@ascend.com>
65254
65255         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
65256         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
65257         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
65258         instead of jm_TYPE_SSIZE_T.
65259
65260 1998-08-12  Jim Meyering  <meyering@ascend.com>
65261
65262         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
65263
65264 1998-08-02  Jim Meyering  <meyering@ascend.com>
65265
65266         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
65267         in acconfig.h manually.
65268
65269 1998-07-31  Paul Eggert  <eggert@twinsun.com>
65270
65271         * m4/st_mtim.m4: New file.
65272
65273 1998-07-28  Jim Meyering  <meyering@ascend.com>
65274
65275         * m4/utimes.m4: Undef stat.
65276
65277 1998-07-25  Jim Meyering  <meyering@ascend.com>
65278
65279         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
65280         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
65281
65282 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
65283
65284         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
65285         uid and gid actually remain unchanged.
65286
65287 1998-07-07  Jim Meyering  <meyering@ascend.com>
65288
65289         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
65290
65291 1998-07-04  Jim Meyering  <meyering@ascend.com>
65292
65293         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
65294         to prove that this macro can be used in packages without regex.c.
65295
65296 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
65297
65298         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
65299         is to be used.
65300
65301 1998-07-03  Jim Meyering  <meyering@ascend.com>
65302
65303         * m4/gettext.m4: Add -lintl if it's found to be necessary.
65304
65305         * m4/gettext.m4: New file -- from gettext-0.10.35.
65306         * m4/lcmessage.m4: Likewise.
65307         * m4/progtest.m4: Likewise.
65308
65309         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
65310         * m4/jm-macros.m4: Require the new macro.
65311
65312 1998-06-29  Jim Meyering  <meyering@ascend.com>
65313
65314         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
65315         for the definition of NGROUPS (used in a system header included
65316         by sys/mount.h).
65317
65318 1998-06-28  Jim Meyering  <meyering@ascend.com>
65319
65320         * m4/ls-mntd-fs.m4: New file.
65321         * m4/fstypename.m4: New file.
65322
65323         * m4/jm-macros.m4: Require the new macro.
65324         * m4/jm-glibc-io.m4: New file.
65325
65326 1998-05-19  Jim Meyering  <meyering@ascend.com>
65327
65328         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
65329         * m4/lchown.m4: New file.
65330
65331         * m4/Makefile.am.in: New file.
65332         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
65333
65334 1998-05-14  Jim Meyering  <meyering@ascend.com>
65335
65336         * m4/Makefile.am (EXTRA_DIST): Add them.
65337         * m4/jm-macros.m4: New file.
65338         * m4/utimbuf.m4: New file.
65339
65340 1998-05-12  Jim Meyering  <meyering@ascend.com>
65341
65342         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
65343
65344 1998-05-11  Jim Meyering  <meyering@ascend.com>
65345
65346         * m4/isc-posix.m4: New file.
65347
65348 1998-05-10  Jim Meyering  <meyering@ascend.com>
65349
65350         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
65351
65352 1998-05-09  Jim Meyering  <meyering@ascend.com>
65353
65354         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
65355         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
65356         with automake.
65357
65358         * m4/ssize_t.m4: New file.
65359         * m4/mktime.m4: Remove file -- the new automake has this now.
65360
65361 1998-04-26  Jim Meyering  <meyering@ascend.com>
65362
65363         * m4/assert.m4: New file.
65364         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
65365
65366 1998-04-05  Jim Meyering  <meyering@ascend.com>
65367
65368         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
65369         (jm_PREREQ): Use it here.
65370
65371 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
65372
65373         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
65374         in acconfig.h.
65375
65376 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
65377
65378         * m4/prereq.m4: New file.
65379         * m4/error.m4: New file.
65380         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
65381
65382 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
65383
65384         * m4/getline.m4: Don't set am_cv_func_working_getline before the
65385         cache-check for the same variable -- that defeated the purpose of
65386         the test; the test program was never run.  This was a problem only
65387         on systems with losing getline functions -- HP-UX 10.20 is one.
65388         Reported by Bjorn Helgaas.
65389
65390 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
65391
65392         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
65393
65394 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
65395
65396         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
65397
65398         * m4/const.m4: New file.  Use an initializer in this declaration
65399         typedef int charset[2]; const charset x;
65400         Reported by Bob Glickstein.
65401
65402 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
65403
65404         * m4/chown.m4: Fix reversed types on -1 args to chown.
65405         From Kaveh Ghazi.
65406
65407 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
65408
65409         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
65410         Add lseek and memchr.
65411
65412         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
65413         T.E.Dickey <dickey@clark.net> said that some older preprocessors
65414         have a 20-character limit on names.
65415
65416 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
65417
65418         * m4/inttypes_h.m4: New file.
65419         * m4/uintmax_t.m4: New file.
65420         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
65421
65422
65423         -----
65424
65425         Local Variables:
65426         coding: utf-8
65427         End:
65428
65429         Copyright (C) 1997-2010 Free Software Foundation, Inc.
65430
65431         Copying and distribution of this file, with or without
65432         modification, are permitted provided the copyright notice
65433         and this notice are preserved.